diff --git a/.github/workflows/regtest.yml b/.github/workflows/regtest.yml
new file mode 100644
index 0000000000..1549b995d4
--- /dev/null
+++ b/.github/workflows/regtest.yml
@@ -0,0 +1,46 @@
+name: Regtest test
+
+on:
+ push:
+ branches: "**"
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: ["3.11"]
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v3
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install Rust toolchain
+ uses: actions-rs/toolchain@v1
+ with:
+ toolchain: stable
+ profile: minimal
+ default: true
+ - name: Install dependencies
+ run: |
+ sudo apt-get update -y
+ sudo apt-get install -y libgirepository1.0-dev libleveldb-dev nodejs npm
+ python -m pip install --upgrade pip
+ pip install maturin sh rich pyyaml
+ cd counterparty-rs && pip install -e . && cd ..
+ cd counterparty-core && pip install -e . && cd ..
+ pip install evdev
+ git clone https://github.com/CounterpartyXCP/addrindexrs.git
+ cd addrindexrs
+ cargo install --path=.
+ wget https://bitcoincore.org/bin/bitcoin-core-27.1/bitcoin-27.1-x86_64-linux-gnu.tar.gz
+ tar -xvf bitcoin-27.1-x86_64-linux-gnu.tar.gz
+ sudo cp bitcoin-27.1/bin/bitcoin-cli /usr/local/bin/bitcoin-cli
+ sudo cp bitcoin-27.1/bin/bitcoind /usr/local/bin/bitcoind
+ sudo cp bitcoin-27.1/bin/bitcoin-wallet /usr/local/bin/bitcoin-wallet
+ npm install dredd --global
+ - name: Run regtest tests
+ run: |
+ cd counterparty-core
+ python3 counterpartycore/test/regtest/testscenarios.py
diff --git a/.github/workflows/test_compose.sh b/.github/workflows/test_compose.sh
index 8f816f932a..482cf5e8ee 100644
--- a/.github/workflows/test_compose.sh
+++ b/.github/workflows/test_compose.sh
@@ -102,24 +102,24 @@ CURRENT_HEIGHT=$(curl http://localhost:4000/v2/ --silent | jq '.result.counterpa
REPARSE_FROM=$(($CURRENT_HEIGHT-50))
# Stop, reparse and start counterparty-core mainnet
+echo "" > $(docker inspect --format='{{.LogPath}}' counterparty-core-counterparty-core-1)
docker compose --profile mainnet stop counterparty-core
docker compose --profile mainnet run counterparty-core reparse $REPARSE_FROM \
--backend-connect=bitcoind \
--indexd-connect=addrindexrs \
--rpc-host=0.0.0.0 \
--api-host=0.0.0.0
+
+echo "" > $(docker inspect --format='{{.LogPath}}' counterparty-core-counterparty-core-1)
+
docker compose --profile mainnet up -d counterparty-core
# wait for counterparty-core to be ready
-while [ "$(docker compose logs counterparty-core 2>&1 | grep 'API Watcher - Catch up completed')" = "" ]; do
+while [ "$(docker compose logs counterparty-core 2>&1 | grep 'Watching for new blocks...')" = "" ]; do
echo "Waiting for counterparty-core mainnet to be ready"
sleep 1
done
-# Run dredd test
-dredd
-
-
# Run compare hashes test
. "$HOME/.profile"
cd counterparty-core
diff --git a/.github/workflows/test_compose.yml b/.github/workflows/test_compose.yml
index ac05cd917e..af016b5c87 100644
--- a/.github/workflows/test_compose.yml
+++ b/.github/workflows/test_compose.yml
@@ -2,7 +2,7 @@ name: Docker Compose
on:
push:
- branches: ['develop', 'master', 'testcompose']
+ branches: ['develop', 'master', 'preprelease']
jobs:
build:
diff --git a/.gitignore b/.gitignore
index 5e0eddd097..57e3aed781 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,3 +43,6 @@ dist/
.env.leave
.venv/
test-results/
+
+# cursor
+._*
diff --git a/apiary.apib b/apiary.apib
index bad43ac599..187effe965 100644
--- a/apiary.apib
+++ b/apiary.apib
@@ -1,4 +1,4 @@
-[//]: # (Generated by genapidoc.py on 2024-08-09 11:28:50.521779. Do not edit manually.)
+[//]: # (Generated by genapidoc.py on 2024-09-16 18:05:36.857735. Do not edit manually.)
FORMAT: 1A
HOST: https://api.counterparty.io:4000
@@ -6,21 +6,31 @@ HOST: https://api.counterparty.io:4000
The Counterparty Core API is the recommended way to query the state of a Counterparty node. All other methods have no official support.
-API routes are divided into 11 groups:
-
-- [`/blocks`](#/reference/blocks)
-- [`/transactions`](#/reference/transactions)
-- [`/addresses`](#/reference/addresses)
-- [`/compose`](#/reference/compose)
-- [`/assets`](#/reference/assets)
-- [`/orders`](#/reference/orders)
-- [`/bets`](#/reference/bets)
-- [`/dispensers`](#/reference/dispensers)
-- [`/burns`](#/reference/burns)
-- [`/events`](#/reference/events)
-- [`/mempool`](#/reference/mempool)
-- [`/bitcoin`](#/reference/bitcoin)
-- [`/v1`](#/reference/v1)
+API routes are divided into groups:
+
+- [`blocks`](#/reference/blocks)
+- [`transactions`](#/reference/transactions)
+- [`addresses`](#/reference/addresses)
+- [`compose`](#/reference/compose)
+- [`assets`](#/reference/assets)
+- [`orders`](#/reference/orders)
+- [`order_matches`](#/reference/order_matches)
+- [`bets`](#/reference/bets)
+- [`burns`](#/reference/burns)
+- [`dispensers`](#/reference/dispensers)
+- [`dividends`](#/reference/dividends)
+- [`events`](#/reference/events)
+- [`dispenses`](#/reference/dispenses)
+- [`sends`](#/reference/sends)
+- [`issuances`](#/reference/issuances)
+- [`sweeps`](#/reference/sweeps)
+- [`broadcasts`](#/reference/broadcasts)
+- [`fairminters`](#/reference/fairminters)
+- [`bitcoin`](#/reference/bitcoin)
+- [`mempool`](#/reference/mempool)
+- [`routes`](#/reference/routes)
+- [`Z-Pages`](#/reference/Z-Pages)
+- [`v1`](#/reference/v1)
## Headers and HTTP Code
@@ -166,22 +176,22 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629384,
+ "event_index": 530,
"event": "NEW_BLOCK",
"params": {
- "block_hash": "0000000000000000000339c6ab00f6555027c412c765653d1a23d7165221c3b6",
- "block_index": 852293,
- "block_time": 1721040354,
- "difficulty": 386108013,
- "previous_block_hash": "00000000000000000003216497b00a24d109c2dd72746364494328dc659af1f7"
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_index": 193,
+ "block_time": 1726509912,
+ "difficulty": 545259519,
+ "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e"
},
"tx_hash": null,
- "block_index": 852293,
- "block_time": 1721040354
+ "block_index": 193,
+ "block_time": 1726509912
}
],
- "next_cursor": 17629382,
- "result_count": 574024
+ "next_cursor": 518,
+ "result_count": 93
}
```
@@ -191,52 +201,46 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17630767,
+ "event_index": 531,
"event": "NEW_TRANSACTION",
"params": {
- "block_hash": "000000000000000000029926cf97e9611c376df99fed82be2e464c4fadb98a63",
- "block_index": 854018,
- "block_time": 1721987974,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_index": 193,
+ "block_time": 1726509912,
"btc_amount": 0,
- "data": "0c2558b53389694dd100000000000000010000000000000001000000000006b6c001802a25e815591c08f61002671b085f2495db1b7bc6",
+ "data": "6e0000000000000001000000000000000164657374726f79",
"destination": "",
- "fee": 21223,
- "source": "14U9VyjByqMd6BwQGhHnLVaKVEVgnNCLYG",
- "tx_hash": "7019d5103dbb7f5fe96239ce788c8a51753992a01856df6845a0428ed5962576",
- "tx_index": 2742582,
+ "fee": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
"unpacked_data": {
- "message_type": "dispenser",
- "message_type_id": 12,
+ "message_type": "destroy",
+ "message_type_id": 110,
"message_data": {
- "asset": "A2691100010307210705",
- "give_quantity": 1,
- "escrow_quantity": 1,
- "mainchainrate": 440000,
- "dispenser_status": 1,
- "action_address": "bc1q9gj7s92ersy0vyqzvudssheyjhd3k77x7pfqf5",
- "oracle_address": null,
- "status": "valid",
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "STAMP:eyJwIjoic3JjLTcyMSIsIm9wIjoibWludCIsImMiOiJBOTY4MjE5MTM2MDA0ODEyNDAwMCIsInRzIjpbMSwzLDcsMjEsNyw1XX0=",
- "issuer": "bc1q24kj35nvrrkhrx9zquej4lxdja65h3xmy5wfsx",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "1",
- "escrow_quantity_normalized": "1"
+ "quantity_normalized": "0.00000001"
}
},
"btc_amount_normalized": "0.00000000"
},
- "tx_hash": "7019d5103dbb7f5fe96239ce788c8a51753992a01856df6845a0428ed5962576",
- "block_index": 854018,
- "confirmed": true,
- "block_time": 1721987974
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
}
],
- "next_cursor": 17630748,
- "result_count": 2742583
+ "next_cursor": 519,
+ "result_count": 60
}
```
@@ -246,25 +250,25 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629285,
+ "event_index": 272,
"event": "NEW_TRANSACTION_OUTPUT",
"params": {
- "block_index": 852278,
- "btc_amount": 11200,
- "destination": "1L3z9ar5eyPM3pLbMtdkr27C9QzBKUaS5r",
+ "block_index": 146,
+ "btc_amount": 10000,
+ "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"out_index": 0,
- "tx_hash": "0d545b6460c605fbc1323d1ba19ead6a6a9abd175fd0a4db00e4e5b399c4e717",
- "tx_index": 2740774,
- "block_time": 1721031667,
- "btc_amount_normalized": "0.00011200"
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "tx_index": 33,
+ "block_time": 1726509701,
+ "btc_amount_normalized": "0.00010000"
},
- "tx_hash": null,
- "block_index": 852278,
- "block_time": 1721031667
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "block_time": 1726509701
}
],
- "next_cursor": 17629283,
- "result_count": 14573
+ "next_cursor": 237,
+ "result_count": 3
}
```
@@ -274,23 +278,23 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629385,
+ "event_index": 535,
"event": "BLOCK_PARSED",
"params": {
- "block_index": 852293,
- "ledger_hash": "787dc34df0bdd1ef4f9281b18070f79ef138c2aa084bd2f1ff3635b648a18e3d",
- "messages_hash": "8390334c4efa1fec2977e7c198ccd1597d3b5b370b5b432509ea9e74e5425e07",
- "transaction_count": 0,
- "txlist_hash": "ab6263b924db4ec90dab3ff4d90cd431ec576ee9c5eb57369f7a449d1ec0dab7",
- "block_time": 1721040354
+ "block_index": 193,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "block_time": 1726509912
},
"tx_hash": null,
- "block_index": 852293,
- "block_time": 1721040354
+ "block_index": 193,
+ "block_time": 1726509912
}
],
- "next_cursor": 17629383,
- "result_count": 574024
+ "next_cursor": 529,
+ "result_count": 93
}
```
@@ -300,20 +304,20 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629370,
+ "event_index": 534,
"event": "TRANSACTION_PARSED",
"params": {
"supported": true,
- "tx_hash": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "tx_index": 2740786
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59
},
- "tx_hash": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "block_index": 852286,
- "block_time": 1721037148
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
}
],
- "next_cursor": 17629363,
- "result_count": 2737963
+ "next_cursor": 528,
+ "result_count": 47
}
```
@@ -325,33 +329,35 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629367,
+ "event_index": 532,
"event": "DEBIT",
"params": {
- "action": "send",
- "address": "bc1q4x2r7eau6vpnr4dya3keqt97qduf5xuh5kakx2",
- "asset": "PEPETHEFROG",
- "block_index": 852286,
- "event": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
+ "action": "destroy",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 193,
+ "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
"quantity": 1,
- "tx_index": 2740786,
- "block_time": 1721037148,
+ "tx_index": 59,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "I'm PEPE THE FROG",
- "issuer": "1M7HN2wh32YU4AMfMatrAnCcdyfmuow7V3",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000001"
},
- "tx_hash": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "block_index": 852286,
- "block_time": 1721037148
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
}
],
- "next_cursor": 17629361,
- "result_count": 2640435
+ "next_cursor": 525,
+ "result_count": 54
}
```
@@ -361,33 +367,35 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629368,
+ "event_index": 526,
"event": "CREDIT",
"params": {
- "address": "1NmBhD1hainXiAGQweQgtJjfvZvoDcAFdF",
- "asset": "PEPETHEFROG",
- "block_index": 852286,
- "calling_function": "send",
- "event": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "quantity": 1,
- "tx_index": 2740786,
- "block_time": 1721037148,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "I'm PEPE THE FROG",
- "issuer": "1M7HN2wh32YU4AMfMatrAnCcdyfmuow7V3",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "744.99388000"
},
- "tx_hash": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "block_index": 852286,
- "block_time": 1721037148
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
}
],
- "next_cursor": 17629360,
- "result_count": 3688776
+ "next_cursor": 524,
+ "result_count": 67
}
```
@@ -397,35 +405,35 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629369,
+ "event_index": 484,
"event": "ENHANCED_SEND",
"params": {
- "asset": "PEPETHEFROG",
- "block_index": 852286,
- "destination": "1NmBhD1hainXiAGQweQgtJjfvZvoDcAFdF",
+ "asset": "XCP",
+ "block_index": 187,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"memo": null,
- "quantity": 1,
- "source": "bc1q4x2r7eau6vpnr4dya3keqt97qduf5xuh5kakx2",
+ "quantity": 10000,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"status": "valid",
- "tx_hash": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "tx_index": 2740786,
- "block_time": 1721037148,
+ "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03",
+ "tx_index": 53,
+ "block_time": 1726509886,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "I'm PEPE THE FROG",
- "issuer": "1M7HN2wh32YU4AMfMatrAnCcdyfmuow7V3",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00010000"
},
- "tx_hash": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "block_index": 852286,
- "block_time": 1721037148
+ "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03",
+ "block_index": 187,
+ "block_time": 1726509886
}
],
- "next_cursor": 17629311,
- "result_count": 542604
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -435,36 +443,36 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629234,
+ "event_index": 496,
"event": "MPMA_SEND",
"params": {
- "asset": "DANKPEPEGARD",
- "block_index": 852271,
- "destination": "15yG8DX3QWEhKPCSxiHkZ4cmEda6ExnLyi",
- "memo": "",
- "msg_index": 1,
- "quantity": 1,
- "source": "1Lhoi43wAkTgei1WK5drpSF9V8Y76jnj89",
+ "asset": "XCP",
+ "block_index": 188,
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "memo": null,
+ "msg_index": 2,
+ "quantity": 10,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"status": "valid",
- "tx_hash": "28148e0405626dddcaf06cbe15dccc697f08529b78b531bdb756a7f727d3c7ae",
- "tx_index": 2740771,
- "block_time": 1721029657,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "tx_index": 54,
+ "block_time": 1726509890,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "imgur/FtxWcKu.jpeg;DANKPEPEGARD",
- "issuer": "1Lhoi43wAkTgei1WK5drpSF9V8Y76jnj89",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010"
},
- "tx_hash": "28148e0405626dddcaf06cbe15dccc697f08529b78b531bdb756a7f727d3c7ae",
- "block_index": 852271,
- "block_time": 1721029657
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "block_time": 1726509890
}
],
- "next_cursor": 17629233,
- "result_count": 283295
+ "next_cursor": 495,
+ "result_count": 3
}
```
@@ -472,36 +480,9 @@ Here is a list of events classified by theme and for each an example response:
```
{
- "result": [
- {
- "event_index": 17628137,
- "event": "SEND",
- "params": {
- "asset": "KATYPEPE",
- "block_index": 852197,
- "destination": "1PuBN63JiiUNMzVBEesq3CyPH7SFCh5Kz",
- "quantity": 1,
- "source": "13pqEEceUhRH7nBd7aTUCaxMd2S2sVZH1V",
- "status": "valid",
- "tx_hash": "278b89cef6fa96ca889f2b18cf529d42edb6e5dfcdddcc5892e0ca72ff500ba9",
- "tx_index": 2740658,
- "block_time": 1720992774,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1A36UrLHxeg9ABoS4zPsRUegyCWTWER2kF",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
- },
- "tx_hash": "278b89cef6fa96ca889f2b18cf529d42edb6e5dfcdddcc5892e0ca72ff500ba9",
- "block_index": 852197,
- "block_time": 1720992774
- }
- ],
- "next_cursor": 17628133,
- "result_count": 805989
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
}
```
@@ -509,41 +490,9 @@ Here is a list of events classified by theme and for each an example response:
```
{
- "result": [
- {
- "event_index": 17608852,
- "event": "ASSET_TRANSFER",
- "params": {
- "asset": "BEACHBOBO",
- "asset_longname": null,
- "block_index": 850620,
- "call_date": 0,
- "call_price": 0.0,
- "callable": false,
- "description": "https://easyasset.art/j/1ma577/BEACH.json",
- "divisible": false,
- "fee_paid": 0,
- "issuer": "1LSbNkNGUidmQavQPqbqPR1MxqmHzwwEuY",
- "locked": true,
- "msg_index": 6,
- "quantity": 0,
- "reset": false,
- "source": "1C4jK4TtZ6mr9p7AbebJtALvRD2Z6JVppg",
- "status": "valid",
- "transfer": true,
- "tx_hash": "5e53fb0be50118ce278f32116817443e47aeed0c8ca7ffd5e01c12aa3ae94b67",
- "tx_index": 2738937,
- "block_time": 1720063963,
- "quantity_normalized": "0",
- "fee_paid_normalized": "0.00000000"
- },
- "tx_hash": "5e53fb0be50118ce278f32116817443e47aeed0c8ca7ffd5e01c12aa3ae94b67",
- "block_index": 850620,
- "block_time": 1720063963
- }
- ],
- "next_cursor": 17608851,
- "result_count": 11045
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
}
```
@@ -553,28 +502,28 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17618751,
+ "event_index": 527,
"event": "SWEEP",
"params": {
- "block_index": 851491,
- "destination": "16F1n49WqX9jFcY3j6CfGCURhCd44uaHUx",
- "fee_paid": 14000000,
- "flags": 3,
- "memo": null,
- "source": "1AmdRiWxB9pNR59j2xpPCm5r7ruipX8NHo",
+ "block_index": 192,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fee_paid": 600000,
+ "flags": 1,
+ "memo": "sweep my assets",
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"status": "valid",
- "tx_hash": "7e1caf7ffa6db66be3ecd227962e23ccf79d941a1266babf88cab1fa500dec94",
- "tx_index": 2739895,
- "block_time": 1720578229,
- "fee_paid_normalized": "0.14000000"
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
},
- "tx_hash": "7e1caf7ffa6db66be3ecd227962e23ccf79d941a1266babf88cab1fa500dec94",
- "block_index": 851491,
- "block_time": 1720578229
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
}
],
- "next_cursor": 17618560,
- "result_count": 1064
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -584,43 +533,43 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17625396,
+ "event_index": 330,
"event": "ASSET_DIVIDEND",
"params": {
- "asset": "HARDCORE",
- "block_index": 851997,
- "dividend_asset": "BARF",
- "fee_paid": 680000,
- "quantity_per_unit": 1,
- "source": "1RUDEjgtMCY8kSJUUvTv4KHMGFgg9LrgF",
+ "asset": "MYASSETA",
+ "block_index": 153,
+ "dividend_asset": "XCP",
+ "fee_paid": 40000,
+ "quantity_per_unit": 100000000,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"status": "valid",
- "tx_hash": "9136a360b3ffb28ac66a4f3ee59736e60e285ac36a8848c016d194c6fbccc071",
- "tx_index": 2740389,
- "block_time": 1720887741,
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "tx_index": 40,
+ "block_time": 1726509732,
"asset_info": {
"asset_longname": null,
- "description": "ruderelics.io/json/xcp/HARDCORE.json",
- "issuer": "1RUDEjgtMCY8kSJUUvTv4KHMGFgg9LrgF",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
"dividend_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "ruderelics.io/json/xcp/BARF.json",
- "issuer": "1RUDEjgtMCY8kSJUUvTv4KHMGFgg9LrgF",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.00680000"
+ "quantity_per_unit_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00040000"
},
- "tx_hash": "9136a360b3ffb28ac66a4f3ee59736e60e285ac36a8848c016d194c6fbccc071",
- "block_index": 851997,
- "block_time": 1720887741
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "block_index": 153,
+ "block_time": 1726509732
}
],
- "next_cursor": 17625340,
- "result_count": 4115
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -630,40 +579,9 @@ Here is a list of events classified by theme and for each an example response:
```
{
- "result": [
- {
- "event_index": 17625212,
- "event": "RESET_ISSUANCE",
- "params": {
- "asset": "ROOTS",
- "asset_longname": null,
- "block_index": 851992,
- "call_date": 0,
- "call_price": 0.0,
- "callable": false,
- "description": "",
- "divisible": true,
- "fee_paid": 0,
- "issuer": "14KPsMQwqeV478CGYjSDCgYKyNfMMA1bW9",
- "locked": false,
- "quantity": 1,
- "reset": true,
- "source": "14KPsMQwqeV478CGYjSDCgYKyNfMMA1bW9",
- "status": "valid",
- "transfer": false,
- "tx_hash": "1db43e8b07406f315d445059adecbad6389428819bac7da1bfa22a1aabe84a0c",
- "tx_index": 2740374,
- "block_time": 1720886374,
- "quantity_normalized": "0.00000001",
- "fee_paid_normalized": "0.00000000"
- },
- "tx_hash": "1db43e8b07406f315d445059adecbad6389428819bac7da1bfa22a1aabe84a0c",
- "block_index": 851992,
- "block_time": 1720886374
- }
- ],
- "next_cursor": 17580792,
- "result_count": 457
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
}
```
@@ -673,22 +591,22 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629341,
+ "event_index": 380,
"event": "ASSET_CREATION",
"params": {
- "asset_id": "838828713842287188",
- "asset_longname": null,
- "asset_name": "A838828713842287188",
- "block_index": 852283,
- "block_time": 1721036182
+ "asset_id": "95428956980101314",
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "asset_name": "A95428956980101314",
+ "block_index": 159,
+ "block_time": 1726509780
},
- "tx_hash": "8192721f8cd61ee8cc4644e360a583ce9b4d367b26a269907a0159f9cd6309f1",
- "block_index": 852283,
- "block_time": 1721036182
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "block_index": 159,
+ "block_time": 1726509780
}
],
- "next_cursor": 17629333,
- "result_count": 237113
+ "next_cursor": 367,
+ "result_count": 9
}
```
@@ -698,38 +616,40 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629357,
+ "event_index": 381,
"event": "ASSET_ISSUANCE",
"params": {
- "asset": "ROUNDDECLOCK",
- "asset_longname": null,
- "block_index": 852285,
+ "asset": "A95428956980101314",
+ "asset_events": "creation",
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "block_index": 159,
"call_date": 0,
"call_price": 0.0,
"callable": false,
- "description": "https://easyasset.art/j/8osoah/ROUND.json",
- "divisible": false,
+ "description": "A subnumeric asset",
+ "description_locked": false,
+ "divisible": true,
"fee_paid": 0,
- "issuer": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
- "locked": true,
- "quantity": 0,
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "locked": false,
+ "quantity": 100000000000,
"reset": false,
- "source": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"status": "valid",
"transfer": false,
- "tx_hash": "3e8b38590be753a2ae8482908198efccfc8317cc609513babb14fe9a18d192e9",
- "tx_index": 2740784,
- "block_time": 1721036618,
- "quantity_normalized": "0",
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "tx_index": 46,
+ "block_time": 1726509780,
+ "quantity_normalized": "1000.00000000",
"fee_paid_normalized": "0.00000000"
},
- "tx_hash": "3e8b38590be753a2ae8482908198efccfc8317cc609513babb14fe9a18d192e9",
- "block_index": 852285,
- "block_time": 1721036618
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "block_index": 159,
+ "block_time": 1726509780
}
],
- "next_cursor": 17629342,
- "result_count": 324416
+ "next_cursor": 374,
+ "result_count": 21
}
```
@@ -739,34 +659,34 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17628431,
+ "event_index": 533,
"event": "ASSET_DESTRUCTION",
"params": {
- "asset": "BASSMINT",
- "block_index": 852218,
+ "asset": "XCP",
+ "block_index": 193,
"quantity": 1,
- "source": "16GfbRzKdkekA3D9khLA3bVvNWwJ4Hs6Kc",
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"status": "valid",
- "tag": "444c55584c55582d68747470733a2f2f617277656176652e6e65742f587664757671",
- "tx_hash": "a5a113540fd334e4996b5e1349f3a08b548359a3ae38b9d53ccbe001731e3303",
- "tx_index": 2740705,
- "block_time": 1721000486,
+ "tag": "64657374726f79",
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59,
+ "block_time": 1726509912,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/bqsvtm/BASSMINT.json",
- "issuer": "17hhaQLGEBNMBxruLYEA2aeW473n8YNEZ5",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000001"
},
- "tx_hash": "a5a113540fd334e4996b5e1349f3a08b548359a3ae38b9d53ccbe001731e3303",
- "block_index": 852218,
- "block_time": 1721000486
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
}
],
- "next_cursor": 17628186,
- "result_count": 11304
+ "next_cursor": 157,
+ "result_count": 2
}
```
@@ -778,57 +698,57 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629338,
+ "event_index": 515,
"event": "OPEN_ORDER",
"params": {
- "block_index": 852283,
- "expiration": 8064,
- "expire_index": 860347,
- "fee_provided": 1680,
- "fee_provided_remaining": 1680,
+ "block_index": 191,
+ "expiration": 21,
+ "expire_index": 212,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
"fee_required": 0,
"fee_required_remaining": 0,
- "get_asset": "NINJASUIT",
- "get_quantity": 1,
- "get_remaining": 1,
- "give_asset": "TEST",
- "give_quantity": 1,
- "give_remaining": 1,
- "source": "1NfJnJdAdmm2rJCFW54NsAKqqTTMexCNJ3",
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"status": "open",
- "tx_hash": "ea5cdfc8ba91824b6cc5f1185d2aae6f7093963dd8aa0d9cc2ba41ac70dc565b",
- "tx_index": 2740781,
- "block_time": 1721036182,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "block_time": 1726509903,
"give_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "xcp.coindaddy.io/TEST.json",
- "issuer": "1MPtWb2WkrEaL1vznGNBtLkTvYgq3hL3g4",
- "divisible": false,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "res.indiesquare.net/json/NINJASUIT.json",
- "issuer": "1Nh4tPtQjHZSoYdToTF7T3xbaKrTNKM3wP",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "1",
- "give_remaining_normalized": "1",
- "fee_provided_normalized": "0.00001680",
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00001680"
+ "fee_provided_remaining_normalized": "0.00010000"
},
- "tx_hash": "ea5cdfc8ba91824b6cc5f1185d2aae6f7093963dd8aa0d9cc2ba41ac70dc565b",
- "block_index": 852283,
- "block_time": 1721036182
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_time": 1726509903
}
],
- "next_cursor": 17629227,
- "result_count": 533350
+ "next_cursor": 502,
+ "result_count": 7
}
```
@@ -838,54 +758,54 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17626267,
+ "event_index": 477,
"event": "ORDER_MATCH",
"params": {
- "backward_asset": "XCP",
- "backward_quantity": 200000000,
- "block_index": 852052,
+ "backward_asset": "BTC",
+ "backward_quantity": 3000,
+ "block_index": 186,
"fee_paid": 0,
- "forward_asset": "DANKNEWPEPA",
- "forward_quantity": 1,
- "id": "5d7f8aa158481de8b4af9275f49f7c637b020871bc6faeb48709e32f12708be5_08a54f64907e794fb3c801c5cf278a09e52c37d6f399097aa283ff94aaa79d31",
- "match_expire_index": 852072,
- "status": "completed",
- "tx0_address": "19QWXpMXeLkoEKEJv2xo9rn8wkPCyxACSX",
- "tx0_block_index": 844021,
- "tx0_expiration": 8064,
- "tx0_hash": "5d7f8aa158481de8b4af9275f49f7c637b020871bc6faeb48709e32f12708be5",
- "tx0_index": 2732780,
- "tx1_address": "14QSKTMmMNQ9tGg1ahEGTEaPj1EhxXz2zN",
- "tx1_block_index": 852052,
- "tx1_expiration": 8064,
- "tx1_hash": "08a54f64907e794fb3c801c5cf278a09e52c37d6f399097aa283ff94aaa79d31",
- "tx1_index": 2740434,
- "block_time": 1720914794,
+ "forward_asset": "XCP",
+ "forward_quantity": 3000,
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "match_expire_index": 206,
+ "status": "pending",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx0_block_index": 184,
+ "tx0_expiration": 21,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_index": 49,
+ "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "tx1_block_index": 186,
+ "tx1_expiration": 21,
+ "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx1_index": 52,
+ "block_time": 1726509871,
"forward_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "xcp.coindaddy.io/DANKNEWPEPA.json",
- "issuer": "1LQfMD2VWmWJvFfoyUmCN4s2q7ny5Z7QF9",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"backward_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
- "forward_quantity_normalized": "1",
- "backward_quantity_normalized": "2.00000000",
+ "forward_quantity_normalized": "0.00003000",
+ "backward_quantity_normalized": "0.00003000",
"fee_paid_normalized": "0.00000000"
},
- "tx_hash": "08a54f64907e794fb3c801c5cf278a09e52c37d6f399097aa283ff94aaa79d31",
- "block_index": 852052,
- "block_time": 1720914794
+ "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "block_index": 186,
+ "block_time": 1726509871
}
],
- "next_cursor": 17626112,
- "result_count": 209786
+ "next_cursor": 461,
+ "result_count": 3
}
```
@@ -895,19 +815,19 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629348,
+ "event_index": 507,
"event": "ORDER_UPDATE",
"params": {
"status": "cancelled",
- "tx_hash": "3b670bc771bfb1fb6df3358c6db9642b8735f059ec2662fc0a6840f6f00d37d4"
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2"
},
- "tx_hash": "d36130058341be438f40a322b95b1d8d6d8de6b8b227e20ec72ada68bbdba620",
- "block_index": 852284,
- "block_time": 1721036400
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_time": 1726509899
}
],
- "next_cursor": 17629270,
- "result_count": 736081
+ "next_cursor": 476,
+ "result_count": 11
}
```
@@ -917,19 +837,19 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17624472,
+ "event_index": 468,
"event": "ORDER_FILLED",
"params": {
"status": "filled",
- "tx_hash": "dccd48a7c5b4b66ea1f5eab4c5569d18df300f2a92aa4acf0f05c6411673b717"
+ "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a"
},
- "tx_hash": "5c8371dff064ffddc23b17744ab52fb7b9e83369f36e3bef00d184af5824f3c3",
- "block_index": 851940,
- "block_time": 1720856155
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "block_index": 185,
+ "block_time": 1726509867
}
],
- "next_cursor": 17624471,
- "result_count": 819
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -939,20 +859,20 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17626778,
+ "event_index": 467,
"event": "ORDER_MATCH_UPDATE",
"params": {
- "id": "f7602d8219a860400f9912af1d29989c041474aaef185e306d1041d3bfcae5dc_8eeb3abb8d6ce3dcbe8ef5cd9012f451620a0a4067ae86c4433aab6e4399c871",
- "order_match_id": "f7602d8219a860400f9912af1d29989c041474aaef185e306d1041d3bfcae5dc_8eeb3abb8d6ce3dcbe8ef5cd9012f451620a0a4067ae86c4433aab6e4399c871",
- "status": "expired"
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "status": "completed"
},
- "tx_hash": null,
- "block_index": 852063,
- "block_time": 1720921721
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "block_index": 185,
+ "block_time": 1726509867
}
],
- "next_cursor": 17626066,
- "result_count": 23786
+ "next_cursor": 440,
+ "result_count": 2
}
```
@@ -962,27 +882,27 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17624473,
+ "event_index": 469,
"event": "BTC_PAY",
"params": {
- "block_index": 851940,
- "btc_amount": 11440000,
- "destination": "16mrwziWRBYhSPcWdJkaCvBuawXosLnTeG",
- "order_match_id": "3f57223ffc3144a3fc4d36e81fa7c378206d279005705ee1dad23eeb71750224_dccd48a7c5b4b66ea1f5eab4c5569d18df300f2a92aa4acf0f05c6411673b717",
- "source": "bc1qp54rfvgmcevef7x3r07nll53nhgkklwkk7ma0s",
+ "block_index": 185,
+ "btc_amount": 2000,
+ "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
"status": "valid",
- "tx_hash": "5c8371dff064ffddc23b17744ab52fb7b9e83369f36e3bef00d184af5824f3c3",
- "tx_index": 2740352,
- "block_time": 1720856155,
- "btc_amount_normalized": "0.11440000"
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "tx_index": 51,
+ "block_time": 1726509867,
+ "btc_amount_normalized": "0.00002000"
},
- "tx_hash": "5c8371dff064ffddc23b17744ab52fb7b9e83369f36e3bef00d184af5824f3c3",
- "block_index": 851940,
- "block_time": 1720856155
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "block_index": 185,
+ "block_time": 1726509867
}
],
- "next_cursor": 17624372,
- "result_count": 2938
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -992,24 +912,24 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629350,
+ "event_index": 509,
"event": "CANCEL_ORDER",
"params": {
- "block_index": 852284,
- "offer_hash": "3b670bc771bfb1fb6df3358c6db9642b8735f059ec2662fc0a6840f6f00d37d4",
- "source": "bc1q4x2r7eau6vpnr4dya3keqt97qduf5xuh5kakx2",
+ "block_index": 190,
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"status": "valid",
- "tx_hash": "d36130058341be438f40a322b95b1d8d6d8de6b8b227e20ec72ada68bbdba620",
- "tx_index": 2740783,
- "block_time": 1721036400
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "tx_index": 56,
+ "block_time": 1726509899
},
- "tx_hash": "d36130058341be438f40a322b95b1d8d6d8de6b8b227e20ec72ada68bbdba620",
- "block_index": 852284,
- "block_time": 1721036400
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_time": 1726509899
}
],
- "next_cursor": 17628955,
- "result_count": 80364
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -1019,21 +939,21 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629272,
+ "event_index": 448,
"event": "ORDER_EXPIRATION",
"params": {
- "block_index": 852276,
- "order_hash": "2d458430e2b13bd6715763ea24ceef1c34d9b662258a06e9bcb6c038895adf91",
- "source": "19QWXpMXeLkoEKEJv2xo9rn8wkPCyxACSX",
- "block_time": 1721031433
+ "block_index": 182,
+ "order_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "block_time": 1726509796
},
"tx_hash": null,
- "block_index": 852276,
- "block_time": 1721031433
+ "block_index": 182,
+ "block_time": 1726509796
}
],
- "next_cursor": 17629266,
- "result_count": 198329
+ "next_cursor": 446,
+ "result_count": 2
}
```
@@ -1043,22 +963,22 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17626781,
+ "event_index": 443,
"event": "ORDER_MATCH_EXPIRATION",
"params": {
- "block_index": 852063,
- "order_match_id": "f7602d8219a860400f9912af1d29989c041474aaef185e306d1041d3bfcae5dc_8eeb3abb8d6ce3dcbe8ef5cd9012f451620a0a4067ae86c4433aab6e4399c871",
- "tx0_address": "1MwGHzUm3gjb8S4EHhaGKDf1L6rNRugrE2",
- "tx1_address": "bc1qreefy33thdnsrjk4my23upe3qpsf2g6hfc44gk",
- "block_time": 1720921721
+ "block_index": 182,
+ "order_match_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "block_time": 1726509796
},
"tx_hash": null,
- "block_index": 852063,
- "block_time": 1720921721
+ "block_index": 182,
+ "block_time": 1726509796
}
],
- "next_cursor": 17626069,
- "result_count": 20940
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -1070,43 +990,42 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17627167,
+ "event_index": 267,
"event": "OPEN_DISPENSER",
"params": {
- "asset": "A4592516168610987000",
- "block_index": 853554,
+ "asset": "XCP",
+ "block_index": 145,
"dispense_count": 0,
- "escrow_quantity": 1,
+ "escrow_quantity": 10000,
"give_quantity": 1,
- "give_remaining": 1,
- "oracle_address": null,
- "origin": "1MkY4ZABm1bG6h8wug68D8UQjZrbgmRJ1A",
- "satoshirate": 280000,
- "source": "bc1q2wl52mkdy4se92pkhyx09hqdc52jk2h0gam5f2",
+ "give_remaining": 10000,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "satoshirate": 1,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"status": 0,
- "tx_hash": "a845aa75f9f509150261e2e75e709bf15c1f1d9fb5e1d7504d84b9c35e444054",
- "tx_index": 2742077,
- "block_time": 1721735040,
+ "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "tx_index": 32,
+ "block_time": 1726509697,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "STAMP:R0lGODlhHAAcAMQAACuAtm3EFvbbPvfw8DQ5RP///9bR0eRtIwoDEVSKHvXppCyAti2Ati2Bti+Cti2BtTKDtDSEtC+CtDyIsjmGsgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQEMgAAACwAAAAAHAAcAAAF1yAgjmRpnmiqrmzrvuUgzzMa3HdM70O5CAKFUCgYGY5IZG3UADoDQBEuYJhSl4DmE1q0VqcGLOBhlVoT3rBsFClbb+j3sTcq2AuAdyAuD5MIgAQABQh3dgmEhgVUfiOBggiFdwkJkYY3XwGOgQCWk5WSdgEDmZuAAEmpqqQ4poIHsLGys6yjrp2Rubq6B6Rzt7PBsaNzdAuPABCZV3qkWMgNPNI7I8ecCwDT0yTWgQ1S02Ulj6eDdkCKdyjkjwUCduyc4/EE7vD0gvPs9gX4+frt3vXDJyIEACH5BAQyAAAALAAAAAAcABwAAAXqICCOwmieZ6maJdqijyALD/DaLOqK966zsx9vNCgajUMcIMBkno7Q4kywYMgUWOzLwO12kSPHVBCQiZhkQ5NpAAPEM3RpHVCv20WThH4uNxN0XG4TfGtkAYB0dW1DBY4FS4qJioJAZgUCj44JmJoFiwOWKpmPCQkymmxNJEGopaekjgEDdgGsZl65urSro2YHwMHCw7yzPFMACMrLzMwHtJXHv8PUwLOCoQBWQRS1dQOK127IDlHmUCPbZgwA5+cmC2MOZwJQ9XxJYy2Prp6QSdL0dcKkz0yKgplIITSoBOHAhS1uFHy4UEQIADs=",
- "issuer": "14EnqBDJMHF5QWrmwCYE7WvfinyZZGHo89",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "1",
- "escrow_quantity_normalized": "1",
- "satoshirate_normalized": "0.00280000"
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00010000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001"
},
- "tx_hash": "a845aa75f9f509150261e2e75e709bf15c1f1d9fb5e1d7504d84b9c35e444054",
- "block_index": 853554,
- "confirmed": true,
- "block_time": 1721735040
+ "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "block_index": 145,
+ "block_time": 1726509697
}
],
- "next_cursor": 17627159,
- "result_count": 90076
+ "next_cursor": 254,
+ "result_count": 4
}
```
@@ -1116,31 +1035,31 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629295,
+ "event_index": 274,
"event": "DISPENSER_UPDATE",
"params": {
- "asset": "PEPECASH",
- "dispense_count": 2,
- "give_remaining": 24935400000000,
- "source": "1L3z9ar5eyPM3pLbMtdkr27C9QzBKUaS5r",
+ "asset": "XCP",
+ "dispense_count": 1,
+ "give_remaining": 9334,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"status": 0,
- "tx_hash": "1d9de82b6d758c378d6799e332f3124c8444dcc3f4e03ebfd57f6a4438f98409",
+ "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
"asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_remaining_normalized": "249354.00000000"
+ "give_remaining_normalized": "0.00009334"
},
- "tx_hash": "0d545b6460c605fbc1323d1ba19ead6a6a9abd175fd0a4db00e4e5b399c4e717",
- "block_index": 852278,
- "block_time": 1721031667
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "block_time": 1726509701
}
],
- "next_cursor": 17629291,
- "result_count": 232534
+ "next_cursor": 260,
+ "result_count": 4
}
```
@@ -1150,34 +1069,34 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17611801,
+ "event_index": 261,
"event": "REFILL_DISPENSER",
"params": {
- "asset": "BITCRYSTALS",
- "block_index": 850828,
- "destination": "1LvbMVzJNRDBJxWZC1eAmGLQ98DMiZtwMq",
- "dispense_quantity": 200000000000,
- "dispenser_tx_hash": "afd5edcc9cd3b10673f1c0585f76152d754bb3def3d2ea278267a28343908a5a",
- "source": "1GGPR9a7CmdkGp6eSjg79nDEGYCM2CBqGr",
- "tx_hash": "12e58d871c943c3ecbc52fac822e1bad76f8498eac503dfe87744ca08ec7f690",
- "tx_index": 2739177,
- "block_time": 1720204537,
+ "asset": "XCP",
+ "block_index": 144,
+ "destination": "mnLwb4LAYvLe6gesyGs1d34NnRaSRpScfq",
+ "dispense_quantity": 10,
+ "dispenser_tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5",
+ "tx_index": 31,
+ "block_time": 1726509693,
"asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/BITCRYSTALS.json",
- "issuer": "1PWqaoM6xhfmbHWFMqcLGMeAXcx8DvT3iK",
"divisible": true,
- "locked": false
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "2000.00000000"
+ "dispense_quantity_normalized": "0.00000010"
},
- "tx_hash": "12e58d871c943c3ecbc52fac822e1bad76f8498eac503dfe87744ca08ec7f690",
- "block_index": 850828,
- "block_time": 1720204537
+ "tx_hash": "962792bfe558b1042295417f1b88d03dfa7547cb82ab870bbd57854561acf3b5",
+ "block_index": 144,
+ "block_time": 1726509693
}
],
- "next_cursor": 17505345,
- "result_count": 189
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -1187,37 +1106,37 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17629296,
+ "event_index": 275,
"event": "DISPENSE",
"params": {
- "asset": "PEPECASH",
- "block_index": 852278,
- "btc_amount": 11200,
- "destination": "1AnhxE3qcBU9zyyZzkYs4TY7AMj5spqEK9",
+ "asset": "XCP",
+ "block_index": 146,
+ "btc_amount": 10000,
+ "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
"dispense_index": 0,
- "dispense_quantity": 20000000000,
- "dispenser_tx_hash": "1d9de82b6d758c378d6799e332f3124c8444dcc3f4e03ebfd57f6a4438f98409",
- "source": "1L3z9ar5eyPM3pLbMtdkr27C9QzBKUaS5r",
- "tx_hash": "0d545b6460c605fbc1323d1ba19ead6a6a9abd175fd0a4db00e4e5b399c4e717",
- "tx_index": 2740774,
- "block_time": 1721031667,
+ "dispense_quantity": 666,
+ "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "tx_index": 33,
+ "block_time": 1726509701,
"asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "200.00000000",
- "btc_amount_normalized": "0.00011200"
+ "dispense_quantity_normalized": "0.00000666",
+ "btc_amount_normalized": "0.00010000"
},
- "tx_hash": "0d545b6460c605fbc1323d1ba19ead6a6a9abd175fd0a4db00e4e5b399c4e717",
- "block_index": 852278,
- "block_time": 1721031667
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "block_time": 1726509701
}
],
- "next_cursor": 17629292,
- "result_count": 193191
+ "next_cursor": 240,
+ "result_count": 3
}
```
@@ -1229,267 +1148,256 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 17628269,
+ "event_index": 218,
"event": "BROADCAST",
"params": {
- "block_index": 852204,
+ "block_index": 138,
"fee_fraction_int": 0,
"locked": false,
- "source": "1CRjCTJkLcmEBJBZn2UE2obfS6v9FMqmWN",
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"status": "valid",
- "text": "bt:MINT|0|GAS|60",
- "timestamp": 1709019240,
- "tx_hash": "7ee0bd6bad2c6e6e46c04d59e2af5339b2708d89c8e7e774939bb4da89af4868",
- "tx_index": 2740688,
- "value": 0.0,
- "block_time": 1720994963,
+ "text": "price-USD",
+ "timestamp": 4003903983,
+ "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a",
+ "tx_index": 25,
+ "value": 66600.0,
+ "block_time": 1726509656,
"fee_fraction_int_normalized": "0.00000000"
},
- "tx_hash": "7ee0bd6bad2c6e6e46c04d59e2af5339b2708d89c8e7e774939bb4da89af4868",
- "block_index": 852204,
- "block_time": 1720994963
+ "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a",
+ "block_index": 138,
+ "block_time": 1726509656
}
],
- "next_cursor": 17628267,
- "result_count": 106578
+ "next_cursor": 213,
+ "result_count": 2
}
```
-### Bets
+### Fair Minting
-#### `OPEN_BET`
+#### `NEW_FAIRMINTER`
```
{
"result": [
{
- "event_index": 5779773,
- "event": "OPEN_BET",
+ "event_index": 196,
+ "event": "NEW_FAIRMINTER",
"params": {
- "bet_type": 2,
- "block_index": 471011,
- "counterwager_quantity": 2799999999,
- "counterwager_remaining": 2799999999,
- "deadline": 471400,
- "expiration": 565,
- "expire_index": 471576,
- "fee_fraction_int": 0.0,
- "feed_address": "1A9kQfFmz5UvVmhqSZgRcsfFT1HVE2MYNX",
- "leverage": 5040,
- "source": "1AuspQ6wRmryPQ3SuPoy4LaVJSRdafF1Wj",
- "status": "invalid: feed doesn\u2019t exist",
- "target_value": 7.0,
- "tx_hash": "6f2deeab17f2559edcdd952e8d942ac7adf2679df382bfdbf2a554beb32729cf",
- "tx_index": 957135,
- "wager_quantity": 200000000,
- "wager_remaining": 200000000,
- "block_time": 1497305046,
- "fee_fraction_int_normalized": "0.00000000"
+ "asset": "FAIRMINTD",
+ "asset_longname": "",
+ "asset_parent": "",
+ "block_index": 135,
+ "burn_payment": false,
+ "description": "",
+ "divisible": true,
+ "end_block": 0,
+ "hard_cap": 0,
+ "lock_description": false,
+ "lock_quantity": false,
+ "max_mint_per_tx": 0,
+ "minted_asset_commission_int": 0,
+ "pre_minted": false,
+ "premint_quantity": 0,
+ "price": 50,
+ "quantity_by_price": 60,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "start_block": 0,
+ "status": "open",
+ "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "tx_index": 22,
+ "block_time": 1726509644
},
- "tx_hash": "6f2deeab17f2559edcdd952e8d942ac7adf2679df382bfdbf2a554beb32729cf",
- "block_index": 471011,
- "block_time": 1497305046
+ "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "block_index": 135,
+ "block_time": 1726509644
}
],
- "next_cursor": 5777249,
- "result_count": 1149
+ "next_cursor": 161,
+ "result_count": 4
}
```
-#### `BET_UPDATE`
+#### `FAIRMINTER_UPDATE`
```
{
"result": [
{
- "event_index": 5798143,
- "event": "BET_UPDATE",
+ "event_index": 155,
+ "event": "FAIRMINTER_UPDATE",
"params": {
- "status": "expired",
- "tx_hash": "7b215450a2d417e59b44e82ce9a67abd3a46d8fc53da62ddf8da30ced6a55462"
+ "status": "closed",
+ "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16"
},
"tx_hash": null,
- "block_index": 471534,
- "block_time": 1497614713
- }
- ],
- "next_cursor": 5346000,
- "result_count": 1474
-}
-```
-
-#### `BET_MATCH`
-
-```
-{
- "result": [
- {
- "event_index": 5234766,
- "event": "BET_MATCH",
- "params": {
- "backward_quantity": 50000000,
- "block_index": 460217,
- "deadline": 1491577200,
- "fee_fraction_int": 3000000,
- "feed_address": "1BetXQ5w9mMmJosZ21jUtrebdpgMhYQUaZ",
- "forward_quantity": 699999999,
- "id": "f51d8ea6707b9aeafe8291461ce927d40e9f6cad11c9c831972ac61be07bea3c_262e629266b15a769be35a0cc702b10785ed40e15655baf3b1e6a8b4ae056821",
- "initial_value": 10.0,
- "leverage": 5040,
- "match_expire_index": 460775,
- "status": "pending",
- "target_value": 7.0,
- "tx0_address": "1A9kQfFmz5UvVmhqSZgRcsfFT1HVE2MYNX",
- "tx0_bet_type": 3,
- "tx0_block_index": 460217,
- "tx0_expiration": 558,
- "tx0_hash": "f51d8ea6707b9aeafe8291461ce927d40e9f6cad11c9c831972ac61be07bea3c",
- "tx0_index": 866660,
- "tx1_address": "1AEV18DTJjJBUWXhqm2aWCkLHWV2tGVTVY",
- "tx1_bet_type": 2,
- "tx1_block_index": 460625,
- "tx1_expiration": 273,
- "tx1_hash": "262e629266b15a769be35a0cc702b10785ed40e15655baf3b1e6a8b4ae056821",
- "tx1_index": 869523,
- "block_time": 1491221704,
- "fee_fraction_int_normalized": "0.03000000"
- },
- "tx_hash": "262e629266b15a769be35a0cc702b10785ed40e15655baf3b1e6a8b4ae056821",
- "block_index": 460625,
- "block_time": 1491461927
+ "block_index": 130,
+ "block_time": 1726509613
}
],
- "next_cursor": 5216626,
- "result_count": 397
+ "next_cursor": 110,
+ "result_count": 2
}
```
-#### `BET_MATCH_UPDATE`
+#### `NEW_FAIRMINT`
```
{
"result": [
{
- "event_index": 5242801,
- "event": "BET_MATCH_UPDATE",
+ "event_index": 207,
+ "event": "NEW_FAIRMINT",
"params": {
- "id": "f51d8ea6707b9aeafe8291461ce927d40e9f6cad11c9c831972ac61be07bea3c_262e629266b15a769be35a0cc702b10785ed40e15655baf3b1e6a8b4ae056821",
- "status": "settled: for equal"
+ "asset": "FAIRMINTD",
+ "block_index": 136,
+ "commission": 0,
+ "earn_quantity": 40,
+ "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "paid_quantity": 34,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "status": "valid",
+ "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6",
+ "tx_index": 23,
+ "block_time": 1726509648,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
},
- "tx_hash": "858a2d20b1627da9eea4ffd7730743a47bfb9ad89d69dd685f0fce13ddea68ba",
- "block_index": 460878,
- "block_time": 1491604209
+ "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6",
+ "block_index": 136,
+ "block_time": 1726509648
}
],
- "next_cursor": 5242797,
- "result_count": 397
+ "next_cursor": 190,
+ "result_count": 10
}
```
-#### `BET_EXPIRATION`
-
-```
-{
- "result": [
- {
- "event_index": 5798145,
- "event": "BET_EXPIRATION",
- "params": {
- "bet_hash": "7b215450a2d417e59b44e82ce9a67abd3a46d8fc53da62ddf8da30ced6a55462",
- "bet_index": 956800,
- "block_index": 471534,
- "source": "1BetXQ5w9mMmJosZ21jUtrebdpgMhYQUaZ",
- "block_time": 1497614713
- },
- "tx_hash": null,
- "block_index": 471534,
- "block_time": 1497614713
- }
- ],
- "next_cursor": 5346002,
- "result_count": 588
-}
-```
+### UTXO Support
-#### `BET_MATCH_EXPIRATION`
+#### `ATTACH_TO_UTXO`
```
{
"result": [
{
- "event_index": 2713911,
- "event": "BET_MATCH_EXPIRATION",
+ "event_index": 312,
+ "event": "ATTACH_TO_UTXO",
"params": {
- "bet_match_id": "f1200f1e6fff75b3791455e7692b9a5e296f00d0b1cec5cef2d5491ae249b300_bc07aed52c4cc853d10932624f37de5854f4c3f0825f731259af1f071b8ea0bc",
- "block_index": 403907,
- "tx0_address": "1Ch9trfp2ULuPxnU81cA3TDvW17L8YRw6r",
- "tx1_address": "1BsQTfk6tyKgVyReFCoADSrv33bJ6mfMYv",
- "block_time": 1458731182
+ "asset": "MYASSETA",
+ "block_index": 151,
+ "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1",
+ "fee_paid": 0,
+ "msg_index": 0,
+ "quantity": 1000000000,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "status": "valid",
+ "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "tx_index": 38,
+ "block_time": 1726509724,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
},
- "tx_hash": null,
- "block_index": 403907,
- "block_time": 1458731182
+ "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "block_index": 151,
+ "block_time": 1726509724
}
],
- "next_cursor": 881018,
- "result_count": 9
+ "next_cursor": 291,
+ "result_count": 2
}
```
-#### `BET_MATCH_RESOLUTON`
+#### `DETACH_FROM_UTXO`
```
{
"result": [
{
- "event_index": 5242800,
- "event": "BET_MATCH_RESOLUTON",
+ "event_index": 304,
+ "event": "DETACH_FROM_UTXO",
"params": {
- "bear_credit": null,
- "bet_match_id": "f51d8ea6707b9aeafe8291461ce927d40e9f6cad11c9c831972ac61be07bea3c_262e629266b15a769be35a0cc702b10785ed40e15655baf3b1e6a8b4ae056821",
- "bet_match_type_id": 5,
- "block_index": 460878,
- "bull_credit": null,
- "escrow_less_fee": 727500000,
- "fee": 22499999,
- "settled": null,
- "winner": "Equal",
- "block_time": 1491604209
+ "asset": "MYASSETA",
+ "block_index": 150,
+ "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0",
+ "fee_paid": 0,
+ "msg_index": 0,
+ "quantity": 500000000,
+ "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0",
+ "status": "valid",
+ "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba",
+ "tx_index": 37,
+ "block_time": 1726509719,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000",
+ "fee_paid_normalized": "0.00000000"
},
- "tx_hash": "858a2d20b1627da9eea4ffd7730743a47bfb9ad89d69dd685f0fce13ddea68ba",
- "block_index": 460878,
- "block_time": 1491604209
+ "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba",
+ "block_index": 150,
+ "block_time": 1726509719
}
],
- "next_cursor": 5242796,
- "result_count": 387
+ "next_cursor": null,
+ "result_count": 1
}
```
-#### `CANCEL_BET`
+#### `UTXO_MOVE`
```
{
"result": [
{
- "event_index": 851182,
- "event": "CANCEL_BET",
+ "event_index": 349,
+ "event": "UTXO_MOVE",
"params": {
- "block_index": 334697,
- "offer_hash": "b8b101d796b4977d8a7a33486cd17484f3750c01c29675981a775b73622476d1",
- "source": "1PLh4si7FFZ7NSbFpeDbtdVwgwzNH7DHnT",
+ "asset": "XCP",
+ "block_index": 155,
+ "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1",
+ "msg_index": 1,
+ "quantity": 1500000000,
+ "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0",
"status": "valid",
- "tx_hash": "8c489164534b467cec90aa8d5582e37208327de5e4a129b538c01db96b8b163f",
- "tx_index": 126800,
- "block_time": 1418823249
+ "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7",
+ "tx_index": 42,
+ "block_time": 1726509741,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "15.00000000"
},
- "tx_hash": "8c489164534b467cec90aa8d5582e37208327de5e4a129b538c01db96b8b163f",
- "block_index": 334697,
- "block_time": 1418823249
+ "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7",
+ "block_index": 155,
+ "block_time": 1726509741
}
],
- "next_cursor": 847023,
- "result_count": 101
+ "next_cursor": 346,
+ "result_count": 7
}
```
@@ -1501,27 +1409,27 @@ Here is a list of events classified by theme and for each an example response:
{
"result": [
{
- "event_index": 21378,
+ "event_index": 70,
"event": "BURN",
"params": {
- "block_index": 283810,
- "burned": 10000000,
- "earned": 10000000000,
- "source": "1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W",
+ "block_index": 121,
+ "burned": 50000000,
+ "earned": 74999996667,
+ "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da",
"status": "valid",
- "tx_hash": "4560d0e3d04927108b615ab106040489aca9c4aceedcf69d2b71f63b3139c7ae",
- "tx_index": 3070,
- "block_time": 1391371108,
- "burned_normalized": "0.10000000",
- "earned_normalized": "100.00000000"
+ "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0",
+ "tx_index": 9,
+ "block_time": 1726509573,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99997000"
},
- "tx_hash": "4560d0e3d04927108b615ab106040489aca9c4aceedcf69d2b71f63b3139c7ae",
- "block_index": 283810,
- "block_time": 1391371108
+ "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0",
+ "block_index": 121,
+ "block_time": 1726509573
}
],
- "next_cursor": 21373,
- "result_count": 2576
+ "next_cursor": 65,
+ "result_count": 10
}
```
@@ -1539,7 +1447,7 @@ Returns server information and the list of documented routes in JSON format.
"result": {
"server_ready": true,
"network": "mainnet",
- "version": "10.3.2",
+ "version": "10.4.0",
"backend_height": 850214,
"counterparty_height": 850214,
"documentation": "https://counterpartycore.docs.apiary.io/",
@@ -1556,9 +1464,9 @@ Returns server information and the list of documented routes in JSON format.
Returns the list of the last ten blocks
+ Parameters
- + cursor: `840000` (int, optional) - The index of the most recent block to return
+ + cursor: `193` (str, optional) - The index of the most recent block to return
+ Default: `None`
- + limit: `2` (int, optional) - The number of blocks to return
+ + limit: `5` (int, optional) - The number of blocks to return
+ Default: `10`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -1573,30 +1481,68 @@ Returns the list of the last ten blocks
{
"result": [
{
- "block_index": 840000,
- "block_hash": "0000000000000000000320283a032748cef8227873ff4872689bf23f1cda83a5",
- "block_time": 1713571767,
- "previous_block_hash": "0000000000000000000172014ba58d66455762add0512355ad651207918494ab",
- "difficulty": 386089497,
- "ledger_hash": "b91dd54cfbd3aff07b358a038bf6174ddc06f36bd00cdccf048e8281bcd56224",
- "txlist_hash": "b641c3e190b9941fcd5c84a7c07e66c03559ef26dcea892e2db1cf1d8392a4f2",
- "messages_hash": "b78474359d6a78ba55f6706a5154032bef9b17ae5cf5b45bc8f23d25e90fc3aa",
- "transaction_count": 0
- },
- {
- "block_index": 839999,
- "block_hash": "0000000000000000000172014ba58d66455762add0512355ad651207918494ab",
- "block_time": 1713571533,
- "previous_block_hash": "00000000000000000001dcce6ce7c8a45872cafd1fb04732b447a14a91832591",
- "difficulty": 386089497,
- "ledger_hash": "e2b2e23c2ac1060dafe2395da01fe5907f323b5a644816f45f003411c612ac30",
- "txlist_hash": "f33f800ef166e6ef5b3df15a0733f9fd3ebb0b799f39ef1951e6709118b7c0fd",
- "messages_hash": "c9a39bd697aa1392f878bbc52ee35348ce355c182af257872bf94770384cad59",
- "transaction_count": 0
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "difficulty": 545259519,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 192,
+ "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "block_time": 1726509908,
+ "previous_block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "difficulty": 545259519,
+ "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e",
+ "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea",
+ "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 191,
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_time": 1726509903,
+ "previous_block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "difficulty": 545259519,
+ "ledger_hash": "20f305d9381284d270d7c1d22ba897f66d072d2f1df42dfeeffdf903e9627921",
+ "txlist_hash": "57455bb363a21c6f49fa641f5bedf87e9eedc785270ddc90711b98f54eb0f113",
+ "messages_hash": "2f8a089ba7d158feab1cd9daea1fc5a85d43e2de099feb80f384f9fafe9efbb5",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 190,
+ "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "block_time": 1726509899,
+ "previous_block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "difficulty": 545259519,
+ "ledger_hash": "5dac3b61245453c5448b8e8ef6eaf53e9ca0a371d3b6524ca97ef99e40551036",
+ "txlist_hash": "5caba1ce46d6c7e9d5a7cb1c794b331dd473323683be48d62b3e03fef3a9cb75",
+ "messages_hash": "a3d30ea5b4343aac41752e3cbe083b2f9a5070adb3e28d3cf3b586d60b13f937",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 189,
+ "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "block_time": 1726509894,
+ "previous_block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780",
+ "difficulty": 545259519,
+ "ledger_hash": "3f97c50ca5edc66440c05c58badb6d8f26237669ef20c001a05e476404900c94",
+ "txlist_hash": "ed6472060345e91ae8e05a0f6d7a9a0e657098f47eae73e2e644fc7e455e67d3",
+ "messages_hash": "9f629d60ea05b595361922207a4b99e144e342dcc0cef5755d71e920ec551ba7",
+ "transaction_count": 1,
+ "confirmed": true
}
],
- "next_cursor": 839998,
- "result_count": 574024
+ "next_cursor": 188,
+ "result_count": 93
}
```
@@ -1615,7 +1561,7 @@ Return the information of the last block
Return the information of a block
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
+ + block_index: `193` (int, required) - The index of the block to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -1626,15 +1572,16 @@ Return the information of a block
```
{
"result": {
- "block_index": 840464,
- "block_hash": "00000000000000000001093d4d6b21b80800fff6e5ea15cce6d65066f482cce9",
- "block_time": 1713852783,
- "previous_block_hash": "00000000000000000002db1e5aa19784eec3de949f98ec757e7a7f2fc392079d",
- "difficulty": 386089497,
- "ledger_hash": "b3f8cbb50b0705a5c4a8495f8b5128de13a32daebd8ac5e8316a010f0d203584",
- "txlist_hash": "84bdc5b9073f775a2b65de7da2b10b89a2235f3501883b0a836e41e68cd00d46",
- "messages_hash": "feec71dcf40367eeb0e3371aee4caf4e7406bcdf2e88f574710957e32d0fcfab",
- "transaction_count": 1
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "difficulty": 545259519,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "confirmed": true
}
}
```
@@ -1644,7 +1591,7 @@ Return the information of a block
Return the information of a block
+ Parameters
- + block_hash: `0000000000000000000073b0a277154cbc420e04fd8c699ae188d8d4421418ad` (str, required) - The index of the block to return
+ + block_hash: `0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58` (str, required) - The index of the block to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -1655,15 +1602,16 @@ Return the information of a block
```
{
"result": {
- "block_index": 844401,
- "block_hash": "0000000000000000000073b0a277154cbc420e04fd8c699ae188d8d4421418ad",
- "block_time": 1716270324,
- "previous_block_hash": "00000000000000000000108f5c32f545b2a1727e3a5f4b216d195a0e5150ebd5",
- "difficulty": 386097818,
- "ledger_hash": "f15379c7451713abb91776214fbdcee0218fa6043a9b7754f18671a2957e1bc8",
- "txlist_hash": "232407297ace6ecd2d133e84462e8126c4fb32edf98851188416f3fc2519aee7",
- "messages_hash": "11704b592c6c19194ca39f1124b83ac378c68c25217300cb5f53d5aa2f534797",
- "transaction_count": 0
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "difficulty": 545259519,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "confirmed": true
}
}
```
@@ -1673,8 +1621,8 @@ Return the information of a block
Returns the transactions of a block
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
- + cursor: `10665092` (int, optional) - The last transaction index to return
+ + block_index: `193` (int, required) - The index of the block to return
+ + cursor: `59` (str, optional) - The last transaction index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of transactions to return
+ Default: `10`
@@ -1691,35 +1639,34 @@ Returns the transactions of a block
{
"result": [
{
- "tx_index": 2726605,
- "tx_hash": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5",
- "block_index": 840464,
- "block_hash": "00000000000000000001093d4d6b21b80800fff6e5ea15cce6d65066f482cce9",
- "block_time": 1713852783,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"destination": null,
"btc_amount": 0,
- "fee": 56565,
- "data": "16010b9142801429a60000000000000001000000554e4e45474f544941424c45205745204d555354204245434f4d4520554e4e45474f544941424c4520574520415245",
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
"supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 22,
+ "message_type": "destroy",
+ "message_type_id": 110,
"message_data": {
- "asset_id": 75313533584419238,
- "asset": "UNNEGOTIABLE",
- "subasset_longname": null,
+ "asset": "XCP",
"quantity": 1,
- "divisible": false,
- "lock": false,
- "reset": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "UNNEGOTIABLE WE MUST BECOME UNNEGOTIABLE WE ARE",
- "status": "valid",
- "quantity_normalized": "1"
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
}
},
"btc_amount_normalized": "0.00000000"
@@ -1735,10 +1682,10 @@ Returns the transactions of a block
Returns the events of a block
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
+ + block_index: `192` (int, required) - The index of the block to return
+ event_name (str, optional) - Comma separated list of events to return
+ Default: `None`
- + cursor: `10665092` (int, optional) - The last event index to return
+ + cursor: `535` (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -1753,9 +1700,101 @@ Returns the events of a block
```
{
- "result": [],
- "next_cursor": null,
- "result_count": 8
+ "result": [
+ {
+ "event_index": 529,
+ "event": "BLOCK_PARSED",
+ "params": {
+ "block_index": 192,
+ "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e",
+ "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6",
+ "transaction_count": 1,
+ "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea",
+ "block_time": 1726509908
+ },
+ "tx_hash": null
+ },
+ {
+ "event_index": 528,
+ "event": "TRANSACTION_PARSED",
+ "params": {
+ "supported": true,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 527,
+ "event": "SWEEP",
+ "params": {
+ "block_index": 192,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fee_paid": 600000,
+ "flags": 1,
+ "memo": "sweep my assets",
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "status": "valid",
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 525,
+ "event": "DEBIT",
+ "params": {
+ "action": "sweep",
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 192,
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ }
+ ],
+ "next_cursor": 524,
+ "result_count": 12
}
```
@@ -1764,7 +1803,7 @@ Returns the events of a block
Returns the event counts of a block
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
+ + block_index: `193` (int, required) - The index of the block to return
+ cursor (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
@@ -1798,12 +1837,12 @@ Returns the event counts of a block
"event_count": 1
},
{
- "event": "CREDIT",
+ "event": "BLOCK_PARSED",
"event_count": 1
}
],
- "next_cursor": "BLOCK_PARSED",
- "result_count": 8
+ "next_cursor": "ASSET_DESTRUCTION",
+ "result_count": 6
}
```
@@ -1812,9 +1851,9 @@ Returns the event counts of a block
Returns the events of a block filtered by event
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
+ + block_index: `192` (int, required) - The index of the block to return
+ event: `CREDIT` (str, required) - The event to filter by
- + cursor (int, optional) - The last event index to return
+ + cursor (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -1831,31 +1870,83 @@ Returns the events of a block filtered by event
{
"result": [
{
- "event_index": 17489369,
+ "event_index": 526,
"event": "CREDIT",
"params": {
- "address": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "asset": "UNNEGOTIABLE",
- "block_index": 840464,
- "calling_function": "issuance",
- "event": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5",
- "quantity": 1,
- "tx_index": 2726605,
- "block_time": 1713852783,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
"asset_info": {
"asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 522,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 500000000,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "1"
+ "quantity_normalized": "5.00000000"
},
- "tx_hash": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5"
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 3
}
```
@@ -1864,10 +1955,11 @@ Returns the events of a block filtered by event
Returns the credits of a block
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
+ + block_index: `192` (int, required) - The index of the block to return
+ action (enum[str], optional) - The action to filter by
+ Default: `None`
+ Members
+ + `None`
+ `Closed: Max dispenses reached`
+ `bet settled: for equal`
+ `bet settled: for notequal`
@@ -1895,7 +1987,7 @@ Returns the credits of a block
+ `send`
+ `sweep`
+ `wins`
- + cursor (int, optional) - The last credit index to return
+ + cursor (str, optional) - The last credit index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of credits to return
+ Default: `100`
@@ -1912,26 +2004,71 @@ Returns the credits of a block
{
"result": [
{
- "block_index": 840464,
- "address": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "asset": "UNNEGOTIABLE",
- "quantity": 1,
- "calling_function": "issuance",
- "event": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5",
- "tx_index": 2726605,
- "block_time": 1713852783,
+ "block_index": 192,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 74499387833,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ {
+ "block_index": 192,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
"asset_info": {
"asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "block_index": 192,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 3
}
```
@@ -1940,10 +2077,11 @@ Returns the credits of a block
Returns the debits of a block
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
+ + block_index: `193` (int, required) - The index of the block to return
+ action (enum[str], optional) - The action to filter by
+ Default: `None`
+ Members
+ + `None`
+ `bet`
+ `destroy`
+ `dividend`
@@ -1960,7 +2098,7 @@ Returns the debits of a block
+ `send`
+ `sweep`
+ `sweep fee`
- + cursor (int, optional) - The last index of the debits to return
+ + cursor (str, optional) - The last index of the debits to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of debits to return
+ Default: `100`
@@ -1977,14 +2115,17 @@ Returns the debits of a block
{
"result": [
{
- "block_index": 840464,
- "address": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "block_index": 193,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"asset": "XCP",
- "quantity": 50000000,
- "action": "issuance fee",
- "event": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5",
- "tx_index": 2726605,
- "block_time": 1713852783,
+ "quantity": 1,
+ "action": "destroy",
+ "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509912,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -1992,7 +2133,7 @@ Returns the debits of a block
"locked": true,
"issuer": null
},
- "quantity_normalized": "0.50000000"
+ "quantity_normalized": "0.00000001"
}
],
"next_cursor": null,
@@ -2005,7 +2146,7 @@ Returns the debits of a block
Returns the expirations of a block
+ Parameters
- + block_index: `840356` (int, required) - The index of the block to return
+ + block_index: `182` (int, required) - The index of the block to return
+ cursor (str, optional) - The last index of the expirations to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of expirations to return
@@ -2024,19 +2165,28 @@ Returns the expirations of a block
"result": [
{
"type": "order",
- "object_id": "b048661afeee3f266792481168024abc0d7648fe0e019e4a1e0fd9867c2c0ffc",
- "block_index": 840356,
- "block_time": 1713797719
+ "object_id": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "block_index": 182,
+ "confirmed": true,
+ "block_time": 1726509796
},
{
"type": "order",
- "object_id": "533d5c0ecd8ca9c2946d3298cc5e570eee55b62b887dd85c95de6de4fdc7f441",
- "block_index": 840356,
- "block_time": 1713797719
+ "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "block_index": 182,
+ "confirmed": true,
+ "block_time": 1726509796
+ },
+ {
+ "type": "order_match",
+ "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "block_index": 182,
+ "confirmed": true,
+ "block_time": 1726509796
}
],
"next_cursor": null,
- "result_count": 2
+ "result_count": 3
}
```
@@ -2045,8 +2195,8 @@ Returns the expirations of a block
Returns the cancels of a block
+ Parameters
- + block_index: `839746` (int, required) - The index of the block to return
- + cursor (int, optional) - The last index of the cancels to return
+ + block_index: `190` (int, required) - The index of the block to return
+ + cursor (str, optional) - The last index of the cancels to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of cancels to return
+ Default: `100`
@@ -2063,26 +2213,18 @@ Returns the cancels of a block
{
"result": [
{
- "tx_index": 2725739,
- "tx_hash": "2071e8a6fbc0c443b152d513c754356f8f962db2fa694de8c6826b57413cc190",
- "block_index": 839746,
- "source": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "offer_hash": "b1622dbe4f0ce740cb6c18f6f136876bc4949c40a62bc8cceefa81fd6679a57f",
- "status": "valid",
- "block_time": 1713429399
- },
- {
- "tx_index": 2725738,
- "tx_hash": "793af9129c7368f974c3ea0c87ad38131f0d82d19fbaf1adf8aaf2e657ec42b8",
- "block_index": 839746,
- "source": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "offer_hash": "04b258ac37f73e3b9a8575110320d67c752e1baace0f516da75845f388911735",
+ "tx_index": 56,
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
"status": "valid",
- "block_time": 1713429399
+ "confirmed": true,
+ "block_time": 1726509899
}
],
"next_cursor": null,
- "result_count": 2
+ "result_count": 1
}
```
@@ -2091,8 +2233,8 @@ Returns the cancels of a block
Returns the destructions of a block
+ Parameters
- + block_index: `839988` (int, required) - The index of the block to return
- + cursor (int, optional) - The last index of the destructions to return
+ + block_index: `193` (int, required) - The index of the block to return
+ + cursor (str, optional) - The last index of the destructions to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of destructions to return
+ Default: `100`
@@ -2109,23 +2251,24 @@ Returns the destructions of a block
{
"result": [
{
- "tx_index": 2726496,
- "tx_hash": "f5609facc8dac6cdf70b15c514ea15a9acc24a9bd86dcac2b845d5740fbcc50b",
- "block_index": 839988,
- "source": "1FpLAtreZjTVCMcj1pq1AHWuqcs3n7obMm",
- "asset": "COBBEE",
- "quantity": 50000,
- "tag": "",
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
"status": "valid",
- "block_time": 1713564405,
+ "confirmed": true,
+ "block_time": 1726509912,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/m4dl0x/COBBE.json",
- "issuer": "1P3KQWLsTPXVWimiF2Q6WSES5vbJE8be5i",
- "divisible": false,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "50000"
+ "quantity_normalized": "0.00000001"
}
],
"next_cursor": null,
@@ -2138,8 +2281,8 @@ Returns the destructions of a block
Returns the issuances of a block
+ Parameters
- + block_index: `840464` (int, required) - The index of the block to return
- + cursor (int, optional) - The last index of the issuances to return
+ + block_index: `159` (int, required) - The index of the block to return
+ + cursor (str, optional) - The last index of the issuances to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of issuances to return
+ Default: `100`
@@ -2156,28 +2299,32 @@ Returns the issuances of a block
{
"result": [
{
- "tx_index": 2726605,
- "tx_hash": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5",
+ "tx_index": 46,
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
"msg_index": 0,
- "block_index": 840464,
- "asset": "UNNEGOTIABLE",
- "quantity": 1,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "block_index": 159,
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "UNNEGOTIABLE WE MUST BECOME UNNEGOTIABLE WE ARE",
- "fee_paid": 50000000,
+ "description": "A subnumeric asset",
+ "fee_paid": 0,
"status": "valid",
- "asset_longname": null,
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
"locked": false,
"reset": false,
- "block_time": 1713852783,
- "quantity_normalized": "1",
- "fee_paid_normalized": "0.50000000"
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509780,
+ "quantity_normalized": "1000.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
@@ -2190,8 +2337,8 @@ Returns the issuances of a block
Returns the sends, include Enhanced and MPMA sends, of a block
+ Parameters
- + block_index: `840459` (int, required) - The index of the block to return
- + cursor (int, optional) - The last index of the debits to return
+ + block_index: `188` (int, required) - The index of the block to return
+ + cursor (str, optional) - The last index of the debits to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of debits to return
+ Default: `100`
@@ -2208,29 +2355,80 @@ Returns the sends, include Enhanced and MPMA sends, of a block
{
"result": [
{
- "tx_index": 2726604,
- "tx_hash": "b4bbb14c99dd260eb634243e5c595e1b7213459979857a32850de84989bb71ec",
- "block_index": 840459,
- "source": "13Hnmhs5gy2yXKVBx4wSM5HCBdKnaSBZJH",
- "destination": "1LfT83WAxbN9qKhtrXxcQA6xgdhfZk21Hz",
- "asset": "GAMESOFTRUMP",
- "quantity": 1,
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 2,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
"status": "valid",
"msg_index": 0,
"memo": null,
- "block_time": 1713849616,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
"asset_longname": null,
- "description": "",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 3
}
```
@@ -2239,8 +2437,8 @@ Returns the sends, include Enhanced and MPMA sends, of a block
Returns the dispenses of a block
+ Parameters
- + block_index: `840322` (int, required) - The index of the block to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + block_index: `146` (int, required) - The index of the block to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -2257,53 +2455,53 @@ Returns the dispenses of a block
{
"result": [
{
- "tx_index": 2726580,
+ "tx_index": 33,
"dispense_index": 0,
- "tx_hash": "e7f0f2c9bef7a492b714a5952ec61b283be344419c5bc33f405f9af41ebfa48b",
- "block_index": 840322,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj",
- "asset": "FLOCK",
- "dispense_quantity": 90000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 2994590,
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
+ "asset": "XCP",
+ "dispense_quantity": 666,
+ "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "btc_amount": 10000,
"confirmed": true,
"dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
+ "tx_index": 32,
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 0,
- "give_remaining": 140000000000,
- "oracle_address": null,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 2,
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "dispense_count": 1,
"last_status_tx_source": null,
"close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1713778817,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
+ },
+ "block_time": 1726509701,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "900.00000000",
- "btc_amount_normalized": "0.02994590"
+ "dispense_quantity_normalized": "0.00000666",
+ "btc_amount_normalized": "0.00010000"
}
],
"next_cursor": null,
@@ -2316,8 +2514,8 @@ Returns the dispenses of a block
Returns the sweeps of a block
+ Parameters
- + block_index: `836519` (int, required) - The index of the block to return
- + cursor (int, optional) - The last index of the sweeps to return
+ + block_index: `192` (int, required) - The index of the block to return
+ + cursor (str, optional) - The last index of the sweeps to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of sweeps to return
+ Default: `100`
@@ -2334,42 +2532,29 @@ Returns the sweeps of a block
{
"result": [
{
- "tx_index": 2720537,
- "tx_hash": "d8db6281abffdbf6c320d5ade06aeb6fad2f7bfa1a2c2243c6726020a27107d3",
- "block_index": 836519,
- "source": "18szqTVJUWwYrtRHq98Wn4DhCGGiy3jZ87",
- "destination": "1HC2q92SfH1ZHzS4CrDwp6KAipV4FqUL4T",
- "flags": 3,
- "status": "valid",
- "memo": null,
- "fee_paid": 1400000,
- "block_time": 1711548175,
- "fee_paid_normalized": "0.01400000"
- },
- {
- "tx_index": 2720536,
- "tx_hash": "9309a4c0aed426e281a52e5d48acadd1464999269a5e75cf2293edd0277d743d",
- "block_index": 836519,
- "source": "1DMVnJuqBobXA9xYioabBsR4mN8bvVtCAW",
- "destination": "1HC2q92SfH1ZHzS4CrDwp6KAipV4FqUL4T",
- "flags": 3,
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
"status": "valid",
- "memo": null,
- "fee_paid": 1400000,
- "block_time": 1711548175,
- "fee_paid_normalized": "0.01400000"
+ "memo": "sweep my assets",
+ "fee_paid": 600000,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
}
],
"next_cursor": null,
- "result_count": 2
+ "result_count": 1
}
```
## Group Transactions
-There are 14 types of transactions:
+There are 12 types of transactions:
-- `bet`
- `broadcast`
- `btcpay`
- `cancel`
@@ -2379,74 +2564,38 @@ There are 14 types of transactions:
- `dividend`
- `issuance`
- `order`
-- `send`
- `enhanced_send`
- `mpma_send`
- `sweep`
Here is sample API output for each of these transactions:
-**Bet**
-
-```
-{
- "result": {
- "tx_index": 957135,
- "tx_hash": "6f2deeab17f2559edcdd952e8d942ac7adf2679df382bfdbf2a554beb32729cf",
- "block_index": 471011,
- "block_hash": "000000000000000000414e0e6d1b730eafadcc10fe7f537669e93ae623a81b61",
- "block_time": 1497305046,
- "source": "1AuspQ6wRmryPQ3SuPoy4LaVJSRdafF1Wj",
- "destination": "1A9kQfFmz5UvVmhqSZgRcsfFT1HVE2MYNX",
- "btc_amount": 5470,
- "fee": 20000,
- "data": "00000028000200073168000000000bebc20000000000a6e49bff401c000000000000000013b000000235",
- "supported": true,
- "confirmed": true,
- "unpacked_data": {
- "message_type": "bet",
- "message_type_id": 40,
- "message_data": {
- "bet_type": 2,
- "deadline": 471400,
- "wager_quantity": 200000000,
- "counterwager_quantity": 2799999999,
- "target_value": 7.0,
- "leverage": 5040,
- "expiration": 565,
- "status": "open"
- }
- },
- "btc_amount_normalized": "0.00005470"
- }
-}
-```
-
**Broadcast**
```
{
"result": {
- "tx_index": 2738294,
- "tx_hash": "ac53a9c1a209b3d697ba818d5dce34b83622e44c64d7127187472604d845d33a",
- "block_index": 850011,
- "block_hash": "000000000000000000017912ccf5b59ef92442857dbcea7ddb8b6a0a42e0b524",
- "block_time": 1719693241,
- "source": "1D5bx2MFe5toDDvzrZdYsUVoEgZNkSfJqX",
+ "tx_index": 25,
+ "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a",
+ "block_index": 138,
+ "block_hash": "453294ea1f1df8257210f9e7a253332b3347be306ceef8957771aff657052d9f",
+ "block_time": 1726509656,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"destination": null,
"btc_amount": 0,
- "fee": 4240,
- "data": "1e66806f740000000000000000000000001062743a4d494e547c307c4761737c3630",
+ "fee": 10000,
+ "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344",
"supported": true,
+ "utxos_info": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a:1",
"confirmed": true,
"unpacked_data": {
"message_type": "broadcast",
"message_type_id": 30,
"message_data": {
- "timestamp": 1719693172,
- "value": 0.0,
+ "timestamp": 4003903983,
+ "value": 66600.0,
"fee_fraction_int": 0,
- "text": "bt:MINT|0|Gas|60",
+ "text": "price-USD",
"status": "valid",
"fee_fraction_int_normalized": "0.00000000"
}
@@ -2461,29 +2610,30 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2736361,
- "tx_hash": "907ce0bf1cc9c24297900478cd387922817373acd208d1b8fd0aa91c0bf198b6",
- "block_index": 847877,
- "block_hash": "000000000000000000034979023781bbc63e5d3af9902e4b9a9b3876132ee400",
- "block_time": 1718355576,
- "source": "bc1qsteve3tfxfg9pcmvzw645sr9zy7es5rx645p6l",
- "destination": "1JsPoV5USoFM7441KtGXtvMH5ezNwq9Uak",
- "btc_amount": 9120000,
- "fee": 7092,
- "data": "0b5cb3043e99f063f12b57d0a50884d662d165448aa67527d7cb1df46fe1487d8ad0f296cab5cc8ad4d2bc425f080c22a7d19991499ecb3294a0d8d642b0ef47fc",
+ "tx_index": 51,
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "block_index": 185,
+ "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6",
+ "block_time": 1726509867,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "btc_amount": 2000,
+ "fee": 10000,
+ "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
"supported": true,
+ "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0",
"confirmed": true,
"unpacked_data": {
"message_type": "btcpay",
"message_type_id": 11,
"message_data": {
- "tx0_hash": "5cb3043e99f063f12b57d0a50884d662d165448aa67527d7cb1df46fe1487d8a",
- "tx1_hash": "d0f296cab5cc8ad4d2bc425f080c22a7d19991499ecb3294a0d8d642b0ef47fc",
- "order_match_id": "5cb3043e99f063f12b57d0a50884d662d165448aa67527d7cb1df46fe1487d8a_d0f296cab5cc8ad4d2bc425f080c22a7d19991499ecb3294a0d8d642b0ef47fc",
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
"status": "valid"
}
},
- "btc_amount_normalized": "0.09120000"
+ "btc_amount_normalized": "0.00002000"
}
}
```
@@ -2493,23 +2643,24 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738503,
- "tx_hash": "849ef3d0e16e5ebed4fd9a993dec006c30f9dc29e3cb4ae7e1250b3c1181b946",
- "block_index": 850222,
- "block_hash": "00000000000000000001c10dd16cfe47cc1855e67f6fd959b3d39fba0c32d114",
- "block_time": 1719831390,
- "source": "bc1q4x2r7eau6vpnr4dya3keqt97qduf5xuh5kakx2",
+ "tx_index": 56,
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "block_time": 1726509899,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 2200,
- "data": "4672da46818180380665d18dea685ad1ba0ca7963fa8ea7e815e3ae5447ce5d288",
+ "fee": 10000,
+ "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
"supported": true,
+ "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1",
"confirmed": true,
"unpacked_data": {
"message_type": "cancel",
"message_type_id": 70,
"message_data": {
- "offer_hash": "72da46818180380665d18dea685ad1ba0ca7963fa8ea7e815e3ae5447ce5d288",
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
"status": "valid"
}
},
@@ -2523,33 +2674,34 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738497,
- "tx_hash": "379d40c067f8ecfbbdc59e030a383d746b7f94e8a1a7e2cd8f66cd2bd3523d4b",
- "block_index": 850219,
- "block_hash": "00000000000000000000e1f253086abcdea99ff90dd42e90b45d3e469dac35b2",
- "block_time": 1719830372,
- "source": "1GkD5tN9L81uYs9bkdbGSzccXnNpXLUPsn",
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"destination": null,
"btc_amount": 0,
- "fee": 2497,
- "data": "6e20b233cf961188a60000000000000001",
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
"supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
"confirmed": true,
"unpacked_data": {
"message_type": "destroy",
"message_type_id": 110,
"message_data": {
- "asset": "A2356002521737169062",
+ "asset": "XCP",
"quantity": 1,
- "tag": "",
+ "tag": "64657374726f79",
"asset_info": {
- "asset_longname": "FAKECATTELAN.REDEEM",
- "description": "",
- "issuer": "1AXJ8G5KwoTbtxbGHQQUp9dFwKP2RHPRwh",
- "divisible": false,
- "locked": false
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000001"
}
},
"btc_amount_normalized": "0.00000000"
@@ -2562,39 +2714,40 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738502,
- "tx_hash": "7f7c862b7cee2fcd9f87006a93ec71c80fe61175dfd634c6241f6f04d4007b8d",
- "block_index": 850221,
- "block_hash": "00000000000000000000e1b31f01483f50e297a5b8ffe8cd53aa4b16c80d54fd",
- "block_time": 1719830596,
- "source": "1DX4C1VxK2xKQSm3XPBcNHajXoEocL1TFa",
+ "tx_index": 32,
+ "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "block_index": 145,
+ "block_hash": "08bdc1edfb36f1d85bc67defec2acfd268f4883895a7c3d6fe6817a5438a4f25",
+ "block_time": 1726509697,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"destination": null,
"btc_amount": 0,
- "fee": 2000,
- "data": "0c54ef9bde73de17f60000000000000001000000000000000100000000000186a00180f82043b8e1916c864a013aa3c529281653473062",
+ "fee": 10000,
+ "data": "0c00000000000000010000000000000001000000000000271000000000000000010080feeb565d4498d6075cf256c2b70c424b5f5c0a04",
"supported": true,
+ "utxos_info": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d:1",
"confirmed": true,
"unpacked_data": {
"message_type": "dispenser",
"message_type_id": 12,
"message_data": {
- "asset": "A6120281798348773366",
+ "asset": "XCP",
"give_quantity": 1,
- "escrow_quantity": 1,
- "mainchainrate": 100000,
- "dispenser_status": 1,
- "action_address": "bc1qlqsy8w8pj9kgvjsp823u22fgzef5wvrzagtacf",
- "oracle_address": null,
+ "escrow_quantity": 10000,
+ "mainchainrate": 1,
+ "dispenser_status": 0,
+ "action_address": null,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"status": "valid",
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "STAMP:iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAG1BMVEX/3Llp8K7xwjL/2Wb//wD3smv2Kyv///8AAAAkF/boAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAaklEQVR4nL3QUQ7AIAgD0KqAu/+JF0RJQPa7fvrSGkX7CP6DMfrQtAR6lgQHeo+Ccw4gCPYNcBg3hAoc5jNNMjCzdYopWyuAlwSYp5FhNUSkBNFcoPNr6WqY6I8V7+BewS5kIAJAF5DH4QWxwQNpBkRxPAAAAABJRU5ErkJggg==",
- "issuer": "15WzA2u8yBsMnhAVnGLmuSYHqB2vivD6jK",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "1",
- "escrow_quantity_normalized": "1"
+ "give_quantity_normalized": "0.00000001",
+ "escrow_quantity_normalized": "0.00010000"
}
},
"btc_amount_normalized": "0.00000000"
@@ -2607,24 +2760,27 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738489,
- "tx_hash": "0fbe9c14868ba246ad4ca57cf198e567e7febbbac163b1f94f11c222734ac697",
- "block_index": 850214,
- "block_hash": "00000000000000000001871ce6a6452bb27a3463af09470d9a9ee1d8ef9069e9",
- "block_time": 1719826076,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "destination": "1L7aoyA1ZJ75ZW6bLfzpxySfxA1hWZdxEK",
- "btc_amount": 80000,
+ "tx_index": 33,
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "block_hash": "4de0e42039680e9c42b597fd03acd28e9a5efe8146eeb01f3fdc17e0544a27e8",
+ "block_time": 1726509701,
+ "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
+ "destination": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "btc_amount": 10000,
"fee": 0,
"data": "0d00",
"supported": true,
+ "utxos_info": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535:0",
"confirmed": true,
"unpacked_data": {
"message_type": "dispense",
"message_type_id": 13,
- "message_data": {}
+ "message_data": {
+ "data": "00"
+ }
},
- "btc_amount_normalized": "0.00080000"
+ "btc_amount_normalized": "0.00010000"
}
}
```
@@ -2634,41 +2790,42 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738123,
- "tx_hash": "24d1085df0c76f1360a0d9673cd526bc7ab1da0d3c35b76089376be45bd9ba79",
- "block_index": 849884,
- "block_hash": "0000000000000000000147eba3ff17ccc705b72d1d4b35d04728ecec44c64461",
- "block_time": 1719621970,
- "source": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
+ "tx_index": 40,
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "block_index": 153,
+ "block_hash": "7e887e2e71767fce9ed7d481be87683d41eaed909607ad9a84d0cdaf822fd36f",
+ "block_time": 1726509732,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 3760,
- "data": "3200000000000000010000200383b7de32000002da470a5f44",
+ "fee": 10000,
+ "data": "320000000005f5e100000000182b37176e0000000000000001",
"supported": true,
+ "utxos_info": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00:1",
"confirmed": true,
"unpacked_data": {
"message_type": "dividend",
"message_type_id": 50,
"message_data": {
- "asset": "GMONEYPEPE",
- "quantity_per_unit": 1,
- "dividend_asset": "PANICINDC",
+ "asset": "MYASSETA",
+ "quantity_per_unit": 100000000,
+ "dividend_asset": "XCP",
"status": "valid",
"asset_info": {
"asset_longname": null,
- "description": "xcp.coindaddy.io/GMONEYPEPE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
"dividend_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/o7qpwv/PANIC.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_per_unit_normalized": "1"
+ "quantity_per_unit_normalized": "1.00000000"
}
},
"btc_amount_normalized": "0.00000000"
@@ -2681,35 +2838,36 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738473,
- "tx_hash": "6317d1aaad7475da9b371009a2294f89865f399cc5b7757767ca439c2e5c5d34",
- "block_index": 850188,
- "block_hash": "00000000000000000001b6d27a8e395696a9228642f5453b4ccab62f86114900",
- "block_time": 1719806248,
- "source": "1L7aoyA1ZJ75ZW6bLfzpxySfxA1hWZdxEK",
+ "tx_index": 46,
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "block_index": 159,
+ "block_hash": "6ba4729ba0f996337647b47d49e898b2ef75467f46f5f7e51e78ee5eb306574f",
+ "block_time": 1726509780,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 3000,
- "data": "16000000000bddfb6f0000000000000000000100c04e554c4c",
+ "fee": 10000,
+ "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574",
"supported": true,
+ "utxos_info": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491:1",
"confirmed": true,
"unpacked_data": {
"message_type": "issuance",
- "message_type_id": 22,
+ "message_type_id": 23,
"message_data": {
- "asset_id": 199097199,
- "asset": "QTRUMP",
- "subasset_longname": null,
- "quantity": 0,
- "divisible": false,
- "lock": true,
+ "asset_id": 95428956980101314,
+ "asset": "A95428956980101314",
+ "subasset_longname": "A95428959745315388.SUBNUMERIC",
+ "quantity": 100000000000,
+ "divisible": true,
+ "lock": false,
"reset": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "https://easyasset.art/j/lpv7ts/QTRUM.json",
+ "description": "A subnumeric asset",
"status": "valid",
- "quantity_normalized": "0"
+ "quantity_normalized": "1000.00000000"
}
},
"btc_amount_normalized": "0.00000000"
@@ -2722,45 +2880,46 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738470,
- "tx_hash": "9fb644511d310b97d674d5698a8ae5723321d7862340edf7bb44af10c6a698dc",
- "block_index": 850181,
- "block_hash": "00000000000000000000a598e3869af01ef154d1b2e032166c050e08eb79912b",
- "block_time": 1719801301,
- "source": "1CcMMYuzcquFRaKQdGf4dJiVXQaK9Q7VUS",
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_time": 1726509903,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 2578,
- "data": "0a001c2d4c30eb537200000000000000150000001c61620c4b0000016eb550c6001f800000000000000000",
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
"supported": true,
+ "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
"confirmed": true,
"unpacked_data": {
"message_type": "order",
"message_type_id": 10,
"message_data": {
- "give_asset": "CEETHREEPEPE",
- "give_quantity": 21,
- "get_asset": "PEPECASH",
- "get_quantity": 1575000000000,
- "expiration": 8064,
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
"fee_required": 0,
"status": "open",
"give_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "All the derps",
- "issuer": "175SqKu9i3N7iPmXLisUAHEsXAKQnaF5cb",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"get_asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "give_quantity_normalized": "21",
- "get_quantity_normalized": "15750.00000000",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
"fee_required_normalized": "0.00000000"
}
},
@@ -2769,77 +2928,40 @@ Here is sample API output for each of these transactions:
}
```
-**Send**
-
-```
-{
- "result": {
- "tx_index": 1998453,
- "tx_hash": "4f9e6c847d414599adee5ea7ac46ddb337088da3669b7b4d0ebdd4979184b541",
- "block_index": 732164,
- "block_hash": "00000000000000000003d36e3bb282c3a853e8c7d161f4e2532a15a8492a63f0",
- "block_time": 1650140576,
- "source": "1JcJkDKdBsuqs5kxQc2BPzxwmdY5WtsoPT",
- "destination": "1GvgPBLRhH1v6sBZK4mmoJ6Gi42STTmw68",
- "btc_amount": 5470,
- "fee": 34530,
- "data": "00000000000003bd11d79ed60000000005f5e100",
- "supported": true,
- "confirmed": true,
- "unpacked_data": {
- "message_type": "send",
- "message_type_id": 0,
- "message_data": {
- "asset": "TRUMPRARE",
- "quantity": 100000000,
- "asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/rt.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "100000000"
- }
- },
- "btc_amount_normalized": "0.00005470"
- }
-}
-```
-
**Enhanced_send**
```
{
"result": {
- "tx_index": 2738498,
- "tx_hash": "278636eefa95ab79a2a529c72e15844b54c34882b316434244cabc69bbc1fa72",
- "block_index": 850219,
- "block_hash": "00000000000000000000e1f253086abcdea99ff90dd42e90b45d3e469dac35b2",
- "block_time": 1719830372,
- "source": "1C7voQZn3Px9WYZn3X8KNzDwXDyQJkYRMB",
+ "tx_index": 53,
+ "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03",
+ "block_index": 187,
+ "block_hash": "12f9ec3b5f8f740e948b461f074122b7c4d9311edf891749685e732e798b4124",
+ "block_time": 1726509886,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"destination": null,
"btc_amount": 0,
- "fee": 2480,
- "data": "0200000001a95261fd0000000000000001000514c868dac1bcf472a652d5e27a9aaafb4de365",
+ "fee": 10000,
+ "data": "020000000000000001000000000000271080ae2b0c1095bbdf23747f76b242be716817701b78",
"supported": true,
+ "utxos_info": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03:1",
"confirmed": true,
"unpacked_data": {
"message_type": "enhanced_send",
"message_type_id": 2,
"message_data": {
- "asset": "XCPCARD",
- "quantity": 1,
- "address": "1TsGyfES65xE1J2hQQCSzitL97v448gJc",
+ "asset": "XCP",
+ "quantity": 10000,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"memo": null,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "Counterparty card",
- "issuer": "1EewCNrN1oypSYZE81HBiqrjuhkLcz1qXR",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00010000"
}
},
"btc_amount_normalized": "0.00000000"
@@ -2852,81 +2974,52 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738388,
- "tx_hash": "17d98afaf691218ecdf3f1ddca9eb91e75c8a91238c979c8a8a1179796ee35e1",
- "block_index": 850126,
- "block_hash": "000000000000000000010ba34c827bd79586966c94a51ee47dcc660762402605",
- "block_time": 1719769276,
- "source": "15WzA2u8yBsMnhAVnGLmuSYHqB2vivD6jK",
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780",
+ "block_time": 1726509890,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 5000,
- "data": "03000100533c940b158eae03f5bf71f1195d757c819c2e0c400000007a03471a80000000000000006020002068d1625ffd000000000000000030100004d55c9878fe800000000000000018080049924d3461df90000000000000003400",
+ "fee": 10000,
+ "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400",
"supported": true,
+ "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0",
"confirmed": true,
"unpacked_data": {
"message_type": "mpma_send",
"message_type_id": 3,
"message_data": [
{
- "asset": "BANECOCO",
- "destination": "18b7eyatTwZ8mvSCXRRxjNjvr3DPwhh6bU",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
+ "asset": "MYASSETA",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
"asset_info": {
"asset_longname": null,
- "description": "https://easyasset.art/j/ki2s4w/BANEC.json",
- "issuer": "1NwCmg8gZW7KykrA7mX16zugNZZuckPg5o",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
- "quantity_normalized": "1"
- },
- {
- "asset": "CANDLESKING",
- "destination": "18b7eyatTwZ8mvSCXRRxjNjvr3DPwhh6bU",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
- "asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/ixymin/CANDL.json",
- "issuer": "1WweVUK8kLmSNt6yKKqwVxch3Z7Lw5HAY",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
- },
- {
- "asset": "PRETTYBOBO",
- "destination": "18b7eyatTwZ8mvSCXRRxjNjvr3DPwhh6bU",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
- "asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/1lunb4/PRETTYBOBO.json",
- "issuer": "1WweVUK8kLmSNt6yKKqwVxch3Z7Lw5HAY",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010"
},
{
- "asset": "SITTINGPEPE",
- "destination": "18b7eyatTwZ8mvSCXRRxjNjvr3DPwhh6bU",
- "quantity": 6,
- "memo": "",
- "memo_is_hex": false,
+ "asset": "XCP",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "imgur.com/8oPrz1q.jpeg;SITTINGPEPE",
- "issuer": "1WweVUK8kLmSNt6yKKqwVxch3Z7Lw5HAY",
- "divisible": false,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "6"
+ "quantity_normalized": "0.00000010"
}
]
},
@@ -2940,25 +3033,26 @@ Here is sample API output for each of these transactions:
```
{
"result": {
- "tx_index": 2738014,
- "tx_hash": "b906e6c45713ee9c5de3a692772e459211ba40bf2149e41922ff41e5be70a5b6",
- "block_index": 849822,
- "block_hash": "00000000000000000002563db4e29afc81a894ec202a54dae177b075b3d0d608",
- "block_time": 1719582595,
- "source": "127ChgMdzicU8QhAFLi9KugRYkMzm3qb37",
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "block_time": 1726509908,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"destination": null,
"btc_amount": 0,
- "fee": 9700,
- "data": "0400b0da00a4bc1d0a7c3cc4ee7c1ce77526175bbb0503",
+ "fee": 10000,
+ "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473",
"supported": true,
+ "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1",
"confirmed": true,
"unpacked_data": {
"message_type": "sweep",
"message_type_id": 4,
"message_data": {
- "destination": "1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c",
- "flags": 3,
- "memo": null
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
+ "memo": "sweep my assets"
}
},
"btc_amount_normalized": "0.00000000"
@@ -2971,7 +3065,7 @@ Here is sample API output for each of these transactions:
Returns the list of the last ten transactions
+ Parameters
- + cursor: `2736157` (int, optional) - The index of the most recent transactions to return
+ + cursor: `59` (str, optional) - The index of the most recent transactions to return
+ Default: `None`
+ limit: `2` (int, optional) - The number of transactions to return
+ Default: `10`
@@ -2988,86 +3082,66 @@ Returns the list of the last ten transactions
{
"result": [
{
- "tx_index": 2736157,
- "tx_hash": "9369f3855d1213df2b86466b38ffc32290bf0719164f408d145f13c530ffac51",
- "block_index": 847587,
- "block_hash": "00000000000000000001486b03d75c3df48df56e419da523f85cb1a90a7b01eb",
- "block_time": 1718174949,
- "source": "18CVHKV2AVByzNpgd6ydmwY7CHizt478zm",
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"destination": null,
"btc_amount": 0,
- "fee": 12720,
- "data": "0200000000790523bd0000000000000001004c99904f1e68ef76e6b5ecc97094529930db537f",
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
"supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "enhanced_send",
- "message_type_id": 2,
+ "message_type": "destroy",
+ "message_type_id": 110,
"message_data": {
- "asset": "GOXCARD",
+ "asset": "XCP",
"quantity": 1,
- "address": "17z2KNcFDyWT8EKph5hTsZY8eXdrzUtb12",
- "memo": null,
+ "tag": "64657374726f79",
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "Spells of Genesis game asset",
- "issuer": "1EewCNrN1oypSYZE81HBiqrjuhkLcz1qXR",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000001"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 2736156,
- "tx_hash": "40c5045d3ebe423920072416b78f509e412d7154526a4b92f61ab5ecc56e977a",
- "block_index": 847584,
- "block_hash": "0000000000000000000106f03da4dee9617e96baedbbd88553cfaeb558a8395f",
- "block_time": 1718173859,
- "source": "bc1q2tpgcau64pff95phsduz4rt24re8n484vz7lqw",
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "block_time": 1726509908,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"destination": null,
"btc_amount": 0,
- "fee": 4000,
- "data": "0a0000000000000001000000051f4d5c000000001c61620c4b00000000000186a01f800000000000000000",
+ "fee": 10000,
+ "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473",
"supported": true,
+ "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "order",
- "message_type_id": 10,
+ "message_type": "sweep",
+ "message_type_id": 4,
"message_data": {
- "give_asset": "XCP",
- "give_quantity": 22000000000,
- "get_asset": "PEPECASH",
- "get_quantity": 100000,
- "expiration": 8064,
- "fee_required": 0,
- "status": "open",
- "give_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "get_asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": true,
- "locked": true
- },
- "give_quantity_normalized": "220.00000000",
- "get_quantity_normalized": "0.00100000",
- "fee_required_normalized": "0.00000000"
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
+ "memo": "sweep my assets"
}
},
"btc_amount_normalized": "0.00000000"
}
],
- "next_cursor": 2736155,
- "result_count": 2742583
+ "next_cursor": 57,
+ "result_count": 60
}
```
@@ -3076,7 +3150,7 @@ Returns the list of the last ten transactions
Returns Counterparty information from a raw transaction in hex format.
+ Parameters
- + rawtransaction: `01000000017828697743c03aef6a3a8ba54b22bf579ffcab8161faf20e7b20c4ecd75cc986010000006b483045022100d1bd0531bb1ed2dd2cbf77d6933273e792a3dbfa84327d419169850ddd5976f502205d1ab0f7bcbf1a0cc183f0520c9aa8f711d41cb790c0c4ac39da6da4a093d798012103d3b1f711e907acb556e239f6cafb6a4f7fe40d8dd809b0e06e739c2afd73f202ffffffff0200000000000000004d6a4bf29880b93b0711524c7ef9c76835752088db8bd4113a3daf41fc45ffdc8867ebdbf26817fae377696f36790e52f51005806e9399a427172fedf348cf798ed86e548002ee96909eef0775ec3c2b0100000000001976a91443434cf159cc585fbd74daa9c4b833235b19761b88ac00000000` (str, required) - Raw transaction in hex format
+ + rawtransaction: `0200000000010113f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e0000000000ffffffff020000000000000000356a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862f0ca052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e024730440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf0121038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616900000000` (str, required) - Raw transaction in hex format
+ block_index (int, optional) - Block index mandatory for transactions before block 335000
+ Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
@@ -3089,20 +3163,20 @@ Returns Counterparty information from a raw transaction in hex format.
```
{
"result": {
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 56565,
- "data": "16010b9142801429a60000000000000001000000554e4e45474f544941424c45205745204d555354204245434f4d4520554e4e45474f544941424c4520574520415245",
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
"decoded_tx": {
- "version": 1,
- "segwit": false,
+ "version": 2,
+ "segwit": true,
"coinbase": false,
"vin": [
{
- "hash": "7828697743c03aef6a3a8ba54b22bf579ffcab8161faf20e7b20c4ecd75cc986",
- "n": 1,
- "script_sig": "483045022100d1bd0531bb1ed2dd2cbf77d6933273e792a3dbfa84327d419169850ddd5976f502205d1ab0f7bcbf1a0cc183f0520c9aa8f711d41cb790c0c4ac39da6da4a093d798012103d3b1f711e907acb556e239f6cafb6a4f7fe40d8dd809b0e06e739c2afd73f202",
+ "hash": "13f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e",
+ "n": 0,
+ "script_sig": "",
"sequence": 4294967295,
"coinbase": false
}
@@ -3110,34 +3184,49 @@ Returns Counterparty information from a raw transaction in hex format.
"vout": [
{
"value": 0,
- "script_pub_key": "6a4bf29880b93b0711524c7ef9c76835752088db8bd4113a3daf41fc45ffdc8867ebdbf26817fae377696f36790e52f51005806e9399a427172fedf348cf798ed86e548002ee96909eef0775ec"
+ "script_pub_key": "6a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862"
},
{
- "value": 76604,
- "script_pub_key": "76a91443434cf159cc585fbd74daa9c4b833235b19761b88ac"
+ "value": 4999990000,
+ "script_pub_key": "00147ed28f21558ee8ecd78a339105e7756213901b6e"
}
],
- "vtxinwit": [],
+ "vtxinwit": [
+ "30440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf01",
+ "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169"
+ ],
"lock_time": 0,
- "tx_hash": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5"
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_id": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232"
},
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 22,
+ "message_type": "order",
+ "message_type_id": 10,
"message_data": {
- "asset_id": 75313533584419238,
- "asset": "UNNEGOTIABLE",
- "subasset_longname": null,
- "quantity": 1,
- "divisible": false,
- "lock": false,
- "reset": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "UNNEGOTIABLE WE MUST BECOME UNNEGOTIABLE WE ARE",
- "status": "valid",
- "quantity_normalized": "1"
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
}
},
"btc_amount_normalized": "0.00000000"
@@ -3150,7 +3239,7 @@ Returns Counterparty information from a raw transaction in hex format.
Unpacks Counterparty data in hex format and returns the message type and data.
+ Parameters
- + datahex: `16010b9142801429a60000000000000001000000554e4e45474f544941424c45205745204d555354204245434f4d4520554e4e45474f544941424c4520574520415245` (str, required) - Data in hex format
+ + datahex: `020000000001016a65c1624e53f4d33ce02e726a6606faed60cc014d5b1a578ba3e09b4b3f8f890100000000ffffffff020000000000000000176a150d55e8b6118808b7b663b365473f142274028b8af60245092701000000160014a3df8a5a83d4e2827b59b43f5ce6ce5d2e52093f0247304402204b7a2859cbce34e725a1132fec2dd4b075503dadff0a0c407ae7c22a7712fe4d0220563ceb2ceebdf649343bb24819fc808639cce7781305b4588ffbe4a20390d2780121020ace9adf60fe4ec05dab922ccdc5727cbf664cafc7cdb845de534855266314c800000000` (str, required) - Data in hex format
+ block_index (int, optional) - Block index of the transaction containing this data
+ Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
@@ -3163,21 +3252,10 @@ Unpacks Counterparty data in hex format and returns the message type and data.
```
{
"result": {
- "message_type": "issuance",
- "message_type_id": 22,
+ "message_type": "enhanced_send",
+ "message_type_id": 2,
"message_data": {
- "asset_id": 75313533584419238,
- "asset": "UNNEGOTIABLE",
- "subasset_longname": null,
- "quantity": 1,
- "divisible": false,
- "lock": false,
- "reset": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "UNNEGOTIABLE WE MUST BECOME UNNEGOTIABLE WE ARE",
- "status": "valid"
+ "error": "memo too long"
}
}
}
@@ -3188,7 +3266,7 @@ Unpacks Counterparty data in hex format and returns the message type and data.
Returns a transaction by its index.
+ Parameters
- + tx_index: `10000` (int, required) - The index of the transaction
+ + tx_index: `59` (int, required) - The index of the transaction
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -3199,25 +3277,37 @@ Returns a transaction by its index.
```
{
"result": {
- "tx_index": 10000,
- "tx_hash": "f91fcf4e6f432037ca8d5844d64e4347bf0127cfbec6041982a9f1d048187160",
- "block_index": 297259,
- "block_hash": "00000000000000009aa8a70b99b6dc29ad52399246d86cf586768661bfcc5391",
- "block_time": 1398229406,
- "source": "1PVHbRqh1eYsGCVZ7t18UCQ6oPzXFR3HQz",
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"destination": null,
- "btc_amount": null,
- "fee": 20000,
- "data": "000000464f84c0428938f794972cd62c67a022f4f3d9d3802041015e49fd1581c95afc99",
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
"supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
+ "confirmed": true,
"unpacked_data": {
- "message_type": "cancel",
- "message_type_id": 70,
+ "message_type": "destroy",
+ "message_type_id": 110,
"message_data": {
- "offer_hash": "4f84c0428938f794972cd62c67a022f4f3d9d3802041015e49fd1581c95afc99",
- "status": "valid"
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
}
- }
+ },
+ "btc_amount_normalized": "0.00000000"
}
}
```
@@ -3227,7 +3317,7 @@ Returns a transaction by its index.
Returns a transaction by its hash.
+ Parameters
- + tx_hash: `876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5` (str, required) - The hash of the transaction
+ + tx_hash: `f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce` (str, required) - The hash of the transaction
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -3238,35 +3328,34 @@ Returns a transaction by its hash.
```
{
"result": {
- "tx_index": 2726605,
- "tx_hash": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5",
- "block_index": 840464,
- "block_hash": "00000000000000000001093d4d6b21b80800fff6e5ea15cce6d65066f482cce9",
- "block_time": 1713852783,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"destination": null,
"btc_amount": 0,
- "fee": 56565,
- "data": "16010b9142801429a60000000000000001000000554e4e45474f544941424c45205745204d555354204245434f4d4520554e4e45474f544941424c4520574520415245",
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
"supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 22,
+ "message_type": "destroy",
+ "message_type_id": 110,
"message_data": {
- "asset_id": 75313533584419238,
- "asset": "UNNEGOTIABLE",
- "subasset_longname": null,
+ "asset": "XCP",
"quantity": 1,
- "divisible": false,
- "lock": false,
- "reset": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "UNNEGOTIABLE WE MUST BECOME UNNEGOTIABLE WE ARE",
- "status": "valid",
- "quantity_normalized": "1"
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
}
},
"btc_amount_normalized": "0.00000000"
@@ -3279,10 +3368,10 @@ Returns a transaction by its hash.
Returns the events of a transaction
+ Parameters
- + tx_index: `1000` (int, required) - The index of the transaction to return
+ + tx_index: `58` (int, required) - The index of the transaction to return
+ event_name (str, optional) - Comma separated list of events to return
+ Default: `None`
- + cursor: `10665092` (int, optional) - The last event index to return
+ + cursor (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -3299,36 +3388,78 @@ Returns the events of a transaction
{
"result": [
{
- "event_index": 7468,
- "event": "BURN",
+ "event_index": 528,
+ "event": "TRANSACTION_PARSED",
+ "params": {
+ "supported": true,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 527,
+ "event": "SWEEP",
"params": {
- "block_index": 280480,
- "burned": 100000000,
- "earned": 130272727273,
- "source": "16Pc1CgQpLHA77KFZVd8RCCR8NVmYAvBgZ",
+ "block_index": 192,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fee_paid": 600000,
+ "flags": 1,
+ "memo": "sweep my assets",
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"status": "valid",
- "tx_hash": "8d720a855affae0b99f83bb22de553af72cdc2747ab336ca6bf606406cffcca7",
- "tx_index": 1000,
- "block_time": 1389719433,
- "burned_normalized": "1.00000000",
- "earned_normalized": "1302.72730000"
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
},
- "tx_hash": "8d720a855affae0b99f83bb22de553af72cdc2747ab336ca6bf606406cffcca7",
- "block_index": 280480,
- "block_time": 1389719433
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
},
{
- "event_index": 7467,
+ "event_index": 526,
"event": "CREDIT",
"params": {
- "address": "16Pc1CgQpLHA77KFZVd8RCCR8NVmYAvBgZ",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 525,
+ "event": "DEBIT",
+ "params": {
+ "action": "sweep",
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"asset": "XCP",
- "block_index": 280480,
- "calling_function": "burn",
- "event": "8d720a855affae0b99f83bb22de553af72cdc2747ab336ca6bf606406cffcca7",
- "quantity": 130272727273,
- "tx_index": 1000,
- "block_time": 1389719433,
+ "block_index": 192,
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -3336,15 +3467,42 @@ Returns the events of a transaction
"locked": true,
"issuer": null
},
- "quantity_normalized": "1302.72730000"
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
},
- "tx_hash": "8d720a855affae0b99f83bb22de553af72cdc2747ab336ca6bf606406cffcca7",
- "block_index": 280480,
- "block_time": 1389719433
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
}
],
- "next_cursor": null,
- "result_count": 2
+ "next_cursor": 523,
+ "result_count": 10
}
```
@@ -3353,10 +3511,10 @@ Returns the events of a transaction
Returns the events of a transaction
+ Parameters
- + tx_hash: `84b34b19d971adc2ad2dc6bfc5065ca976db1488f207df4887da976fbf2fd040` (str, required) - The hash of the transaction to return
+ + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return
+ event_name (str, optional) - Comma separated list of events to return
+ Default: `None`
- + cursor: `10665092` (int, optional) - The last event index to return
+ + cursor: `535` (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -3371,9 +3529,123 @@ Returns the events of a transaction
```
{
- "result": [],
- "next_cursor": null,
- "result_count": 4
+ "result": [
+ {
+ "event_index": 528,
+ "event": "TRANSACTION_PARSED",
+ "params": {
+ "supported": true,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 527,
+ "event": "SWEEP",
+ "params": {
+ "block_index": 192,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fee_paid": 600000,
+ "flags": 1,
+ "memo": "sweep my assets",
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "status": "valid",
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 525,
+ "event": "DEBIT",
+ "params": {
+ "action": "sweep",
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 192,
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ }
+ ],
+ "next_cursor": 523,
+ "result_count": 10
}
```
@@ -3382,8 +3654,8 @@ Returns the events of a transaction
Returns the sends, include Enhanced and MPMA sends, of a block
+ Parameters
- + tx_hash: `c7497d0c427083df81a884ff39e282e176943a436a82f4c0a0878afdc601229f` (str, required) - The hash of the transaction to return
- + cursor (int, optional) - The last index of the debits to return
+ + tx_hash: `e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f` (str, required) - The hash of the transaction to return
+ + cursor (str, optional) - The last index of the debits to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of debits to return
+ Default: `100`
@@ -3400,29 +3672,80 @@ Returns the sends, include Enhanced and MPMA sends, of a block
{
"result": [
{
- "tx_index": 2733863,
- "tx_hash": "c7497d0c427083df81a884ff39e282e176943a436a82f4c0a0878afdc601229f",
- "block_index": 844416,
- "source": "1KYgNdaKwXKMYYoJLArr5r3S2Js68Zpu1D",
- "destination": "1F5ViAh8FJZXZXK1UXXeKMWC6qZsGNJ76m",
- "asset": "REXDEUS",
- "quantity": 0,
- "status": "invalid: insufficient funds",
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 2,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
"msg_index": 0,
"memo": null,
- "block_time": 1716280323,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
"asset_longname": null,
- "description": "REXDEUS is double LOCKED.",
- "issuer": "1F5ViAh8FJZXZXK1UXXeKMWC6qZsGNJ76m",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
- "quantity_normalized": "0"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 3
}
```
@@ -3431,8 +3754,8 @@ Returns the sends, include Enhanced and MPMA sends, of a block
Returns the dispenses of a block
+ Parameters
- + tx_hash: `5a7e6a0f8bbff69f5e6fefa75eb919b913649a14e68cca41af38737f49e5be92` (str, required) - The hash of the transaction to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + tx_hash: `516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535` (str, required) - The hash of the transaction to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -3449,44 +3772,44 @@ Returns the dispenses of a block
{
"result": [
{
- "tx_index": 2736740,
+ "tx_index": 33,
"dispense_index": 0,
- "tx_hash": "5a7e6a0f8bbff69f5e6fefa75eb919b913649a14e68cca41af38737f49e5be92",
- "block_index": 848415,
- "source": "1JsPoV5USoFM7441KtGXtvMH5ezNwq9Uak",
- "destination": "bc1q68w5h2p5r7u9ta6dahrznaysj3nt3x2alrumk7",
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
"asset": "XCP",
- "dispense_quantity": 1500000000,
- "dispenser_tx_hash": "c09fb8a268071ec5ca18c8d0d693d154dc594258a20a016992d7b242755a7b77",
- "btc_amount": 233000,
+ "dispense_quantity": 666,
+ "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "btc_amount": 10000,
"confirmed": true,
"dispenser": {
- "tx_index": 2736724,
- "block_index": 848379,
- "source": "1JsPoV5USoFM7441KtGXtvMH5ezNwq9Uak",
- "give_quantity": 100000000,
- "escrow_quantity": 54400000000,
- "satoshirate": 15500,
- "status": 10,
- "give_remaining": 0,
- "oracle_address": null,
- "last_status_tx_hash": "de891098a3a945f08e382af4a38441550a1de478a6eaca1901aebb7245c9d1d4",
- "origin": "1JsPoV5USoFM7441KtGXtvMH5ezNwq9Uak",
- "dispense_count": 7,
- "last_status_tx_source": "1JsPoV5USoFM7441KtGXtvMH5ezNwq9Uak",
- "close_block_index": "848613",
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 15500,
- "give_quantity_normalized": "1.00000000",
- "give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "544.00000000",
- "satoshirate_normalized": "0.00015500",
- "satoshi_price_normalized": "0.00015500"
- },
- "block_time": 1718679285,
+ "tx_index": 32,
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "last_status_tx_hash": null,
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "dispense_count": 1,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
+ },
+ "block_time": 1726509701,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -3494,8 +3817,8 @@ Returns the dispenses of a block
"locked": true,
"issuer": null
},
- "dispense_quantity_normalized": "15.00000000",
- "btc_amount_normalized": "0.00233000"
+ "dispense_quantity_normalized": "0.00000666",
+ "btc_amount_normalized": "0.00010000"
}
],
"next_cursor": null,
@@ -3508,9 +3831,9 @@ Returns the dispenses of a block
Returns the events of a transaction
+ Parameters
- + tx_index: `1000` (int, required) - The index of the transaction to return
+ + tx_index: `58` (int, required) - The index of the transaction to return
+ event: `CREDIT` (str, required) - The event to filter by
- + cursor: `10665092` (int, optional) - The last event index to return
+ + cursor: `535` (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -3527,17 +3850,19 @@ Returns the events of a transaction
{
"result": [
{
- "event_index": 7467,
+ "event_index": 526,
"event": "CREDIT",
"params": {
- "address": "16Pc1CgQpLHA77KFZVd8RCCR8NVmYAvBgZ",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"asset": "XCP",
- "block_index": 280480,
- "calling_function": "burn",
- "event": "8d720a855affae0b99f83bb22de553af72cdc2747ab336ca6bf606406cffcca7",
- "quantity": 130272727273,
- "tx_index": 1000,
- "block_time": 1389719433,
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -3545,15 +3870,69 @@ Returns the events of a transaction
"locked": true,
"issuer": null
},
- "quantity_normalized": "1302.72730000"
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 522,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 500000000,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
},
- "tx_hash": "8d720a855affae0b99f83bb22de553af72cdc2747ab336ca6bf606406cffcca7",
- "block_index": 280480,
- "block_time": 1389719433
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 3
}
```
@@ -3562,9 +3941,9 @@ Returns the events of a transaction
Returns the events of a transaction
+ Parameters
- + tx_hash: `84b34b19d971adc2ad2dc6bfc5065ca976db1488f207df4887da976fbf2fd040` (str, required) - The hash of the transaction to return
+ + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return
+ event: `CREDIT` (str, required) - The event to filter by
- + cursor: `10665092` (int, optional) - The last event index to return
+ + cursor: `535` (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -3579,9 +3958,91 @@ Returns the events of a transaction
```
{
- "result": [],
+ "result": [
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 522,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 500000000,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ }
+ ],
"next_cursor": null,
- "result_count": 1
+ "result_count": 3
}
```
@@ -3592,8 +4053,8 @@ Returns the events of a transaction
Returns the balances of several addresses
+ Parameters
- + addresses: `1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz,1fUcHBfCgVqNwFmECZ2SSjKBvnFfWbKbr` (str, required) - Comma separated list of addresses
- + cursor (int, optional) - The last index of the balances to return
+ + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses
+ + cursor (str, optional) - The last index of the balances to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of balances to return
+ Default: `100`
@@ -3612,103 +4073,113 @@ Returns the balances of several addresses
{
"result": [
{
- "asset": "A10404755902319931000",
- "total": 1,
+ "asset": "A95428956980101314",
+ "total": 100000000000,
"addresses": [
{
- "address": "1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz",
- "quantity": 1,
- "quantity_normalized": "1"
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 100000000000,
+ "quantity_normalized": "1000.00000000"
}
],
"asset_info": {
- "asset_longname": null,
- "description": "STAMP:iVBORw0KGgoAAAANSUhEUgAAABgAAAAYBAMAAAASWSDLAAAAGFBMVEX/zaX2rYq99v+QGQfZAgD2oZf+yKH/0aylFGxhAAAAbElEQVQY05XMuw2AMAxF0RcBonWCRA1MgMQCKTxAVmD/JXjOBzoQN0lxFMtAd9TApr10COAENU8sDesv9DwZntCokRAEgxq2gl4VDTZXAAfbwCS/mrN7N+MESwlMys+AL6wPwhukwRG+YvThAmg/DEoX0UsaAAAAAElFTkSuQmCC",
- "issuer": "18FASLc9fenxqwKpc3VL2FrMKR5ehYAohc",
- "divisible": false,
- "locked": true
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "description": "A subnumeric asset",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "total_normalized": "1"
+ "total_normalized": "1000.00000000"
},
{
- "asset": "A10974884985443904336",
- "total": 1,
+ "asset": "MYASSETA",
+ "total": 97999999980,
"addresses": [
{
- "address": "1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz",
- "quantity": 1,
- "quantity_normalized": "1"
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 97999999980,
+ "quantity_normalized": "980.00000000"
}
],
"asset_info": {
"asset_longname": null,
- "description": "stamp:iVBORw0KGgoAAAANSUhEUgAAABkAAAAZAgMAAAC5h23wAAAADFBMVEXtHCQisUwAAAD///80x4U1AAAAVElEQVQI12MgDFZxLQBRTGGaGSCaK27pDRCt+nf+LRCtvr7qWwOE/gqiuddWXQXRqqGhoSB6adZSMD0lQQWFVk1QDQPRmkAabO7U0AiIfasWMJAMAEJOHJuDKtoMAAAAAElFTkSuQmCC",
- "issuer": "14VhF5JGExMn4qkN2RiMqNvCwpqmFvbQaz",
- "divisible": false,
- "locked": true
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "total_normalized": "1"
+ "total_normalized": "980.00000000"
},
{
- "asset": "A12387679857740888409",
- "total": 1,
+ "asset": "FAIRMINTA",
+ "total": 500000000,
"addresses": [
{
- "address": "1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz",
- "quantity": 1,
- "quantity_normalized": "1"
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 500000000,
+ "quantity_normalized": "5.00000000"
}
],
"asset_info": {
- "asset_longname": "SPAMART.OOAK-SPAM-NYC-MMXXIII",
- "description": "imgur/mXiENoK.jpg;spamart nyc 2023",
- "issuer": "1F6Vyig9kBGc5Buvy9JyuV8d3jEiPKxWUX",
- "divisible": false,
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
- "total_normalized": "1"
+ "total_normalized": "5.00000000"
},
{
- "asset": "A13424117675318910066",
- "total": 1,
+ "asset": "FAIRMINTD",
+ "total": 40,
"addresses": [
{
- "address": "1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz",
- "quantity": 1,
- "quantity_normalized": "1"
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 40,
+ "quantity_normalized": "0.00000040"
}
],
"asset_info": {
- "asset_longname": "PEPERINCESS.FIRSTANNIV",
- "description": "https://easyasset.art/j/qk8iyw/FIRST.json",
- "issuer": "1GYRneYXFqddDtnVo6oToZzkAhoTwqmrjC",
- "divisible": false,
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
- "total_normalized": "1"
+ "total_normalized": "0.00000040"
},
{
- "asset": "A183865494738509701",
- "total": 1,
+ "asset": "FAIRMINTC",
+ "total": 19,
"addresses": [
{
- "address": "1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz",
- "quantity": 1,
- "quantity_normalized": "1"
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 19,
+ "quantity_normalized": "0.00000019"
}
],
"asset_info": {
- "asset_longname": "THEENIGMA.MIRRORCARD",
- "description": "https://easyasset.art/j/6kkwoj/THEEN.json",
- "issuer": "1LmTfavpcytyCub4wJjnFc97hvAp75ub8Z",
- "divisible": false,
- "locked": true
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "total_normalized": "1"
+ "total_normalized": "0.00000019"
}
],
- "next_cursor": "A404599869049893064",
- "result_count": 183
+ "next_cursor": "TESTLOCKDESC",
+ "result_count": 7
}
```
@@ -3717,8 +4188,8 @@ Returns the balances of several addresses
Returns the transactions of a list of addresses
+ Parameters
- + addresses: `1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx,1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx` (str, required) - Comma separated list of addresses to return
- + cursor: `2736469` (int, optional) - The last transaction index to return
+ + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses to return
+ + cursor: `59` (str, optional) - The last transaction index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of transactions to return
+ Default: `100`
@@ -3735,187 +4206,202 @@ Returns the transactions of a list of addresses
{
"result": [
{
- "tx_index": 2736469,
- "tx_hash": "1f7137fb96ae71bbf6c39da7944931d3f8044e1cf5d82639661b55d9e09f3a58",
- "block_index": 848081,
- "block_hash": "00000000000000000002c92b4052699653b82863ab38bed3d714f7659eb05c5d",
- "block_time": 1718489498,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "destination": "18wm7BVkGEbJQoboQdXopVk9HRK3CGnFXG",
- "btc_amount": 13410,
- "fee": 0,
- "data": "0d00",
- "supported": true,
- "confirmed": true,
- "unpacked_data": {
- "message_type": "dispense",
- "message_type_id": 13,
- "message_data": {}
- },
- "btc_amount_normalized": "0.00013410"
- },
- {
- "tx_index": 2736468,
- "tx_hash": "92ee9d38df64184a250b17ab1dd38e9ff0882c2bd0704f8b40cbeb0408358012",
- "block_index": 848081,
- "block_hash": "00000000000000000002c92b4052699653b82863ab38bed3d714f7659eb05c5d",
- "block_time": 1718489498,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "destination": "13QiANYYDBvqVJQ9CBoqHNLDdbMN9qpRY2",
- "btc_amount": 179000,
- "fee": 0,
- "data": "0d00",
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_time": 1726509903,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
"supported": true,
+ "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "dispense",
- "message_type_id": 13,
- "message_data": {}
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
},
- "btc_amount_normalized": "0.00179000"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 2735895,
- "tx_hash": "a424318a4c9e10ba3613b619ffeba13d4108a59ce32ef75c348a1c230c8b94eb",
- "block_index": 847197,
- "block_hash": "000000000000000000008bdfedf10b6c30ce3f8021aac4d5a1d136e022303de8",
- "block_time": 1717943168,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
+ "tx_index": 56,
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "block_time": 1726509899,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 9010,
- "data": "0c0043458e7febdc080000000000000001000000000000000b000000000002981001001a35167b17f5920278bfacb9b7e1bbafeccc60a6",
+ "fee": 10000,
+ "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
"supported": true,
+ "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "dispenser",
- "message_type_id": 12,
+ "message_type": "cancel",
+ "message_type_id": 70,
"message_data": {
- "asset": "FEDMONEYTREE",
- "give_quantity": 1,
- "escrow_quantity": 11,
- "mainchainrate": 170000,
- "dispenser_status": 1,
- "action_address": "13PaAbSC7M7FSttH9YLNKjk3MSz8RpcMaU",
- "oracle_address": null,
- "status": "valid",
- "asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/kdf7yt/FEDMONEYTREE.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": false
- },
- "give_quantity_normalized": "1",
- "escrow_quantity_normalized": "11"
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "status": "valid"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 2735780,
- "tx_hash": "5a28b8eadbe394787a5130568da665bfd356a3dcf70869e19ca13ed19aeeff87",
- "block_index": 847028,
- "block_hash": "00000000000000000002faa2d5d50a16bbc9bdb32d3ed33ee7a76d8256e37b20",
- "block_time": 1717842773,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "destination": "1L7aoyA1ZJ75ZW6bLfzpxySfxA1hWZdxEK",
- "btc_amount": 170000,
- "fee": 0,
- "data": "0d00",
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 189,
+ "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "block_time": 1726509894,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
"supported": true,
+ "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "dispense",
- "message_type_id": 13,
- "message_data": {}
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
},
- "btc_amount_normalized": "0.00170000"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 2735569,
- "tx_hash": "2582127b26437c2ec18291f501ffc03d5bb48bf4e37655b3e86919dd98327096",
- "block_index": 846555,
- "block_hash": "00000000000000000002d1919ec83793cab862e59e87b8478a49c401871f37f0",
- "block_time": 1717546431,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780",
+ "block_time": 1726509890,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 8809,
- "data": "030001007eb7f06c29432e30a04ac6fb96bafa2eafb2cde3400a5e6d164ab9588000000000000000603038649db5ba0297e000000000000000301061f42a2b751024b00000000000000018080805667fce69aec0000000000000005c00",
+ "fee": 10000,
+ "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400",
"supported": true,
+ "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0",
"confirmed": true,
"unpacked_data": {
"message_type": "mpma_send",
"message_type_id": 3,
"message_data": [
{
- "asset": "DESECRATPEPE",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
+ "asset": "MYASSETA",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
"asset_info": {
"asset_longname": null,
- "description": "https://easyasset.art/j/9y5ncz/DESECRATPEPE.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": false
- },
- "quantity_normalized": "1"
- },
- {
- "asset": "A9350357854593225919",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
- "asset_info": {
- "asset_longname": "DESECRATPEPE.DRUNKEKPELOSI",
- "description": "https://ttdgewzxwf2y436dhh5o67tvxisuqooacmrcdyhkblcnumuu5lba.arweave.net/nMZiWzexdY5vwzn67351uiVIOcATIiHg6grE2jKU6sI/DESEC.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010"
},
{
- "asset": "A441144555133272651",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
- "asset_info": {
- "asset_longname": "DESECRATPEPE.UKRAINEOWNEDCONGRESS",
- "description": "https://hwpdhvkwagwhm26yvlc67tz7mhlnby2wrde5dajmnbll5ewgmr5a.arweave.net/PZ4z1VYBrHZr2KrF788_YdbQ41aIydGBLGhWvpLGZHo/DESEC.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
- },
- {
- "asset": "TRUMPDANCING",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 11,
- "memo": "",
- "memo_is_hex": false,
+ "asset": "XCP",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/wcun18/45DANCE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "11"
+ "quantity_normalized": "0.00000010"
}
]
},
"btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 51,
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "block_index": 185,
+ "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6",
+ "block_time": 1726509867,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "btc_amount": 2000,
+ "fee": 10000,
+ "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "supported": true,
+ "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "btcpay",
+ "message_type_id": 11,
+ "message_data": {
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "status": "valid"
+ }
+ },
+ "btc_amount_normalized": "0.00002000"
}
],
- "next_cursor": 2735423,
- "result_count": 401
+ "next_cursor": 50,
+ "result_count": 35
}
```
@@ -3924,10 +4410,10 @@ Returns the transactions of a list of addresses
Returns the events of a list of addresses
+ Parameters
- + addresses: `1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V,bc1q5mqesdy0gaj0suzxg4jx7ycmpw66kygdyn80mg` (str, required) - Comma separated list of addresses to return
+ + addresses: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - Comma separated list of addresses to return
+ event_name (str, optional) - Comma separated list of events to return
+ Default: `None`
- + cursor: `17629293` (int, optional) - The last event index to return
+ + cursor: `535` (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -3944,141 +4430,177 @@ Returns the events of a list of addresses
{
"result": [
{
- "event_index": 17618366,
- "event": "DISPENSE",
+ "event_index": 515,
+ "event": "OPEN_ORDER",
"params": {
- "asset": "A4843919604117950000",
- "block_index": 852611,
- "btc_amount": 200000,
- "destination": "1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V",
- "dispense_index": 0,
- "dispense_quantity": 1,
- "dispenser_tx_hash": "5f6ea4dc1916012be057bcbf54fa6f24c50b75eed50cac18616731e7e592ba78",
- "source": "bc1qxfs3r7rp76mzd9wxxy3d2hc6pj39rvu8vj59ss",
- "tx_hash": "2a64bb1c62e142e9b8aeca52e6ea4acac75af9b9eabd39de50b25c3c2260a181",
- "tx_index": 2741056,
- "block_time": 1721218343,
- "asset_info": {
+ "block_index": 191,
+ "expiration": 21,
+ "expire_index": 212,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "status": "open",
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "block_time": 1726509903,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "STAMP:iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAArklEQVR42mNgGNbgkZraf2LEyDYchtH5yJaQbSG6gfgspJrBhCwlOrzJtQSvRZQYSlJQ4dK8rjsRjGFsZJqsOAAyUQzChUHqyE2aeA2myAKoJrghbRFyYIxsMEyMJAuQUhOGK5fXuGMVo4oFVA0iKJM2cYAG8BlIOwto5oNleTooGOYTHJg8C5ANiYyMxMAMDv8ps4CmPkC3hNLwZ8CW2bD4gIGqFpATDKRaQDIAAIzvGNxDphDYAAAAAElFTkSuQmCC",
- "issuer": "1HuW7s7whSYhibzJ5KVW4DuNRYpnLeXpir",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "dispense_quantity_normalized": "1",
- "btc_amount_normalized": "0.00200000"
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
},
- "tx_hash": "2a64bb1c62e142e9b8aeca52e6ea4acac75af9b9eabd39de50b25c3c2260a181",
- "block_index": 852611,
- "block_time": 1721218343
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_time": 1726509903
},
{
- "event_index": 17618364,
- "event": "CREDIT",
+ "event_index": 514,
+ "event": "DEBIT",
"params": {
- "address": "1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V",
- "asset": "A4843919604117950000",
- "block_index": 852611,
- "calling_function": "dispense",
- "event": "2a64bb1c62e142e9b8aeca52e6ea4acac75af9b9eabd39de50b25c3c2260a181",
- "quantity": 1,
- "tx_index": 2741056,
- "block_time": 1721218343,
+ "action": "open order",
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "block_index": 191,
+ "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "quantity": 1000,
+ "tx_index": 57,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509903,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "STAMP:iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAArklEQVR42mNgGNbgkZraf2LEyDYchtH5yJaQbSG6gfgspJrBhCwlOrzJtQSvRZQYSlJQ4dK8rjsRjGFsZJqsOAAyUQzChUHqyE2aeA2myAKoJrghbRFyYIxsMEyMJAuQUhOGK5fXuGMVo4oFVA0iKJM2cYAG8BlIOwto5oNleTooGOYTHJg8C5ANiYyMxMAMDv8ps4CmPkC3hNLwZ8CW2bD4gIGqFpATDKRaQDIAAIzvGNxDphDYAAAAAElFTkSuQmCC",
- "issuer": "1HuW7s7whSYhibzJ5KVW4DuNRYpnLeXpir",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00001000"
},
- "tx_hash": "2a64bb1c62e142e9b8aeca52e6ea4acac75af9b9eabd39de50b25c3c2260a181",
- "block_index": 852611,
- "block_time": 1721218343
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_time": 1726509903
},
{
- "event_index": 17618362,
- "event": "DISPENSE",
+ "event_index": 513,
+ "event": "NEW_TRANSACTION",
"params": {
- "asset": "A9919993051204500000",
- "block_index": 852611,
- "btc_amount": 150000,
- "destination": "1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V",
- "dispense_index": 0,
- "dispense_quantity": 1,
- "dispenser_tx_hash": "6aa0ea8e1f9b10875f32c2a4bd8bde8ea92099b8670b84f24fd1decfff095e38",
- "source": "bc1q0xjcvyv7qty5qw83x4psspfh0cysv7fffr3sc0",
- "tx_hash": "6a7d9c1ec3ad23bede42cd7a7e591cf3dc32363c48b626c15770dc735c5bd4a4",
- "tx_index": 2741055,
- "block_time": 1721218343,
- "asset_info": {
- "asset_longname": null,
- "description": "STAMP:iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAhUlEQVR42mNgGAWjAAj+48GUG+7j44MTU2oJ3KDk5GSaWELQcKpYQAhTZMHtjQ0EMVUsWJanA8bIBsPEyLUAw5WX5iZgFaOKBbQIov+4LLkGFL+GJEdRHKCHO00swGYJckRTxQJ8mKoWIBd0VLEAOb3TxAfomYqahmPNbNSuD6hW5tDUAgCuKY81b8rNFwAAAABJRU5ErkJggg==",
- "issuer": "1NhL9CquLPYp7TjN34Umssvcp6KqAQVL5F",
- "divisible": false,
- "locked": true
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_index": 191,
+ "block_time": 1726509903,
+ "btc_amount": 0,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
+ "destination": "",
+ "fee": 10000,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000"
+ }
},
- "dispense_quantity_normalized": "1",
- "btc_amount_normalized": "0.00150000"
+ "btc_amount_normalized": "0.00000000"
},
- "tx_hash": "6a7d9c1ec3ad23bede42cd7a7e591cf3dc32363c48b626c15770dc735c5bd4a4",
- "block_index": 852611,
- "block_time": 1721218343
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_time": 1726509903
},
{
- "event_index": 17618360,
- "event": "CREDIT",
+ "event_index": 509,
+ "event": "CANCEL_ORDER",
"params": {
- "address": "1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V",
- "asset": "A9919993051204500000",
- "block_index": 852611,
- "calling_function": "dispense",
- "event": "6a7d9c1ec3ad23bede42cd7a7e591cf3dc32363c48b626c15770dc735c5bd4a4",
- "quantity": 1,
- "tx_index": 2741055,
- "block_time": 1721218343,
- "asset_info": {
- "asset_longname": null,
- "description": "STAMP:iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAhUlEQVR42mNgGAWjAAj+48GUG+7j44MTU2oJ3KDk5GSaWELQcKpYQAhTZMHtjQ0EMVUsWJanA8bIBsPEyLUAw5WX5iZgFaOKBbQIov+4LLkGFL+GJEdRHKCHO00swGYJckRTxQJ8mKoWIBd0VLEAOb3TxAfomYqahmPNbNSuD6hW5tDUAgCuKY81b8rNFwAAAABJRU5ErkJggg==",
- "issuer": "1NhL9CquLPYp7TjN34Umssvcp6KqAQVL5F",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
+ "block_index": 190,
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "status": "valid",
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "tx_index": 56,
+ "block_time": 1726509899
},
- "tx_hash": "6a7d9c1ec3ad23bede42cd7a7e591cf3dc32363c48b626c15770dc735c5bd4a4",
- "block_index": 852611,
- "block_time": 1721218343
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_time": 1726509899
},
{
- "event_index": 17618358,
- "event": "NEW_TRANSACTION",
+ "event_index": 508,
+ "event": "CREDIT",
"params": {
- "block_hash": "000000000000000000013da4cc0cf7020d5c896b51eda8b9675893af2b68b626",
- "block_index": 852611,
- "block_time": 1721218343,
- "btc_amount": 200000,
- "data": "0d00",
- "destination": "bc1qxfs3r7rp76mzd9wxxy3d2hc6pj39rvu8vj59ss",
- "fee": 0,
- "source": "1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V",
- "tx_hash": "2a64bb1c62e142e9b8aeca52e6ea4acac75af9b9eabd39de50b25c3c2260a181",
- "tx_index": 2741056,
- "unpacked_data": {
- "message_type": "dispense",
- "message_type_id": 13,
- "message_data": {}
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "block_index": 190,
+ "calling_function": "cancel order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "quantity": 1000,
+ "tx_index": 56,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509899,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "btc_amount_normalized": "0.00200000"
+ "quantity_normalized": "0.00001000"
},
- "tx_hash": null,
- "block_index": 852611,
- "block_time": 1721218343
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_time": 1726509899
}
],
- "next_cursor": 17618356,
- "result_count": 1692
+ "next_cursor": 506,
+ "result_count": 163
}
```
@@ -4087,8 +4609,8 @@ Returns the events of a list of addresses
Returns the mempool events of a list of addresses
+ Parameters
- + addresses: `1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V,bc1q5mqesdy0gaj0suzxg4jx7ycmpw66kygdyn80mg` (str, required) - Comma separated list of addresses to return
- + cursor (int, optional) - The last event index to return
+ + addresses: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2,bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30` (str, required) - Comma separated list of addresses to return
+ + cursor (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -4101,9 +4623,117 @@ Returns the mempool events of a list of addresses
```
{
- "result": [],
+ "result": [
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "ENHANCED_SEND",
+ "params": {
+ "asset": "XCP",
+ "block_index": 9999999,
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "quantity": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "status": "valid",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 193,
+ "calling_function": "send",
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "DEBIT",
+ "params": {
+ "action": "send",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 193,
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "NEW_TRANSACTION",
+ "params": {
+ "block_hash": "mempool",
+ "block_index": 9999999,
+ "block_time": 1726509917.0831685,
+ "btc_amount": 0,
+ "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92",
+ "destination": "",
+ "fee": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1",
+ "unpacked_data": {
+ "message_type": "enhanced_send",
+ "message_type_id": 2,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 10000,
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ }
+ ],
"next_cursor": null,
- "result_count": 0
+ "result_count": 4
}
```
@@ -4112,8 +4742,8 @@ Returns the mempool events of a list of addresses
Returns the balances of an address
+ Parameters
- + address: `1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs` (str, required) - The address to return
- + cursor (int, optional) - The last index of the balances to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the balances to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of balances to return
+ Default: `100`
@@ -4132,9 +4762,41 @@ Returns the balances of an address
{
"result": [
{
- "address": "1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs",
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "description": "A subnumeric asset",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "1000.00000000"
+ },
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "quantity": 97999999980,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "980.00000000"
+ },
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 104200000000,
+ "quantity": 82699937176,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4142,11 +4804,26 @@ Returns the balances of an address
"locked": true,
"issuer": null
},
- "quantity_normalized": "1042.00000000"
+ "quantity_normalized": "826.99937000"
+ },
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "TESTLOCKDESC",
+ "quantity": 10000000000,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Test Locking Description",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "100.00000000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 4
}
```
@@ -4155,7 +4832,7 @@ Returns the balances of an address
Returns the balance of an address and asset
+ Parameters
- + address: `1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs` (str, required) - The address to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ asset: `XCP` (str, required) - The asset to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
@@ -4167,9 +4844,11 @@ Returns the balance of an address and asset
```
{
"result": {
- "address": "1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs",
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 104200000000,
+ "quantity": 82699937176,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4177,7 +4856,7 @@ Returns the balance of an address and asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "1042.00000000"
+ "quantity_normalized": "826.99937000"
}
}
```
@@ -4187,10 +4866,11 @@ Returns the balance of an address and asset
Returns the credits of an address
+ Parameters
- + address: `1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs` (str, required) - The address to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ action (enum[str], optional) - The action to filter by
+ Default: `None`
+ Members
+ + `None`
+ `Closed: Max dispenses reached`
+ `bet settled: for equal`
+ `bet settled: for notequal`
@@ -4218,7 +4898,7 @@ Returns the credits of an address
+ `send`
+ `sweep`
+ `wins`
- + cursor (int, optional) - The last index of the credits to return
+ + cursor (str, optional) - The last index of the credits to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of credits to return
+ Default: `100`
@@ -4235,14 +4915,38 @@ Returns the credits of an address
{
"result": [
{
- "block_index": 830981,
- "address": "1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs",
+ "block_index": 190,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "calling_function": "cancel order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "tx_index": 56,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509899,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ {
+ "block_index": 182,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 104200000000,
- "calling_function": "send",
- "event": "7e4fbb0a1eeeee34bf499955f1027fb78c514d63a3c8ff2e28c6dad005e4d850",
- "tx_index": 2677412,
- "block_time": 1708253880,
+ "quantity": 1000,
+ "calling_function": "cancel order",
+ "event": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "tx_index": 0,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509796,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4250,11 +4954,74 @@ Returns the credits of an address
"locked": true,
"issuer": null
},
- "quantity_normalized": "1042.00000000"
+ "quantity_normalized": "0.00001000"
+ },
+ {
+ "block_index": 159,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "calling_function": "issuance",
+ "event": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "tx_index": 46,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509780,
+ "asset_info": {
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "description": "A subnumeric asset",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "1000.00000000"
+ },
+ {
+ "block_index": 156,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "TESTLOCKDESC",
+ "quantity": 10000000000,
+ "calling_function": "issuance",
+ "event": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f",
+ "tx_index": 43,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509746,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Test Locking Description",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "100.00000000"
+ },
+ {
+ "block_index": 151,
+ "address": null,
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "calling_function": "attach to utxo",
+ "event": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "tx_index": 38,
+ "utxo": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1",
+ "utxo_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "confirmed": true,
+ "block_time": 1726509724,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000"
}
],
- "next_cursor": null,
- "result_count": 1
+ "next_cursor": 42,
+ "result_count": 14
}
```
@@ -4263,10 +5030,11 @@ Returns the credits of an address
Returns the debits of an address
+ Parameters
- + address: `bc1q7787j6msqczs58asdtetchl3zwe8ruj57p9r9y` (str, required) - The address to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ action (enum[str], optional) - The action to filter by
+ Default: `None`
+ Members
+ + `None`
+ `bet`
+ `destroy`
+ `dividend`
@@ -4283,7 +5051,7 @@ Returns the debits of an address
+ `send`
+ `sweep`
+ `sweep fee`
- + cursor (int, optional) - The last index of the debits to return
+ + cursor (str, optional) - The last index of the debits to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of debits to return
+ Default: `100`
@@ -4300,14 +5068,38 @@ Returns the debits of an address
{
"result": [
{
- "block_index": 844326,
- "address": "bc1q7787j6msqczs58asdtetchl3zwe8ruj57p9r9y",
+ "block_index": 191,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "action": "open order",
+ "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509903,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ {
+ "block_index": 189,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 21500000000,
- "action": "open dispenser",
- "event": "a5aa565f23c3f0ecc09f7148f75ddfdef36e510c9b1f4ff09abb21590dec17b1",
- "tx_index": 2733626,
- "block_time": 1716225956,
+ "quantity": 1000,
+ "action": "open order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "tx_index": 55,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509894,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4315,17 +5107,20 @@ Returns the debits of an address
"locked": true,
"issuer": null
},
- "quantity_normalized": "215.00000000"
+ "quantity_normalized": "0.00001000"
},
{
- "block_index": 840388,
- "address": "bc1q7787j6msqczs58asdtetchl3zwe8ruj57p9r9y",
+ "block_index": 188,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 250000000000,
- "action": "send",
- "event": "bc54968ba7d0a59a47b276602e2dbdcf01b14009742e0d7b50272cbae529a9a4",
- "tx_index": 2726594,
- "block_time": 1713815975,
+ "quantity": 10,
+ "action": "mpma send",
+ "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "tx_index": 54,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4333,17 +5128,41 @@ Returns the debits of an address
"locked": true,
"issuer": null
},
- "quantity_normalized": "2500.00000000"
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "block_index": 188,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "quantity": 20,
+ "action": "mpma send",
+ "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "tx_index": 54,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000020"
},
{
- "block_index": 836949,
- "address": "bc1q7787j6msqczs58asdtetchl3zwe8ruj57p9r9y",
+ "block_index": 183,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 40000000000,
- "action": "open dispenser",
- "event": "53ed08176d3479f49986e9282293da85cebc03835b128d8e790ee587f9f1c750",
- "tx_index": 2721524,
- "block_time": 1711795990,
+ "quantity": 10000,
+ "action": "open order",
+ "event": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx_index": 49,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509858,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4351,11 +5170,11 @@ Returns the debits of an address
"locked": true,
"issuer": null
},
- "quantity_normalized": "400.00000000"
+ "quantity_normalized": "0.00010000"
}
],
- "next_cursor": null,
- "result_count": 3
+ "next_cursor": 43,
+ "result_count": 20
}
```
@@ -4364,7 +5183,7 @@ Returns the debits of an address
Returns the bets of a feed
+ Parameters
- + address: `1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk` (str, required) - The address of the feed
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address of the feed
+ status: `filled` (enum[str], optional) - The status of the bet
+ Default: `open`
+ Members
@@ -4373,7 +5192,7 @@ Returns the bets of a feed
+ `expired`
+ `filled`
+ `open`
- + cursor (int, optional) - The last index of the bets to return
+ + cursor (str, optional) - The last index of the bets to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of bets to return
+ Default: `100`
@@ -4388,52 +5207,9 @@ Returns the bets of a feed
```
{
- "result": [
- {
- "tx_index": 61338,
- "tx_hash": "0fcc7f5190c028f6c5534554d10ec5b4a9246d63826421cd58be2d572d11f088",
- "block_index": 320702,
- "source": "1Ew38GxczvV1KxjzZsq9f8UuRzHkHQrL5C",
- "feed_address": "1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
- "bet_type": 2,
- "deadline": 1410728400,
- "wager_quantity": 1000000,
- "wager_remaining": 0,
- "counterwager_quantity": 1999991,
- "counterwager_remaining": 0,
- "target_value": 1.0,
- "leverage": 5040,
- "expiration": 13,
- "expire_index": 320715,
- "fee_fraction_int": 1000000,
- "status": "filled",
- "block_time": 1410722043,
- "fee_fraction_int_normalized": "0.01000000"
- },
- {
- "tx_index": 15106,
- "tx_hash": "5d097b4729cb74d927b4458d365beb811a26fcee7f8712f049ecbe780eb496ed",
- "block_index": 304062,
- "source": "18ZNyaAcH4HugeofwbrpLoUNiayxJRH65c",
- "feed_address": "1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
- "bet_type": 3,
- "deadline": 1401828300,
- "wager_quantity": 50000000,
- "wager_remaining": 0,
- "counterwager_quantity": 50000000,
- "counterwager_remaining": 0,
- "target_value": 1.0,
- "leverage": 5040,
- "expiration": 11,
- "expire_index": 304073,
- "fee_fraction_int": 1000000,
- "status": "filled",
- "block_time": 1401823245,
- "fee_fraction_int_normalized": "0.01000000"
- }
- ],
+ "result": [],
"next_cursor": null,
- "result_count": 2
+ "result_count": 0
}
```
@@ -4442,8 +5218,8 @@ Returns the bets of a feed
Returns the broadcasts of a source
+ Parameters
- + address: `1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk` (str, required) - The address to return
- + cursor (int, optional) - The last index of the broadcasts to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the broadcasts to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of broadcasts to return
+ Default: `100`
@@ -4460,36 +5236,23 @@ Returns the broadcasts of a source
{
"result": [
{
- "tx_index": 61477,
- "tx_hash": "5d49993bec727622c7b41c84e2b1e65c368f33390d633d217131ffcc5b592f0d",
- "block_index": 320718,
- "source": "1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
- "timestamp": 1410732503,
- "value": 1.0,
- "fee_fraction_int": 1000000,
- "text": "xbet.io/feed/1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
- "locked": false,
- "status": "valid",
- "block_time": 1410732883,
- "fee_fraction_int_normalized": "0.01000000"
- },
- {
- "tx_index": 15055,
- "tx_hash": "774887e555a6ae5a8c058ebc0185058307977f01a2d4d326e71f37d6dd977154",
- "block_index": 304048,
- "source": "1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
- "timestamp": 1401815290,
- "value": -1.0,
- "fee_fraction_int": 1000000,
- "text": "xbet.io/feed/1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
+ "tx_index": 24,
+ "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d",
+ "block_index": 137,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "timestamp": 4003903983,
+ "value": 999.0,
+ "fee_fraction_int": 0,
+ "text": "Hello, world!",
"locked": false,
"status": "valid",
- "block_time": 1401815393,
- "fee_fraction_int_normalized": "0.01000000"
+ "confirmed": true,
+ "block_time": 1726509652,
+ "fee_fraction_int_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 2
+ "result_count": 1
}
```
@@ -4498,8 +5261,8 @@ Returns the broadcasts of a source
Returns the burns of an address
+ Parameters
- + address: `1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W` (str, required) - The address to return
- + cursor (int, optional) - The last index of the burns to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the burns to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of burns to return
+ Default: `100`
@@ -4516,16 +5279,17 @@ Returns the burns of an address
{
"result": [
{
- "tx_index": 3070,
- "tx_hash": "4560d0e3d04927108b615ab106040489aca9c4aceedcf69d2b71f63b3139c7ae",
- "block_index": 283810,
- "source": "1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W",
- "burned": 10000000,
- "earned": 10000000000,
+ "tx_index": 0,
+ "tx_hash": "84cfd2ae481d0a4171e66009619eda93802914d5ccbb4bc52a5b76fd06d2dd79",
+ "block_index": 112,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "burned": 50000000,
+ "earned": 74999998167,
"status": "valid",
- "block_time": 1391371108,
- "burned_normalized": "0.10000000",
- "earned_normalized": "100.00000000"
+ "confirmed": true,
+ "block_time": 1726509535,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99998000"
}
],
"next_cursor": null,
@@ -4538,8 +5302,8 @@ Returns the burns of an address
Returns the sends, include Enhanced and MPMA sends, of an address
+ Parameters
- + address: `1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W` (str, required) - The address to return
- + cursor (int, optional) - The last index of the sends to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the sends to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of sends to return
+ Default: `100`
@@ -4556,17 +5320,19 @@ Returns the sends, include Enhanced and MPMA sends, of an address
{
"result": [
{
- "tx_index": 163106,
- "tx_hash": "1c447b41816f1cfbb83f125c8e05faeaae70dbf27255745ba7393f809bd388eb",
- "block_index": 343049,
- "source": "1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W",
- "destination": "16cRBUNnTWiUh2sXWNn1P7KHyJUmyMkdfH",
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
"asset": "XCP",
- "quantity": 10000000000,
+ "quantity": 10,
"status": "valid",
- "msg_index": 0,
+ "msg_index": 2,
"memo": null,
- "block_time": 1423684218,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4574,11 +5340,108 @@ Returns the sends, include Enhanced and MPMA sends, of an address
"locked": true,
"issuer": null
},
- "quantity_normalized": "100.00000000"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 38,
+ "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "block_index": 151,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509724,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 35,
+ "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d",
+ "block_index": 148,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509710,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 5
}
```
@@ -4587,8 +5450,8 @@ Returns the sends, include Enhanced and MPMA sends, of an address
Returns the receives of an address
+ Parameters
- + address: `1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs` (str, required) - The address to return
- + cursor (int, optional) - The last index of the sends to return
+ + address: `bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the sends to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of sends to return
+ Default: `100`
@@ -4605,25 +5468,28 @@ Returns the receives of an address
{
"result": [
{
- "tx_index": 2677412,
- "tx_hash": "7e4fbb0a1eeeee34bf499955f1027fb78c514d63a3c8ff2e28c6dad005e4d850",
- "block_index": 830981,
- "source": "bc1qqxr9grqw73dm95cen3g56mzswuj6eqjedu6csx",
- "destination": "1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs",
- "asset": "XCP",
- "quantity": 104200000000,
+ "tx_index": 37,
+ "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba",
+ "block_index": 150,
+ "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0",
+ "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0",
+ "asset": "MYASSETA",
+ "quantity": 500000000,
"status": "valid",
"msg_index": 0,
"memo": null,
- "block_time": 1708253880,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509719,
"asset_info": {
- "divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "1042.00000000"
+ "quantity_normalized": "5.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
@@ -4636,9 +5502,9 @@ Returns the receives of an address
Returns the sends, include Enhanced and MPMA sends, of an address and asset
+ Parameters
- + address: `1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W` (str, required) - The address to return
- + asset: `XCP` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the sends to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + asset: `MYASSETA` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the sends to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of sends to return
+ Default: `100`
@@ -4655,29 +5521,104 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset
{
"result": [
{
- "tx_index": 163106,
- "tx_hash": "1c447b41816f1cfbb83f125c8e05faeaae70dbf27255745ba7393f809bd388eb",
- "block_index": 343049,
- "source": "1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W",
- "destination": "16cRBUNnTWiUh2sXWNn1P7KHyJUmyMkdfH",
- "asset": "XCP",
- "quantity": 10000000000,
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
"status": "valid",
"msg_index": 0,
"memo": null,
- "block_time": 1423684218,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 38,
+ "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "block_index": 151,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509724,
+ "asset_info": {
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "100.00000000"
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 35,
+ "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d",
+ "block_index": 148,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509710,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 4
}
```
@@ -4686,9 +5627,9 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset
Returns the receives of an address and asset
+ Parameters
- + address: `1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs` (str, required) - The address to return
- + asset: `XCP` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the sends to return
+ + address: `bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0` (str, required) - The address to return
+ + asset: `MYASSETA` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the sends to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of sends to return
+ Default: `100`
@@ -4705,25 +5646,28 @@ Returns the receives of an address and asset
{
"result": [
{
- "tx_index": 2677412,
- "tx_hash": "7e4fbb0a1eeeee34bf499955f1027fb78c514d63a3c8ff2e28c6dad005e4d850",
- "block_index": 830981,
- "source": "bc1qqxr9grqw73dm95cen3g56mzswuj6eqjedu6csx",
- "destination": "1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs",
- "asset": "XCP",
- "quantity": 104200000000,
+ "tx_index": 37,
+ "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba",
+ "block_index": 150,
+ "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0",
+ "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0",
+ "asset": "MYASSETA",
+ "quantity": 500000000,
"status": "valid",
"msg_index": 0,
"memo": null,
- "block_time": 1708253880,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509719,
"asset_info": {
- "divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "1042.00000000"
+ "quantity_normalized": "5.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
@@ -4736,8 +5680,8 @@ Returns the receives of an address and asset
Returns the dispensers of an address
+ Parameters
- + address: `bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz` (str, required) - The address to return
- + status: `open` (enum[str], optional) - The status of the dispensers to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + status (enum[str], optional) - The status of the dispensers to return
+ Default: `all`
+ Members
+ `all`
@@ -4745,7 +5689,7 @@ Returns the dispensers of an address
+ `closed`
+ `closing`
+ `open_empty_address`
- + cursor (int, optional) - The last index of the dispensers to return
+ + cursor (str, optional) - The last index of the dispensers to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispensers to return
+ Default: `100`
@@ -4762,19 +5706,19 @@ Returns the dispensers of an address
{
"result": [
{
- "tx_index": 2726460,
- "tx_hash": "b592d8ca4994d182e4ec63e1659dc4282b1a84466b7d71ed68c281ce63ed4897",
- "block_index": 839964,
- "source": "bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz",
- "asset": "ERYKAHPEPU",
+ "tx_index": 30,
+ "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "block_index": 144,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
"give_quantity": 1,
- "escrow_quantity": 25,
- "satoshirate": 50000,
+ "escrow_quantity": 10,
+ "satoshirate": 1,
"status": 0,
- "give_remaining": 25,
+ "give_remaining": 20,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 0,
"last_status_tx_source": null,
"close_block_index": null,
@@ -4783,24 +5727,61 @@ Returns the dispensers of an address
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 50000,
- "block_time": 1713554987,
+ "satoshi_price": 1,
+ "block_time": 1726509693,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000020",
+ "escrow_quantity_normalized": "0.00000010",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ {
+ "tx_index": 26,
+ "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509680,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "25",
- "escrow_quantity_normalized": "25",
- "satoshirate_normalized": "0.00050000",
- "satoshi_price_normalized": "0.00050000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 2
}
```
@@ -4809,8 +5790,8 @@ Returns the dispensers of an address
Returns the dispenser of an address and an asset
+ Parameters
- + address: `bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz` (str, required) - The address to return
- + asset: `ERYKAHPEPU` (str, required) - The asset to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + asset: `XCP` (str, required) - The asset to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -4821,19 +5802,19 @@ Returns the dispenser of an address and an asset
```
{
"result": {
- "tx_index": 2726460,
- "tx_hash": "b592d8ca4994d182e4ec63e1659dc4282b1a84466b7d71ed68c281ce63ed4897",
- "block_index": 839964,
- "source": "bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz",
- "asset": "ERYKAHPEPU",
+ "tx_index": 30,
+ "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "block_index": 144,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
"give_quantity": 1,
- "escrow_quantity": 25,
- "satoshirate": 50000,
+ "escrow_quantity": 10,
+ "satoshirate": 1,
"status": 0,
- "give_remaining": 25,
+ "give_remaining": 20,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 0,
"last_status_tx_source": null,
"close_block_index": null,
@@ -4842,20 +5823,20 @@ Returns the dispenser of an address and an asset
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 50000,
- "block_time": 1713554987,
+ "satoshi_price": 1,
+ "block_time": 1726509693,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "25",
- "escrow_quantity_normalized": "25",
- "satoshirate_normalized": "0.00050000",
- "satoshi_price_normalized": "0.00050000"
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000020",
+ "escrow_quantity_normalized": "0.00000010",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
}
}
```
@@ -4865,8 +5846,8 @@ Returns the dispenser of an address and an asset
Returns the dispenses of a source
+ Parameters
- + address: `bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2` (str, required) - The address to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -4883,29 +5864,29 @@ Returns the dispenses of a source
{
"result": [
{
- "tx_index": 2726580,
+ "tx_index": 28,
"dispense_index": 0,
- "tx_hash": "e7f0f2c9bef7a492b714a5952ec61b283be344419c5bc33f405f9af41ebfa48b",
- "block_index": 840322,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj",
- "asset": "FLOCK",
- "dispense_quantity": 90000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 2994590,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
"confirmed": true,
"dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -4913,223 +5894,76 @@ Returns the dispenses of a source
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1713778817,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "dispense_quantity_normalized": "900.00000000",
- "btc_amount_normalized": "0.02994590"
- },
- {
- "tx_index": 2610745,
- "dispense_index": 0,
- "tx_hash": "8c95cc6afc8fd466c784fd1c02749c585988999bbc66251b944c443dc31af757",
- "block_index": 821450,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "1FKYM1CP9RfttJhNG8HTNQdE2uV3YvwbRB",
- "asset": "FLOCK",
- "dispense_quantity": 20000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 660000,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 2,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1702725719,
+ "block_time": 1726509680,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "200.00000000",
- "btc_amount_normalized": "0.00660000"
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
},
{
- "tx_index": 2534580,
+ "tx_index": 27,
"dispense_index": 0,
- "tx_hash": "cbdf58d0bc52a26a1610462cd73626d9879f130d2b7d5a4c3e03742fe1606801",
- "block_index": 816517,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qsjydaffgdswp28l5aal0sl7hd2u6y22tqy278g",
- "asset": "FLOCK",
- "dispense_quantity": 40000000000,
- "dispenser_tx_hash": "ea971e6e73eb90d77e5ec7bf1271043c5fa9a67f991f1eaf9468586307cd4f2a",
- "btc_amount": 4000000,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
"confirmed": true,
"dispenser": {
- "tx_index": 2534144,
- "block_index": 816155,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 10000000000,
- "satoshirate": 330000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 10,
"give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 1,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
"fiat_price": null,
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
"give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "100.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "block_time": 1699823810,
+ "block_time": 1726509665,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "400.00000000",
- "btc_amount_normalized": "0.04000000"
- },
- {
- "tx_index": 2534136,
- "dispense_index": 0,
- "tx_hash": "39be295eb85c2123438fd672566dcc2b06f8e9881d640a6c712476a989c00f7f",
- "block_index": 816150,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1q3p7pdeahzyvvvc8gjv55rgvhgyum3xgy8d4hnx",
- "asset": "FLOCK",
- "dispense_quantity": 20000000000,
- "dispenser_tx_hash": "25c458a82f6596450736d3ec91f2b45a51327cdbfb1d0c88ccb07969c8e1aa90",
- "btc_amount": 7194444,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2409069,
- "block_index": 792572,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 30000000000,
- "satoshirate": 750000,
- "status": 10,
- "give_remaining": 0,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 2,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 750000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "300.00000000",
- "satoshirate_normalized": "0.00750000",
- "satoshi_price_normalized": "0.00750000"
- },
- "block_time": 1699627019,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "200.00000000",
- "btc_amount_normalized": "0.07194444"
- },
- {
- "tx_index": 2412000,
- "dispense_index": 0,
- "tx_hash": "f27dd343f4e6ccc2dec13daa558e689a60efd6041a6d0da71ae9a0d548ffb2f4",
- "block_index": 792643,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qxtpej3nm2nxvege77gdr2vjwhdkcfh9en3avad",
- "asset": "FLOCK",
- "dispense_quantity": 10000000000,
- "dispenser_tx_hash": "25c458a82f6596450736d3ec91f2b45a51327cdbfb1d0c88ccb07969c8e1aa90",
- "btc_amount": 750000,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2409069,
- "block_index": 792572,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 30000000000,
- "satoshirate": 750000,
- "status": 10,
- "give_remaining": 0,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 2,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 750000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "300.00000000",
- "satoshirate_normalized": "0.00750000",
- "satoshi_price_normalized": "0.00750000"
- },
- "block_time": 1685768744,
- "asset_info": {
"asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "100.00000000",
- "btc_amount_normalized": "0.00750000"
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
}
],
"next_cursor": null,
- "result_count": 5
+ "result_count": 2
}
```
@@ -5138,8 +5972,8 @@ Returns the dispenses of a source
Returns the dispenses of a destination
+ Parameters
- + address: `bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj` (str, required) - The address to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -5156,29 +5990,29 @@ Returns the dispenses of a destination
{
"result": [
{
- "tx_index": 2726580,
+ "tx_index": 28,
"dispense_index": 0,
- "tx_hash": "e7f0f2c9bef7a492b714a5952ec61b283be344419c5bc33f405f9af41ebfa48b",
- "block_index": 840322,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj",
- "asset": "FLOCK",
- "dispense_quantity": 90000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 2994590,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
"confirmed": true,
"dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -5186,27 +6020,76 @@ Returns the dispenses of a destination
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1713778817,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509680,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
+ },
+ {
+ "tx_index": 27,
+ "dispense_index": 0,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509665,
+ "asset_info": {
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "900.00000000",
- "btc_amount_normalized": "0.02994590"
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 2
}
```
@@ -5215,9 +6098,9 @@ Returns the dispenses of a destination
Returns the dispenses of an address and an asset
+ Parameters
- + address: `bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2` (str, required) - The address to return
- + asset: `FLOCK` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + asset: `XCP` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -5234,176 +6117,29 @@ Returns the dispenses of an address and an asset
{
"result": [
{
- "tx_index": 2726580,
- "dispense_index": 0,
- "tx_hash": "e7f0f2c9bef7a492b714a5952ec61b283be344419c5bc33f405f9af41ebfa48b",
- "block_index": 840322,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj",
- "asset": "FLOCK",
- "dispense_quantity": 90000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 2994590,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 2,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1713778817,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "900.00000000",
- "btc_amount_normalized": "0.02994590"
- },
- {
- "tx_index": 2610745,
- "dispense_index": 0,
- "tx_hash": "8c95cc6afc8fd466c784fd1c02749c585988999bbc66251b944c443dc31af757",
- "block_index": 821450,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "1FKYM1CP9RfttJhNG8HTNQdE2uV3YvwbRB",
- "asset": "FLOCK",
- "dispense_quantity": 20000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 660000,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 2,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1702725719,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "200.00000000",
- "btc_amount_normalized": "0.00660000"
- },
- {
- "tx_index": 2534580,
- "dispense_index": 0,
- "tx_hash": "cbdf58d0bc52a26a1610462cd73626d9879f130d2b7d5a4c3e03742fe1606801",
- "block_index": 816517,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qsjydaffgdswp28l5aal0sl7hd2u6y22tqy278g",
- "asset": "FLOCK",
- "dispense_quantity": 40000000000,
- "dispenser_tx_hash": "ea971e6e73eb90d77e5ec7bf1271043c5fa9a67f991f1eaf9468586307cd4f2a",
- "btc_amount": 4000000,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2534144,
- "block_index": 816155,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 10000000000,
- "satoshirate": 330000,
- "status": 10,
- "give_remaining": 0,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 1,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "100.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1699823810,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "400.00000000",
- "btc_amount_normalized": "0.04000000"
- },
- {
- "tx_index": 2534136,
+ "tx_index": 28,
"dispense_index": 0,
- "tx_hash": "39be295eb85c2123438fd672566dcc2b06f8e9881d640a6c712476a989c00f7f",
- "block_index": 816150,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1q3p7pdeahzyvvvc8gjv55rgvhgyum3xgy8d4hnx",
- "asset": "FLOCK",
- "dispense_quantity": 20000000000,
- "dispenser_tx_hash": "25c458a82f6596450736d3ec91f2b45a51327cdbfb1d0c88ccb07969c8e1aa90",
- "btc_amount": 7194444,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
"confirmed": true,
"dispenser": {
- "tx_index": 2409069,
- "block_index": 792572,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 30000000000,
- "satoshirate": 750000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 10,
"give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -5411,48 +6147,48 @@ Returns the dispenses of an address and an asset
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 750000,
- "give_quantity_normalized": "100.00000000",
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
"give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "300.00000000",
- "satoshirate_normalized": "0.00750000",
- "satoshi_price_normalized": "0.00750000"
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "block_time": 1699627019,
+ "block_time": 1726509680,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "200.00000000",
- "btc_amount_normalized": "0.07194444"
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
},
{
- "tx_index": 2412000,
+ "tx_index": 27,
"dispense_index": 0,
- "tx_hash": "f27dd343f4e6ccc2dec13daa558e689a60efd6041a6d0da71ae9a0d548ffb2f4",
- "block_index": 792643,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qxtpej3nm2nxvege77gdr2vjwhdkcfh9en3avad",
- "asset": "FLOCK",
- "dispense_quantity": 10000000000,
- "dispenser_tx_hash": "25c458a82f6596450736d3ec91f2b45a51327cdbfb1d0c88ccb07969c8e1aa90",
- "btc_amount": 750000,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
"confirmed": true,
"dispenser": {
- "tx_index": 2409069,
- "block_index": 792572,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 30000000000,
- "satoshirate": 750000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 10,
"give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -5460,27 +6196,27 @@ Returns the dispenses of an address and an asset
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 750000,
- "give_quantity_normalized": "100.00000000",
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
"give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "300.00000000",
- "satoshirate_normalized": "0.00750000",
- "satoshi_price_normalized": "0.00750000"
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "block_time": 1685768744,
+ "block_time": 1726509665,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "100.00000000",
- "btc_amount_normalized": "0.00750000"
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
}
],
"next_cursor": null,
- "result_count": 5
+ "result_count": 2
}
```
@@ -5489,9 +6225,9 @@ Returns the dispenses of an address and an asset
Returns the dispenses of an address and an asset
+ Parameters
- + address: `bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj` (str, required) - The address to return
- + asset: `FLOCK` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to return
+ + asset: `XCP` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -5508,29 +6244,29 @@ Returns the dispenses of an address and an asset
{
"result": [
{
- "tx_index": 2726580,
+ "tx_index": 28,
"dispense_index": 0,
- "tx_hash": "e7f0f2c9bef7a492b714a5952ec61b283be344419c5bc33f405f9af41ebfa48b",
- "block_index": 840322,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj",
- "asset": "FLOCK",
- "dispense_quantity": 90000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 2994590,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
"confirmed": true,
"dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -5538,27 +6274,76 @@ Returns the dispenses of an address and an asset
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1713778817,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509680,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
+ },
+ {
+ "tx_index": 27,
+ "dispense_index": 0,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509665,
+ "asset_info": {
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "900.00000000",
- "btc_amount_normalized": "0.02994590"
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 2
}
```
@@ -5567,8 +6352,8 @@ Returns the dispenses of an address and an asset
Returns the sweeps of an address
+ Parameters
- + address: `18szqTVJUWwYrtRHq98Wn4DhCGGiy3jZ87` (str, required) - The address to return
- + cursor (int, optional) - The last index of the sweeps to return
+ + address: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the sweeps to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of sweeps to return
+ Default: `100`
@@ -5585,17 +6370,18 @@ Returns the sweeps of an address
{
"result": [
{
- "tx_index": 2720537,
- "tx_hash": "d8db6281abffdbf6c320d5ade06aeb6fad2f7bfa1a2c2243c6726020a27107d3",
- "block_index": 836519,
- "source": "18szqTVJUWwYrtRHq98Wn4DhCGGiy3jZ87",
- "destination": "1HC2q92SfH1ZHzS4CrDwp6KAipV4FqUL4T",
- "flags": 3,
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
"status": "valid",
- "memo": null,
- "fee_paid": 1400000,
- "block_time": 1711548175,
- "fee_paid_normalized": "0.01400000"
+ "memo": "sweep my assets",
+ "fee_paid": 600000,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
}
],
"next_cursor": null,
@@ -5608,8 +6394,8 @@ Returns the sweeps of an address
Returns the issuances of an address
+ Parameters
- + address: `178etygrwEeeyQso9we85rUqYZbkiqzL4A` (str, required) - The address to return
- + cursor (int, optional) - The last index of the issuances to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the issuances to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of issuances to return
+ Default: `100`
@@ -5626,128 +6412,148 @@ Returns the issuances of an address
{
"result": [
{
- "tx_index": 2740538,
- "tx_hash": "4b04ceca81ec15b4d7ff035a44d9d40b60b970a62f5e8e6d25969ae7d86e9d05",
+ "tx_index": 46,
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
"msg_index": 0,
- "block_index": 852075,
- "asset": "PEPETRUMPFLG",
- "quantity": 0,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "block_index": 159,
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "https://gyxqvhos2tmqksb2ljxdanfelx2mmqw4iqwbc7cejfau25bhstma.arweave.net/Ni8KndLU2QVIOlpuMDSkXfTGQtxELBF8RElBTXQnlNg/PEPET.json",
+ "description": "A subnumeric asset",
"fee_paid": 0,
"status": "valid",
- "asset_longname": null,
- "locked": true,
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "locked": false,
"reset": false,
- "block_time": 1720927795,
- "quantity_normalized": "0",
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509780,
+ "quantity_normalized": "1000.00000000",
"fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740532,
- "tx_hash": "559cd7130bfc2832d60230eb3c2a90b652c7c8ea82534db8b7b2770bafb048c0",
+ "tx_index": 45,
+ "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f",
"msg_index": 0,
- "block_index": 852072,
- "asset": "PEPETRUMPFLG",
+ "block_index": 158,
+ "asset": "TESTLOCKDESC",
"quantity": 0,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "https://gyxqvhos2tmqksb2ljxdanfelx2mmqw4iqwbc7cejfau25bhstma.arweave.net/Ni8KndLU2QVIOlpuMDSkXfTGQtxELBF8RElBTXQnlNg/PEPET.json",
+ "description": "Test Locking Description",
"fee_paid": 0,
"status": "valid",
"asset_longname": null,
"locked": false,
"reset": false,
- "block_time": 1720926436,
- "quantity_normalized": "0",
+ "description_locked": true,
+ "fair_minting": false,
+ "asset_events": "lock_description reissuance",
+ "confirmed": true,
+ "block_time": 1726509775,
+ "quantity_normalized": "0.00000000",
"fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2739692,
- "tx_hash": "5e5e9e323d038b9063082648b709ae4b83ae87ca3d7f397dbcaec89f6d0fab2c",
+ "tx_index": 44,
+ "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af",
"msg_index": 0,
- "block_index": 851370,
- "asset": "PALEHORSE",
- "quantity": 11,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "block_index": 157,
+ "asset": "A95428959745315388",
+ "quantity": 0,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "",
- "fee_paid": 50000000,
+ "description": "Test Locking Description",
+ "fee_paid": 0,
"status": "valid",
- "asset_longname": null,
+ "asset_longname": "TESTLOCKDESC.MYSUBASSET",
"locked": false,
"reset": false,
- "block_time": 1720510891,
- "quantity_normalized": "11",
- "fee_paid_normalized": "0.50000000"
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509760,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2739691,
- "tx_hash": "038ec6e3cbf2a86bcec8a2bc1aa1d241fcae65d8a0f1939701d0bb64c833a6b0",
+ "tx_index": 43,
+ "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f",
"msg_index": 0,
- "block_index": 851369,
- "asset": "BILLCOOPER",
- "quantity": 17,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "block_index": 156,
+ "asset": "TESTLOCKDESC",
+ "quantity": 10000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "",
+ "description": "Test Locking Description",
"fee_paid": 50000000,
"status": "valid",
"asset_longname": null,
"locked": false,
"reset": false,
- "block_time": 1720510528,
- "quantity_normalized": "17",
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509746,
+ "quantity_normalized": "100.00000000",
"fee_paid_normalized": "0.50000000"
},
{
- "tx_index": 2739683,
- "tx_hash": "43c4071d8de78e9d19a8c1571accf833f46a3316c6b5400ed6a0888155563709",
+ "tx_index": 34,
+ "tx_hash": "73ed3c167032f8d2648710f1bceb54e23fc9faf80658565c8e897ea0fa7bcf35",
"msg_index": 0,
- "block_index": 851366,
- "asset": "WHITEHORSE",
- "quantity": 11,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "block_index": 147,
+ "asset": "MYASSETA",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "",
+ "description": "My super asset A",
"fee_paid": 50000000,
"status": "valid",
"asset_longname": null,
"locked": false,
"reset": false,
- "block_time": 1720509833,
- "quantity_normalized": "11",
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509706,
+ "quantity_normalized": "1000.00000000",
"fee_paid_normalized": "0.50000000"
}
],
- "next_cursor": 335815,
- "result_count": 60
+ "next_cursor": 15,
+ "result_count": 20
}
```
@@ -5756,7 +6562,7 @@ Returns the issuances of an address
Returns the valid assets of an issuer
+ Parameters
- + address: `1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD` (str, required) - The issuer to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The issuer to return
+ named: `true` (bool, optional) - Whether to return only named assets
+ Default: `None`
+ cursor (str, optional) - The last index of the assets to return
@@ -5776,88 +6582,93 @@ Returns the valid assets of an issuer
{
"result": [
{
- "asset": "RAREGLASSES",
- "asset_id": "2403424797964338",
+ "asset": "TESTLOCKDESC",
+ "asset_id": "70403005118950974",
"asset_longname": null,
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "owner": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": false,
- "locked": true,
- "supply": 900,
- "description": "RARE GLASSES",
- "first_issuance_block_index": 568490,
- "last_issuance_block_index": 568503,
- "first_issuance_block_time": 1553377215,
- "last_issuance_block_time": 1553383916,
- "supply_normalized": "900"
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 10000000000,
+ "description": "Test Locking Description",
+ "first_issuance_block_index": 156,
+ "last_issuance_block_index": 158,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509746,
+ "last_issuance_block_time": 1726509775,
+ "supply_normalized": "100.00000000"
},
{
- "asset": "YINYIN",
- "asset_id": "289053765",
+ "asset": "MYASSETA",
+ "asset_id": "103804245870",
"asset_longname": null,
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "owner": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": false,
- "locked": true,
- "supply": 5000,
- "description": "Dragon of Wealth and prosperity. ",
- "first_issuance_block_index": 568487,
- "last_issuance_block_index": 568503,
- "first_issuance_block_time": 1553373937,
- "last_issuance_block_time": 1553383916,
- "supply_normalized": "5000"
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 100000000000,
+ "description": "My super asset A",
+ "first_issuance_block_index": 147,
+ "last_issuance_block_index": 147,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509706,
+ "last_issuance_block_time": 1726509706,
+ "supply_normalized": "1000.00000000"
},
{
- "asset": "YANGGANG",
- "asset_id": "192920749768",
- "asset_longname": null,
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "owner": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": false,
- "locked": true,
- "supply": 1000,
+ "asset": "FAIRMINTD",
+ "asset_id": "1046814266085",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 40,
"description": "",
- "first_issuance_block_index": 566069,
- "last_issuance_block_index": 568503,
- "first_issuance_block_time": 1551979732,
- "last_issuance_block_time": 1553383916,
- "supply_normalized": "1000"
+ "first_issuance_block_index": 135,
+ "last_issuance_block_index": 136,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509644,
+ "last_issuance_block_time": 1726509648,
+ "supply_normalized": "0.00000040"
},
{
- "asset": "PIMPHAT",
- "asset_id": "4734539751",
- "asset_longname": null,
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "owner": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": false,
+ "asset": "FAIRMINTC",
+ "asset_id": "1046814266084",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false,
- "supply": 4000,
- "description": "Beautiful Pimphat",
- "first_issuance_block_index": 565697,
- "last_issuance_block_index": 565697,
- "first_issuance_block_time": 1551752302,
- "last_issuance_block_time": 1551752302,
- "supply_normalized": "4000"
+ "supply": 19,
+ "description": "",
+ "first_issuance_block_index": 131,
+ "last_issuance_block_index": 134,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509617,
+ "last_issuance_block_time": 1726509639,
+ "supply_normalized": "0.00000019"
},
{
- "asset": "POOPTOKEN",
- "asset_id": "3249363288093",
- "asset_longname": null,
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "owner": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
+ "asset": "FAIRMINTB",
+ "asset_id": "1046814266083",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
"locked": false,
- "supply": 200000000000000000,
- "description": "Saving India",
- "first_issuance_block_index": 489068,
- "last_issuance_block_index": 489068,
- "first_issuance_block_time": 1507567391,
- "last_issuance_block_time": 1507567391,
- "supply_normalized": "2000000000.00000000"
+ "supply": 0,
+ "description": "",
+ "first_issuance_block_index": 126,
+ "last_issuance_block_index": 130,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509596,
+ "last_issuance_block_time": 1726509613,
+ "supply_normalized": "0.00000000"
}
],
- "next_cursor": 66587,
- "result_count": 16
+ "next_cursor": 2,
+ "result_count": 6
}
```
@@ -5866,8 +6677,8 @@ Returns the valid assets of an issuer
Returns the transactions of an address
+ Parameters
- + address: `1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx` (str, required) - The address to return
- + cursor: `2736469` (int, optional) - The last transaction index to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor: `59` (str, optional) - The last transaction index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of transactions to return
+ Default: `10`
@@ -5884,187 +6695,222 @@ Returns the transactions of an address
{
"result": [
{
- "tx_index": 2736469,
- "tx_hash": "1f7137fb96ae71bbf6c39da7944931d3f8044e1cf5d82639661b55d9e09f3a58",
- "block_index": 848081,
- "block_hash": "00000000000000000002c92b4052699653b82863ab38bed3d714f7659eb05c5d",
- "block_time": 1718489498,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "destination": "18wm7BVkGEbJQoboQdXopVk9HRK3CGnFXG",
- "btc_amount": 13410,
- "fee": 0,
- "data": "0d00",
- "supported": true,
- "confirmed": true,
- "unpacked_data": {
- "message_type": "dispense",
- "message_type_id": 13,
- "message_data": {}
- },
- "btc_amount_normalized": "0.00013410"
- },
- {
- "tx_index": 2736468,
- "tx_hash": "92ee9d38df64184a250b17ab1dd38e9ff0882c2bd0704f8b40cbeb0408358012",
- "block_index": 848081,
- "block_hash": "00000000000000000002c92b4052699653b82863ab38bed3d714f7659eb05c5d",
- "block_time": 1718489498,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "destination": "13QiANYYDBvqVJQ9CBoqHNLDdbMN9qpRY2",
- "btc_amount": 179000,
- "fee": 0,
- "data": "0d00",
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_time": 1726509903,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
"supported": true,
+ "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "dispense",
- "message_type_id": 13,
- "message_data": {}
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
},
- "btc_amount_normalized": "0.00179000"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 2735895,
- "tx_hash": "a424318a4c9e10ba3613b619ffeba13d4108a59ce32ef75c348a1c230c8b94eb",
- "block_index": 847197,
- "block_hash": "000000000000000000008bdfedf10b6c30ce3f8021aac4d5a1d136e022303de8",
- "block_time": 1717943168,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
+ "tx_index": 56,
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "block_time": 1726509899,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 9010,
- "data": "0c0043458e7febdc080000000000000001000000000000000b000000000002981001001a35167b17f5920278bfacb9b7e1bbafeccc60a6",
+ "fee": 10000,
+ "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
"supported": true,
+ "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "dispenser",
- "message_type_id": 12,
+ "message_type": "cancel",
+ "message_type_id": 70,
"message_data": {
- "asset": "FEDMONEYTREE",
- "give_quantity": 1,
- "escrow_quantity": 11,
- "mainchainrate": 170000,
- "dispenser_status": 1,
- "action_address": "13PaAbSC7M7FSttH9YLNKjk3MSz8RpcMaU",
- "oracle_address": null,
- "status": "valid",
- "asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/kdf7yt/FEDMONEYTREE.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": false
- },
- "give_quantity_normalized": "1",
- "escrow_quantity_normalized": "11"
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "status": "valid"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 2735780,
- "tx_hash": "5a28b8eadbe394787a5130568da665bfd356a3dcf70869e19ca13ed19aeeff87",
- "block_index": 847028,
- "block_hash": "00000000000000000002faa2d5d50a16bbc9bdb32d3ed33ee7a76d8256e37b20",
- "block_time": 1717842773,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "destination": "1L7aoyA1ZJ75ZW6bLfzpxySfxA1hWZdxEK",
- "btc_amount": 170000,
- "fee": 0,
- "data": "0d00",
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 189,
+ "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "block_time": 1726509894,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
"supported": true,
+ "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "dispense",
- "message_type_id": 13,
- "message_data": {}
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
},
- "btc_amount_normalized": "0.00170000"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 2735569,
- "tx_hash": "2582127b26437c2ec18291f501ffc03d5bb48bf4e37655b3e86919dd98327096",
- "block_index": 846555,
- "block_hash": "00000000000000000002d1919ec83793cab862e59e87b8478a49c401871f37f0",
- "block_time": 1717546431,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780",
+ "block_time": 1726509890,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"destination": null,
"btc_amount": 0,
- "fee": 8809,
- "data": "030001007eb7f06c29432e30a04ac6fb96bafa2eafb2cde3400a5e6d164ab9588000000000000000603038649db5ba0297e000000000000000301061f42a2b751024b00000000000000018080805667fce69aec0000000000000005c00",
+ "fee": 10000,
+ "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400",
"supported": true,
+ "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0",
"confirmed": true,
"unpacked_data": {
"message_type": "mpma_send",
"message_type_id": 3,
"message_data": [
{
- "asset": "DESECRATPEPE",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
+ "asset": "MYASSETA",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
"asset_info": {
"asset_longname": null,
- "description": "https://easyasset.art/j/9y5ncz/DESECRATPEPE.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": false
- },
- "quantity_normalized": "1"
- },
- {
- "asset": "A9350357854593225919",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
- "asset_info": {
- "asset_longname": "DESECRATPEPE.DRUNKEKPELOSI",
- "description": "https://ttdgewzxwf2y436dhh5o67tvxisuqooacmrcdyhkblcnumuu5lba.arweave.net/nMZiWzexdY5vwzn67351uiVIOcATIiHg6grE2jKU6sI/DESEC.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
- "quantity_normalized": "1"
- },
- {
- "asset": "A441144555133272651",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 1,
- "memo": "",
- "memo_is_hex": false,
- "asset_info": {
- "asset_longname": "DESECRATPEPE.UKRAINEOWNEDCONGRESS",
- "description": "https://hwpdhvkwagwhm26yvlc67tz7mhlnby2wrde5dajmnbll5ewgmr5a.arweave.net/PZ4z1VYBrHZr2KrF788_YdbQ41aIydGBLGhWvpLGZHo/DESEC.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010"
},
{
- "asset": "TRUMPDANCING",
- "destination": "1CZ2VVEnhFQHp1bmHd5WjGf7ERyKNQf4bg",
- "quantity": 11,
- "memo": "",
- "memo_is_hex": false,
+ "asset": "XCP",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/wcun18/45DANCE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "11"
+ "quantity_normalized": "0.00000010"
}
]
},
"btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 49,
+ "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "block_index": 183,
+ "block_hash": "266c58f4906e9a1c4f81f972d7728ac8f370b75de6c542c61c838013ad48749d",
+ "block_time": 1726509858,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000",
+ "supported": true,
+ "utxos_info": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 10000,
+ "get_asset": "BTC",
+ "get_quantity": 10000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00010000",
+ "get_quantity_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
}
],
- "next_cursor": 2735423,
- "result_count": 401
+ "next_cursor": 47,
+ "result_count": 23
}
```
@@ -6073,8 +6919,8 @@ Returns the transactions of an address
Returns the dividends distributed by an address
+ Parameters
- + address: `1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx` (str, required) - The address to return
- + cursor (int, optional) - The last index of the assets to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + cursor (str, optional) - The last index of the assets to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of assets to return
+ Default: `100`
@@ -6091,64 +6937,37 @@ Returns the dividends distributed by an address
{
"result": [
{
- "tx_index": 2734638,
- "tx_hash": "d74242f4789f98c0ff6df44fe21a2cf614f02e694c1e34f1193d3a8f35cc01a0",
- "block_index": 845366,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "asset": "DESECRATPEPE",
- "dividend_asset": "A441144555133272651",
- "quantity_per_unit": 1,
- "fee_paid": 2420000,
+ "tx_index": 40,
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "block_index": 153,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "dividend_asset": "XCP",
+ "quantity_per_unit": 100000000,
+ "fee_paid": 40000,
"status": "valid",
- "block_time": 1716809141,
+ "confirmed": true,
+ "block_time": 1726509732,
"asset_info": {
"asset_longname": null,
- "description": "https://easyasset.art/j/9y5ncz/DESECRATPEPE.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
"dividend_asset_info": {
- "asset_longname": "DESECRATPEPE.UKRAINEOWNEDCONGRESS",
- "description": "https://hwpdhvkwagwhm26yvlc67tz7mhlnby2wrde5dajmnbll5ewgmr5a.arweave.net/PZ4z1VYBrHZr2KrF788_YdbQ41aIydGBLGhWvpLGZHo/DESEC.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.02420000"
- },
- {
- "tx_index": 2732205,
- "tx_hash": "e98e0ae1a0ad623bdea73b36114a6ac0d8dc6f87b0e3261d872bfdfc78e5db25",
- "block_index": 843882,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "asset": "DESECRATPEPE",
- "dividend_asset": "A9350357854593225919",
- "quantity_per_unit": 1,
- "fee_paid": 2420000,
- "status": "valid",
- "block_time": 1715961723,
- "asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/9y5ncz/DESECRATPEPE.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": false
- },
- "dividend_asset_info": {
- "asset_longname": "DESECRATPEPE.DRUNKEKPELOSI",
- "description": "https://ttdgewzxwf2y436dhh5o67tvxisuqooacmrcdyhkblcnumuu5lba.arweave.net/nMZiWzexdY5vwzn67351uiVIOcATIiHg6grE2jKU6sI/DESEC.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.02420000"
+ "quantity_per_unit_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00040000"
}
],
"next_cursor": null,
- "result_count": 2
+ "result_count": 1
}
```
@@ -6157,8 +6976,8 @@ Returns the dividends distributed by an address
Returns the orders of an address
+ Parameters
- + address: `1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c` (str, required) - The address to return
- + status: `filled` (enum[str], optional) - The status of the orders to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + status (enum[str], optional) - The status of the orders to return
+ Default: `all`
+ Members
+ `all`
@@ -6166,7 +6985,7 @@ Returns the orders of an address
+ `expired`
+ `filled`
+ `cancelled`
- + cursor (int, optional) - The last index of the orders to return
+ + cursor (str, optional) - The last index of the orders to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of orders to return
+ Default: `100`
@@ -6183,24 +7002,25 @@ Returns the orders of an address
{
"result": [
{
- "tx_index": 2736372,
- "tx_hash": "1b8e7b18fac3f0572e829086a692661cefcdf6f64fe58c23396f99275b9621ef",
- "block_index": 847907,
- "source": "1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c",
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_asset": "XCP",
- "give_quantity": 100000000,
- "give_remaining": 0,
- "get_asset": "PEPECASH",
- "get_quantity": 20000000000,
- "get_remaining": -3809523809,
- "expiration": 8064,
- "expire_index": 855971,
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 212,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 8715,
- "fee_provided_remaining": 8715,
- "status": "filled",
- "block_time": 1718376358,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509903,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -6209,266 +7029,168 @@ Returns the orders of an address
"issuer": null
},
"get_asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "give_quantity_normalized": "1.00000000",
- "get_quantity_normalized": "200.00000000",
- "get_remaining_normalized": "-38.09523800",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00008715",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00008715"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2736287,
- "tx_hash": "2a10c6c6595108d6a12de8b14de20c3e6b4ccfb809b6971b7a5dd1c547c97c07",
- "block_index": 847771,
- "source": "1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c",
- "give_asset": "BUPEPE",
- "give_quantity": 1,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 1100000000,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 855835,
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 190,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 210,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 8964,
- "fee_provided_remaining": 8964,
- "status": "filled",
- "block_time": 1718287863,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "cancelled",
+ "confirmed": true,
+ "block_time": 1726509899,
"give_asset_info": {
- "asset_longname": null,
- "description": "Bitcoin Uncensored Podcast - Chris DeRose and Junseth",
- "issuer": "15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve",
- "divisible": false,
- "locked": true
- },
- "get_asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "11.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00008964",
- "fee_required_normalized": "0.00000000",
- "fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00008964"
- },
- {
- "tx_index": 2736243,
- "tx_hash": "6a1440b8a02b7030a6b34e9ef7639fb6c174a62ba7b5c3a4c4702f03002945ed",
- "block_index": 847705,
- "source": "1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c",
- "give_asset": "BUPEPE",
- "give_quantity": 1,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 1000000000,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 855769,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "fee_provided": 6723,
- "fee_provided_remaining": 6723,
- "status": "filled",
- "block_time": 1718253513,
- "give_asset_info": {
- "asset_longname": null,
- "description": "Bitcoin Uncensored Podcast - Chris DeRose and Junseth",
- "issuer": "15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve",
- "divisible": false,
- "locked": true
- },
"get_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "10.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00006723",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00006723"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2736195,
- "tx_hash": "e461c00be2eda9789c32ec4830451d09f79e05318ef847c10906f9d7ebd37a05",
- "block_index": 847631,
- "source": "1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c",
- "give_asset": "DANKPEPE",
- "give_quantity": 1,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 18100000000,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 855695,
+ "tx_index": 49,
+ "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "block_index": 186,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 10000,
+ "give_remaining": 5000,
+ "get_asset": "BTC",
+ "get_quantity": 10000,
+ "get_remaining": 5000,
+ "expiration": 21,
+ "expire_index": 204,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 7221,
- "fee_provided_remaining": 7221,
- "status": "filled",
- "block_time": 1718203232,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509871,
"give_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "420",
- "issuer": "15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"get_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "181.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00007221",
+ "give_quantity_normalized": "0.00010000",
+ "get_quantity_normalized": "0.00010000",
+ "get_remaining_normalized": "0.00005000",
+ "give_remaining_normalized": "0.00005000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00007221"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2736084,
- "tx_hash": "aa19771d4fec74549d0b3b5dd005db12998bf1765e5485547f59f75d7acc186f",
- "block_index": 847501,
- "source": "1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c",
- "give_asset": "BUPEPE",
- "give_quantity": 7,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 7000000000,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 855565,
+ "tx_index": 47,
+ "tx_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "block_index": 182,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 181,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 7470,
- "fee_provided_remaining": 7470,
- "status": "filled",
- "block_time": 1718120065,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "expired",
+ "confirmed": true,
+ "block_time": 1726509796,
"give_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "Bitcoin Uncensored Podcast - Chris DeRose and Junseth",
- "issuer": "15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"get_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
- "give_quantity_normalized": "7",
- "get_quantity_normalized": "70.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00007470",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00007470"
+ "fee_provided_remaining_normalized": "0.00010000"
}
],
- "next_cursor": 532769,
- "result_count": 13
+ "next_cursor": null,
+ "result_count": 4
}
```
-## Group Compose
-**Notes about the Optional `encoding` Parameter.**
-
-By default the default value of the `encoding` parameter detailed above is `auto`, which means that `counterparty-server` automatically determines the best way to encode the Counterparty protocol data into a new transaction. If you know what you are doing and would like to explicitly specify an encoding:
-
-- To return the transaction as an **OP_RETURN** transaction, specify `opreturn` for the `encoding` parameter.
- - **OP_RETURN** transactions cannot have more than 80 bytes of data. If you force `OP_RETURN` encoding and your transaction would have more than this amount, an exception will be generated.
-
-- To return the transaction as a **multisig** transaction, specify `multisig` for the `encoding` parameter.
- - `pubkey` should be set to the hex-encoded public key of the source address.
- - Note that with the newest versions of Bitcoin (0.12.1 onward), bare multisig encoding does not reliably propagate. More information on this is documented [here](https://github.com/rubensayshi/counterparty-core/pull/9).
-
-- To return the transaction as a **pubkeyhash** transaction, specify `pubkeyhash` for the `encoding` parameter.
- - `pubkey` should be set to the hex-encoded public key of the source address.
-
-- To return the transaction as a 2 part **P2SH** transaction, specify `P2SH` for the encoding parameter.
- - First call the `create_` method with the `encoding` set to `P2SH`.
- - Sign the transaction as usual and broadcast it. It's recommended but not required to wait for the transaction to confirm as malleability is an issue here (P2SH isn't yet supported on segwit addresses).
- - The resulting `txid` must be passed again on an identic call to the `create_` method, but now passing an additional parameter `p2sh_pretx_txid` with the value of the previous transaction's id.
- - The resulting transaction is a `P2SH` encoded message, using the redeem script on the transaction inputs as data carrying mechanism.
- - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section
- - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes.
-
-### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Get Fairminters By Address [GET /v2/addresses/{address}/fairminters{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Composes a transaction to issue a bet against a feed.
+Returns the fairminter by its source
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will make the bet
- + feed_address: `1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev` (str, required) - The address that hosts the feed to be bet on
- + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual
- + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch)
- + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer)
- + counterwager_quantity: `1000` (int, required) - The minimum quantities of XCP to be wagered against, for the bets to match (in satoshis, hence integer)
- + expiration: `100` (int, required) - The number of blocks after which the bet expires if it remains unmatched
- + leverage (int, optional) - Leverage, as a fraction of 5040
- + Default: `5040`
- + target_value: `1000` (int, optional) - Target value for Equal/NotEqual bet
- + Default: `None`
- + encoding (str, optional) - The encoding method to use
- + Default: `auto`
- + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
- + Default: `None`
- + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.
- + Default: `546`
- + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output
- + Default: `1000`
- + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.
- + Default: `None`
- + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs
- + Default: `False`
- + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose
- + Default: `None`
- + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value
- + Default: `0`
- + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs
- + Default: `None`
- + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The source of the fairminter to return
+ + cursor (str, optional) -
+ Default: `None`
- + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs
- + Default: `False`
- + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee
- + Default: `False`
- + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction
+ + limit (int, optional) -
+ + Default: `100`
+ + offset (int, optional) -
+ Default: `None`
- + segwit (bool, optional) - Use segwit
- + Default: `False`
- + confirmation_target (int, optional) - The number of blocks to target for confirmation
- + Default: `3`
- + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
- + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6478,31 +7200,436 @@ Composes a transaction to issue a bet against a feed.
```
{
- "result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff0322020000000000001976a914bce6191bf2fd5981313cae869e9fafe164f7dbaf88ac0000000000000000316a2f0d1e454cefefcbe14dffa4c01ecd608ec45d2594e5d27c699f4ef2725648c509bf828ec195ee18f83e052061236deff2db0306000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
- "params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
- "feed_address": "1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev",
- "bet_type": 2,
- "deadline": 3000000000,
- "wager_quantity": 1000,
- "counterwager_quantity": 1000,
- "target_value": 1000,
- "leverage": 5040,
- "expiration": 100
- },
- "name": "bet"
- }
- }
- ```
+ "result": [
+ {
+ "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "tx_index": 22,
+ "block_index": 135,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTD",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 50,
+ "quantity_by_price": 60,
+ "hard_cap": 0,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "open",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509644
+ },
+ {
+ "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "tx_index": 18,
+ "block_index": 131,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTC",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 5,
+ "hard_cap": 0,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "open",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509617
+ },
+ {
+ "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16",
+ "tx_index": 14,
+ "block_index": 130,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTB",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 1,
+ "hard_cap": 10000000000,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 1000000000,
+ "soft_cap_deadline_block": 130,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "closed",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509613
+ },
+ {
+ "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "tx_index": 10,
+ "block_index": 125,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTA",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 1,
+ "hard_cap": 10000000000,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 1000000000,
+ "soft_cap_deadline_block": 124,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "closed",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509592
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 4
+ }
+ ```
+
+### Get Fairmints By Address [GET /v2/addresses/{address}/fairmints{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the mints by address
+
++ Parameters
+ + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return
+ + cursor (str, optional) -
+ + Default: `None`
+ + limit (int, optional) -
+ + Default: `100`
+ + offset (int, optional) -
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6",
+ "tx_index": 23,
+ "block_index": 136,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "asset": "FAIRMINTD",
+ "earn_quantity": 40,
+ "paid_quantity": 34,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509648,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "43b87a7de82b3deb9845abcc6d33d3d9b61c21d58377115c5edefeabc763c9ae",
+ "tx_index": 21,
+ "block_index": 134,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "asset": "FAIRMINTC",
+ "earn_quantity": 11,
+ "paid_quantity": 3,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509639,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "1148cccc0b0535df22ffd1571672abb937ff57bcefafc7af5d797405c8ce0b7f",
+ "tx_index": 20,
+ "block_index": 133,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "asset": "FAIRMINTC",
+ "earn_quantity": 3,
+ "paid_quantity": 1,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509625,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "a82d30ebc85da3571118450b2e29b8230ff34da2ee40ff7df9452727b80de1be",
+ "tx_index": 19,
+ "block_index": 132,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "asset": "FAIRMINTC",
+ "earn_quantity": 5,
+ "paid_quantity": 1,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509620,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "2fe7ff0c16953b4aff424432759c2e48819f92f9c4440a7047e3c86f9ca21161",
+ "tx_index": 15,
+ "block_index": 127,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16",
+ "asset": "FAIRMINTB",
+ "earn_quantity": 100000000,
+ "paid_quantity": 100000000,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509599,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "tx_index": 11,
+ "block_index": 123,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 500000000,
+ "paid_quantity": 500000000,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509583,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 6
+ }
+ ```
+
+### Get Fairmints By Address And Asset [GET /v2/addresses/{address}/fairmints/{asset}{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the mints by address and asset
+
++ Parameters
+ + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return
+ + asset: `FAIRMINTA` (str, required) - The asset of the mints to return
+ + cursor (str, optional) -
+ + Default: `None`
+ + limit (int, optional) -
+ + Default: `100`
+ + offset (int, optional) -
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "tx_index": 11,
+ "block_index": 123,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 500000000,
+ "paid_quantity": 500000000,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509583,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ }
+ ```
+
+## Group Compose
+**Notes about the Optional `encoding` Parameter.**
+
+By default the default value of the `encoding` parameter detailed above is `auto`, which means that `counterparty-server` automatically determines the best way to encode the Counterparty protocol data into a new transaction. If you know what you are doing and would like to explicitly specify an encoding:
+
+- To return the transaction as an **OP_RETURN** transaction, specify `opreturn` for the `encoding` parameter.
+ - **OP_RETURN** transactions cannot have more than 80 bytes of data. If you force `OP_RETURN` encoding and your transaction would have more than this amount, an exception will be generated.
+
+- To return the transaction as a **multisig** transaction, specify `multisig` for the `encoding` parameter.
+ - `pubkey` should be set to the hex-encoded public key of the source address.
+ - Note that with the newest versions of Bitcoin (0.12.1 onward), bare multisig encoding does not reliably propagate. More information on this is documented [here](https://github.com/rubensayshi/counterparty-core/pull/9).
+
+- To return the transaction as a **pubkeyhash** transaction, specify `pubkeyhash` for the `encoding` parameter.
+ - `pubkey` should be set to the hex-encoded public key of the source address.
+
+- To return the transaction as a 2 part **P2SH** transaction, specify `P2SH` for the encoding parameter.
+ - First call the `create_` method with the `encoding` set to `P2SH`.
+ - Sign the transaction as usual and broadcast it. It's recommended but not required to wait for the transaction to confirm as malleability is an issue here (P2SH isn't yet supported on segwit addresses).
+ - The resulting `txid` must be passed again on an identic call to the `create_` method, but now passing an additional parameter `p2sh_pretx_txid` with the value of the previous transaction's id.
+ - The resulting transaction is a `P2SH` encoded message, using the redeem script on the transaction inputs as data carrying mechanism.
+ - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section
+ - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes.
+
+### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
+
+Composes a transaction to issue a bet against a feed.
+
++ Parameters
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will make the bet
+ + feed_address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that hosts the feed to be bet on
+ + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual
+ + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch)
+ + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer)
+ + counterwager_quantity: `1000` (int, required) - The minimum quantities of XCP to be wagered against, for the bets to match (in satoshis, hence integer)
+ + expiration: `100` (int, required) - The number of blocks after which the bet expires if it remains unmatched
+ + leverage (int, optional) - Leverage, as a fraction of 5040
+ + Default: `5040`
+ + target_value: `1000` (int, optional) - Target value for Equal/NotEqual bet
+ + Default: `None`
+ + encoding (str, optional) - The encoding method to use
+ + Default: `auto`
+ + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
+ + Default: `None`
+ + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.
+ + Default: `546`
+ + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output
+ + Default: `1000`
+ + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.
+ + Default: `None`
+ + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs
+ + Default: `False`
+ + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose
+ + Default: `None`
+ + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value
+ + Default: `0`
+ + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs
+ + Default: `None`
+ + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception
+ + Default: `None`
+ + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs
+ + Default: `False`
+ + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee
+ + Default: `False`
+ + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction
+ + Default: `None`
+ + segwit (bool, optional) - Use segwit
+ + Default: `False`
+ + confirmation_target (int, optional) - The number of blocks to target for confirmation
+ + Default: `3`
+ + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ + Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "error": "['feed doesn\u2019t exist']"
+ }
+ ```
-### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to broadcast textual and numerical information to the network.
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset)
- + timestamp: `4003903983` (int, required) - The timestamp of the broadcast, in Unix time
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset)
+ + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time
+ value: `100` (float, required) - Numerical value of the broadcast
+ fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent)
+ text: `"Hello, world!"` (str, required) - The textual part of the broadcast
@@ -6538,6 +7665,10 @@ Composes a transaction to broadcast textual and numerical information to the net
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6548,10 +7679,10 @@ Composes a transaction to broadcast textual and numerical information to the net
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff0200000000000000002b6a290d1e454cefefcbe17b1100cb21d3398ec45d2594e5d1d822df41d03a332741261ce2f9aee7827cd91c9e0b0506000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "02000000000101b649c4e7fa40f164c03cd4447f8be4c3bbeb5ab6b102b0040141900933aac6ab000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a298a111578002e35f209d5778a06bfbacec513f992cc18166b895017e5651e3d9a9c8abe27c32de9bd6334b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
- "timestamp": 4003903983,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "timestamp": 4003903985,
"value": 100.0,
"fee_fraction": 0.05,
"text": "\"Hello, world!\""
@@ -6561,13 +7692,13 @@ Composes a transaction to broadcast textual and numerical information to the net
}
```
-### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to pay for a BTC order match.
+ Parameters
- + address: `bc1qsteve3tfxfg9pcmvzw645sr9zy7es5rx645p6l` (str, required) - The address that will be sending the payment
- + order_match_id: `e470416a9500fb046835192da013f48e6468a07dba1bede4a0b68e666ed23c8d_4953bde3d9417b103615c2d3d4b284d4fcf7cbd820e5dd19ac0084e9ebd090b2` (str, required) - The ID of the order match to pay for
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending the payment
+ + order_match_id: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21` (str, required) - The ID of the order match to pay for
+ encoding (str, optional) - The encoding method to use
+ Default: `auto`
+ fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
@@ -6600,6 +7731,10 @@ Composes a transaction to pay for a BTC order match.
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6610,22 +7745,22 @@ Composes a transaction to pay for a BTC order match.
```
{
"result": {
- "rawtransaction": "0200000000010161101e1990879ee64168cce92c9caf338bb571e9cb246b1c2ab87124b95091900200000016001482f2ccc569325050e36c13b55a4065113d985066ffffffff0383c3040000000000160014a9943f67bcd30331d5a4ec6d902cbe03789a1b9700000000000000004b6a49aae396d448ed266a7785be1f6fcfa38dbe3e6e043e3d67691f678d6aa3b30e423f66ffad71eaf3231ef8f05dd5cc2f5b1ea14d33274b9cddacca5bd816a1ce6d5b4d498eb66a981db7add758000000000016001482f2ccc569325050e36c13b55a4065113d98506602000000000000",
+ "rawtransaction": "020000000001014fca2cccbcf61bd93889e6594b5f5676eb7ccec2f792a180f5f069af357b7616000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03b80b0000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e00000000000000004b6a491bea0194c274239cce2dec48099450c2d32bb382ddfb3b81015ad5ec232bd55868ef141b018286e0bca6432cf028cefc16bae7d9d0f81d7cc89e7f1247e0f068e2c07fc713509850fad093052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "bc1qsteve3tfxfg9pcmvzw645sr9zy7es5rx645p6l",
- "order_match_id": "e470416a9500fb046835192da013f48e6468a07dba1bede4a0b68e666ed23c8d_4953bde3d9417b103615c2d3d4b284d4fcf7cbd820e5dd19ac0084e9ebd090b2"
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21"
},
"name": "btcpay"
}
}
```
-### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available).
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address with the BTC to burn
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address with the BTC to burn
+ quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address)
+ overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address
+ Default: `False`
@@ -6661,6 +7796,10 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6671,9 +7810,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff02e8030000000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ace61b0406000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "020000000001016fe1241c086889236a07a814417e56dab847abd58d96050d2ef16d394acb7071000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"quantity": 1000,
"overburn": false
},
@@ -6682,13 +7821,13 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss
}
```
-### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to cancel an open order or bet.
+ Parameters
- + address: `15e15ua6A3FJqjMevtrWcFSzKn9k6bMQeA` (str, required) - The address that placed the order/bet to be cancelled
- + offer_hash: `8ce3335391bf71f8f12c0573b4f85b9adc4882a9955d9f8e5ababfdd0060279a` (str, required) - The hash of the order/bet to be cancelled
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that placed the order/bet to be cancelled
+ + offer_hash: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232` (str, required) - The hash of the order/bet to be cancelled
+ encoding (str, optional) - The encoding method to use
+ Default: `auto`
+ fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
@@ -6721,6 +7860,10 @@ Composes a transaction to cancel an open order or bet.
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6731,22 +7874,22 @@ Composes a transaction to cancel an open order or bet.
```
{
"result": {
- "rawtransaction": "01000000014709bd6af5d4d7f518f80539d4fe9acd5220a520a7b4287416a7379af9e66154020000001976a91432dff6deb7ca3bbc14f7037fa6ef8a8cf8e39fb988acffffffff0200000000000000002b6a292f3720d2b8ae7343c6d0456802c531e1216f466ceb12b96c6fbe417a97291a0660e51fc47fcc1ee1a878667900000000001976a91432dff6deb7ca3bbc14f7037fa6ef8a8cf8e39fb988ac00000000",
+ "rawtransaction": "0200000000010175b4c418d03015dec817aad5fcb40a67eb01ab8c7f9b2434e0aeae3f2c7327e5000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a296a415035fc0e352ad913bcc9368104122e748b6b983f39533d639f2642afa98318345f31fc54c82b4434b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "15e15ua6A3FJqjMevtrWcFSzKn9k6bMQeA",
- "offer_hash": "8ce3335391bf71f8f12c0573b4f85b9adc4882a9955d9f8e5ababfdd0060279a"
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "offer_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232"
},
"name": "cancel"
}
}
```
-### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to destroy a quantity of an asset.
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will be sending the asset to be destroyed
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending the asset to be destroyed
+ asset: `XCP` (str, required) - The asset to be destroyed
+ quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer)
+ tag: `"bugs!"` (str, required) - A tag for the destruction
@@ -6782,6 +7925,10 @@ Composes a transaction to destroy a quantity of an asset.
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6792,30 +7939,38 @@ Composes a transaction to destroy a quantity of an asset.
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff020000000000000000226a200d1e454cefefcbe10bffa672ce93608ec55d2594e5d1946a776c900731380c6b94160406000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "02000000000101b6ee35e1324d5089f8d7d56494bef5bcffa8b7c4a7e486d0af9d225461966691000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000226a207b5b354f4bb56aadb60d34352b229414425ea46fd9be1edf6ea98bd29a7472df9db3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
"quantity": 1000,
- "tag": "\"bugs!\""
+ "tag": "\"bugs!\"",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
},
"name": "destroy"
}
}
```
-### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
-Opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation.
+Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation.
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset)
+ + address: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset)
+ asset: `XCP` (str, required) - The asset or subasset to dispense
+ give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer)
+ escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer)
+ mainchainrate: `100` (int, required) - The quantity of the main chain asset (BTC) per dispensed portion (in satoshis, hence integer)
+ status: `0` (int, required) - The state of the dispenser. 0 for open, 1 for open using open_address, 10 for closed
- + open_address (str, optional) - The address that you would like to open the dispenser on
+ + open_address (str, optional) - The address that you would like to open the dispenser on; MUST be equal to `address` from block 900000 onwards
+ Default: `None`
+ oracle_address (str, optional) - The address that you would like to use as a price oracle for this dispenser
+ Default: `None`
@@ -6851,6 +8006,10 @@ Opens or closes a dispenser for a given asset at a given rate of main chain asse
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6861,30 +8020,39 @@ Opens or closes a dispenser for a given asset at a given rate of main chain asse
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff0200000000000000002c6a2a0d1e454cefefcbe169ffa672ce93608ec55d2594e5d1946a774ef272564b2d4ad8c28ec195ee18f85a160c0b0406000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "020000000001013535818da2dc8007a59f5067eb9607b1ebdae92c65ceb00a7aa84795be59615102000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52ccffffffff0200000000000000002c6a2abf7584d7e313e8d8dd088940a821ea5a8220cba87c96c52763c53a2847b0809129a37280769f24c74047404b0a2701000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52cc02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
+ "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
"asset": "XCP",
"give_quantity": 1000,
"escrow_quantity": 1000,
"mainchainrate": 100,
"status": 0,
"open_address": null,
- "oracle_address": null
+ "oracle_address": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "escrow_quantity_normalized": "0.00001000"
},
"name": "dispenser"
}
}
```
-### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to issue a dividend to holders of a given asset.
+ Parameters
- + address: `1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on)
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on)
+ quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer)
- + asset: `PEPECASH` (str, required) - The asset or subasset that the dividends are being rewarded on
+ + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on
+ dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in
+ encoding (str, optional) - The encoding method to use
+ Default: `auto`
@@ -6918,6 +8086,10 @@ Composes a transaction to issue a dividend to holders of a given asset.
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -6928,27 +8100,42 @@ Composes a transaction to issue a dividend to holders of a given asset.
```
{
"result": {
- "rawtransaction": "01000000010af94458ae5aa794c49cd27f7b800a7c68c8dd4f59ff66c99db4e9e353c06d93010000001976a914a9055398b92818794b38b15794096f752167e25f88acffffffff020000000000000000236a21068a00268d252c3a8ed0bddb5ef79f823894aa7de1e196c005510f4d787c936a979b230000000000001976a914a9055398b92818794b38b15794096f752167e25f88ac00000000",
+ "rawtransaction": "02000000000101351dc0ca5529e3f5913ab348c8a5b0dab37120eb3a5362bf1edbd938a12afaa9000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a214c12bd38bfe6d74349de8861a285ce801c0df1aea0c2341213c29c0488e3b51bf459b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"quantity_per_unit": 1,
- "asset": "PEPECASH",
- "dividend_asset": "XCP"
+ "asset": "FAIRMINTA",
+ "dividend_asset": "XCP",
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "dividend_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_per_unit_normalized": "0.00000001"
},
"name": "dividend"
}
}
```
-### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset.
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will be issuing or transfering the asset
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing or transfering the asset
+ asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances
+ quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer)
- + transfer_destination: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, optional) - The address to receive the asset
+ + transfer_destination: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, optional) - The address to receive the asset
+ Default: `None`
+ divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued)
+ Default: `True`
@@ -6990,6 +8177,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7000,33 +8191,36 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff0322020000000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac0000000000000000236a210d1e454cefefcbe173ffa672cf3a36751b5d2594e5d1946a774ff272960578057c17ec0306000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "020000000001018c2c4aec7dc8917d96c67ca0080178a22f670265ea42df5f51b4cf18143f8d33000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0322020000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e0000000000000000236a2161361954172494529a3d38abfce581faf126d5f844d56d0f9ff51438a6ee05c1681ca8052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCPTEST",
"quantity": 1000,
- "transfer_destination": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
+ "transfer_destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
"lock": false,
"reset": false,
- "description": null
+ "description": null,
+ "quantity_normalized": "0.00001000"
},
"name": "issuance"
}
}
```
-### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to send multiple payments to multiple addresses.
+ Parameters
- + address: `1Fv87qmdtjQDP9d4p9E5ncBQvYB4a3Rhy6` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset)
- + assets: `BAABAABLKSHP,BADHAIRDAY,BADWOJAK` (str, required) - comma-separated list of assets to send
- + destinations: `1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev,1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD,1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs` (str, required) - comma-separated list of addresses to send to
- + quantities: `1,2,3` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer)
- + memo: `"Hello, world!"` (str, required) - The Memo associated with this transaction
- + memo_is_hex: `False` (bool, required) - Whether the memo field is a hexadecimal string
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset)
+ + assets: `XCP,MYASSETA` (str, required) - comma-separated list of assets to send
+ + destinations: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj,bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - comma-separated list of addresses to send to
+ + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer)
+ + memo: `"Hello, world!"` (str, optional) - The Memo associated with this transaction
+ + Default: `None`
+ + memo_is_hex: `False` (bool, optional) - Whether the memo field is a hexadecimal string
+ + Default: `False`
+ encoding (str, optional) - The encoding method to use
+ Default: `auto`
+ fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
@@ -7059,6 +8253,10 @@ Composes a transaction to send multiple payments to multiple addresses.
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7069,24 +8267,19 @@ Composes a transaction to send multiple payments to multiple addresses.
```
{
"result": {
- "rawtransaction": "0100000001fc9b7b3a0552bdfc3c62096e9d7669fb72d5482c7b4f9618138fdffdc831d60b000000001976a914a39dbfab6f1da182af53a4d14799ee545a6176be88acffffffff04e80300000000000069512103ce014780415d0eafbdadfacfa0cf2604a005a87157042f277627c952eedcbb1f2103abf2b72459ee70e6240a7b2ade1a6fa41c7f38cc1db5e63c6f92c01b859017ee2102e849a65234e77627daab722dd75aee7a8f35981ec1dbd5ec5ee7220075b2cd2d53aee80300000000000069512102ce014780415d0eafbd2fcbf00e308d420b59df89ebba83369fea96a9a06fcf562102373ec5e1389ccadf0a972ec451f8aea015104ded7a57b936d374d0ecfe8067412102e849a65234e77627daab722dd75aee7a8f35981ec1dbd5ec5ee7220075b2cd2d53aee80300000000000069512103d0014780415d0eafbd76dacca0b613dda4b8f37e3015031f11220ac5cf43ef4e21034051b78cdcbde85f0c120261e6ab383015104ded7a57b93cd374d900776d4e132102e849a65234e77627daab722dd75aee7a8f35981ec1dbd5ec5ee7220075b2cd2d53ae22fd0200000000001976a914a39dbfab6f1da182af53a4d14799ee545a6176be88ac00000000",
+ "rawtransaction": "02000000000104408d3617b81bce0c32909fc2def0c597a56244508180e231a57cd368ef04aca6000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff17bda3cda72e5b5f1532ba6749ecd58427332ebcf282c79cd16c8375a9e4a215000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc51fabedc80ce42d8f455f8cc69c88e82938707ddda14f7a68f33094383c23f4000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff6da23b7041e4c4b6b8d7cae88d1b4fbdad16503cf3dcfe3f6c85e0ae150c17a7000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03e80300000000000069512102c9169a3c7845490a815acdd720f2c894bb916b00b6987b846b31895a38e2814d21027759538aaa3307bc8d576cc9ae8b5cfeb4f89eecb554cbecc42baa629bc084ea21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102c6169a3c7845490a8179babad2e07e3ab844e5e8565a6a3c4d146e2f5af111ab21036c379bdd2e2e53b9d7c789f80af5c4df49c9840a52d15963e663cf0ef7afa8d521038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953ae47d016a8040000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000000000000",
"params": {
- "source": "1Fv87qmdtjQDP9d4p9E5ncBQvYB4a3Rhy6",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset_dest_quant_list": [
[
- "BAABAABLKSHP",
- "1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev",
+ "XCP",
+ "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
1
],
[
- "BADHAIRDAY",
- "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
+ "MYASSETA",
+ "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
2
- ],
- [
- "BADWOJAK",
- "1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs",
- 3
]
],
"memo": "\"Hello, world!\"",
@@ -7097,15 +8290,15 @@ Composes a transaction to send multiple payments to multiple addresses.
}
```
-### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to place an order on the distributed exchange.
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give)
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give)
+ give_asset: `XCP` (str, required) - The asset that will be given in the trade
+ give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer)
- + get_asset: `PEPECASH` (str, required) - The asset that will be received in the trade
+ + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade
+ get_quantity: `1000` (int, required) - The quantity of the asset that will be received (in satoshis, hence integer)
+ expiration: `100` (int, required) - The number of blocks for which the order should be valid
+ fee_required: `100` (int, required) - The miners’ fee required to be paid by orders for them to match this one; in BTC; required only if buying BTC (may be zero, though)
@@ -7141,6 +8334,10 @@ Composes a transaction to place an order on the distributed exchange.
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7151,28 +8348,45 @@ Composes a transaction to place an order on the distributed exchange.
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff020000000000000000356a330d1e454cefefcbe16fffa672ce93608ec55d2594e5d1946a774ef2724a2a4f457bc28ec195ee18fbd616f461236d8be718616dac000406000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "02000000000101c07bf8106610b1b623cb978c0aba88af7803750f54a05c0005f982825d88d475000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000356a334143661d91daa75e926ff6d79759f0577584c1a37635e27e463babf031a6b24bdcd4d41d8aebadcc6eb12b58fa950c86172ab287ae052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_asset": "XCP",
"give_quantity": 1000,
- "get_asset": "PEPECASH",
+ "get_asset": "FAIRMINTA",
"get_quantity": 1000,
"expiration": 100,
- "fee_required": 100
+ "fee_required": 100,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000100"
},
"name": "order"
}
}
```
-### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to send a quantity of an asset to another address.
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset)
- + destination: `1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev` (str, required) - The address that will be receiving the asset
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset)
+ + destination: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that will be receiving the asset
+ asset: `XCP` (str, required) - The asset or subasset to send
+ quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer)
+ memo (str, optional) - The Memo associated with this transaction
@@ -7213,6 +8427,10 @@ Composes a transaction to send a quantity of an asset to another address.
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7223,28 +8441,36 @@ Composes a transaction to send a quantity of an asset to another address.
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff020000000000000000306a2e0d1e454cefefcbe167ffa672ce93608ec55d2594e5d1946a774e4e944f50dfb46943bffd3b68866791f7f496f8c270060406000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "02000000000101d1ed4e6a2b26727a08b51181f172b8a5c8dd24188e57f543702dac89c942bd12000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000306a2eb930bb587d4fd62cbc52cc09eacb8b0dfbb418f08631a6360d98cf5ce3120e46955c4c3d48c01ca4c9bbe19f3103deaf052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
- "destination": "1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
"asset": "XCP",
"quantity": 1000,
"memo": null,
"memo_is_hex": false,
- "use_enhanced_send": true
+ "use_enhanced_send": true,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
},
"name": "send"
}
}
```
-### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&verbose}{&show_unconfirmed}]
+### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
Composes a transaction to Sends all assets and/or transfer ownerships to a destination address.
+ Parameters
- + address: `1CounterpartyXXXXXXXXXXXXXXXUWLpVr` (str, required) - The address that will be sending
- + destination: `1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev` (str, required) - The address to receive the assets and/or ownerships
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be sending
+ + destination: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address to receive the assets and/or ownerships
+ flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form.
+ memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format
+ encoding (str, optional) - The encoding method to use
@@ -7279,6 +8505,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti
+ Default: `3`
+ return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7289,10 +8519,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti
```
{
"result": {
- "rawtransaction": "01000000017004c1186a4a6a11708e1739839488180dbb6dbf4a9bf52228faa5b3173cdb05000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188acffffffff020000000000000000236a210d1e454cefefcbe161ff1a94d78892739ddc14a84b570af630af96858de42ab6cf6e150406000000001976a914818895f3dc2c178629d3d2d8fa3ec4a3f817982188ac00000000",
+ "rawtransaction": "02000000000101b562c0730715780ae991157f93d3a949c1cfaba285b7f621eea8d3dda79da50c000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a218a5634f40393d59bc3c1a4c12be1661951369bb953fbb8da7bd34ffdc310d0a1fe59b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
"params": {
- "source": "1CounterpartyXXXXXXXXXXXXXXXUWLpVr",
- "destination": "1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
"flags": 7,
"memo": "FFFF"
},
@@ -7301,21 +8531,50 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti
}
```
-## Group Assets
-
-### Get Valid Assets [GET /v2/assets{?named}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
-Returns the valid assets
+Composes a transaction to send BTC to a dispenser.
+ Parameters
- + named: `true` (bool, optional) - Whether to return only named assets
+ + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address that will be sending (must have the necessary quantity of BTC)
+ + dispenser: `bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30` (str, required) - The dispenser that will be receiving the asset
+ + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer)
+ + encoding (str, optional) - The encoding method to use
+ + Default: `auto`
+ + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
+ Default: `None`
- + cursor (str, optional) - The last index of the assets to return
+ + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.
+ + Default: `546`
+ + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output
+ + Default: `1000`
+ + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of assets to return
- + Default: `100`
- + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs
+ + Default: `False`
+ + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose
+ + Default: `None`
+ + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value
+ + Default: `0`
+ + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs
+ + Default: `None`
+ + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception
+ + Default: `None`
+ + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs
+ + Default: `False`
+ + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee
+ + Default: `False`
+ + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction
+ Default: `None`
+ + segwit (bool, optional) - Use segwit
+ + Default: `False`
+ + confirmation_target (int, optional) - The number of blocks to target for confirmation
+ + Default: `3`
+ + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ + Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7325,99 +8584,93 @@ Returns the valid assets
```
{
- "result": [
- {
- "asset": "ROUNDDECLOCK",
- "asset_id": "64483525514178638",
- "asset_longname": null,
- "issuer": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
- "owner": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
- "divisible": false,
- "locked": true,
- "supply": 57,
- "description": "https://easyasset.art/j/8osoah/ROUND.json",
- "first_issuance_block_index": 852283,
- "last_issuance_block_index": 852285,
- "first_issuance_block_time": 1721036182,
- "last_issuance_block_time": 1721036618,
- "supply_normalized": "57"
- },
- {
- "asset": "STORMUPONUS",
- "asset_id": "2647232363065230",
- "asset_longname": null,
- "issuer": "1EX4Ub2wg1aYNQ5jXnuC62T9dMmzhfVmSo",
- "owner": "1EX4Ub2wg1aYNQ5jXnuC62T9dMmzhfVmSo",
- "divisible": false,
- "locked": false,
- "supply": 111,
- "description": "Was the corn ripe for harvesting?",
- "first_issuance_block_index": 852231,
- "last_issuance_block_index": 852231,
- "first_issuance_block_time": 1721008444,
- "last_issuance_block_time": 1721008444,
- "supply_normalized": "111"
- },
- {
- "asset": "LGENDSNVRDIE",
- "asset_id": "41245254517611096",
- "asset_longname": null,
- "issuer": "13Hnmhs5gy2yXKVBx4wSM5HCBdKnaSBZJH",
- "owner": "13Hnmhs5gy2yXKVBx4wSM5HCBdKnaSBZJH",
- "divisible": false,
- "locked": false,
- "supply": 1111,
- "description": "",
- "first_issuance_block_index": 852164,
- "last_issuance_block_index": 852164,
- "first_issuance_block_time": 1720979652,
- "last_issuance_block_time": 1720979652,
- "supply_normalized": "1111"
- },
- {
- "asset": "YOUMISSED",
- "asset_id": "5130619768771",
- "asset_longname": null,
- "issuer": "13Hnmhs5gy2yXKVBx4wSM5HCBdKnaSBZJH",
- "owner": "13Hnmhs5gy2yXKVBx4wSM5HCBdKnaSBZJH",
- "divisible": false,
- "locked": false,
- "supply": 777,
- "description": "",
- "first_issuance_block_index": 852159,
- "last_issuance_block_index": 852159,
- "first_issuance_block_time": 1720975932,
- "last_issuance_block_time": 1720975932,
- "supply_normalized": "777"
+ "result": {
+ "rawtransaction": "020000000001014d628a3e65cc9537aa62c9b42db1b2df0e61d973978cac54482a0953d6fe49d70200000016001457841d54055a90ed31a47e9821fd3118e6e78592ffffffff03e803000000000000160014ae2b0c1095bbdf23747f76b242be716817701b7800000000000000000c6a0ac17afa5cc1158f0972f85fb808270100000016001457841d54055a90ed31a47e9821fd3118e6e7859202000000000000",
+ "params": {
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "quantity": 1000
},
- {
- "asset": "DONADLTRUMP",
- "asset_id": "502230156742927",
- "asset_longname": null,
- "issuer": "14QSKTMmMNQ9tGg1ahEGTEaPj1EhxXz2zN",
- "owner": "14QSKTMmMNQ9tGg1ahEGTEaPj1EhxXz2zN",
- "divisible": false,
- "locked": false,
- "supply": 88,
- "description": "",
- "first_issuance_block_index": 852140,
- "last_issuance_block_index": 852140,
- "first_issuance_block_time": 1720965836,
- "last_issuance_block_time": 1720965836,
- "supply_normalized": "88"
- }
- ],
- "next_cursor": 237098,
- "result_count": 108068
+ "name": "dispense"
+ }
}
```
-### Get Asset [GET /v2/assets/{asset}{?verbose}{&show_unconfirmed}]
+### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
-Returns an asset by its name
+Composes a transaction to issue a new asset using the FairMinter protocol.
+ Parameters
- + asset: `PEPECASH` (str, required) - The name of the asset to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be issuing the asset
+ + asset: `MYASSET` (str, required) - The asset to issue
+ + asset_parent (str, optional) - The parent asset of the asset to issue
+ + Default: ``
+ + price: `10` (int, optional) - The price in XCP of the asset to issue
+ + Default: `0`
+ + quantity_by_price (int, optional) - The quantity of asset to mint per `price` paid
+ + Default: `1`
+ + max_mint_per_tx (int, optional) - Amount minted if price is equal to 0; otherwise, maximum amount of asset that can be minted in a single transaction; if 0, there is no limit
+ + Default: `0`
+ + hard_cap (int, optional) - The maximum amount of asset that can be minted; if 0 there is no limit
+ + Default: `0`
+ + premint_quantity (int, optional) - Amount of asset to be minted when the sale starts, if 0, no premint; preminted assets are sent to the source of the transaction
+ + Default: `0`
+ + start_block (int, optional) - The block at which the sale starts
+ + Default: `0`
+ + end_block (int, optional) - The block at which the sale ends
+ + Default: `0`
+ + soft_cap (int, optional) - Minimum amount of asset to be minted, if None, no minimum; if the soft cap is not reached by the soft_cap_deadline_block, the sale is canceled, asset is revoked from all minters and all payments are refunded
+ + Default: `0`
+ + soft_cap_deadline_block (int, optional) - The block at which the soft cap must be reached
+ + Default: `0`
+ + minted_asset_commission (float, optional) - Commission to be paid in minted asset, a fraction of 1 (i.e., 0.05 is five percent); the commission is deducted from the asset received by the minter and sent to the Fair Minter owner
+ + Default: `0.0`
+ + burn_payment (bool, optional) - If True, the payment asset is burned, otherwise it is sent to the source
+ + Default: `False`
+ + lock_description (bool, optional) - If True, the description of the asset is locked
+ + Default: `False`
+ + lock_quantity (bool, optional) - If True, the quantity of the asset cannot be changed after the minting
+ + Default: `False`
+ + divisible (bool, optional) - If True, the asset is divisible
+ + Default: `True`
+ + description (str, optional) - The description of the asset
+ + Default: ``
+ + encoding (str, optional) - The encoding method to use
+ + Default: `auto`
+ + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
+ + Default: `None`
+ + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.
+ + Default: `546`
+ + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output
+ + Default: `1000`
+ + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.
+ + Default: `None`
+ + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs
+ + Default: `False`
+ + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose
+ + Default: `None`
+ + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value
+ + Default: `0`
+ + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs
+ + Default: `None`
+ + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception
+ + Default: `None`
+ + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs
+ + Default: `False`
+ + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee
+ + Default: `False`
+ + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction
+ + Default: `None`
+ + segwit (bool, optional) - Use segwit
+ + Default: `False`
+ + confirmation_target (int, optional) - The number of blocks to target for confirmation
+ + Default: `3`
+ + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ + Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7428,38 +8681,77 @@ Returns an asset by its name
```
{
"result": {
- "asset": "PEPECASH",
- "asset_id": "121892899915",
- "asset_longname": null,
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "owner": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": true,
- "locked": true,
- "supply": 99545023727421165,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "first_issuance_block_index": 430263,
- "last_issuance_block_index": 431786,
- "first_issuance_block_time": 1474131960,
- "last_issuance_block_time": 1474991545,
- "supply_normalized": "995450240.00000000"
+ "rawtransaction": "02000000000101fbdb9417de62f10b9120f7e3e29518b3e1b564d76efe4eeb9f5fb40810cb2695000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000316a2f1a876d6cad75159c126a8d28d8dba1389dc8a65bf6ccf9207d08f02f106901dfa932f2675b34d4dd1b20eaa13bd61e99af052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSET",
+ "asset_parent": "",
+ "price": 10,
+ "quantity_by_price": 1,
+ "max_mint_per_tx": 0,
+ "hard_cap": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "minted_asset_commission": 0.0,
+ "burn_payment": false,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "description": ""
+ },
+ "name": "fairminter"
}
}
```
-### Get Asset Balances [GET /v2/assets/{asset}/balances{?cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}]
+### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
-Returns the asset balances
+Composes a transaction to mint a quantity of an asset using the FairMinter protocol.
+ Parameters
- + asset: `UNNEGOTIABLE` (str, required) - The asset to return
- + cursor (str, optional) - The last index of the balances to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address that will be minting the asset
+ + asset: `FAIRMINTC` (str, required) - The asset to mint
+ + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer)
+ + Default: `0`
+ + encoding (str, optional) - The encoding method to use
+ + Default: `auto`
+ + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of balances to return
- + Default: `100`
- + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.
+ + Default: `546`
+ + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output
+ + Default: `1000`
+ + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.
+ Default: `None`
- + sort: `quantity:desc` (str, optional) - The sort order of the balances to return (overrides the `cursor` parameter)
+ + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs
+ + Default: `False`
+ + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose
+ + Default: `None`
+ + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value
+ + Default: `0`
+ + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs
+ + Default: `None`
+ + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception
+ + Default: `None`
+ + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs
+ + Default: `False`
+ + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee
+ + Default: `False`
+ + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction
+ Default: `None`
+ + segwit (bool, optional) - Use segwit
+ + Default: `False`
+ + confirmation_target (int, optional) - The number of blocks to target for confirmation
+ + Default: `3`
+ + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ + Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7469,85 +8761,72 @@ Returns the asset balances
```
{
- "result": [
- {
- "address": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "asset": "UNNEGOTIABLE",
- "quantity": 1700,
- "asset_info": {
- "asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1700"
- },
- {
- "address": "1NzqwpLpAG7nGXPah9azAKarGsR9myCRUU",
- "asset": "UNNEGOTIABLE",
- "quantity": 4,
- "asset_info": {
- "asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "4"
- },
- {
- "address": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "asset": "UNNEGOTIABLE",
- "quantity": 3,
- "asset_info": {
- "asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "3"
- },
- {
- "address": "1ADca8k8XRY278QfQ3f9ynWaNYFzUDhkrk",
- "asset": "UNNEGOTIABLE",
- "quantity": 2,
+ "result": {
+ "rawtransaction": "02000000000101ebc7922edff8bf7972bfbfc17ef1d69520687cb4a252ed0c25bc335b176b630a000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000166a14e8c879a220caa9210c9d86643046c47edc54aa60d4b6052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTC",
+ "quantity": 1,
"asset_info": {
- "asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "2"
+ "quantity_normalized": "0.00000001"
},
- {
- "address": "1Epp8huZPjiDZnJixzdDFoWmx7FZoxNVK6",
- "asset": "UNNEGOTIABLE",
- "quantity": 2,
- "asset_info": {
- "asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "2"
- }
- ],
- "next_cursor": "17LV3y5KhExPdVcqS81zXuVUfNV9pmaGA",
- "result_count": 9
+ "name": "fairmint"
+ }
}
```
-### Get Balance By Address And Asset [GET /v2/assets/{asset}/balances/{address}{?verbose}{&show_unconfirmed}]
+### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
-Returns the balance of an address and asset
+Composes a transaction to attach assets from an address to UTXO.
+ Parameters
- + address: `1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs` (str, required) - The address to return
- + asset: `XCP` (str, required) - The asset to return
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address from which the assets are attached
+ + asset: `XCP` (str, required) - The asset or subasset to attach
+ + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer)
+ + destination: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1` (str, optional) - The utxo to attach the assets to
+ + Default: `None`
+ + encoding (str, optional) - The encoding method to use
+ + Default: `auto`
+ + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
+ + Default: `None`
+ + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.
+ + Default: `546`
+ + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output
+ + Default: `1000`
+ + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.
+ + Default: `None`
+ + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs
+ + Default: `False`
+ + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose
+ + Default: `None`
+ + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value
+ + Default: `0`
+ + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs
+ + Default: `None`
+ + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception
+ + Default: `None`
+ + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs
+ + Default: `False`
+ + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee
+ + Default: `False`
+ + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction
+ + Default: `None`
+ + segwit (bool, optional) - Use segwit
+ + Default: `False`
+ + confirmation_target (int, optional) - The number of blocks to target for confirmation
+ + Default: `3`
+ + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ + Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -7558,38 +8837,959 @@ Returns the balance of an address and asset
```
{
"result": {
- "address": "1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs",
- "asset": "XCP",
- "quantity": 104200000000,
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "quantity_normalized": "1042.00000000"
- }
- }
+ "rawtransaction": "02000000000106fe554038ba01c7f82d1ded9634c1ef501e0c316f39b2f6af7d80141bcaca2bd0000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffdc2ead4b27cfb424aa6e8cc185a5e4a96185af16e10e61164e0f07e4c2b5a317000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc0f4470bf4218838b2ade8b3782b44678183b2e5fe80c83c5b14ec65bf014a89000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffcdf72a8e033e6ffc183a3728a3842c94648a627ae5438f47b8c8f13022d6d1dd000000001600147ed28f21558ee8ecd78a339105e7756213901b6efffffffffecec22cad05d1f474cdd73f8e9ffa05eb64cf664aebe3b08aaf0bb644770738000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffb9441e2420b5197ae1b9eddcc48ff658d0a1da2e5a5cd889e1fb8c60ea4609e3000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff04e803000000000000695121029f655253bae89cf966929abd462a943a4654655b5b0150b83790569507fe3ae3210295b3c028a258fedebd0f039dac617ac2b59e7194e21ac9a98db0f47cd8943e1c21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee803000000000000695121029f655253bae89cf966c2c8bd0c67962840003b055e0406bc3cc5008756f22bdc2103c5fc8e2de81af98aea4800ccfb2233cdf7d466d9b64d93e38eb4a5798d9d6bb421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102b5655253bae89cf96692caed066494372e7a53405d5652bc04fd63e262ca4fb32103a7cbb74fd12c9bb3897964fbc91002afc2e402e0867ea3d5bad2c34cecac0ec421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aec13922fc060000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000002000002000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
+ "asset": "XCP",
+ "quantity": 1000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "name": "utxo"
+ }
+ }
+ ```
+
+### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkey}{&allow_unconfirmed_inputs}{&fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&extended_tx_info}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&return_psbt}{&exclude_utxos}{&return_only_data}{&verbose}{&show_unconfirmed}]
+
+Composes a transaction to detach assets from UTXO to an address.
+
++ Parameters
+ + utxo: `f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1` (str, required) - The utxo from which the assets are detached
+ + destination: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to detach the assets to
+ + asset: `XCP` (str, required) - The asset or subasset to detach
+ + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer)
+ + encoding (str, optional) - The encoding method to use
+ + Default: `auto`
+ + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)
+ + Default: `None`
+ + regular_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.
+ + Default: `546`
+ + multisig_dust_size (int, optional) - Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output
+ + Default: `1000`
+ + pubkey (str, optional) - The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.
+ + Default: `None`
+ + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs
+ + Default: `False`
+ + fee (int, optional) - If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose
+ + Default: `None`
+ + fee_provided (int, optional) - If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value
+ + Default: `0`
+ + unspent_tx_hash (str, optional) - When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs
+ + Default: `None`
+ + dust_return_pubkey (str, optional) - The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception
+ + Default: `None`
+ + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs
+ + Default: `False`
+ + extended_tx_info (bool, optional) - When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee
+ + Default: `False`
+ + p2sh_pretx_txid (str, optional) - The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction
+ + Default: `None`
+ + segwit (bool, optional) - Use segwit
+ + Default: `False`
+ + confirmation_target (int, optional) - The number of blocks to target for confirmation
+ + Default: `3`
+ + return_psbt (bool, optional) - Construct a PSBT instead of a raw transaction hex
+ + Default: `False`
+ + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created
+ + Default: ``
+ + return_only_data (bool, optional) - Return only the data part of the transaction
+ + Default: `False`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": {
+ "rawtransaction": "02000000000101a7f3d5ff6cad0216060a55b7ad0a1b032687857cd0e9603223a183e5cd328ff4010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b76ffffffff04e80300000000000069512102d9e4e3e9266c080644ed9f64fec2af0f526747fd0c4bac4dddd10d11f9417b2f2102eb2503919a6e96ca62d48ebfdc837a09e9ba0e366a64d1c0e6b2e3405da3f1b2210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102d9e4e3e9266c080644e89d66a5c2fa59046511a90342fc008d814c57fe002ec22102bf2754919e6497c138d3cfeadbc72a41ffbc1920383cd086e0e4b00013feb4b9210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102f3e4e3e9266c080644f38a24a2c0f641694072b40548fd4cefe23e23cf711ea82102d24133a6f956a3f255e6b88fefb2183988db6a545d51e4f08782d5716b93c378210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee8980827010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b7602000000000000",
+ "params": {
+ "source": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1",
+ "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "name": "utxo"
+ }
+ }
+ ```
+
+### Compose Movetoutxo [GET /v2/utxos/{utxo}/compose/movetoutxo{?destination}{&more_utxos}{&verbose}{&show_unconfirmed}]
+
+Composes a transaction to move assets from UTXO to another UTXO.
+
++ Parameters
+ + utxo (str, required) - The utxo from which the assets are moved
+ + destination (str, required) - The address to move the assets to
+ + more_utxos (str, optional) - The additional utxos to fund the transaction
+ + Default: ``
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
+## Group Assets
+
+### Get Valid Assets [GET /v2/assets{?named}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the valid assets
+
++ Parameters
+ + named: `true` (bool, optional) - Whether to return only named assets
+ + Default: `None`
+ + cursor (str, optional) - The last index of the assets to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of assets to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "asset": "TESTLOCKDESC",
+ "asset_id": "70403005118950974",
+ "asset_longname": null,
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 10000000000,
+ "description": "Test Locking Description",
+ "first_issuance_block_index": 156,
+ "last_issuance_block_index": 158,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509746,
+ "last_issuance_block_time": 1726509775,
+ "supply_normalized": "100.00000000"
+ },
+ {
+ "asset": "MYASSETB",
+ "asset_id": "103804245871",
+ "asset_longname": null,
+ "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99",
+ "owner": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99",
+ "divisible": true,
+ "locked": false,
+ "supply": 100000000000,
+ "description": "My super asset B",
+ "first_issuance_block_index": 155,
+ "last_issuance_block_index": 155,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509741,
+ "last_issuance_block_time": 1726509741,
+ "supply_normalized": "1000.00000000"
+ },
+ {
+ "asset": "MYASSETA",
+ "asset_id": "103804245870",
+ "asset_longname": null,
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 100000000000,
+ "description": "My super asset A",
+ "first_issuance_block_index": 147,
+ "last_issuance_block_index": 147,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509706,
+ "last_issuance_block_time": 1726509706,
+ "supply_normalized": "1000.00000000"
+ },
+ {
+ "asset": "FAIRMINTD",
+ "asset_id": "1046814266085",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 40,
+ "description": "",
+ "first_issuance_block_index": 135,
+ "last_issuance_block_index": 136,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509644,
+ "last_issuance_block_time": 1726509648,
+ "supply_normalized": "0.00000040"
+ },
+ {
+ "asset": "FAIRMINTC",
+ "asset_id": "1046814266084",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 19,
+ "description": "",
+ "first_issuance_block_index": 131,
+ "last_issuance_block_index": 134,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509617,
+ "last_issuance_block_time": 1726509639,
+ "supply_normalized": "0.00000019"
+ }
+ ],
+ "next_cursor": 3,
+ "result_count": 8
+ }
+ ```
+
+### Get Asset [GET /v2/assets/{asset}{?verbose}{&show_unconfirmed}]
+
+Returns an asset by its name
+
++ Parameters
+ + asset: `FAIRMINTA` (str, required) - The name of the asset to return
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": {
+ "asset": "FAIRMINTA",
+ "asset_id": "1046814266082",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 10000000000,
+ "description": "",
+ "first_issuance_block_index": 122,
+ "last_issuance_block_index": 125,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509578,
+ "last_issuance_block_time": 1726509592,
+ "supply_normalized": "100.00000000"
+ }
+ }
+ ```
+
+### Get Asset Balances [GET /v2/assets/{asset}/balances{?cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}]
+
+Returns the asset balances
+
++ Parameters
+ + asset: `FAIRMINTA` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the balances to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of balances to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ + sort: `quantity:desc` (str, optional) - The sort order of the balances to return (overrides the `cursor` parameter)
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "utxo": null,
+ "utxo_address": null,
+ "asset": "FAIRMINTA",
+ "quantity": 9500000000,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "95.00000000"
+ },
+ {
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "utxo": null,
+ "utxo_address": null,
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 2
+ }
+ ```
+
+### Get Balance By Address And Asset [GET /v2/assets/{asset}/balances/{address}{?verbose}{&show_unconfirmed}]
+
+Returns the balance of an address and asset
+
++ Parameters
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + asset: `XCP` (str, required) - The asset to return
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 82699937176,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "826.99937000"
+ }
+ }
+ ```
+
+### Get Orders By Asset [GET /v2/assets/{asset}/orders{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the orders of an asset
+
++ Parameters
+ + asset: `XCP` (str, required) - The asset to return
+ + status (enum[str], optional) - The status of the orders to return
+ + Default: `all`
+ + Members
+ + `all`
+ + `open`
+ + `expired`
+ + `filled`
+ + `cancelled`
+ + cursor (str, optional) - The last index of the orders to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of orders to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 212,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509903,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ {
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 190,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 210,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "cancelled",
+ "confirmed": true,
+ "block_time": 1726509899,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ {
+ "tx_index": 52,
+ "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "block_index": 186,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "give_asset": "BTC",
+ "give_quantity": 3000,
+ "give_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 3000,
+ "get_remaining": 0,
+ "expiration": 21,
+ "expire_index": 207,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509871,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00003000",
+ "get_quantity_normalized": "0.00003000",
+ "get_remaining_normalized": "0.00000000",
+ "give_remaining_normalized": "0.00000000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ {
+ "tx_index": 50,
+ "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "block_index": 185,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "give_asset": "BTC",
+ "give_quantity": 2000,
+ "give_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 2000,
+ "get_remaining": 0,
+ "expiration": 21,
+ "expire_index": 205,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "filled",
+ "confirmed": true,
+ "block_time": 1726509867,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00002000",
+ "get_quantity_normalized": "0.00002000",
+ "get_remaining_normalized": "0.00000000",
+ "give_remaining_normalized": "0.00000000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ {
+ "tx_index": 49,
+ "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "block_index": 186,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 10000,
+ "give_remaining": 5000,
+ "get_asset": "BTC",
+ "get_quantity": 10000,
+ "get_remaining": 5000,
+ "expiration": 21,
+ "expire_index": 204,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509871,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00010000",
+ "get_quantity_normalized": "0.00010000",
+ "get_remaining_normalized": "0.00005000",
+ "give_remaining_normalized": "0.00005000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ }
+ ],
+ "next_cursor": 48,
+ "result_count": 7
+ }
+ ```
+
+### Get Order Matches By Asset [GET /v2/assets/{asset}/matches{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the orders of an asset
+
++ Parameters
+ + asset: `XCP` (str, required) - The asset to return
+ + status (enum[str], optional) - The status of the order matches to return
+ + Default: `all`
+ + Members
+ + `all`
+ + `pending`
+ + `completed`
+ + `expired`
+ + cursor (str, optional) - The last index of the order matches to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of order matches to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 52,
+ "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "forward_asset": "XCP",
+ "forward_quantity": 3000,
+ "backward_asset": "BTC",
+ "backward_quantity": 3000,
+ "tx0_block_index": 184,
+ "tx1_block_index": 186,
+ "block_index": 186,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 206,
+ "fee_paid": 0,
+ "status": "pending",
+ "confirmed": true,
+ "block_time": 1726509871,
+ "forward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00003000",
+ "backward_quantity_normalized": "0.00003000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 50,
+ "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "forward_asset": "XCP",
+ "forward_quantity": 2000,
+ "backward_asset": "BTC",
+ "backward_quantity": 2000,
+ "tx0_block_index": 183,
+ "tx1_block_index": 184,
+ "block_index": 185,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 204,
+ "fee_paid": 0,
+ "status": "completed",
+ "confirmed": true,
+ "block_time": 1726509867,
+ "forward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00002000",
+ "backward_quantity_normalized": "0.00002000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "tx0_index": 47,
+ "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 48,
+ "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "forward_asset": "XCP",
+ "forward_quantity": 1000,
+ "backward_asset": "BTC",
+ "backward_quantity": 1000,
+ "tx0_block_index": 160,
+ "tx1_block_index": 161,
+ "block_index": 182,
+ "tx0_expiration": 21,
+ "tx1_expiration": 20,
+ "match_expire_index": 181,
+ "fee_paid": 0,
+ "status": "expired",
+ "confirmed": true,
+ "block_time": 1726509796,
+ "forward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00001000",
+ "backward_quantity_normalized": "0.00001000",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ }
+ ```
+
+### Get Credits By Asset [GET /v2/assets/{asset}/credits{?action}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the credits of an asset
+
++ Parameters
+ + asset: `FAIRMINTA` (str, required) - The asset to return
+ + action (enum[str], optional) - The action to filter by
+ + Default: `None`
+ + Members
+ + `None`
+ + `Closed: Max dispenses reached`
+ + `bet settled: for equal`
+ + `bet settled: for notequal`
+ + `bet settled: liquidated for bear`
+ + `btcpay`
+ + `burn`
+ + `cancel order`
+ + `close dispenser`
+ + `dispense`
+ + `dispenser close`
+ + `dividend`
+ + `feed fee`
+ + `filled`
+ + `issuance`
+ + `mpma send`
+ + `open dispenser empty addr`
+ + `order cancelled`
+ + `order expired`
+ + `order match`
+ + `recredit backward quantity`
+ + `recredit forward quantity`
+ + `recredit wager`
+ + `recredit wager remaining`
+ + `reset issuance`
+ + `send`
+ + `sweep`
+ + `wins`
+ + cursor (str, optional) - The last index of the credits to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of credits to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "block_index": 192,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ },
+ {
+ "block_index": 125,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "quantity": 9000000000,
+ "calling_function": "fairmint",
+ "event": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351",
+ "tx_index": 13,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509592,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "90.00000000"
+ },
+ {
+ "block_index": 124,
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "calling_function": "unescrowed fairmint",
+ "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17",
+ "tx_index": 12,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509587,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ },
+ {
+ "block_index": 124,
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "calling_function": "unescrowed fairmint",
+ "event": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "tx_index": 11,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509587,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ },
+ {
+ "block_index": 124,
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "calling_function": "escrowed fairmint",
+ "event": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17",
+ "tx_index": 12,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509587,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ }
+ ],
+ "next_cursor": 12,
+ "result_count": 6
+ }
```
-### Get Orders By Asset [GET /v2/assets/{asset}/orders{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Debits By Asset [GET /v2/assets/{asset}/debits{?action}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the orders of an asset
+Returns the debits of an asset
+ Parameters
- + asset: `NEEDPEPE` (str, required) - The asset to return
- + status: `filled` (enum[str], optional) - The status of the orders to return
- + Default: `all`
+ + asset: `XCP` (str, required) - The asset to return
+ + action (enum[str], optional) - The action to filter by
+ + Default: `None`
+ Members
- + `all`
- + `open`
- + `expired`
- + `filled`
- + `cancelled`
- + cursor (int, optional) - The last index of the orders to return
+ + `None`
+ + `bet`
+ + `destroy`
+ + `dividend`
+ + `dividend fee`
+ + `issuance fee`
+ + `mpma send`
+ + `open RPS`
+ + `open dispenser`
+ + `open dispenser empty addr`
+ + `open order`
+ + `refill dispenser`
+ + `reopen RPS after matching expiration`
+ + `reset destroy`
+ + `send`
+ + `sweep`
+ + `sweep fee`
+ + cursor (str, optional) - The last index of the debits to return
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of orders to return
+ + limit: `5` (int, optional) - The maximum number of debits to return
+ Default: `100`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -7604,237 +9804,125 @@ Returns the orders of an asset
{
"result": [
{
- "tx_index": 2737960,
- "tx_hash": "f9448ecd5f43c13b8ca9e0fa38fb2b2de8de3bf7727ff188182290ce6b78e611",
- "block_index": 849746,
- "source": "16Kzr7ocw1pTDhR5FL5vvFWmiSz4iFpygS",
- "give_asset": "XCP",
- "give_quantity": 42500000000,
- "give_remaining": 0,
- "get_asset": "NEEDPEPE",
- "get_quantity": 1,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 857810,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "fee_provided": 2783,
- "fee_provided_remaining": 2783,
- "status": "filled",
- "block_time": 1719532211,
- "give_asset_info": {
+ "block_index": 193,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 1,
+ "action": "destroy",
+ "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509912,
+ "asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "get_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "425.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00002783",
- "fee_required_normalized": "0.00000000",
- "fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00002783"
+ "quantity_normalized": "0.00000001"
},
{
- "tx_index": 2736291,
- "tx_hash": "d1bbfc06d116422151322de431f034a2c3042061dd82461d84cbd0b3e70f8a7d",
- "block_index": 847779,
- "source": "127ChgMdzicU8QhAFLi9KugRYkMzm3qb37",
- "give_asset": "NEEDPEPE",
- "give_quantity": 1,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 42500000000,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 855843,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "fee_provided": 12699,
- "fee_provided_remaining": 12699,
- "status": "filled",
- "block_time": 1718294421,
- "give_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "get_asset_info": {
+ "block_index": 192,
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "quantity": 74499387833,
+ "action": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "425.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00012699",
- "fee_required_normalized": "0.00000000",
- "fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00012699"
+ "quantity_normalized": "744.99388000"
},
{
- "tx_index": 2225134,
- "tx_hash": "5b6e0c741d765ebd883dc16eecfb5c340c52865cabf297ca2c1432437c1348b7",
- "block_index": 772817,
- "source": "1FnM7akSCD8G3fRQHCUEXRCfL35gptsPZB",
- "give_asset": "NEEDPEPE",
- "give_quantity": 1,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 80800000000,
- "get_remaining": 0,
- "expiration": 5000,
- "expire_index": 777817,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "fee_provided": 5544,
- "fee_provided_remaining": 5544,
- "status": "filled",
- "block_time": 1674228170,
- "give_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "get_asset_info": {
+ "block_index": 192,
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "quantity": 600000,
+ "action": "sweep fee",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "808.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00005544",
- "fee_required_normalized": "0.00000000",
- "fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00005544"
+ "quantity_normalized": "0.00600000"
},
{
- "tx_index": 2202451,
- "tx_hash": "77f568fc6604dbe209d2ea1b0158d7de20723c0178107eb570f4f2a719b0d7c7",
- "block_index": 768300,
- "source": "184gKLQTtQU29LXbxbYJkUV4if9SmW6v2d",
- "give_asset": "XCP",
- "give_quantity": 80800000000,
- "give_remaining": 0,
- "get_asset": "NEEDPEPE",
- "get_quantity": 1,
- "get_remaining": 0,
- "expiration": 5000,
- "expire_index": 773300,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "fee_provided": 264,
- "fee_provided_remaining": 264,
- "status": "filled",
- "block_time": 1671594250,
- "give_asset_info": {
+ "block_index": 191,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "action": "open order",
+ "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509903,
+ "asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "get_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "808.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00000264",
- "fee_required_normalized": "0.00000000",
- "fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00000264"
+ "quantity_normalized": "0.00001000"
},
{
- "tx_index": 1946587,
- "tx_hash": "b747f290cbbad6faa1c1c05d5c6d001b5a3ef487027bb0d4eefcdc9f6e865c39",
- "block_index": 727444,
- "source": "1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh",
- "give_asset": "XCP",
- "give_quantity": 70000000000,
- "give_remaining": 0,
- "get_asset": "NEEDPEPE",
- "get_quantity": 1,
- "get_remaining": 0,
- "expiration": 5000,
- "expire_index": 732444,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "fee_provided": 792,
- "fee_provided_remaining": 792,
- "status": "filled",
- "block_time": 1647349140,
- "give_asset_info": {
+ "block_index": 189,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "action": "open order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "tx_index": 55,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509894,
+ "asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "get_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "700.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00000792",
- "fee_required_normalized": "0.00000000",
- "fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00000792"
+ "quantity_normalized": "0.00001000"
}
],
- "next_cursor": 445819,
- "result_count": 13
+ "next_cursor": 47,
+ "result_count": 38
}
```
-### Get Order Matches By Asset [GET /v2/assets/{asset}/matches{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Dividends By Asset [GET /v2/assets/{asset}/dividends{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the orders of an asset
+Returns the dividends of an asset
+ Parameters
- + asset: `NEEDPEPE` (str, required) - The asset to return
- + status: `completed` (enum[str], optional) - The status of the order matches to return
- + Default: `all`
- + Members
- + `all`
- + `pending`
- + `completed`
- + `expired`
- + cursor (int, optional) - The last index of the order matches to return
+ + asset: `MYASSETA` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the dividend to return
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of order matches to return
+ + limit: `5` (int, optional) - The maximum number of dividend to return
+ Default: `100`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -7849,245 +9937,189 @@ Returns the orders of an asset
{
"result": [
{
- "id": "d1bbfc06d116422151322de431f034a2c3042061dd82461d84cbd0b3e70f8a7d_f9448ecd5f43c13b8ca9e0fa38fb2b2de8de3bf7727ff188182290ce6b78e611",
- "tx0_index": 2736291,
- "tx0_hash": "d1bbfc06d116422151322de431f034a2c3042061dd82461d84cbd0b3e70f8a7d",
- "tx0_address": "127ChgMdzicU8QhAFLi9KugRYkMzm3qb37",
- "tx1_index": 2737960,
- "tx1_hash": "f9448ecd5f43c13b8ca9e0fa38fb2b2de8de3bf7727ff188182290ce6b78e611",
- "tx1_address": "16Kzr7ocw1pTDhR5FL5vvFWmiSz4iFpygS",
- "forward_asset": "NEEDPEPE",
- "forward_quantity": 1,
- "backward_asset": "XCP",
- "backward_quantity": 42500000000,
- "tx0_block_index": 847779,
- "tx1_block_index": 849746,
- "block_index": 849746,
- "tx0_expiration": 8064,
- "tx1_expiration": 8064,
- "match_expire_index": 849766,
- "fee_paid": 0,
- "status": "completed",
- "block_time": 1719532211,
- "forward_asset_info": {
+ "tx_index": 40,
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "block_index": 153,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "dividend_asset": "XCP",
+ "quantity_per_unit": 100000000,
+ "fee_paid": 40000,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509732,
+ "asset_info": {
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "backward_asset_info": {
+ "dividend_asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "forward_quantity_normalized": "1",
- "backward_quantity_normalized": "425.00000000",
- "fee_paid_normalized": "0.00000000"
- },
+ "quantity_per_unit_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00040000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ }
+ ```
+
+### Get Issuances By Asset [GET /v2/assets/{asset}/issuances{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the issuances of an asset
+
++ Parameters
+ + asset: `FAIRMINTA` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the issuances to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of issuances to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
{
- "id": "77f568fc6604dbe209d2ea1b0158d7de20723c0178107eb570f4f2a719b0d7c7_5b6e0c741d765ebd883dc16eecfb5c340c52865cabf297ca2c1432437c1348b7",
- "tx0_index": 2202451,
- "tx0_hash": "77f568fc6604dbe209d2ea1b0158d7de20723c0178107eb570f4f2a719b0d7c7",
- "tx0_address": "184gKLQTtQU29LXbxbYJkUV4if9SmW6v2d",
- "tx1_index": 2225134,
- "tx1_hash": "5b6e0c741d765ebd883dc16eecfb5c340c52865cabf297ca2c1432437c1348b7",
- "tx1_address": "1FnM7akSCD8G3fRQHCUEXRCfL35gptsPZB",
- "forward_asset": "XCP",
- "forward_quantity": 80800000000,
- "backward_asset": "NEEDPEPE",
- "backward_quantity": 1,
- "tx0_block_index": 768300,
- "tx1_block_index": 772817,
- "block_index": 772817,
- "tx0_expiration": 5000,
- "tx1_expiration": 5000,
- "match_expire_index": 772837,
+ "tx_index": 13,
+ "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351",
+ "msg_index": 0,
+ "block_index": 125,
+ "asset": "FAIRMINTA",
+ "quantity": 9000000000,
+ "divisible": true,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
"fee_paid": 0,
- "status": "completed",
- "block_time": 1674228170,
- "forward_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "backward_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "forward_quantity_normalized": "808.00000000",
- "backward_quantity_normalized": "1",
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "fairmint",
+ "confirmed": true,
+ "block_time": 1726509592,
+ "quantity_normalized": "90.00000000",
"fee_paid_normalized": "0.00000000"
},
{
- "id": "75dc6ee1f67317e674ef33b617d3a9839ee53bf4a2e8274c88d6202d4d89b59a_b747f290cbbad6faa1c1c05d5c6d001b5a3ef487027bb0d4eefcdc9f6e865c39",
- "tx0_index": 1946026,
- "tx0_hash": "75dc6ee1f67317e674ef33b617d3a9839ee53bf4a2e8274c88d6202d4d89b59a",
- "tx0_address": "1GotRejB6XsGgMsM79TvcypeanDJRJbMtg",
- "tx1_index": 1946587,
- "tx1_hash": "b747f290cbbad6faa1c1c05d5c6d001b5a3ef487027bb0d4eefcdc9f6e865c39",
- "tx1_address": "1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh",
- "forward_asset": "NEEDPEPE",
- "forward_quantity": 1,
- "backward_asset": "XCP",
- "backward_quantity": 70000000000,
- "tx0_block_index": 727381,
- "tx1_block_index": 727444,
- "block_index": 727444,
- "tx0_expiration": 5000,
- "tx1_expiration": 5000,
- "match_expire_index": 727464,
+ "tx_index": 12,
+ "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17",
+ "msg_index": 0,
+ "block_index": 124,
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "divisible": true,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
"fee_paid": 0,
- "status": "completed",
- "block_time": 1647349140,
- "forward_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "backward_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "forward_quantity_normalized": "1",
- "backward_quantity_normalized": "700.00000000",
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "fairmint",
+ "confirmed": true,
+ "block_time": 1726509587,
+ "quantity_normalized": "5.00000000",
"fee_paid_normalized": "0.00000000"
},
{
- "id": "0129611a0aece52adddf6d929e75c703baa9cdcb7e4ce887aa859f9640aa9640_927878fa98edb6d24310c45254c324f3d5a7f625e2a3a0e7fd1e749b49493750",
- "tx0_index": 825373,
- "tx0_hash": "0129611a0aece52adddf6d929e75c703baa9cdcb7e4ce887aa859f9640aa9640",
- "tx0_address": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "tx1_index": 825413,
- "tx1_hash": "927878fa98edb6d24310c45254c324f3d5a7f625e2a3a0e7fd1e749b49493750",
- "tx1_address": "18cmgoX99Nrm411YKpmTQsp23qczWdxS6w",
- "forward_asset": "NEEDPEPE",
- "forward_quantity": 1,
- "backward_asset": "PEPECASH",
- "backward_quantity": 400000000000,
- "tx0_block_index": 455457,
- "tx1_block_index": 455461,
- "block_index": 455461,
- "tx0_expiration": 1000,
- "tx1_expiration": 5000,
- "match_expire_index": 455481,
+ "tx_index": 11,
+ "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "msg_index": 0,
+ "block_index": 123,
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "divisible": true,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
"fee_paid": 0,
- "status": "completed",
- "block_time": 1488476422,
- "forward_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "backward_asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": true,
- "locked": true
- },
- "forward_quantity_normalized": "1",
- "backward_quantity_normalized": "4000.00000000",
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "fairmint",
+ "confirmed": true,
+ "block_time": 1726509583,
+ "quantity_normalized": "5.00000000",
"fee_paid_normalized": "0.00000000"
},
{
- "id": "e32154f8ade796df0b121604de140703d062d22d1e82e77e629e6096668c812f_7b2369f40078f4d98a3d3a7733315a1c4efd7977c75f7066dd447d5c7eed7f20",
- "tx0_index": 825372,
- "tx0_hash": "e32154f8ade796df0b121604de140703d062d22d1e82e77e629e6096668c812f",
- "tx0_address": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "tx1_index": 825411,
- "tx1_hash": "7b2369f40078f4d98a3d3a7733315a1c4efd7977c75f7066dd447d5c7eed7f20",
- "tx1_address": "18cmgoX99Nrm411YKpmTQsp23qczWdxS6w",
- "forward_asset": "NEEDPEPE",
- "forward_quantity": 1,
- "backward_asset": "PEPECASH",
- "backward_quantity": 300000000000,
- "tx0_block_index": 455457,
- "tx1_block_index": 455461,
- "block_index": 455461,
- "tx0_expiration": 1000,
- "tx1_expiration": 5000,
- "match_expire_index": 455481,
- "fee_paid": 0,
- "status": "completed",
- "block_time": 1488476422,
- "forward_asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
- },
- "backward_asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": true,
- "locked": true
- },
- "forward_quantity_normalized": "1",
- "backward_quantity_normalized": "3000.00000000",
- "fee_paid_normalized": "0.00000000"
+ "tx_index": 10,
+ "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "msg_index": 0,
+ "block_index": 122,
+ "asset": "FAIRMINTA",
+ "quantity": 0,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 1726509578,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.50000000"
}
],
- "next_cursor": 48614,
- "result_count": 7
+ "next_cursor": null,
+ "result_count": 4
}
```
-### Get Credits By Asset [GET /v2/assets/{asset}/credits{?action}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Sends By Asset [GET /v2/assets/{asset}/sends{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the credits of an asset
+Returns the sends, include Enhanced and MPMA sends, of an asset
+ Parameters
- + asset: `UNNEGOTIABLE` (str, required) - The asset to return
- + action (enum[str], optional) - The action to filter by
- + Default: `None`
- + Members
- + `Closed: Max dispenses reached`
- + `bet settled: for equal`
- + `bet settled: for notequal`
- + `bet settled: liquidated for bear`
- + `btcpay`
- + `burn`
- + `cancel order`
- + `close dispenser`
- + `dispense`
- + `dispenser close`
- + `dividend`
- + `feed fee`
- + `filled`
- + `issuance`
- + `mpma send`
- + `open dispenser empty addr`
- + `order cancelled`
- + `order expired`
- + `order match`
- + `recredit backward quantity`
- + `recredit forward quantity`
- + `recredit wager`
- + `recredit wager remaining`
- + `reset issuance`
- + `send`
- + `sweep`
- + `wins`
- + cursor (int, optional) - The last index of the credits to return
+ + asset: `XCP` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the debits to return
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of credits to return
+ + limit: `5` (int, optional) - The maximum number of debits to return
+ Default: `100`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -8102,129 +10134,124 @@ Returns the credits of an asset
{
"result": [
{
- "block_index": 852221,
- "address": "1AnhxE3qcBU9zyyZzkYs4TY7AMj5spqEK9",
- "asset": "UNNEGOTIABLE",
- "quantity": 1,
- "calling_function": "dispense",
- "event": "746c319b4ac79d1b316a5a0e15dc777d9bcf14fdb2fe9249396ab487093a51b2",
- "tx_index": 2740709,
- "block_time": 1721001448,
- "asset_info": {
- "asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
- },
- {
- "block_index": 851777,
- "address": "1NzqwpLpAG7nGXPah9azAKarGsR9myCRUU",
- "asset": "UNNEGOTIABLE",
- "quantity": 2,
- "calling_function": "dispense",
- "event": "22be6f91835264354f4c0e01f71d3c1b56f7bc387d8efe12eb1e7b11c1583777",
- "tx_index": 2740168,
- "block_time": 1720753066,
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 2,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "2"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
},
{
- "block_index": 850109,
- "address": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "asset": "UNNEGOTIABLE",
- "quantity": 3,
- "calling_function": "dispense",
- "event": "cc31e6334e0f715d7c611ff0c5655442a79cf6296e406327829ebbba52e97fc2",
- "tx_index": 2738361,
- "block_time": 1719754795,
+ "tx_index": 53,
+ "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03",
+ "block_index": 187,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 10000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509886,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "3"
+ "quantity_normalized": "0.00010000",
+ "fee_paid_normalized": "0.00000000"
},
{
- "block_index": 848362,
- "address": "1Epp8huZPjiDZnJixzdDFoWmx7FZoxNVK6",
- "asset": "UNNEGOTIABLE",
- "quantity": 1,
- "calling_function": "dispense",
- "event": "67d6fd4a24b400ee0e0b4319c9bc95bfabef4e30b2aa1ebbdfb59e70685e7c5b",
- "tx_index": 2736698,
- "block_time": 1718642823,
+ "tx_index": 42,
+ "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7",
+ "block_index": 155,
+ "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0",
+ "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1",
+ "asset": "XCP",
+ "quantity": 1500000000,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509741,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "15.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
- "block_index": 847079,
- "address": "1Epp8huZPjiDZnJixzdDFoWmx7FZoxNVK6",
- "asset": "UNNEGOTIABLE",
- "quantity": 1,
- "calling_function": "dispense",
- "event": "81a8bf642ed80664259398aee24e0b491de2febc0d014e227097d613de7c55ba",
- "tx_index": 2735828,
- "block_time": 1717867700,
+ "tx_index": 41,
+ "tx_hash": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b",
+ "block_index": 154,
+ "source": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0",
+ "destination": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0",
+ "asset": "XCP",
+ "quantity": 1500000000,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509735,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "15.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
- "next_cursor": 3677336,
- "result_count": 14
+ "next_cursor": null,
+ "result_count": 4
}
```
-### Get Debits By Asset [GET /v2/assets/{asset}/debits{?action}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Dispensers By Asset [GET /v2/assets/{asset}/dispensers{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the debits of an asset
+Returns the dispensers of an asset
+ Parameters
+ asset: `XCP` (str, required) - The asset to return
- + action (enum[str], optional) - The action to filter by
- + Default: `None`
+ + status (enum[str], optional) - The status of the dispensers to return
+ + Default: `all`
+ Members
- + `bet`
- + `destroy`
- + `dividend`
- + `dividend fee`
- + `issuance fee`
- + `mpma send`
- + `open RPS`
- + `open dispenser`
- + `open dispenser empty addr`
- + `open order`
- + `refill dispenser`
- + `reopen RPS after matching expiration`
- + `reset destroy`
- + `send`
- + `sweep`
- + `sweep fee`
- + cursor (int, optional) - The last index of the debits to return
+ + `all`
+ + `open`
+ + `closed`
+ + `closing`
+ + `open_empty_address`
+ + cursor (str, optional) - The last index of the dispensers to return
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of debits to return
+ + limit: `5` (int, optional) - The maximum number of dispensers to return
+ Default: `100`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -8239,32 +10266,29 @@ Returns the debits of an asset
{
"result": [
{
- "block_index": 852285,
- "address": "11111115eLY6EpDc8a2NPbjng6GjXS8A",
- "asset": "XCP",
- "quantity": 24200000000,
- "action": "open dispenser empty addr",
- "event": "981b102305dd94ab7a3c81385ca7df110eab2e1367b01ebbb286f23ad7260ab6",
- "tx_index": 2740785,
- "block_time": 1721036618,
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "quantity_normalized": "242.00000000"
- },
- {
- "block_index": 852285,
- "address": "bc1qdsyj3fa3wf8kh4rzlulxdr0d93u0rs59vp04aq",
+ "tx_index": 32,
+ "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"asset": "XCP",
- "quantity": 24200000000,
- "action": "open dispenser empty addr",
- "event": "981b102305dd94ab7a3c81385ca7df110eab2e1367b01ebbb286f23ad7260ab6",
- "tx_index": 2740785,
- "block_time": 1721036618,
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "last_status_tx_hash": null,
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "dispense_count": 1,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "block_time": 1726509701,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -8272,17 +10296,36 @@ Returns the debits of an asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "242.00000000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
},
{
- "block_index": 852283,
- "address": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
+ "tx_index": 30,
+ "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "block_index": 144,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 50000000,
- "action": "issuance fee",
- "event": "1f3c09392034f2dd60196dc5829153b9ff7ffee31a73991143ea7541119df9cb",
- "tx_index": 2740780,
- "block_time": 1721036182,
+ "give_quantity": 1,
+ "escrow_quantity": 10,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 20,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 0,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509693,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -8290,17 +10333,36 @@ Returns the debits of an asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "0.50000000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000020",
+ "escrow_quantity_normalized": "0.00000010",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
{
- "block_index": 852257,
- "address": "1NfJnJdAdmm2rJCFW54NsAKqqTTMexCNJ3",
+ "tx_index": 29,
+ "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c",
+ "block_index": 142,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"asset": "XCP",
- "quantity": 1500000000,
- "action": "open order",
- "event": "85fc5c84a9b91b1a887b6c87b3c97119c2ecca8dc268225c2775214669ceeffc",
- "tx_index": 2740748,
- "block_time": 1721019029,
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 10000,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "dispense_count": 0,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509684,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -8308,17 +10370,36 @@ Returns the debits of an asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "15.00000000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00010000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
{
- "block_index": 852231,
- "address": "1EX4Ub2wg1aYNQ5jXnuC62T9dMmzhfVmSo",
+ "tx_index": 26,
+ "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"asset": "XCP",
- "quantity": 50000000,
- "action": "issuance fee",
- "event": "83bde3737ed3e353a57f51cdad12a1e23754daaf73f8cdd8eacfb5063aa7222f",
- "tx_index": 2740730,
- "block_time": 1721008444,
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509680,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -8326,26 +10407,25 @@ Returns the debits of an asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "0.50000000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
}
],
- "next_cursor": 2640374,
- "result_count": 391300
+ "next_cursor": null,
+ "result_count": 4
}
```
-### Get Dividends By Asset [GET /v2/assets/{asset}/dividends{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Dispenser By Address And Asset [GET /v2/assets/{asset}/dispensers/{address}{?verbose}{&show_unconfirmed}]
-Returns the dividends of an asset
+Returns the dispenser of an address and an asset
+ Parameters
- + asset: `GMONEYPEPE` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the dividend to return
- + Default: `None`
- + limit: `5` (int, optional) - The maximum number of dividend to return
- + Default: `100`
- + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
- + Default: `None`
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - The address to return
+ + asset: `XCP` (str, required) - The asset to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -8355,162 +10435,55 @@ Returns the dividends of an asset
```
{
- "result": [
- {
- "tx_index": 2738123,
- "tx_hash": "24d1085df0c76f1360a0d9673cd526bc7ab1da0d3c35b76089376be45bd9ba79",
- "block_index": 849884,
- "source": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "asset": "GMONEYPEPE",
- "dividend_asset": "PANICINDC",
- "quantity_per_unit": 1,
- "fee_paid": 7020000,
- "status": "valid",
- "block_time": 1719621970,
- "asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/GMONEYPEPE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/o7qpwv/PANIC.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.07020000"
- },
- {
- "tx_index": 2736324,
- "tx_hash": "04040c49d8c54c0706a1356bccc1659dc18063facbf276e877eca7d411a6af1e",
- "block_index": 847824,
- "source": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "asset": "GMONEYPEPE",
- "dividend_asset": "WETHEMEDIA",
- "quantity_per_unit": 1,
- "fee_paid": 6900000,
- "status": "valid",
- "block_time": 1718321592,
- "asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/GMONEYPEPE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/tbmkv3/WETHE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.06900000"
- },
- {
- "tx_index": 2729731,
- "tx_hash": "325de7cd216facca311bd58e88a8302458a37a58c2b970d2b42d1b4853fb5057",
- "block_index": 842751,
- "source": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "asset": "GMONEYPEPE",
- "dividend_asset": "JOINORDIE",
- "quantity_per_unit": 1,
- "fee_paid": 6840000,
- "status": "valid",
- "block_time": 1715288992,
- "asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/GMONEYPEPE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/zxfvak/JOINO.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.06840000"
- },
- {
- "tx_index": 2704949,
- "tx_hash": "7d3807cc58fa2d9751b2b0089bfa8fa86ef795821be6d8e9418ab3a819eba299",
- "block_index": 832745,
- "source": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "asset": "GMONEYPEPE",
- "dividend_asset": "MEDICINEPEPE",
- "quantity_per_unit": 1,
- "fee_paid": 6840000,
- "status": "valid",
- "block_time": 1709331690,
- "asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/GMONEYPEPE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "Let him heal you...",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": false
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.06840000"
+ "result": {
+ "tx_index": 30,
+ "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "block_index": 144,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 20,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 0,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509693,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- {
- "tx_index": 2704948,
- "tx_hash": "437102ca4698f63a12e369f6168e3c7f5f8eef3e225395d515775673e33d39c1",
- "block_index": 832745,
- "source": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "asset": "GMONEYPEPE",
- "dividend_asset": "FUCKYOUWAR",
- "quantity_per_unit": 1,
- "fee_paid": 6840000,
- "status": "valid",
- "block_time": 1709331690,
- "asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/GMONEYPEPE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/sbwiyo/FUCKY.json",
- "issuer": "13Hnmhs5gy2yXKVBx4wSM5HCBdKnaSBZJH",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.06840000"
- }
- ],
- "next_cursor": 2198534,
- "result_count": 15
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000020",
+ "escrow_quantity_normalized": "0.00000010",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ }
}
```
-### Get Issuances By Asset [GET /v2/assets/{asset}/issuances{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Asset Holders [GET /v2/assets/{asset}/holders{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the issuances of an asset
+Returns the holders of an asset
+ Parameters
- + asset: `UNNEGOTIABLE` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the issuances to return
+ + asset: `FAIRMINTA` (str, required) - The asset to return
+ + cursor (str, optional) - The last index of the holder to return
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of issuances to return
+ + limit: `5` (int, optional) - The maximum number of holders to return
+ Default: `100`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -8525,100 +10498,72 @@ Returns the issuances of an asset
{
"result": [
{
- "tx_index": 2726769,
- "tx_hash": "935fc9682e0aa630df4e640e3cbf730b5a722a41002cb425a69eb33a66556501",
- "msg_index": 0,
- "block_index": 840756,
- "asset": "UNNEGOTIABLE",
+ "asset": "FAIRMINTA",
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
"quantity": 0,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "transfer": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "fee_paid": 0,
- "status": "valid",
- "asset_longname": null,
- "locked": true,
- "reset": false,
- "block_time": 1714013031,
- "quantity_normalized": "0",
- "fee_paid_normalized": "0.00000000"
+ "escrow": null,
+ "cursor_id": "balances_12",
+ "holding_type": "balances",
+ "status": null,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000000"
},
{
- "tx_index": 2726753,
- "tx_hash": "92f6d2e3b07ff6aa558357d6c2c324a763f54bbcc4b887c725d61e60a57b4a7e",
- "msg_index": 0,
- "block_index": 840744,
- "asset": "UNNEGOTIABLE",
- "quantity": 1775,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "transfer": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "fee_paid": 0,
- "status": "valid",
- "asset_longname": null,
- "locked": false,
- "reset": false,
- "block_time": 1714003653,
- "quantity_normalized": "1775",
- "fee_paid_normalized": "0.00000000"
+ "asset": "FAIRMINTA",
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "quantity": 500000000,
+ "escrow": null,
+ "cursor_id": "balances_13",
+ "holding_type": "balances",
+ "status": null,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
},
{
- "tx_index": 2726737,
- "tx_hash": "d15580fa7ba62d7e7928db41836521af9e7cbc8cce2efa06cc2cc57d22bf4f0f",
- "msg_index": 0,
- "block_index": 840738,
- "asset": "UNNEGOTIABLE",
+ "asset": "FAIRMINTA",
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
"quantity": 0,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "transfer": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "https://zawqddvy75sz6dwqllsrupumldqwi26kk3amlz4fqci7hrsuqcfq.arweave.net/yC0Bjrj_ZZ8O0FrlGj6MWOFka8pWwMXnhYCR88ZUgIs/UNNEG.json",
- "fee_paid": 0,
- "status": "valid",
- "asset_longname": null,
- "locked": false,
- "reset": false,
- "block_time": 1714000104,
- "quantity_normalized": "0",
- "fee_paid_normalized": "0.00000000"
+ "escrow": null,
+ "cursor_id": "balances_14",
+ "holding_type": "balances",
+ "status": null,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000000"
},
{
- "tx_index": 2726605,
- "tx_hash": "876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5",
- "msg_index": 0,
- "block_index": 840464,
- "asset": "UNNEGOTIABLE",
- "quantity": 1,
- "divisible": false,
- "source": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "issuer": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
- "transfer": false,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "UNNEGOTIABLE WE MUST BECOME UNNEGOTIABLE WE ARE",
- "fee_paid": 50000000,
- "status": "valid",
- "asset_longname": null,
- "locked": false,
- "reset": false,
- "block_time": 1713852783,
- "quantity_normalized": "1",
- "fee_paid_normalized": "0.50000000"
+ "asset": "FAIRMINTA",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "quantity": 9500000000,
+ "escrow": null,
+ "cursor_id": "balances_15",
+ "holding_type": "balances",
+ "status": null,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "95.00000000"
}
],
"next_cursor": null,
@@ -8626,15 +10571,15 @@ Returns the issuances of an asset
}
```
-### Get Sends By Asset [GET /v2/assets/{asset}/sends{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Dispenses By Asset [GET /v2/assets/{asset}/dispenses{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the sends, include Enhanced and MPMA sends, of an asset
+Returns the dispenses of an asset
+ Parameters
+ asset: `XCP` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the debits to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of debits to return
+ + limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -8649,17 +10594,44 @@ Returns the sends, include Enhanced and MPMA sends, of an asset
{
"result": [
{
- "tx_index": 2740581,
- "tx_hash": "5a661075c0ffb2143f077cd180019cdae7c2ae24d342f8f79e98d8a41fe71a36",
- "block_index": 852132,
- "source": "1APEeor5Hxw89X6dXwouDN3SJWVu6QvTE1",
- "destination": "1A9zko6rP2PnuHYCwvJrgmy54LGUAWLjDy",
+ "tx_index": 33,
+ "dispense_index": 0,
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
"asset": "XCP",
- "quantity": 4500000000,
- "status": "valid",
- "msg_index": 0,
- "memo": null,
- "block_time": 1720961647,
+ "dispense_quantity": 666,
+ "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "btc_amount": 10000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 32,
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "last_status_tx_hash": null,
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "dispense_count": 1,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
+ },
+ "block_time": 1726509701,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -8667,41 +10639,48 @@ Returns the sends, include Enhanced and MPMA sends, of an asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "45.00000000"
+ "dispense_quantity_normalized": "0.00000666",
+ "btc_amount_normalized": "0.00010000"
},
{
- "tx_index": 2740577,
- "tx_hash": "cc76b6ffa0bf50176a499b291ad246f32f0186e512ba11f68ada54c5d9b5f1f9",
- "block_index": 852130,
- "source": "1B2RJHaRS1Fdp1Ggptk9sCkw1nSnnQXwFi",
- "destination": "1Ea7GFTA8cBNcpKNQsVnXgXB4RUFmkCWvM",
+ "tx_index": 28,
+ "dispense_index": 0,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
"asset": "XCP",
- "quantity": 4000000000,
- "status": "valid",
- "msg_index": 0,
- "memo": null,
- "block_time": 1720960710,
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "quantity_normalized": "40.00000000"
- },
- {
- "tx_index": 2740528,
- "tx_hash": "2abdbab56307d24927e40efbe9c66c076c081a40d789eda6d8ec59d48cbe8e03",
- "block_index": 852064,
- "source": "1MBNgJkJKii9pT9t6GyKRj5DM5P5MPs8Hq",
- "destination": "1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz",
- "asset": "XCP",
- "quantity": 100000000,
- "status": "valid",
- "msg_index": 0,
- "memo": null,
- "block_time": 1720922122,
+ "block_time": 1726509680,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -8709,41 +10688,48 @@ Returns the sends, include Enhanced and MPMA sends, of an asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "1.00000000"
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
},
{
- "tx_index": 2740414,
- "tx_hash": "1a9f835ae8b6490246259a95874bd51a6b8df0dab8f344c9afdaec5eff3d87bc",
- "block_index": 852034,
- "source": "bc1q9z6te6zm9rpvx07sfg45ga0j83gms6pyufhhpl",
- "destination": "1ALcjkvyQAV3mVoLHGytptn6hAR89tGe4T",
+ "tx_index": 27,
+ "dispense_index": 0,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
"asset": "XCP",
- "quantity": 99999999,
- "status": "valid",
- "msg_index": 0,
- "memo": null,
- "block_time": 1720903953,
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "quantity_normalized": "0.99999999"
- },
- {
- "tx_index": 2740402,
- "tx_hash": "b97f4ca3f2372dd7e1a8dfd8d0a5b3405a37be428af7b0fd7720015a61c60786",
- "block_index": 852014,
- "source": "19ZTC5nCMiYRDQNoALYeXBtM3r4PfWhFxd",
- "destination": "1AKwAbft2PTk695VDpuMTHg4XmZzaZpc9x",
- "asset": "XCP",
- "quantity": 80898565,
- "status": "valid",
- "msg_index": 0,
- "memo": null,
- "block_time": 1720896381,
+ "block_time": 1726509665,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -8751,31 +10737,24 @@ Returns the sends, include Enhanced and MPMA sends, of an asset
"locked": true,
"issuer": null
},
- "quantity_normalized": "0.80898565"
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
}
],
- "next_cursor": 1631699,
- "result_count": 133665
+ "next_cursor": null,
+ "result_count": 3
}
```
-### Get Dispensers By Asset [GET /v2/assets/{asset}/dispensers{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Subassets By Asset [GET /v2/assets/{asset}/subassets{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the dispensers of an asset
+Returns asset subassets
+ Parameters
- + asset: `ERYKAHPEPU` (str, required) - The asset to return
- + status: `open` (enum[str], optional) - The status of the dispensers to return
- + Default: `all`
- + Members
- + `all`
- + `open`
- + `closed`
- + `closing`
- + `open_empty_address`
- + cursor (int, optional) - The last index of the dispensers to return
+ + asset: `TESTLOCKDESC` (str, required) - The name of the asset to return
+ + cursor (str, optional) - The last index of the assets to return
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of dispensers to return
+ + limit: `5` (int, optional) - The maximum number of assets to return
+ Default: `100`
+ offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ Default: `None`
@@ -8790,115 +10769,39 @@ Returns the dispensers of an asset
{
"result": [
{
- "tx_index": 2726460,
- "tx_hash": "b592d8ca4994d182e4ec63e1659dc4282b1a84466b7d71ed68c281ce63ed4897",
- "block_index": 839964,
- "source": "bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz",
- "asset": "ERYKAHPEPU",
- "give_quantity": 1,
- "escrow_quantity": 25,
- "satoshirate": 50000,
- "status": 0,
- "give_remaining": 25,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "dispense_count": 0,
- "last_status_tx_source": null,
- "close_block_index": null,
+ "asset": "A95428959745315388",
+ "asset_id": "95428959745315388",
+ "asset_longname": "TESTLOCKDESC.MYSUBASSET",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 0,
+ "description": "Test Locking Description",
+ "first_issuance_block_index": 157,
+ "last_issuance_block_index": 157,
"confirmed": true,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 50000,
- "block_time": 1713554987,
- "asset_info": {
- "asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "25",
- "escrow_quantity_normalized": "25",
- "satoshirate_normalized": "0.00050000",
- "satoshi_price_normalized": "0.00050000"
+ "first_issuance_block_time": 1726509760,
+ "last_issuance_block_time": 1726509760,
+ "supply_normalized": "0.00000000"
}
- ],
- "next_cursor": null,
- "result_count": 1
- }
- ```
-
-### Get Dispenser By Address And Asset [GET /v2/assets/{asset}/dispensers/{address}{?verbose}{&show_unconfirmed}]
-
-Returns the dispenser of an address and an asset
-
-+ Parameters
- + address: `bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz` (str, required) - The address to return
- + asset: `ERYKAHPEPU` (str, required) - The asset to return
- + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
- + Default: `false`
- + show_unconfirmed (bool, optional) - Include results from Mempool.
- + Default: `false`
-
-+ Response 200 (application/json)
-
- ```
- {
- "result": {
- "tx_index": 2726460,
- "tx_hash": "b592d8ca4994d182e4ec63e1659dc4282b1a84466b7d71ed68c281ce63ed4897",
- "block_index": 839964,
- "source": "bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz",
- "asset": "ERYKAHPEPU",
- "give_quantity": 1,
- "escrow_quantity": 25,
- "satoshirate": 50000,
- "status": 0,
- "give_remaining": 25,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "dispense_count": 0,
- "last_status_tx_source": null,
- "close_block_index": null,
- "confirmed": true,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 50000,
- "block_time": 1713554987,
- "asset_info": {
- "asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "25",
- "escrow_quantity_normalized": "25",
- "satoshirate_normalized": "0.00050000",
- "satoshi_price_normalized": "0.00050000"
- }
+ ],
+ "next_cursor": null,
+ "result_count": 1
}
```
-### Get Asset Holders [GET /v2/assets/{asset}/holders{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Fairminters By Asset [GET /v2/assets/{asset}/fairminters{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the holders of an asset
+Returns the fairminter by its asset
+ Parameters
- + asset: `ERYKAHPEPU` (str, required) - The asset to return
- + cursor (str, optional) - The last index of the holder to return
+ + asset: `FAIRMINTA` (str, required) - The asset of the fairminter to return
+ + cursor (str, optional) -
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of holders to return
+ + limit (int, optional) -
+ Default: `100`
- + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + offset (int, optional) -
+ Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
@@ -8911,107 +10814,53 @@ Returns the holders of an asset
{
"result": [
{
- "asset": "ERYKAHPEPU",
- "address": "13re7J5Y5a8nZZSp8o1a3sEUqGik4NMXhS",
- "quantity": 0,
- "escrow": null,
- "cursor_id": "balances_1251071",
- "holding_type": "balances",
- "status": null,
- "asset_info": {
- "asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "0"
- },
- {
- "asset": "ERYKAHPEPU",
- "address": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "quantity": 63,
- "escrow": null,
- "cursor_id": "balances_1287759",
- "holding_type": "balances",
- "status": null,
- "asset_info": {
- "asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "63"
- },
- {
- "asset": "ERYKAHPEPU",
- "address": "16yRstRXStVJJ1TN2S4DCWifyrCsetpma7",
- "quantity": 1,
- "escrow": null,
- "cursor_id": "balances_1319251",
- "holding_type": "balances",
- "status": null,
- "asset_info": {
- "asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
- },
- {
- "asset": "ERYKAHPEPU",
- "address": "bc1qsvqsa9arwz30g2z0w09twzn8gz3380h36yxacs",
- "quantity": 2,
- "escrow": null,
- "cursor_id": "balances_1320467",
- "holding_type": "balances",
- "status": null,
- "asset_info": {
- "asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "2"
- },
- {
- "asset": "ERYKAHPEPU",
- "address": "17PnWBjHkekZKQPVagmTR5HiD51pN8WHC8",
- "quantity": 1,
- "escrow": null,
- "cursor_id": "balances_1323346",
- "holding_type": "balances",
- "status": null,
- "asset_info": {
- "asset_longname": null,
- "description": "https://ipfs.io/ipfs/QmPzRXMYVTQ3zoYhaxW5ZRkt4o9vUnnzdBW4kV5CXUyjT4/ERYKAHPEPU.json",
- "issuer": "1E6tyJ2zCyX74XgEK8t9iNMjxjNVLCGR1u",
- "divisible": false,
- "locked": true
- },
- "quantity_normalized": "1"
+ "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "tx_index": 10,
+ "block_index": 125,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTA",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 1,
+ "hard_cap": 10000000000,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 1000000000,
+ "soft_cap_deadline_block": 124,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "closed",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509592
}
],
- "next_cursor": "balances_1323347",
- "result_count": 10
+ "next_cursor": null,
+ "result_count": 1
}
```
-### Get Dispenses By Asset [GET /v2/assets/{asset}/dispenses{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Fairmints By Asset [GET /v2/assets/{asset}/fairmints{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the dispenses of an asset
+Returns the mints by asset
+ Parameters
- + asset: `FLOCK` (str, required) - The asset to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + asset: `FAIRMINTA` (str, required) - The asset of the mints to return
+ + cursor (str, optional) -
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of dispenses to return
+ + limit (int, optional) -
+ Default: `100`
- + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + offset (int, optional) -
+ Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
@@ -9024,267 +10873,86 @@ Returns the dispenses of an asset
{
"result": [
{
- "tx_index": 2729389,
- "dispense_index": 0,
- "tx_hash": "31535918f4f5da1bc30e95bf414d7e7f6e839847678f970d3d5cce50d72b8eea",
- "block_index": 842566,
- "source": "1KwUc7itzpaEhWSnHAGRSRARh1bXqTvAUj",
- "destination": "1FKYM1CP9RfttJhNG8HTNQdE2uV3YvwbRB",
- "asset": "FLOCK",
- "dispense_quantity": 2000000000,
- "dispenser_tx_hash": "dfbb8b9b8be7e00d52cef97d6d5d37e38cbe0bb1ad701fd1966376572da4ddb3",
- "btc_amount": 40000,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2676812,
- "block_index": 830797,
- "source": "1KwUc7itzpaEhWSnHAGRSRARh1bXqTvAUj",
- "give_quantity": 2000000000,
- "escrow_quantity": 50000000000,
- "satoshirate": 40000,
- "status": 0,
- "give_remaining": 44000000000,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1q7swvjekexhqj42k37h3jmga7w9kqq0dd68kz5j",
- "dispense_count": 3,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 40000,
- "give_quantity_normalized": "20.00000000",
- "give_remaining_normalized": "440.00000000",
- "escrow_quantity_normalized": "500.00000000",
- "satoshirate_normalized": "0.00040000",
- "satoshi_price_normalized": "0.00040000"
- },
- "block_time": 1715180878,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "20.00000000",
- "btc_amount_normalized": "0.00040000"
- },
- {
- "tx_index": 2726580,
- "dispense_index": 0,
- "tx_hash": "e7f0f2c9bef7a492b714a5952ec61b283be344419c5bc33f405f9af41ebfa48b",
- "block_index": 840322,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj",
- "asset": "FLOCK",
- "dispense_quantity": 90000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 2994590,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "dispense_count": 2,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1713778817,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
- "divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "900.00000000",
- "btc_amount_normalized": "0.02994590"
- },
- {
- "tx_index": 2708042,
- "dispense_index": 3,
- "tx_hash": "3eca25448d56dc31a3961664ebf877309c6fe0878c645d373465e286f9ad4985",
- "block_index": 833584,
- "source": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "destination": "1PbVAsaQNEDe1tCJnw1Yo6yu43geu582Uk",
- "asset": "FLOCK",
- "dispense_quantity": 1500000000,
- "dispenser_tx_hash": "cf672c0440db2540f7ad9604c363ff248c2e43c849e450cdea6a0856f69fa6d7",
- "btc_amount": 300000,
+ "tx_hash": "60c597d6868e45719209ae17a0338cb00c81d5d64d82363d6dc68744ecf36351",
+ "tx_index": 13,
+ "block_index": 125,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 9000000000,
+ "paid_quantity": 9000000000,
+ "commission": 0,
+ "status": "valid",
"confirmed": true,
- "dispenser": {
- "tx_index": 2667484,
- "block_index": 826746,
- "source": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "give_quantity": 100000000,
- "escrow_quantity": 3000000000,
- "satoshirate": 20000,
- "status": 10,
- "give_remaining": 0,
- "oracle_address": null,
- "last_status_tx_hash": "6941089bed2152a59ceb90fc43dc30ff0432115f117eb3747b05e37c40d59e01",
- "origin": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "dispense_count": 5,
- "last_status_tx_source": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "close_block_index": "834094",
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 20000,
- "give_quantity_normalized": "1.00000000",
- "give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "30.00000000",
- "satoshirate_normalized": "0.00020000",
- "satoshi_price_normalized": "0.00020000"
- },
- "block_time": 1709822237,
+ "block_time": 1726509592,
"asset_info": {
- "asset_longname": null,
+ "asset_longname": "",
"description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "15.00000000",
- "btc_amount_normalized": "0.00300000"
+ "locked": false
+ }
},
{
- "tx_index": 2692788,
- "dispense_index": 0,
- "tx_hash": "befc42605eafcd24351471560ff0782b06f7be84d6b45ccf2a327d0918da6860",
- "block_index": 831455,
- "source": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "destination": "1DRUiFF3Vuitr8xcUECARu8CoMTkiMxhFj",
- "asset": "FLOCK",
- "dispense_quantity": 100000000,
- "dispenser_tx_hash": "cf672c0440db2540f7ad9604c363ff248c2e43c849e450cdea6a0856f69fa6d7",
- "btc_amount": 35000,
+ "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17",
+ "tx_index": 12,
+ "block_index": 124,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 500000000,
+ "paid_quantity": 500000000,
+ "commission": 0,
+ "status": "valid",
"confirmed": true,
- "dispenser": {
- "tx_index": 2667484,
- "block_index": 826746,
- "source": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "give_quantity": 100000000,
- "escrow_quantity": 3000000000,
- "satoshirate": 20000,
- "status": 10,
- "give_remaining": 0,
- "oracle_address": null,
- "last_status_tx_hash": "6941089bed2152a59ceb90fc43dc30ff0432115f117eb3747b05e37c40d59e01",
- "origin": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "dispense_count": 5,
- "last_status_tx_source": "13XMSZag6tmzMbPhJgHLB32fNksb5ZCzzj",
- "close_block_index": "834094",
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 20000,
- "give_quantity_normalized": "1.00000000",
- "give_remaining_normalized": "0.00000000",
- "escrow_quantity_normalized": "30.00000000",
- "satoshirate_normalized": "0.00020000",
- "satoshi_price_normalized": "0.00020000"
- },
- "block_time": 1708554465,
+ "block_time": 1726509587,
"asset_info": {
- "asset_longname": null,
+ "asset_longname": "",
"description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "1.00000000",
- "btc_amount_normalized": "0.00035000"
+ "locked": false
+ }
},
{
- "tx_index": 2677629,
- "dispense_index": 0,
- "tx_hash": "7c7c681fc0b88223d3c4c954922c4a31cd1602f570185945d62423e9333538bc",
- "block_index": 831020,
- "source": "1KwUc7itzpaEhWSnHAGRSRARh1bXqTvAUj",
- "destination": "1CqnJHLRvsH7MbSipFZXMxkNLJLqkHdj9U",
- "asset": "FLOCK",
- "dispense_quantity": 2000000000,
- "dispenser_tx_hash": "dfbb8b9b8be7e00d52cef97d6d5d37e38cbe0bb1ad701fd1966376572da4ddb3",
- "btc_amount": 40000,
+ "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "tx_index": 11,
+ "block_index": 123,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 500000000,
+ "paid_quantity": 500000000,
+ "commission": 0,
+ "status": "valid",
"confirmed": true,
- "dispenser": {
- "tx_index": 2676812,
- "block_index": 830797,
- "source": "1KwUc7itzpaEhWSnHAGRSRARh1bXqTvAUj",
- "give_quantity": 2000000000,
- "escrow_quantity": 50000000000,
- "satoshirate": 40000,
- "status": 0,
- "give_remaining": 44000000000,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "bc1q7swvjekexhqj42k37h3jmga7w9kqq0dd68kz5j",
- "dispense_count": 3,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 40000,
- "give_quantity_normalized": "20.00000000",
- "give_remaining_normalized": "440.00000000",
- "escrow_quantity_normalized": "500.00000000",
- "satoshirate_normalized": "0.00040000",
- "satoshi_price_normalized": "0.00040000"
- },
- "block_time": 1708283360,
+ "block_time": 1726509583,
"asset_info": {
- "asset_longname": null,
+ "asset_longname": "",
"description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
- "locked": true
- },
- "dispense_quantity_normalized": "20.00000000",
- "btc_amount_normalized": "0.00040000"
+ "locked": false
+ }
}
],
- "next_cursor": 186670,
- "result_count": 383
+ "next_cursor": null,
+ "result_count": 3
}
```
-### Get Subassets By Asset [GET /v2/assets/{asset}/subassets{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+### Get Fairmints By Address And Asset [GET /v2/assets/{asset}/fairmints/{address}{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns asset subassets
+Returns the mints by address and asset
+ Parameters
- + asset: `XCPTORCH` (str, required) - The name of the asset to return
- + cursor (str, optional) - The last index of the assets to return
+ + address: `bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t` (str, required) - The address of the mints to return
+ + asset: `FAIRMINTA` (str, required) - The asset of the mints to return
+ + cursor (str, optional) -
+ Default: `None`
- + limit: `5` (int, optional) - The maximum number of assets to return
+ + limit (int, optional) -
+ Default: `100`
- + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + offset (int, optional) -
+ Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
@@ -9297,88 +10965,29 @@ Returns asset subassets
{
"result": [
{
- "asset": "A15228010576682954369",
- "asset_id": "15228010576682954369",
- "asset_longname": "XCPTORCH.Bogart",
- "issuer": "1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh",
- "owner": "1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh",
- "divisible": false,
- "locked": false,
- "supply": 100,
- "description": "",
- "first_issuance_block_index": 792970,
- "last_issuance_block_index": 792970,
- "first_issuance_block_time": 1685974216,
- "last_issuance_block_time": 1685974216,
- "supply_normalized": "100"
- },
- {
- "asset": "A7332040835528147429",
- "asset_id": "7332040835528147429",
- "asset_longname": "XCPTORCH.UNSTOPPABLE",
- "issuer": "1KZHG6aUQEHkGn3ArXSf5RTp56SsjfL6Wy",
- "owner": "1KZHG6aUQEHkGn3ArXSf5RTp56SsjfL6Wy",
- "divisible": true,
- "locked": true,
- "supply": 1000000000,
- "description": "imgur/r27is1X.png;The World",
- "first_issuance_block_index": 678246,
- "last_issuance_block_index": 678252,
- "first_issuance_block_time": 1617843018,
- "last_issuance_block_time": 1617844465,
- "supply_normalized": "10.00000000"
- },
- {
- "asset": "A7004336585798303513",
- "asset_id": "7004336585798303513",
- "asset_longname": "XCPTORCH.Chiguireitor",
- "issuer": "1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev",
- "owner": "1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev",
- "divisible": false,
- "locked": true,
- "supply": 1,
- "description": "RIP John... The XCP Torch will forever burn in your honor brother!",
- "first_issuance_block_index": 677661,
- "last_issuance_block_index": 677663,
- "first_issuance_block_time": 1617504349,
- "last_issuance_block_time": 1617504534,
- "supply_normalized": "1"
- },
- {
- "asset": "A3271721676894569972",
- "asset_id": "3271721676894569972",
- "asset_longname": "XCPTORCH.O",
- "issuer": "1691c3ZYSNmJc3PJGnkex5fnFdsw34LH57",
- "owner": "1691c3ZYSNmJc3PJGnkex5fnFdsw34LH57",
- "divisible": false,
- "locked": true,
- "supply": 1,
- "description": "",
- "first_issuance_block_index": 676599,
- "last_issuance_block_index": 676600,
- "first_issuance_block_time": 1616884111,
- "last_issuance_block_time": 1616885085,
- "supply_normalized": "1"
- },
- {
- "asset": "A620774729147366346",
- "asset_id": "620774729147366346",
- "asset_longname": "XCPTORCH.dream_of_wonder",
- "issuer": "12y7Htv2f7esbC7DVzCg3hp23w9o3VWZet",
- "owner": "1CKDZhRxSayuJUujQ7VeQ7xDCQTF8cE8or",
- "divisible": true,
- "locked": true,
- "supply": 100000000,
- "description": "",
- "first_issuance_block_index": 676141,
- "last_issuance_block_index": 710602,
- "first_issuance_block_time": 1616618210,
- "last_issuance_block_time": 1637438790,
- "supply_normalized": "1.00000000"
+ "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "tx_index": 11,
+ "block_index": 123,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 500000000,
+ "paid_quantity": 500000000,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509583,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
}
],
- "next_cursor": 74827,
- "result_count": 6
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -9389,7 +10998,7 @@ Returns asset subassets
Returns all the orders
+ Parameters
- + status: `filled` (enum[str], optional) - The status of the orders to return
+ + status (enum[str], optional) - The status of the orders to return
+ Default: `all`
+ Members
+ `all`
@@ -9397,7 +11006,7 @@ Returns all the orders
+ `expired`
+ `filled`
+ `cancelled`
- + cursor (int, optional) - The last index of the orders to return
+ + cursor (str, optional) - The last index of the orders to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of orders to return
+ Default: `100`
@@ -9414,24 +11023,25 @@ Returns all the orders
{
"result": [
{
- "tx_index": 2740434,
- "tx_hash": "08a54f64907e794fb3c801c5cf278a09e52c37d6f399097aa283ff94aaa79d31",
- "block_index": 852052,
- "source": "14QSKTMmMNQ9tGg1ahEGTEaPj1EhxXz2zN",
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_asset": "XCP",
- "give_quantity": 200000000,
- "give_remaining": 0,
- "get_asset": "DANKNEWPEPA",
- "get_quantity": 1,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 860116,
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 212,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 1536,
- "fee_provided_remaining": 1536,
- "status": "filled",
- "block_time": 1720914794,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509903,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -9440,40 +11050,41 @@ Returns all the orders
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "xcp.coindaddy.io/DANKNEWPEPA.json",
- "issuer": "1LQfMD2VWmWJvFfoyUmCN4s2q7ny5Z7QF9",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "give_quantity_normalized": "2.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00001536",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00001536"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2740426,
- "tx_hash": "4ebd3fa6549f67224594f8d1d01507fdb640cbd80b41511d46087f4a50bf4289",
- "block_index": 852049,
- "source": "14QSKTMmMNQ9tGg1ahEGTEaPj1EhxXz2zN",
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 190,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_asset": "XCP",
- "give_quantity": 100000000,
- "give_remaining": 0,
- "get_asset": "MINERPEPE",
- "get_quantity": 1,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 860113,
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 210,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 1540,
- "fee_provided_remaining": 1540,
- "status": "filled",
- "block_time": 1720911242,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "cancelled",
+ "confirmed": true,
+ "block_time": 1726509899,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -9482,124 +11093,127 @@ Returns all the orders
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "imgur/mLNoeyt.png",
- "issuer": "1Mp47wKLV6qhG4ZED2UvHTYbVvnTswjge4",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "give_quantity_normalized": "1.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00001540",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00001540"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2740425,
- "tx_hash": "beb8486ffd3b0345c2ac8d47f708ad95a1755c157c816ce50efca3f166bf28f8",
- "block_index": 852048,
- "source": "14QSKTMmMNQ9tGg1ahEGTEaPj1EhxXz2zN",
- "give_asset": "XCP",
- "give_quantity": 100000000,
+ "tx_index": 52,
+ "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "block_index": 186,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "give_asset": "BTC",
+ "give_quantity": 3000,
"give_remaining": 0,
- "get_asset": "DANKONTITAN",
- "get_quantity": 1,
+ "get_asset": "XCP",
+ "get_quantity": 3000,
"get_remaining": 0,
- "expiration": 8064,
- "expire_index": 860112,
+ "expiration": 21,
+ "expire_index": 207,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 1524,
- "fee_provided_remaining": 1524,
- "status": "filled",
- "block_time": 1720910278,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509871,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "imgur/ehPkdtH.jpg;the dankest duel",
- "issuer": "1ENorBfS2WFytLnRL8B1Y7K3MfD5vWPhEr",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "1.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
+ "give_quantity_normalized": "0.00003000",
+ "get_quantity_normalized": "0.00003000",
+ "get_remaining_normalized": "0.00000000",
"give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00001524",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00001524"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2740382,
- "tx_hash": "e566e77e01784ccd3c502e0431d8c17f9b08d8e99ce1bfc2124466c72aeb6416",
- "block_index": 851994,
- "source": "1E5RUKNgnKYazyS1Py8Am28XrMTWNKCwDT",
- "give_asset": "XCP",
- "give_quantity": 200000000,
- "give_remaining": 1000000,
- "get_asset": "GOTPEPESHIRT",
- "get_quantity": 4,
+ "tx_index": 50,
+ "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "block_index": 185,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "give_asset": "BTC",
+ "give_quantity": 2000,
+ "give_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 2000,
"get_remaining": 0,
- "expiration": 8064,
- "expire_index": 860058,
+ "expiration": 21,
+ "expire_index": 205,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 1771,
- "fee_provided_remaining": 1771,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
"status": "filled",
- "block_time": 1720886917,
+ "confirmed": true,
+ "block_time": 1726509867,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "15qdhYM8WXZQUCPsR1oeoWkfCmBgeUZXht",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "2.00000000",
- "get_quantity_normalized": "4",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.01000000",
- "fee_provided_normalized": "0.00001771",
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00002000",
+ "get_quantity_normalized": "0.00002000",
+ "get_remaining_normalized": "0.00000000",
+ "give_remaining_normalized": "0.00000000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00001771"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2740381,
- "tx_hash": "76672838759af9de0bd4e3470d72cc4d61f44c0b01cda2d0ea7f99a9ad5b1fd4",
- "block_index": 851994,
- "source": "1E5RUKNgnKYazyS1Py8Am28XrMTWNKCwDT",
+ "tx_index": 49,
+ "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "block_index": 186,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_asset": "XCP",
- "give_quantity": 200000000,
- "give_remaining": 1000000,
- "get_asset": "PEPETSHIRT",
- "get_quantity": 2,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 860058,
+ "give_quantity": 10000,
+ "give_remaining": 5000,
+ "get_asset": "BTC",
+ "get_quantity": 10000,
+ "get_remaining": 5000,
+ "expiration": 21,
+ "expire_index": 204,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 1771,
- "fee_provided_remaining": 1771,
- "status": "filled",
- "block_time": 1720886917,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509871,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -9608,24 +11222,24 @@ Returns all the orders
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "REDEEM FOR 1 PEPE TSHIRT",
- "issuer": "15qdhYM8WXZQUCPsR1oeoWkfCmBgeUZXht",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "give_quantity_normalized": "2.00000000",
- "get_quantity_normalized": "2",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.01000000",
- "fee_provided_normalized": "0.00001771",
+ "give_quantity_normalized": "0.00010000",
+ "get_quantity_normalized": "0.00010000",
+ "get_remaining_normalized": "0.00005000",
+ "give_remaining_normalized": "0.00005000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00001771"
+ "fee_provided_remaining_normalized": "0.00010000"
}
],
- "next_cursor": 533302,
- "result_count": 249824
+ "next_cursor": 48,
+ "result_count": 7
}
```
@@ -9634,7 +11248,7 @@ Returns all the orders
Returns the information of an order
+ Parameters
- + order_hash: `23f68fdf934e81144cca31ce8ef69062d553c521321a039166e7ba99aede0776` (str, required) - The hash of the transaction that created the order
+ + order_hash: `7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232` (str, required) - The hash of the transaction that created the order
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -9645,46 +11259,47 @@ Returns the information of an order
```
{
"result": {
- "tx_index": 2724132,
- "tx_hash": "23f68fdf934e81144cca31ce8ef69062d553c521321a039166e7ba99aede0776",
- "block_index": 838055,
- "source": "15L7U55PAsHLEpQkZqz62e3eqWd9AHb2DH",
- "give_asset": "PEPECASH",
- "give_quantity": 6966600000000,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 11076894000,
- "get_remaining": 0,
- "expiration": 5000,
- "expire_index": 843055,
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 212,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 4488,
- "fee_provided_remaining": 4488,
- "status": "filled",
- "block_time": 1712455272,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509903,
"give_asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"get_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
- "give_quantity_normalized": "69666.00000000",
- "get_quantity_normalized": "110.76894000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00004488",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00004488"
+ "fee_provided_remaining_normalized": "0.00010000"
}
}
```
@@ -9694,15 +11309,15 @@ Returns the information of an order
Returns the order matches of an order
+ Parameters
- + order_hash: `5461e6f99a37a7167428b4a720a52052cd9afed43905f818f5d7d4f56abd0947` (str, required) - The hash of the transaction that created the order
- + status: `completed` (enum[str], optional) - The status of the order matches to return
+ + order_hash: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1` (str, required) - The hash of the transaction that created the order
+ + status (enum[str], optional) - The status of the order matches to return
+ Default: `all`
+ Members
+ `all`
+ `pending`
+ `completed`
+ `expired`
- + cursor (int, optional) - The last index of the order matches to return
+ + cursor (str, optional) - The last index of the order matches to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of order matches to return
+ Default: `100`
@@ -9719,47 +11334,88 @@ Returns the order matches of an order
{
"result": [
{
- "id": "23f68fdf934e81144cca31ce8ef69062d553c521321a039166e7ba99aede0776_5461e6f99a37a7167428b4a720a52052cd9afed43905f818f5d7d4f56abd0947",
- "tx0_index": 2724132,
- "tx0_hash": "23f68fdf934e81144cca31ce8ef69062d553c521321a039166e7ba99aede0776",
- "tx0_address": "15L7U55PAsHLEpQkZqz62e3eqWd9AHb2DH",
- "tx1_index": 2726591,
- "tx1_hash": "5461e6f99a37a7167428b4a720a52052cd9afed43905f818f5d7d4f56abd0947",
- "tx1_address": "15e15ua6A3FJqjMevtrWcFSzKn9k6bMQeA",
- "forward_asset": "PEPECASH",
- "forward_quantity": 6066600000000,
- "backward_asset": "XCP",
- "backward_quantity": 9645894000,
- "tx0_block_index": 838055,
- "tx1_block_index": 840381,
- "block_index": 840381,
- "tx0_expiration": 5000,
- "tx1_expiration": 8064,
- "match_expire_index": 840401,
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 52,
+ "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "forward_asset": "XCP",
+ "forward_quantity": 3000,
+ "backward_asset": "BTC",
+ "backward_quantity": 3000,
+ "tx0_block_index": 184,
+ "tx1_block_index": 186,
+ "block_index": 186,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 206,
+ "fee_paid": 0,
+ "status": "pending",
+ "confirmed": true,
+ "block_time": 1726509871,
+ "forward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00003000",
+ "backward_quantity_normalized": "0.00003000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 50,
+ "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "forward_asset": "XCP",
+ "forward_quantity": 2000,
+ "backward_asset": "BTC",
+ "backward_quantity": 2000,
+ "tx0_block_index": 183,
+ "tx1_block_index": 184,
+ "block_index": 185,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 204,
"fee_paid": 0,
"status": "completed",
- "block_time": 1713811499,
+ "confirmed": true,
+ "block_time": 1726509867,
"forward_asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"backward_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
- "forward_quantity_normalized": "60666.00000000",
- "backward_quantity_normalized": "96.45894000",
+ "forward_quantity_normalized": "0.00002000",
+ "backward_quantity_normalized": "0.00002000",
"fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 2
}
```
@@ -9768,8 +11424,8 @@ Returns the order matches of an order
Returns the BTC pays of an order
+ Parameters
- + order_hash: `299b5b648f54eacb839f3487232d49aea373cdd681b706d4cc0b5e0b03688db4` (str, required) - The hash of the transaction that created the order
- + cursor (int, optional) - The last index of the resolutions to return
+ + order_hash: `675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1` (str, required) - The hash of the transaction that created the order
+ + cursor (str, optional) - The last index of the resolutions to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of resolutions to return
+ Default: `100`
@@ -9784,9 +11440,23 @@ Returns the BTC pays of an order
```
{
- "result": [],
+ "result": [
+ {
+ "tx_index": 51,
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "block_index": 185,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "btc_amount": 2000,
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509867,
+ "btc_amount_normalized": "0.00002000"
+ }
+ ],
"next_cursor": null,
- "result_count": 0
+ "result_count": 1
}
```
@@ -9795,9 +11465,9 @@ Returns the BTC pays of an order
Returns the orders to exchange two assets
+ Parameters
- + asset1: `NEEDPEPE` (str, required) - The first asset to return
+ + asset1: `BTC` (str, required) - The first asset to return
+ asset2: `XCP` (str, required) - The second asset to return
- + status: `filled` (enum[str], optional) - The status of the orders to return
+ + status (enum[str], optional) - The status of the orders to return
+ Default: `all`
+ Members
+ `all`
@@ -9805,7 +11475,7 @@ Returns the orders to exchange two assets
+ `expired`
+ `filled`
+ `cancelled`
- + cursor (int, optional) - The last index of the orders to return
+ + cursor (str, optional) - The last index of the orders to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of orders to return
+ Default: `100`
@@ -9822,27 +11492,28 @@ Returns the orders to exchange two assets
{
"result": [
{
- "tx_index": 2737960,
- "tx_hash": "f9448ecd5f43c13b8ca9e0fa38fb2b2de8de3bf7727ff188182290ce6b78e611",
- "block_index": 849746,
- "source": "16Kzr7ocw1pTDhR5FL5vvFWmiSz4iFpygS",
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_asset": "XCP",
- "give_quantity": 42500000000,
- "give_remaining": 0,
- "get_asset": "NEEDPEPE",
- "get_quantity": 1,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 857810,
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 212,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 2783,
- "fee_provided_remaining": 2783,
- "status": "filled",
- "market_pair": "NEEDPEPE/XCP",
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
"market_dir": "BUY",
- "market_price": "425.00000000",
- "block_time": 1719532211,
+ "market_price": "1.00000000",
+ "block_time": 1726509903,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -9851,94 +11522,96 @@ Returns the orders to exchange two assets
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "give_quantity_normalized": "425.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00002783",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00002783"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2736291,
- "tx_hash": "d1bbfc06d116422151322de431f034a2c3042061dd82461d84cbd0b3e70f8a7d",
- "block_index": 847779,
- "source": "127ChgMdzicU8QhAFLi9KugRYkMzm3qb37",
- "give_asset": "NEEDPEPE",
- "give_quantity": 1,
- "give_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 42500000000,
- "get_remaining": 0,
- "expiration": 8064,
- "expire_index": 855843,
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 190,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 210,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 12699,
- "fee_provided_remaining": 12699,
- "status": "filled",
- "market_pair": "NEEDPEPE/XCP",
- "market_dir": "SELL",
- "market_price": "425.00000000",
- "block_time": 1718294421,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "cancelled",
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
+ "market_dir": "BUY",
+ "market_price": "1.00000000",
+ "block_time": 1726509899,
"give_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"get_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "425.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00012699",
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00012699"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2225134,
- "tx_hash": "5b6e0c741d765ebd883dc16eecfb5c340c52865cabf297ca2c1432437c1348b7",
- "block_index": 772817,
- "source": "1FnM7akSCD8G3fRQHCUEXRCfL35gptsPZB",
- "give_asset": "NEEDPEPE",
- "give_quantity": 1,
+ "tx_index": 52,
+ "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "block_index": 186,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "give_asset": "BTC",
+ "give_quantity": 3000,
"give_remaining": 0,
"get_asset": "XCP",
- "get_quantity": 80800000000,
+ "get_quantity": 3000,
"get_remaining": 0,
- "expiration": 5000,
- "expire_index": 777817,
+ "expiration": 21,
+ "expire_index": 207,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 5544,
- "fee_provided_remaining": 5544,
- "status": "filled",
- "market_pair": "NEEDPEPE/XCP",
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
"market_dir": "SELL",
- "market_price": "808.00000000",
- "block_time": 1674228170,
+ "market_price": "1.00000000",
+ "block_time": 1726509871,
"give_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
"get_asset_info": {
"divisible": true,
@@ -9947,82 +11620,84 @@ Returns the orders to exchange two assets
"locked": true,
"issuer": null
},
- "give_quantity_normalized": "1",
- "get_quantity_normalized": "808.00000000",
+ "give_quantity_normalized": "0.00003000",
+ "get_quantity_normalized": "0.00003000",
"get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0",
- "fee_provided_normalized": "0.00005544",
+ "give_remaining_normalized": "0.00000000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00005544"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 2202451,
- "tx_hash": "77f568fc6604dbe209d2ea1b0158d7de20723c0178107eb570f4f2a719b0d7c7",
- "block_index": 768300,
- "source": "184gKLQTtQU29LXbxbYJkUV4if9SmW6v2d",
- "give_asset": "XCP",
- "give_quantity": 80800000000,
+ "tx_index": 50,
+ "tx_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "block_index": 185,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "give_asset": "BTC",
+ "give_quantity": 2000,
"give_remaining": 0,
- "get_asset": "NEEDPEPE",
- "get_quantity": 1,
+ "get_asset": "XCP",
+ "get_quantity": 2000,
"get_remaining": 0,
- "expiration": 5000,
- "expire_index": 773300,
+ "expiration": 21,
+ "expire_index": 205,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 264,
- "fee_provided_remaining": 264,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
"status": "filled",
- "market_pair": "NEEDPEPE/XCP",
- "market_dir": "BUY",
- "market_price": "808.00000000",
- "block_time": 1671594250,
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
+ "market_dir": "SELL",
+ "market_price": "1.00000000",
+ "block_time": 1726509867,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "808.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
+ "give_quantity_normalized": "0.00002000",
+ "get_quantity_normalized": "0.00002000",
+ "get_remaining_normalized": "0.00000000",
"give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00000264",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00000264"
+ "fee_provided_remaining_normalized": "0.00010000"
},
{
- "tx_index": 1946587,
- "tx_hash": "b747f290cbbad6faa1c1c05d5c6d001b5a3ef487027bb0d4eefcdc9f6e865c39",
- "block_index": 727444,
- "source": "1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh",
+ "tx_index": 49,
+ "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "block_index": 186,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_asset": "XCP",
- "give_quantity": 70000000000,
- "give_remaining": 0,
- "get_asset": "NEEDPEPE",
- "get_quantity": 1,
- "get_remaining": 0,
- "expiration": 5000,
- "expire_index": 732444,
+ "give_quantity": 10000,
+ "give_remaining": 5000,
+ "get_asset": "BTC",
+ "get_quantity": 10000,
+ "get_remaining": 5000,
+ "expiration": 21,
+ "expire_index": 204,
"fee_required": 0,
"fee_required_remaining": 0,
- "fee_provided": 792,
- "fee_provided_remaining": 792,
- "status": "filled",
- "market_pair": "NEEDPEPE/XCP",
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
"market_dir": "BUY",
- "market_price": "700.00000000",
- "block_time": 1647349140,
+ "market_price": "1.00000000",
+ "block_time": 1726509871,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -10031,24 +11706,24 @@ Returns the orders to exchange two assets
"issuer": null
},
"get_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "give_quantity_normalized": "700.00000000",
- "get_quantity_normalized": "1",
- "get_remaining_normalized": "0",
- "give_remaining_normalized": "0.00000000",
- "fee_provided_normalized": "0.00000792",
+ "give_quantity_normalized": "0.00010000",
+ "get_quantity_normalized": "0.00010000",
+ "get_remaining_normalized": "0.00005000",
+ "give_remaining_normalized": "0.00005000",
+ "fee_provided_normalized": "0.00010000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00000792"
+ "fee_provided_remaining_normalized": "0.00010000"
}
],
- "next_cursor": 1946026,
- "result_count": 6
+ "next_cursor": 48,
+ "result_count": 7
}
```
@@ -10057,16 +11732,16 @@ Returns the orders to exchange two assets
Returns the orders to exchange two assets
+ Parameters
- + asset1: `NEEDPEPE` (str, required) - The first asset to return
+ + asset1: `BTC` (str, required) - The first asset to return
+ asset2: `XCP` (str, required) - The second asset to return
- + status: `completed` (enum[str], optional) - The status of the order matches to return
+ + status (enum[str], optional) - The status of the order matches to return
+ Default: `all`
+ Members
+ `all`
+ `pending`
+ `completed`
+ `expired`
- + cursor (int, optional) - The last index of the order matches to return
+ + cursor (str, optional) - The last index of the order matches to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of order matches to return
+ Default: `100`
@@ -10083,71 +11758,116 @@ Returns the orders to exchange two assets
{
"result": [
{
- "id": "d1bbfc06d116422151322de431f034a2c3042061dd82461d84cbd0b3e70f8a7d_f9448ecd5f43c13b8ca9e0fa38fb2b2de8de3bf7727ff188182290ce6b78e611",
- "tx0_index": 2736291,
- "tx0_hash": "d1bbfc06d116422151322de431f034a2c3042061dd82461d84cbd0b3e70f8a7d",
- "tx0_address": "127ChgMdzicU8QhAFLi9KugRYkMzm3qb37",
- "tx1_index": 2737960,
- "tx1_hash": "f9448ecd5f43c13b8ca9e0fa38fb2b2de8de3bf7727ff188182290ce6b78e611",
- "tx1_address": "16Kzr7ocw1pTDhR5FL5vvFWmiSz4iFpygS",
- "forward_asset": "NEEDPEPE",
- "forward_quantity": 1,
- "backward_asset": "XCP",
- "backward_quantity": 42500000000,
- "tx0_block_index": 847779,
- "tx1_block_index": 849746,
- "block_index": 849746,
- "tx0_expiration": 8064,
- "tx1_expiration": 8064,
- "match_expire_index": 849766,
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 52,
+ "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "forward_asset": "XCP",
+ "forward_quantity": 3000,
+ "backward_asset": "BTC",
+ "backward_quantity": 3000,
+ "tx0_block_index": 184,
+ "tx1_block_index": 186,
+ "block_index": 186,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 206,
"fee_paid": 0,
- "status": "completed",
- "market_pair": "NEEDPEPE/XCP",
- "market_dir": "SELL",
- "market_price": "0.00000000",
- "block_time": 1719532211,
+ "status": "pending",
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
+ "market_dir": "BUY",
+ "market_price": "1.00000000",
+ "block_time": 1726509871,
"forward_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00003000",
+ "backward_quantity_normalized": "0.00003000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 50,
+ "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "forward_asset": "XCP",
+ "forward_quantity": 2000,
+ "backward_asset": "BTC",
+ "backward_quantity": 2000,
+ "tx0_block_index": 183,
+ "tx1_block_index": 184,
+ "block_index": 185,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 204,
+ "fee_paid": 0,
+ "status": "completed",
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
+ "market_dir": "BUY",
+ "market_price": "1.00000000",
+ "block_time": 1726509867,
+ "forward_asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "forward_quantity_normalized": "1",
- "backward_quantity_normalized": "425.00000000",
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00002000",
+ "backward_quantity_normalized": "0.00002000",
"fee_paid_normalized": "0.00000000"
},
{
- "id": "77f568fc6604dbe209d2ea1b0158d7de20723c0178107eb570f4f2a719b0d7c7_5b6e0c741d765ebd883dc16eecfb5c340c52865cabf297ca2c1432437c1348b7",
- "tx0_index": 2202451,
- "tx0_hash": "77f568fc6604dbe209d2ea1b0158d7de20723c0178107eb570f4f2a719b0d7c7",
- "tx0_address": "184gKLQTtQU29LXbxbYJkUV4if9SmW6v2d",
- "tx1_index": 2225134,
- "tx1_hash": "5b6e0c741d765ebd883dc16eecfb5c340c52865cabf297ca2c1432437c1348b7",
- "tx1_address": "1FnM7akSCD8G3fRQHCUEXRCfL35gptsPZB",
+ "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "tx0_index": 47,
+ "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 48,
+ "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
"forward_asset": "XCP",
- "forward_quantity": 80800000000,
- "backward_asset": "NEEDPEPE",
- "backward_quantity": 1,
- "tx0_block_index": 768300,
- "tx1_block_index": 772817,
- "block_index": 772817,
- "tx0_expiration": 5000,
- "tx1_expiration": 5000,
- "match_expire_index": 772837,
+ "forward_quantity": 1000,
+ "backward_asset": "BTC",
+ "backward_quantity": 1000,
+ "tx0_block_index": 160,
+ "tx1_block_index": 161,
+ "block_index": 182,
+ "tx0_expiration": 21,
+ "tx1_expiration": 20,
+ "match_expire_index": 181,
"fee_paid": 0,
- "status": "completed",
- "market_pair": "NEEDPEPE/XCP",
+ "status": "expired",
+ "confirmed": true,
+ "market_pair": "BTC/XCP",
"market_dir": "BUY",
- "market_price": "0.00000000",
- "block_time": 1674228170,
+ "market_price": "1.00000000",
+ "block_time": 1726509796,
"forward_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -10156,56 +11876,170 @@ Returns the orders to exchange two assets
"issuer": null
},
"backward_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00001000",
+ "backward_quantity_normalized": "0.00001000",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ }
+ ```
+
+## Group Order_matches
+
+### Get All Order Matches [GET /v2/order_matches{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns all the order matches
+
++ Parameters
+ + status (enum[str], optional) - The status of the order matches to return
+ + Default: `all`
+ + Members
+ + `all`
+ + `pending`
+ + `completed`
+ + `expired`
+ + cursor (str, optional) - The last index of the order matches to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of order matches to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": [
+ {
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 52,
+ "tx1_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21",
+ "tx1_address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "forward_asset": "XCP",
+ "forward_quantity": 3000,
+ "backward_asset": "BTC",
+ "backward_quantity": 3000,
+ "tx0_block_index": 184,
+ "tx1_block_index": 186,
+ "block_index": 186,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 206,
+ "fee_paid": 0,
+ "status": "pending",
+ "confirmed": true,
+ "block_time": 1726509871,
+ "forward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "forward_quantity_normalized": "808.00000000",
- "backward_quantity_normalized": "1",
+ "forward_quantity_normalized": "0.00003000",
+ "backward_quantity_normalized": "0.00003000",
"fee_paid_normalized": "0.00000000"
},
{
- "id": "75dc6ee1f67317e674ef33b617d3a9839ee53bf4a2e8274c88d6202d4d89b59a_b747f290cbbad6faa1c1c05d5c6d001b5a3ef487027bb0d4eefcdc9f6e865c39",
- "tx0_index": 1946026,
- "tx0_hash": "75dc6ee1f67317e674ef33b617d3a9839ee53bf4a2e8274c88d6202d4d89b59a",
- "tx0_address": "1GotRejB6XsGgMsM79TvcypeanDJRJbMtg",
- "tx1_index": 1946587,
- "tx1_hash": "b747f290cbbad6faa1c1c05d5c6d001b5a3ef487027bb0d4eefcdc9f6e865c39",
- "tx1_address": "1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh",
- "forward_asset": "NEEDPEPE",
- "forward_quantity": 1,
- "backward_asset": "XCP",
- "backward_quantity": 70000000000,
- "tx0_block_index": 727381,
- "tx1_block_index": 727444,
- "block_index": 727444,
- "tx0_expiration": 5000,
- "tx1_expiration": 5000,
- "match_expire_index": 727464,
+ "id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx0_index": 49,
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 50,
+ "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "forward_asset": "XCP",
+ "forward_quantity": 2000,
+ "backward_asset": "BTC",
+ "backward_quantity": 2000,
+ "tx0_block_index": 183,
+ "tx1_block_index": 184,
+ "block_index": 185,
+ "tx0_expiration": 21,
+ "tx1_expiration": 21,
+ "match_expire_index": 204,
"fee_paid": 0,
"status": "completed",
- "market_pair": "NEEDPEPE/XCP",
- "market_dir": "SELL",
- "market_price": "0.00000000",
- "block_time": 1647349140,
+ "confirmed": true,
+ "block_time": 1726509867,
"forward_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1Fpx9NPBJsRbx6RXkvfZ3n1iCYj7n7VaJR",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
"backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00002000",
+ "backward_quantity_normalized": "0.00002000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "tx0_index": 47,
+ "tx0_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "tx0_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx1_index": 48,
+ "tx1_hash": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "tx1_address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "forward_asset": "XCP",
+ "forward_quantity": 1000,
+ "backward_asset": "BTC",
+ "backward_quantity": 1000,
+ "tx0_block_index": 160,
+ "tx1_block_index": 161,
+ "block_index": 182,
+ "tx0_expiration": 21,
+ "tx1_expiration": 20,
+ "match_expire_index": 181,
+ "fee_paid": 0,
+ "status": "expired",
+ "confirmed": true,
+ "block_time": 1726509796,
+ "forward_asset_info": {
"divisible": true,
"asset_longname": null,
"description": "The Counterparty protocol native currency",
"locked": true,
"issuer": null
},
- "forward_quantity_normalized": "1",
- "backward_quantity_normalized": "700.00000000",
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "0.00001000",
+ "backward_quantity_normalized": "0.00001000",
"fee_paid_normalized": "0.00000000"
}
],
@@ -10229,7 +12063,7 @@ Returns the bets of a feed
+ `expired`
+ `filled`
+ `open`
- + cursor (int, optional) - The last index of the bets to return
+ + cursor (str, optional) - The last index of the bets to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of bets to return
+ Default: `100`
@@ -10244,115 +12078,9 @@ Returns the bets of a feed
```
{
- "result": [
- {
- "tx_index": 869523,
- "tx_hash": "262e629266b15a769be35a0cc702b10785ed40e15655baf3b1e6a8b4ae056821",
- "block_index": 460625,
- "source": "1AEV18DTJjJBUWXhqm2aWCkLHWV2tGVTVY",
- "feed_address": "1BetXQ5w9mMmJosZ21jUtrebdpgMhYQUaZ",
- "bet_type": 2,
- "deadline": 1491577200,
- "wager_quantity": 50000000,
- "wager_remaining": 0,
- "counterwager_quantity": 699999999,
- "counterwager_remaining": 0,
- "target_value": 7.0,
- "leverage": 5040,
- "expiration": 273,
- "expire_index": 460898,
- "fee_fraction_int": 3000000,
- "status": "filled",
- "block_time": 1491461927,
- "fee_fraction_int_normalized": "0.03000000"
- },
- {
- "tx_index": 866588,
- "tx_hash": "9ca52860302c89b761cbf19bce6f61f3f84f475c84f4f1a0e35fd709e64f75f3",
- "block_index": 460210,
- "source": "1Ch9trfp2ULuPxnU81cA3TDvW17L8YRw6r",
- "feed_address": "1BetXQ5w9mMmJosZ21jUtrebdpgMhYQUaZ",
- "bet_type": 2,
- "deadline": 1491577200,
- "wager_quantity": 5160000,
- "wager_remaining": 0,
- "counterwager_quantity": 72239999,
- "counterwager_remaining": 0,
- "target_value": 7.0,
- "leverage": 5040,
- "expiration": 532,
- "expire_index": 460742,
- "fee_fraction_int": 3000000,
- "status": "filled",
- "block_time": 1491217361,
- "fee_fraction_int_normalized": "0.03000000"
- },
- {
- "tx_index": 859754,
- "tx_hash": "aa6a2114ef826562d23c32ac23d2e2208fd479b9b6fda4a608afbec5324222a9",
- "block_index": 459591,
- "source": "1AeEhRpChp1TteqBTkC4GPmyQJgH31MMmK",
- "feed_address": "1BetXQ5w9mMmJosZ21jUtrebdpgMhYQUaZ",
- "bet_type": 2,
- "deadline": 1490972400,
- "wager_quantity": 10000000,
- "wager_remaining": 5000000,
- "counterwager_quantity": 69999999,
- "counterwager_remaining": 0,
- "target_value": 7.0,
- "leverage": 5040,
- "expiration": 147,
- "expire_index": 459738,
- "fee_fraction_int": 2000000,
- "status": "filled",
- "block_time": 1490861409,
- "fee_fraction_int_normalized": "0.02000000"
- },
- {
- "tx_index": 852055,
- "tx_hash": "bfcec019132a744aca0401995a27f6c4e8eafa7a2a3b03f7d65de2a4a8eab04f",
- "block_index": 458726,
- "source": "1AEV18DTJjJBUWXhqm2aWCkLHWV2tGVTVY",
- "feed_address": "1BetXQ5w9mMmJosZ21jUtrebdpgMhYQUaZ",
- "bet_type": 2,
- "deadline": 1490367600,
- "wager_quantity": 50000000,
- "wager_remaining": 0,
- "counterwager_quantity": 699999999,
- "counterwager_remaining": 0,
- "target_value": 7.0,
- "leverage": 5040,
- "expiration": 1008,
- "expire_index": 459734,
- "fee_fraction_int": 3000000,
- "status": "filled",
- "block_time": 1490363304,
- "fee_fraction_int_normalized": "0.03000000"
- },
- {
- "tx_index": 849994,
- "tx_hash": "dd511181ff8a39a0c58b17e498f271825af912e6d1b8d1333f94ba6d4f0d1908",
- "block_index": 458546,
- "source": "1AuspQ6wRmryPQ3SuPoy4LaVJSRdafF1Wj",
- "feed_address": "1BetXQ5w9mMmJosZ21jUtrebdpgMhYQUaZ",
- "bet_type": 2,
- "deadline": 1490367600,
- "wager_quantity": 100000000,
- "wager_remaining": 0,
- "counterwager_quantity": 1399999999,
- "counterwager_remaining": 0,
- "target_value": 7.0,
- "leverage": 5040,
- "expiration": 1008,
- "expire_index": 459554,
- "fee_fraction_int": 3000000,
- "status": "filled",
- "block_time": 1490266487,
- "fee_fraction_int_normalized": "0.03000000"
- }
- ],
- "next_cursor": 1133,
- "result_count": 417
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
}
```
@@ -10371,27 +12099,7 @@ Returns the information of a bet
```
{
- "result": {
- "tx_index": 15106,
- "tx_hash": "5d097b4729cb74d927b4458d365beb811a26fcee7f8712f049ecbe780eb496ed",
- "block_index": 304062,
- "source": "18ZNyaAcH4HugeofwbrpLoUNiayxJRH65c",
- "feed_address": "1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
- "bet_type": 3,
- "deadline": 1401828300,
- "wager_quantity": 50000000,
- "wager_remaining": 0,
- "counterwager_quantity": 50000000,
- "counterwager_remaining": 0,
- "target_value": 1.0,
- "leverage": 5040,
- "expiration": 11,
- "expire_index": 304073,
- "fee_fraction_int": 1000000,
- "status": "filled",
- "block_time": 1401823245,
- "fee_fraction_int_normalized": "0.01000000"
- }
+ "error": "Not found"
}
```
@@ -10410,7 +12118,7 @@ Returns the bet matches of a bet
+ `settled: for equal`
+ `settled: for notequal`
+ `settled: liquidated for bear`
- + cursor (int, optional) - The last index of the bet matches to return
+ + cursor (str, optional) - The last index of the bet matches to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of bet matches to return
+ Default: `100`
@@ -10425,38 +12133,9 @@ Returns the bet matches of a bet
```
{
- "result": [
- {
- "id": "5d097b4729cb74d927b4458d365beb811a26fcee7f8712f049ecbe780eb496ed_cb5f888c299a50967d523513daed71636d927e6ef3dbda85feb11ff112ae4330",
- "tx0_index": 15106,
- "tx0_hash": "5d097b4729cb74d927b4458d365beb811a26fcee7f8712f049ecbe780eb496ed",
- "tx0_address": "18ZNyaAcH4HugeofwbrpLoUNiayxJRH65c",
- "tx1_index": 15108,
- "tx1_hash": "cb5f888c299a50967d523513daed71636d927e6ef3dbda85feb11ff112ae4330",
- "tx1_address": "1PTqJmRCMGs4qBEh2APAFSrBv95Uf1hfiD",
- "tx0_bet_type": 3,
- "tx1_bet_type": 2,
- "feed_address": "1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk",
- "initial_value": -1,
- "deadline": 1401828300,
- "target_value": 1.0,
- "leverage": 5040,
- "forward_quantity": 50000000,
- "backward_quantity": 50000000,
- "tx0_block_index": 304062,
- "tx1_block_index": 304063,
- "block_index": 304062,
- "tx0_expiration": 11,
- "tx1_expiration": 1459,
- "match_expire_index": 304073,
- "fee_fraction_int": 1000000,
- "status": "expired",
- "block_time": 1401823245,
- "fee_fraction_int_normalized": "0.01000000"
- }
- ],
+ "result": [],
"next_cursor": null,
- "result_count": 1
+ "result_count": 0
}
```
@@ -10466,7 +12145,7 @@ Returns the resolutions of a bet
+ Parameters
+ bet_hash: `36bbbb7dbd85054dac140a8ad8204eda2ee859545528bd2a9da69ad77c277ace` (str, required) - The hash of the transaction that created the bet
- + cursor (int, optional) - The last index of the resolutions to return
+ + cursor (str, optional) - The last index of the resolutions to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of resolutions to return
+ Default: `100`
@@ -10481,22 +12160,9 @@ Returns the resolutions of a bet
```
{
- "result": [
- {
- "bet_match_id": "36bbbb7dbd85054dac140a8ad8204eda2ee859545528bd2a9da69ad77c277ace_d70ee4e44f02fe6258ee0c267f33f304a0fc61d4ce424852f58c28967dc1924f",
- "bet_match_type_id": 5,
- "block_index": 401128,
- "winner": "Equal",
- "settled": false,
- "bull_credit": null,
- "bear_credit": null,
- "escrow_less_fee": 2000000,
- "fee": 0,
- "block_time": 1457098747
- }
- ],
+ "result": [],
"next_cursor": null,
- "result_count": 1
+ "result_count": 0
}
```
@@ -10507,7 +12173,7 @@ Returns the resolutions of a bet
Returns the burns
+ Parameters
- + cursor (int, optional) - The last index of the burns to return
+ + cursor (str, optional) - The last index of the burns to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of burns to return
+ Default: `100`
@@ -10524,68 +12190,73 @@ Returns the burns
{
"result": [
{
- "tx_index": 3070,
- "tx_hash": "4560d0e3d04927108b615ab106040489aca9c4aceedcf69d2b71f63b3139c7ae",
- "block_index": 283810,
- "source": "1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W",
- "burned": 10000000,
- "earned": 10000000000,
+ "tx_index": 9,
+ "tx_hash": "2504c4bdafa1c2cab23605685e6a8040748f7d6df91f857b42f1cb259d3a91e0",
+ "block_index": 121,
+ "source": "bcrt1qyzyw25seaw22494hrmtlwsm3d5mqyp93fd25da",
+ "burned": 50000000,
+ "earned": 74999996667,
"status": "valid",
- "block_time": 1391371108,
- "burned_normalized": "0.10000000",
- "earned_normalized": "100.00000000"
+ "confirmed": true,
+ "block_time": 1726509573,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99997000"
},
{
- "tx_index": 3069,
- "tx_hash": "ad6609edbdb3b951627302f65df06636f2535680d69d2ee98f59af05cedf0d94",
- "block_index": 283809,
- "source": "1EU6VM7zkA9qDw8ReFKHRpSSHJvbuXYNhq",
- "burned": 100000000,
- "earned": 100009090909,
+ "tx_index": 8,
+ "tx_hash": "6322f2e8e202acc14afc1b22b19ac8ab56b27f17712400d116568a1da72222cc",
+ "block_index": 120,
+ "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99",
+ "burned": 50000000,
+ "earned": 74999996833,
"status": "valid",
- "block_time": 1391370479,
- "burned_normalized": "1.00000000",
- "earned_normalized": "1000.09090000"
+ "confirmed": true,
+ "block_time": 1726509569,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99997000"
},
{
- "tx_index": 3068,
- "tx_hash": "ab7f2777b3b0ebd3330cd7ccf43af87680c9a43072d0a7c8f24a64bd330bc8ba",
- "block_index": 283809,
- "source": "1NiYuG55KmBMQrHBV6fchPmkKYDTeVp7GB",
- "burned": 100000000,
- "earned": 100009090909,
+ "tx_index": 7,
+ "tx_hash": "38fc46963011e93a419c7d62e149905064cd942d143e7452ee3a67a6183f9e98",
+ "block_index": 119,
+ "source": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d",
+ "burned": 50000000,
+ "earned": 74999997000,
"status": "valid",
- "block_time": 1391370479,
- "burned_normalized": "1.00000000",
- "earned_normalized": "1000.09090000"
+ "confirmed": true,
+ "block_time": 1726509565,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99997000"
},
{
- "tx_index": 3067,
- "tx_hash": "e5d5ea41862c36a3f38134e791107422f932441b0f26e8ea6539e6147e374c4a",
- "block_index": 283809,
- "source": "1MxUpHDNHtxuDLGCB7oMkEPq5HrgMomCUp",
- "burned": 100000000,
- "earned": 100009090909,
+ "tx_index": 6,
+ "tx_hash": "f8d15199587f10cbe7ee5233aba5c8fcc99d9ba2e1c6995360c80912f6eb2a6c",
+ "block_index": 118,
+ "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
+ "burned": 50000000,
+ "earned": 74999997167,
"status": "valid",
- "block_time": 1391370479,
- "burned_normalized": "1.00000000",
- "earned_normalized": "1000.09090000"
+ "confirmed": true,
+ "block_time": 1726509560,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99997000"
},
{
- "tx_index": 3066,
- "tx_hash": "82b73a230141700b8d9c2af145ac17b8e536b52a72adc508b64ccd58ee9f3805",
- "block_index": 283809,
- "source": "18TtiN6BfytVDBpg3hq4AgmkdaWHKSbHov",
- "burned": 100000000,
- "earned": 100009090909,
+ "tx_index": 5,
+ "tx_hash": "7b45fa1f2e5deab279659946a3af0948830f02d9df9dd929afc3d897f23384ef",
+ "block_index": 117,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "burned": 50000000,
+ "earned": 74999997333,
"status": "valid",
- "block_time": 1391370479,
- "burned_normalized": "1.00000000",
- "earned_normalized": "1000.09090000"
+ "confirmed": true,
+ "block_time": 1726509556,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99997000"
}
],
- "next_cursor": 3065,
- "result_count": 2576
+ "next_cursor": 4,
+ "result_count": 10
}
```
@@ -10593,10 +12264,10 @@ Returns the burns
### Get Dispensers [GET /v2/dispensers{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Returns the dispensers of an address
+Returns all dispensers
+ Parameters
- + status: `open` (enum[str], optional) - The status of the dispensers to return
+ + status (enum[str], optional) - The status of the dispensers to return
+ Default: `all`
+ Members
+ `all`
@@ -10604,7 +12275,7 @@ Returns the dispensers of an address
+ `closed`
+ `closing`
+ `open_empty_address`
- + cursor: `319619` (int, optional) - The last index of the dispensers to return
+ + cursor (str, optional) - The last index of the dispensers to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispensers to return
+ Default: `100`
@@ -10621,93 +12292,56 @@ Returns the dispensers of an address
{
"result": [
{
- "tx_index": 2742077,
- "tx_hash": "a845aa75f9f509150261e2e75e709bf15c1f1d9fb5e1d7504d84b9c35e444054",
- "block_index": 853554,
- "source": "bc1q2wl52mkdy4se92pkhyx09hqdc52jk2h0gam5f2",
- "asset": "A4592516168610987000",
+ "tx_index": 32,
+ "tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "asset": "XCP",
"give_quantity": 1,
- "escrow_quantity": 1,
- "satoshirate": 280000,
- "status": 0,
- "give_remaining": 1,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "1MkY4ZABm1bG6h8wug68D8UQjZrbgmRJ1A",
- "dispense_count": 0,
- "last_status_tx_source": null,
- "close_block_index": null,
- "confirmed": true,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 280000,
- "block_time": 1721735040,
- "asset_info": {
- "asset_longname": null,
- "description": "STAMP:R0lGODlhHAAcAMQAACuAtm3EFvbbPvfw8DQ5RP///9bR0eRtIwoDEVSKHvXppCyAti2Ati2Bti+Cti2BtTKDtDSEtC+CtDyIsjmGsgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQEMgAAACwAAAAAHAAcAAAF1yAgjmRpnmiqrmzrvuUgzzMa3HdM70O5CAKFUCgYGY5IZG3UADoDQBEuYJhSl4DmE1q0VqcGLOBhlVoT3rBsFClbb+j3sTcq2AuAdyAuD5MIgAQABQh3dgmEhgVUfiOBggiFdwkJkYY3XwGOgQCWk5WSdgEDmZuAAEmpqqQ4poIHsLGys6yjrp2Rubq6B6Rzt7PBsaNzdAuPABCZV3qkWMgNPNI7I8ecCwDT0yTWgQ1S02Ulj6eDdkCKdyjkjwUCduyc4/EE7vD0gvPs9gX4+frt3vXDJyIEACH5BAQyAAAALAAAAAAcABwAAAXqICCOwmieZ6maJdqijyALD/DaLOqK966zsx9vNCgajUMcIMBkno7Q4kywYMgUWOzLwO12kSPHVBCQiZhkQ5NpAAPEM3RpHVCv20WThH4uNxN0XG4TfGtkAYB0dW1DBY4FS4qJioJAZgUCj44JmJoFiwOWKpmPCQkymmxNJEGopaekjgEDdgGsZl65urSro2YHwMHCw7yzPFMACMrLzMwHtJXHv8PUwLOCoQBWQRS1dQOK127IDlHmUCPbZgwA5+cmC2MOZwJQ9XxJYy2Prp6QSdL0dcKkz0yKgplIITSoBOHAhS1uFHy4UEQIADs=",
- "issuer": "14EnqBDJMHF5QWrmwCYE7WvfinyZZGHo89",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "1",
- "escrow_quantity_normalized": "1",
- "satoshirate_normalized": "0.00280000",
- "satoshi_price_normalized": "0.00280000"
- },
- {
- "tx_index": 2742076,
- "tx_hash": "fae539c290363f08b4ba8bb813fb414a9f6f17277d12971aeca738a2855ee680",
- "block_index": 853553,
- "source": "bc1q0sw55nm7cazeavs6amtgpnw50qzs4kapm240r5",
- "asset": "FLOCK",
- "give_quantity": 9910000000,
- "escrow_quantity": 10100000000,
- "satoshirate": 190000,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 0,
- "give_remaining": 10100000000,
- "oracle_address": null,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"last_status_tx_hash": null,
- "origin": "1MkY4ZABm1bG6h8wug68D8UQjZrbgmRJ1A",
- "dispense_count": 0,
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "dispense_count": 1,
"last_status_tx_source": null,
"close_block_index": null,
"confirmed": true,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 190000,
- "block_time": 1721734849,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "block_time": 1726509701,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "99.10000000",
- "give_remaining_normalized": "101.00000000",
- "escrow_quantity_normalized": "101.00000000",
- "satoshirate_normalized": "0.00190000",
- "satoshi_price_normalized": "0.00190000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
},
{
- "tx_index": 2742075,
- "tx_hash": "9bb680115147cd57ab6be65c82b5d0ad0a8753188ad09a4bc63ecb6504f93f64",
- "block_index": 853552,
- "source": "bc1qljecnpsj7l2whlccsmaswhs3nt8yfvqgslhc8y",
- "asset": "A6985722027007120469",
+ "tx_index": 30,
+ "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "block_index": 144,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
"give_quantity": 1,
- "escrow_quantity": 1,
- "satoshirate": 300000,
+ "escrow_quantity": 10,
+ "satoshirate": 1,
"status": 0,
- "give_remaining": 1,
+ "give_remaining": 20,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "1MkY4ZABm1bG6h8wug68D8UQjZrbgmRJ1A",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 0,
"last_status_tx_source": null,
"close_block_index": null,
@@ -10716,35 +12350,35 @@ Returns the dispensers of an address
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 300000,
- "block_time": 1721734572,
+ "satoshi_price": 1,
+ "block_time": 1726509693,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "STAMP:iVBORw0KGgoAAAANSUhEUgAAACgAAAA4CAMAAAC49krEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJcEhZcwAAFiQAABYkAZsVxhQAAAGwUExURVWAzPsBCUVKTVaAzIb8aB4bHkVJTEVJS////wAAAFaBzFiCzUVKTkZLT0VLUExggUZMUUZOV0ZNU1WAyk1ljEtefEVKTF2GzkdRXkVMUUVLT1FvpUZNVFJ1sUdSYUxhgkxhhFmDzEtcd0paclqDzEhPV1qEzUpPUklPUk1kiUhOUkdNUleBzUpRWUdOU0tQVElQVEdLTkZLTktTW0tdek1XY0ZMUEtVY1mBxlJ2s1BccFeBzFyFzVuDx0tbdkpZcU5pllR8wlmCyUpXbE5pl01ki1uEyleBylaAyliCy1yFzFuAwElXa0lVZ0lVaEVMUEpZb0pUX1Vqi0dOVFdxmk5bb1NjfElWaUhTZEZMUll2qkdRX0dPWUZMU0VJTVp7t0lUZkdQWlaAyUVLTkdQW0ZOVUZNVVR9xFh+v0dTYld/xUZOVkpZcFFifkZPWUlVZld6tVV+xFd8vlR9xUpYb1NpjUtee1N2s0lWalBuoktdeE5ql1Z1qFV4tFRvnVR7vVR3s1Jxp1Btm01mj1NyqFFunExhg1RzqVN1sFFvpFN2sU9rmU9qmUpbdU9rmlV/yXdwqbQAAAJdSURBVEjHndQFl9swDABgJ21Sqbdy73Z8N2ZmZmZmZmZm5u0vzxRHdpy+vanvNXX8RbLstqzkBiKUPMH+H+YEI4n4C+WlJD4lwzwIqrgegpVRzaokySoxfcYLSWnMlKbDjs1kIAD4oHRAkByDu6PMTiiRftSulIWKAYAHmsoaRVEEKjPYzdCEAkVBpDYLIOesBQwiodU2ypaU5jA2LkZl1AoBkHTE5sUGxqHsJBIBRR5geuNwyvweLeMLfQoGQRAVZSAayuZUQgnj0/19zUsKFjVLIQKbymFciuOwv9683CAwIAkFnF4Jw54wDKvHBhFOXhQ3Ay2RBpuxuDKGx55TNxoIvSfkTVObwrmz6/VqtdpsnOP5rx09u0vUCdQK9TkquGDWpAMIg7d7h4U4snOD7NG0YihbtGSfGA/f2S0ue9dMQC11zwYuPySHTx/eFJfV43WT9uYIePiWnPj1/DF/X9jdnQv3P5ITI59HR0dqtRoSaHd98PWn9z/4zId2u71pGubD4y+/fHzHZ37/fLFxbXq0thLwzN1Xb79/Rfj2bGAASUJ3kWzH1ftvxNSToaFlBIp3G65aev2emHpwZZ2p+4d5Mm5ev+W8mG2xVuJaTEMq2fZtK7aKbxGP5CsqIgtXdpULTEfqPHBsV5n5wgML/wYnk4R6rX5IEqIF0YEzCz4ndtv+LbC0smF6yoFuK+lUBtKV0UPzQC2xUxCInWE5D4JdhnUxb2Xx52jDiWZfHOeUYeMSSP64WHK1bpJzIekcaG8gZJ73Oz7M6RichJmpnBVmipnPFgT7uAlU7i+0tGEJSHfhVgAAAABJRU5ErkJggg==",
- "issuer": "1WweVUK8kLmSNt6yKKqwVxch3Z7Lw5HAY",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "1",
- "escrow_quantity_normalized": "1",
- "satoshirate_normalized": "0.00300000",
- "satoshi_price_normalized": "0.00300000"
- },
- {
- "tx_index": 2742074,
- "tx_hash": "65e3dcea991c809d8feba0122dcaa4e2b12147040ac17874c04fa69509a93f87",
- "block_index": 853552,
- "source": "bc1q99shtyqyckz9apl5k9ge0p0g3wzy97ycmuxhld",
- "asset": "NILI",
- "give_quantity": 100000000,
- "escrow_quantity": 100000000,
- "satoshirate": 8000000,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000020",
+ "escrow_quantity_normalized": "0.00000010",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ {
+ "tx_index": 29,
+ "tx_hash": "ee65a85736487849d0d1ac06ea09424e477194edd27c7c31afbe06f4fbb6142c",
+ "block_index": 142,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 0,
- "give_remaining": 100000000,
+ "give_remaining": 10000,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "1MkY4ZABm1bG6h8wug68D8UQjZrbgmRJ1A",
+ "origin": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"dispense_count": 0,
"last_status_tx_source": null,
"close_block_index": null,
@@ -10753,36 +12387,36 @@ Returns the dispensers of an address
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 8000000,
- "block_time": 1721734572,
+ "satoshi_price": 1,
+ "block_time": 1726509684,
"asset_info": {
- "asset_longname": null,
- "description": "my original art-coin",
- "issuer": "1FerAZiZi7aZvS7Vm642AAt7G6sSYZmh2",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "1.00000000",
- "give_remaining_normalized": "1.00000000",
- "escrow_quantity_normalized": "1.00000000",
- "satoshirate_normalized": "0.08000000",
- "satoshi_price_normalized": "0.08000000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00010000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
{
- "tx_index": 2742073,
- "tx_hash": "40d0df9f6e9a11455e70c835e3d10ccbe878b8643f14205515a91f21341ea397",
- "block_index": 853552,
- "source": "bc1q84tgx97pfwcyh877fcf4xgqe42xrggcg3c0tdx",
- "asset": "ICOIN",
- "give_quantity": 100000000,
- "escrow_quantity": 500000000,
- "satoshirate": 200000,
- "status": 0,
- "give_remaining": 500000000,
+ "tx_index": 26,
+ "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "1MkY4ZABm1bG6h8wug68D8UQjZrbgmRJ1A",
- "dispense_count": 0,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
"confirmed": true,
@@ -10790,24 +12424,24 @@ Returns the dispensers of an address
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 200000,
- "block_time": 1721734572,
+ "satoshi_price": 1,
+ "block_time": 1726509680,
"asset_info": {
- "asset_longname": null,
- "description": " credit coins of NILIcoins",
- "issuer": "1NDwRkSxpxLFag5D2Uq69jAANgTaX9MD9k",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "1.00000000",
- "give_remaining_normalized": "5.00000000",
- "escrow_quantity_normalized": "5.00000000",
- "satoshirate_normalized": "0.00200000",
- "satoshi_price_normalized": "0.00200000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
}
],
- "next_cursor": 90071,
- "result_count": 24332
+ "next_cursor": null,
+ "result_count": 4
}
```
@@ -10816,7 +12450,7 @@ Returns the dispensers of an address
Returns the dispenser information by tx_hash
+ Parameters
- + dispenser_hash: `753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a` (str, required) - The hash of the dispenser to return
+ + dispenser_hash: `e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e` (str, required) - The hash of the dispenser to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -10827,19 +12461,19 @@ Returns the dispenser information by tx_hash
```
{
"result": {
- "tx_index": 2536311,
- "tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "asset": "FLOCK",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
+ "tx_index": 26,
+ "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -10848,20 +12482,20 @@ Returns the dispenser information by tx_hash
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "block_time": 1700627748,
+ "satoshi_price": 1,
+ "block_time": 1726509680,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
}
}
```
@@ -10871,8 +12505,8 @@ Returns the dispenser information by tx_hash
Returns the dispenses of a dispenser
+ Parameters
- + dispenser_hash: `753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a` (str, required) - The hash of the dispenser to return
- + cursor (int, optional) - The last index of the dispenses to return
+ + dispenser_hash: `e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e` (str, required) - The hash of the dispenser to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -10889,29 +12523,29 @@ Returns the dispenses of a dispenser
{
"result": [
{
- "tx_index": 2726580,
+ "tx_index": 28,
"dispense_index": 0,
- "tx_hash": "e7f0f2c9bef7a492b714a5952ec61b283be344419c5bc33f405f9af41ebfa48b",
- "block_index": 840322,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj",
- "asset": "FLOCK",
- "dispense_quantity": 90000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 2994590,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
"confirmed": true,
"dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -10919,48 +12553,48 @@ Returns the dispenses of a dispenser
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1713778817,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509680,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "900.00000000",
- "btc_amount_normalized": "0.02994590"
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
},
{
- "tx_index": 2610745,
+ "tx_index": 27,
"dispense_index": 0,
- "tx_hash": "8c95cc6afc8fd466c784fd1c02749c585988999bbc66251b944c443dc31af757",
- "block_index": 821450,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "destination": "1FKYM1CP9RfttJhNG8HTNQdE2uV3YvwbRB",
- "asset": "FLOCK",
- "dispense_quantity": 20000000000,
- "dispenser_tx_hash": "753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a",
- "btc_amount": 660000,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
"confirmed": true,
"dispenser": {
- "tx_index": 2536311,
- "block_index": 817905,
- "source": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
- "give_quantity": 10000000000,
- "escrow_quantity": 250000000000,
- "satoshirate": 330000,
- "status": 0,
- "give_remaining": 140000000000,
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2",
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
@@ -10968,23 +12602,23 @@ Returns the dispenses of a dispenser
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 330000,
- "give_quantity_normalized": "100.00000000",
- "give_remaining_normalized": "1400.00000000",
- "escrow_quantity_normalized": "2500.00000000",
- "satoshirate_normalized": "0.00330000",
- "satoshi_price_normalized": "0.00330000"
- },
- "block_time": 1702725719,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509665,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "18VNeRv8vL528HF7ruKwxycrfNEeoqmHpa",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "200.00000000",
- "btc_amount_normalized": "0.00660000"
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
}
],
"next_cursor": null,
@@ -10999,7 +12633,7 @@ Returns the dispenses of a dispenser
Returns all the dividends
+ Parameters
- + cursor (int, optional) - The last index of the dividend to return
+ + cursor (str, optional) - The last index of the dividend to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dividend to return
+ Default: `100`
@@ -11016,148 +12650,37 @@ Returns all the dividends
{
"result": [
{
- "tx_index": 2740389,
- "tx_hash": "9136a360b3ffb28ac66a4f3ee59736e60e285ac36a8848c016d194c6fbccc071",
- "block_index": 851997,
- "source": "1RUDEjgtMCY8kSJUUvTv4KHMGFgg9LrgF",
- "asset": "HARDCORE",
- "dividend_asset": "BARF",
- "quantity_per_unit": 1,
- "fee_paid": 680000,
- "status": "valid",
- "block_time": 1720887741,
- "asset_info": {
- "asset_longname": null,
- "description": "ruderelics.io/json/xcp/HARDCORE.json",
- "issuer": "1RUDEjgtMCY8kSJUUvTv4KHMGFgg9LrgF",
- "divisible": false,
- "locked": false
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "ruderelics.io/json/xcp/BARF.json",
- "issuer": "1RUDEjgtMCY8kSJUUvTv4KHMGFgg9LrgF",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.00680000"
- },
- {
- "tx_index": 2740384,
- "tx_hash": "f5dba5654e202c883c327127086eeaf07d1be90f2d20718b69d237e9a5c52abf",
- "block_index": 851996,
- "source": "1MoDERN3Na7XafiLNTNte2ejbZSLEUEfxK",
- "asset": "COLLECTOR",
- "dividend_asset": "EYES",
- "quantity_per_unit": 1,
- "fee_paid": 680000,
- "status": "valid",
- "block_time": 1720887151,
- "asset_info": {
- "asset_longname": null,
- "description": "modernrelics.io/json/xcp/COLLECTOR.json",
- "issuer": "1MoDERN3Na7XafiLNTNte2ejbZSLEUEfxK",
- "divisible": false,
- "locked": false
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "modernrelics.io/json/xcp/EYES.json",
- "issuer": "1MoDERN3Na7XafiLNTNte2ejbZSLEUEfxK",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.00680000"
- },
- {
- "tx_index": 2739142,
- "tx_hash": "5921528fe1d8e3c9955753131cada10785b66b365cbeaed7c75f67cffde10b6c",
- "block_index": 850815,
- "source": "1J8aLankHbmAHojseGRmWRZoTZKiNVi5GQ",
- "asset": "GERMANPEPE",
- "dividend_asset": "JEETMANY",
- "quantity_per_unit": 1,
- "fee_paid": 3040000,
- "status": "valid",
- "block_time": 1720195598,
- "asset_info": {
- "asset_longname": null,
- "description": "https://easyasset.art/j/he2ao2/GERMA.json",
- "issuer": "1J8aLankHbmAHojseGRmWRZoTZKiNVi5GQ",
- "divisible": false,
- "locked": true
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "https://vinxzpta33o2f32gj4rpz5d3fzmvoh2w6xewgsk33ryjfpjneq4q.arweave.net/qht8vmDe3aLvRk8i_PR7LllXH1b1yWNJW9xwkr0tJDk/JEETMANY.json",
- "issuer": "1J8aLankHbmAHojseGRmWRZoTZKiNVi5GQ",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.03040000"
- },
- {
- "tx_index": 2738817,
- "tx_hash": "54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968",
- "block_index": 850533,
- "source": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
- "asset": "CSAT",
- "dividend_asset": "DANKMEMECASH",
- "quantity_per_unit": 10000000000,
- "fee_paid": 15520000,
+ "tx_index": 40,
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "block_index": 153,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "dividend_asset": "XCP",
+ "quantity_per_unit": 100000000,
+ "fee_paid": 40000,
"status": "valid",
- "block_time": 1720010482,
+ "confirmed": true,
+ "block_time": 1726509732,
"asset_info": {
"asset_longname": null,
- "description": "",
- "issuer": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
- "divisible": false,
- "locked": false
- },
- "dividend_asset_info": {
- "asset_longname": null,
- "description": "This card is used to buy dank memes",
- "issuer": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
"locked": false
},
- "quantity_per_unit_normalized": "100.00000000",
- "fee_paid_normalized": "0.15520000"
- },
- {
- "tx_index": 2738123,
- "tx_hash": "24d1085df0c76f1360a0d9673cd526bc7ab1da0d3c35b76089376be45bd9ba79",
- "block_index": 849884,
- "source": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "asset": "GMONEYPEPE",
- "dividend_asset": "PANICINDC",
- "quantity_per_unit": 1,
- "fee_paid": 7020000,
- "status": "valid",
- "block_time": 1719621970,
- "asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/GMONEYPEPE.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
- },
"dividend_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/o7qpwv/PANIC.json",
- "issuer": "1JJP986hdU9Qy9b49rafM9FoXdbz1Mgbjo",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.07020000"
+ "quantity_per_unit_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00040000"
}
],
- "next_cursor": 2736949,
- "result_count": 4115
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -11166,7 +12689,7 @@ Returns all the dividends
Returns a dividend by its hash
+ Parameters
- + dividend_hash: `d74242f4789f98c0ff6df44fe21a2cf614f02e694c1e34f1193d3a8f35cc01a0` (str, required) - The hash of the dividend to return
+ + dividend_hash: `65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00` (str, required) - The hash of the dividend to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -11177,32 +12700,33 @@ Returns a dividend by its hash
```
{
"result": {
- "tx_index": 2734638,
- "tx_hash": "d74242f4789f98c0ff6df44fe21a2cf614f02e694c1e34f1193d3a8f35cc01a0",
- "block_index": 845366,
- "source": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "asset": "DESECRATPEPE",
- "dividend_asset": "A441144555133272651",
- "quantity_per_unit": 1,
- "fee_paid": 2420000,
+ "tx_index": 40,
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "block_index": 153,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "dividend_asset": "XCP",
+ "quantity_per_unit": 100000000,
+ "fee_paid": 40000,
"status": "valid",
- "block_time": 1716809141,
+ "confirmed": true,
+ "block_time": 1726509732,
"asset_info": {
"asset_longname": null,
- "description": "https://easyasset.art/j/9y5ncz/DESECRATPEPE.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
"locked": false
},
"dividend_asset_info": {
- "asset_longname": "DESECRATPEPE.UKRAINEOWNEDCONGRESS",
- "description": "https://hwpdhvkwagwhm26yvlc67tz7mhlnby2wrde5dajmnbll5ewgmr5a.arweave.net/PZ4z1VYBrHZr2KrF788_YdbQ41aIydGBLGhWvpLGZHo/DESEC.json",
- "issuer": "1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx",
- "divisible": false,
- "locked": true
- },
- "quantity_per_unit_normalized": "1",
- "fee_paid_normalized": "0.02420000"
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_per_unit_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00040000"
}
}
```
@@ -11212,8 +12736,8 @@ Returns a dividend by its hash
Returns a dividend distribution by its hash
+ Parameters
- + dividend_hash: `54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968` (str, required) - The hash of the dividend distribution to return
- + cursor (int, optional) - The last index of the credit to return
+ + dividend_hash: `65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00` (str, required) - The hash of the dividend distribution to return
+ + cursor (str, optional) - The last index of the credit to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of credit to return
+ Default: `100`
@@ -11230,103 +12754,50 @@ Returns a dividend distribution by its hash
{
"result": [
{
- "block_index": 850533,
- "address": "1Pg4L8Z7PYtL8Q8hvxY82DXxpjRprwhoTX",
- "asset": "DANKMEMECASH",
- "quantity": 140000000000,
- "calling_function": "dividend",
- "event": "54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968",
- "tx_index": 2738817,
- "confirmed": true,
- "block_time": 1720010482,
- "asset_info": {
- "asset_longname": null,
- "description": "This card is used to buy dank memes",
- "issuer": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
- "divisible": true,
- "locked": false
- },
- "quantity_normalized": "1400.00000000"
- },
- {
- "block_index": 850533,
- "address": "1JTTehgnouTuxcPvD7WpJ5DUL9UzRdQ65s",
- "asset": "DANKMEMECASH",
- "quantity": 310000000000,
+ "block_index": 153,
+ "address": null,
+ "asset": "XCP",
+ "quantity": 1500000000,
"calling_function": "dividend",
- "event": "54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968",
- "tx_index": 2738817,
+ "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "tx_index": 40,
+ "utxo": "9d34a868637906281a292d50facdb8551872a2d08cd28cf7a895f10f80cb0b32:0",
+ "utxo_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"confirmed": true,
- "block_time": 1720010482,
+ "block_time": 1726509732,
"asset_info": {
- "asset_longname": null,
- "description": "This card is used to buy dank memes",
- "issuer": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
"divisible": true,
- "locked": false
- },
- "quantity_normalized": "3100.00000000"
- },
- {
- "block_index": 850533,
- "address": "1BbDRx3UGLGDCwiPc26CAJyqjMbuyxxEi",
- "asset": "DANKMEMECASH",
- "quantity": 10000000000,
- "calling_function": "dividend",
- "event": "54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968",
- "tx_index": 2738817,
- "confirmed": true,
- "block_time": 1720010482,
- "asset_info": {
"asset_longname": null,
- "description": "This card is used to buy dank memes",
- "issuer": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
- "divisible": true,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "100.00000000"
+ "quantity_normalized": "15.00000000"
},
{
- "block_index": 850533,
- "address": "14bu4678NSpw4GcJVsFbWbmze7qinTadz1",
- "asset": "DANKMEMECASH",
- "quantity": 90000000000,
+ "block_index": 153,
+ "address": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0",
+ "asset": "XCP",
+ "quantity": 500000000,
"calling_function": "dividend",
- "event": "54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968",
- "tx_index": 2738817,
+ "event": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "tx_index": 40,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
- "block_time": 1720010482,
+ "block_time": 1726509732,
"asset_info": {
- "asset_longname": null,
- "description": "This card is used to buy dank memes",
- "issuer": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
"divisible": true,
- "locked": false
- },
- "quantity_normalized": "900.00000000"
- },
- {
- "block_index": 850533,
- "address": "1KHMCFRVmePuo5sBW6UQNSPN8XUpfWvoeJ",
- "asset": "DANKMEMECASH",
- "quantity": 20000000000,
- "calling_function": "dividend",
- "event": "54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968",
- "tx_index": 2738817,
- "confirmed": true,
- "block_time": 1720010482,
- "asset_info": {
"asset_longname": null,
- "description": "This card is used to buy dank memes",
- "issuer": "1A62aP7McxBpuSsypGtbVoGqPj6N6rNMyT",
- "divisible": true,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "200.00000000"
+ "quantity_normalized": "5.00000000"
}
],
- "next_cursor": 3684021,
- "result_count": 784
+ "next_cursor": null,
+ "result_count": 2
}
```
@@ -11339,7 +12810,7 @@ Returns all events
+ Parameters
+ event_name (str, optional) - Comma separated list of events to return
+ Default: `None`
- + cursor: `10665092` (int, optional) - The last event index to return
+ + cursor: `535` (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -11356,133 +12827,126 @@ Returns all events
{
"result": [
{
- "event_index": 10665091,
- "event": "DEBIT",
+ "event_index": 535,
+ "event": "BLOCK_PARSED",
"params": {
- "action": "open order",
- "address": "1DXCZqXhVUfNADX56ifLQjSepPYvTBPgg4",
- "asset": "XCP",
- "block_index": 700853,
- "event": "5705532f6fea853313ec72084c43d59d7cb417c700a2dece4e20eeee944e7567",
- "quantity": 199800000,
- "tx_index": 1668917,
- "block_time": 1631830009,
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "quantity_normalized": "1.99800000"
+ "block_index": 193,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "block_time": 1726509912
},
- "tx_hash": "5705532f6fea853313ec72084c43d59d7cb417c700a2dece4e20eeee944e7567",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": null,
+ "block_index": 193,
+ "block_time": 1726509912
},
{
- "event_index": 10665087,
- "event": "CREDIT",
+ "event_index": 534,
+ "event": "TRANSACTION_PARSED",
"params": {
- "address": "1CLNBqmvi6edGPphF5RceKDbM6zgWMRM7Q",
- "asset": "PEPECASH",
- "block_index": 700853,
- "calling_function": "filled",
- "event": "e3c4f9d8b173d84582e9635c41fa9c13ec9b7ea03b19c2e8e4f427dd0a414259",
- "quantity": 0,
- "tx_index": 700853,
- "block_time": 1631830009,
- "asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": true,
- "locked": true
- },
- "quantity_normalized": "0.00000000"
+ "supported": true,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59
},
- "tx_hash": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
},
{
- "event_index": 10665085,
- "event": "CREDIT",
+ "event_index": 533,
+ "event": "ASSET_DESTRUCTION",
"params": {
- "address": "17hxupddtL5z3RusNNgUUmK1EQiCXUhe6z",
- "asset": "PEPECASH",
- "block_index": 700853,
- "calling_function": "order match",
- "event": "e3c4f9d8b173d84582e9635c41fa9c13ec9b7ea03b19c2e8e4f427dd0a414259_4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "quantity": 33300000000,
- "tx_index": 700853,
- "block_time": 1631830009,
+ "asset": "XCP",
+ "block_index": 193,
+ "quantity": 1,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "status": "valid",
+ "tag": "64657374726f79",
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59,
+ "block_time": 1726509912,
"asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "333.00000000"
+ "quantity_normalized": "0.00000001"
},
- "tx_hash": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
},
{
- "event_index": 10665084,
- "event": "CREDIT",
+ "event_index": 532,
+ "event": "DEBIT",
"params": {
- "address": "1CLNBqmvi6edGPphF5RceKDbM6zgWMRM7Q",
- "asset": "PACPEPE",
- "block_index": 700853,
- "calling_function": "order match",
- "event": "e3c4f9d8b173d84582e9635c41fa9c13ec9b7ea03b19c2e8e4f427dd0a414259_4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
+ "action": "destroy",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 193,
+ "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
"quantity": 1,
- "tx_index": 700853,
- "block_time": 1631830009,
+ "tx_index": 59,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "1MX2kfSP5qspDcWiDg15M95PQrYityYG52",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000001"
},
- "tx_hash": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
},
{
- "event_index": 10665082,
- "event": "DEBIT",
+ "event_index": 531,
+ "event": "NEW_TRANSACTION",
"params": {
- "action": "open order",
- "address": "1CLNBqmvi6edGPphF5RceKDbM6zgWMRM7Q",
- "asset": "PEPECASH",
- "block_index": 700853,
- "event": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "quantity": 33300000000,
- "tx_index": 1668916,
- "block_time": 1631830009,
- "asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
- "divisible": true,
- "locked": true
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_index": 193,
+ "block_time": 1726509912,
+ "btc_amount": 0,
+ "data": "6e0000000000000001000000000000000164657374726f79",
+ "destination": "",
+ "fee": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
+ "unpacked_data": {
+ "message_type": "destroy",
+ "message_type_id": 110,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
+ }
},
- "quantity_normalized": "333.00000000"
+ "btc_amount_normalized": "0.00000000"
},
- "tx_hash": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_time": 1726509912
}
],
- "next_cursor": 10665079,
- "result_count": 6329211
+ "next_cursor": 530,
+ "result_count": 536
}
```
@@ -11491,7 +12955,7 @@ Returns all events
Returns the event of an index
+ Parameters
- + event_index: `10665092` (int, required) - The index of the event to return
+ + event_index: `535` (int, required) - The index of the event to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -11502,53 +12966,19 @@ Returns the event of an index
```
{
"result": {
- "event_index": 10665092,
- "event": "OPEN_ORDER",
+ "event_index": 535,
+ "event": "BLOCK_PARSED",
"params": {
- "block_index": 700853,
- "expiration": 5000,
- "expire_index": 705853,
- "fee_provided": 1056,
- "fee_provided_remaining": 1056,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "PEPETRADERS",
- "get_quantity": 3,
- "get_remaining": 3,
- "give_asset": "XCP",
- "give_quantity": 199800000,
- "give_remaining": 199800000,
- "source": "1DXCZqXhVUfNADX56ifLQjSepPYvTBPgg4",
- "status": "open",
- "tx_hash": "5705532f6fea853313ec72084c43d59d7cb417c700a2dece4e20eeee944e7567",
- "tx_index": 1668917,
- "block_time": 1631830009,
- "give_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "get_asset_info": {
- "asset_longname": null,
- "description": "B6881F48E9CBEB2CF096F277A937BF0D",
- "issuer": "13Mpz1EoP2wi1nGGwZt4kQ7hfxRmBRToKc",
- "divisible": false,
- "locked": true
- },
- "give_quantity_normalized": "1.99800000",
- "get_quantity_normalized": "3",
- "get_remaining_normalized": "3",
- "give_remaining_normalized": "1.99800000",
- "fee_provided_normalized": "0.00001056",
- "fee_required_normalized": "0.00000000",
- "fee_required_remaining_normalized": "0.00000000",
- "fee_provided_remaining_normalized": "0.00001056"
- },
- "tx_hash": "5705532f6fea853313ec72084c43d59d7cb417c700a2dece4e20eeee944e7567",
- "block_index": 700853,
- "block_time": 1631830009
+ "block_index": 193,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "block_time": 1726509912
+ },
+ "tx_hash": null,
+ "block_index": 193,
+ "block_time": 1726509912
}
}
```
@@ -11575,28 +13005,28 @@ Returns the event counts of all blocks
{
"result": [
{
- "event": "TRANSACTION_PARSED",
- "event_count": 2737963
+ "event": "UTXO_MOVE",
+ "event_count": 7
},
{
- "event": "SWEEP",
- "event_count": 1064
+ "event": "TRANSACTION_PARSED",
+ "event_count": 47
},
{
- "event": "SEND",
- "event_count": 805989
+ "event": "SWEEP",
+ "event_count": 1
},
{
- "event": "RPS_UPDATE",
- "event_count": 540
+ "event": "REFILL_DISPENSER",
+ "event_count": 1
},
{
- "event": "RPS_RESOLVE",
- "event_count": 129
+ "event": "ORDER_UPDATE",
+ "event_count": 11
}
],
- "next_cursor": "RPS_MATCH_UPDATE",
- "result_count": 48
+ "next_cursor": "ORDER_MATCH_UPDATE",
+ "result_count": 36
}
```
@@ -11606,7 +13036,7 @@ Returns the events filtered by event name
+ Parameters
+ event: `CREDIT` (str, required) - The event to return
- + cursor: `10665092` (int, optional) - The last event index to return
+ + cursor: `535` (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -11623,133 +13053,143 @@ Returns the events filtered by event name
{
"result": [
{
- "event_index": 10665087,
+ "event_index": 526,
"event": "CREDIT",
"params": {
- "address": "1CLNBqmvi6edGPphF5RceKDbM6zgWMRM7Q",
- "asset": "PEPECASH",
- "block_index": 700853,
- "calling_function": "filled",
- "event": "e3c4f9d8b173d84582e9635c41fa9c13ec9b7ea03b19c2e8e4f427dd0a414259",
- "quantity": 0,
- "tx_index": 700853,
- "block_time": 1631830009,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
"asset_info": {
- "asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
"divisible": true,
- "locked": true
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "0.00000000"
+ "quantity_normalized": "744.99388000"
},
- "tx_hash": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
},
{
- "event_index": 10665085,
+ "event_index": 524,
"event": "CREDIT",
"params": {
- "address": "17hxupddtL5z3RusNNgUUmK1EQiCXUhe6z",
- "asset": "PEPECASH",
- "block_index": 700853,
- "calling_function": "order match",
- "event": "e3c4f9d8b173d84582e9635c41fa9c13ec9b7ea03b19c2e8e4f427dd0a414259_4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "quantity": 33300000000,
- "tx_index": 700853,
- "block_time": 1631830009,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
"asset_info": {
"asset_longname": null,
- "description": "http://rarepepedirectory.com/json/pc.json",
- "issuer": "1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD",
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
- "locked": true
+ "locked": false
},
- "quantity_normalized": "333.00000000"
+ "quantity_normalized": "0.00000010"
},
- "tx_hash": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
},
{
- "event_index": 10665084,
+ "event_index": 522,
"event": "CREDIT",
"params": {
- "address": "1CLNBqmvi6edGPphF5RceKDbM6zgWMRM7Q",
- "asset": "PACPEPE",
- "block_index": 700853,
- "calling_function": "order match",
- "event": "e3c4f9d8b173d84582e9635c41fa9c13ec9b7ea03b19c2e8e4f427dd0a414259_4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "quantity": 1,
- "tx_index": 700853,
- "block_time": 1631830009,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 500000000,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
"asset_info": {
- "asset_longname": null,
+ "asset_longname": "",
"description": "",
- "issuer": "1MX2kfSP5qspDcWiDg15M95PQrYityYG52",
- "divisible": false,
- "locked": true
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "1"
+ "quantity_normalized": "5.00000000"
},
- "tx_hash": "4e661cf8a14562ad0b724479894cad95186565de74d9462dbb64951ee6db60f5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
},
{
- "event_index": 10665079,
+ "event_index": 508,
"event": "CREDIT",
"params": {
- "address": "1NWcYFmsGLk9iyNMYBq7TwH25Pa5zHnpcn",
- "asset": "CANNEDPEPE",
- "block_index": 700853,
- "calling_function": "send",
- "event": "62c5dffefa64c6d2442b4f907a5a17603cb67bd8e191754b59535f616caaa606",
- "quantity": 1,
- "tx_index": 1668915,
- "block_time": 1631830009,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "block_index": 190,
+ "calling_function": "cancel order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "quantity": 1000,
+ "tx_index": 56,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509899,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "",
- "issuer": "17kETzkp9P7pNuUwJMXoNug3tRP6ghA4GR",
- "divisible": false,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00001000"
},
- "tx_hash": "62c5dffefa64c6d2442b4f907a5a17603cb67bd8e191754b59535f616caaa606",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_time": 1726509899
},
{
- "event_index": 10665075,
+ "event_index": 491,
"event": "CREDIT",
- "params": {
- "address": "1mHV8ChS3a9ZYACh5gc44xy4AzXhbMtEi",
- "asset": "CODEISLAW",
- "block_index": 700853,
- "calling_function": "send",
- "event": "2eb43bb5e4667cfb7abed85d218ca18cd7fe8dcf037ca96b19ab134e581b9fe5",
- "quantity": 1,
- "tx_index": 1668914,
- "block_time": 1631830009,
+ "params": {
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "block_index": 188,
+ "calling_function": "mpma send",
+ "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "quantity": 10,
+ "tx_index": 54,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509890,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "res.indiesquare.me/json/CODEISLAW.json",
- "issuer": "1E3kn4VBfAsjamEpq84o6WVUwno2B2nRBu",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010"
},
- "tx_hash": "2eb43bb5e4667cfb7abed85d218ca18cd7fe8dcf037ca96b19ab134e581b9fe5",
- "block_index": 700853,
- "block_time": 1631830009
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "block_time": 1726509890
}
],
- "next_cursor": 10665052,
- "result_count": 3688776
+ "next_cursor": 490,
+ "result_count": 67
}
```
@@ -11770,7 +13210,7 @@ Returns the number of events
{
"result": {
"event": "CREDIT",
- "event_count": 3688776
+ "event_count": 67
}
}
```
@@ -11782,7 +13222,7 @@ Returns the number of events
Returns all the dispenses
+ Parameters
- + cursor (int, optional) - The last index of the dispenses to return
+ + cursor (str, optional) - The last index of the dispenses to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of dispenses to return
+ Default: `100`
@@ -11799,44 +13239,44 @@ Returns all the dispenses
{
"result": [
{
- "tx_index": 2742059,
+ "tx_index": 33,
"dispense_index": 0,
- "tx_hash": "7f879d9dbd646a0cf29bd32e8f2a67811f7ac163eec5db365e6e2ee2c5aef231",
- "block_index": 853524,
- "source": "1CcMMYuzcquFRaKQdGf4dJiVXQaK9Q7VUS",
- "destination": "178etygrwEeeyQso9we85rUqYZbkiqzL4A",
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
"asset": "XCP",
- "dispense_quantity": 100000000,
- "dispenser_tx_hash": "80e38e0d6556a67f3cf02c820ed4a8fe2cc6363d266441313f3d93ec27542baa",
- "btc_amount": 14950,
+ "dispense_quantity": 666,
+ "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "btc_amount": 10000,
"confirmed": true,
"dispenser": {
- "tx_index": 2741883,
- "block_index": 853524,
- "source": "1CcMMYuzcquFRaKQdGf4dJiVXQaK9Q7VUS",
- "give_quantity": 100000000,
- "escrow_quantity": 21600000000,
- "satoshirate": 14950,
+ "tx_index": 32,
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 0,
- "give_remaining": 21500000000,
- "oracle_address": null,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"last_status_tx_hash": null,
- "origin": "1CcMMYuzcquFRaKQdGf4dJiVXQaK9Q7VUS",
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
"dispense_count": 1,
"last_status_tx_source": null,
"close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 14950,
- "give_quantity_normalized": "1.00000000",
- "give_remaining_normalized": "215.00000000",
- "escrow_quantity_normalized": "216.00000000",
- "satoshirate_normalized": "0.00014950",
- "satoshi_price_normalized": "0.00014950"
- },
- "block_time": 1721719626,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
+ },
+ "block_time": 1726509701,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -11844,208 +13284,110 @@ Returns all the dispenses
"locked": true,
"issuer": null
},
- "dispense_quantity_normalized": "1.00000000",
- "btc_amount_normalized": "0.00014950"
+ "dispense_quantity_normalized": "0.00000666",
+ "btc_amount_normalized": "0.00010000"
},
{
- "tx_index": 2742058,
+ "tx_index": 28,
"dispense_index": 0,
- "tx_hash": "0a3552635882f1a64d38c4d6875e8f13bedd5b258cd376e8c2d604a7747f073f",
- "block_index": 853518,
- "source": "bc1qe37xaf4yvms2m5rrnk8s83n96lmv9pu6x5dhg7",
- "destination": "bc1q7sdnee34k3sfuxn7jhnqvpqg6aw89gwxkg0gl7",
- "asset": "A2691100020809130701",
- "dispense_quantity": 1,
- "dispenser_tx_hash": "725b61cc492bfe60f1d1245ce94e7d199f5a885c0cf49ece664f599017fcc475",
- "btc_amount": 19000,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
"confirmed": true,
"dispenser": {
- "tx_index": 2707317,
- "block_index": 853518,
- "source": "bc1qe37xaf4yvms2m5rrnk8s83n96lmv9pu6x5dhg7",
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_quantity": 1,
- "escrow_quantity": 1,
- "satoshirate": 19000,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
"status": 10,
"give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "bc1q0zp53998guc58jzfjp382ruddr86ewdf7uswc0",
- "dispense_count": 1,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
"fiat_price": null,
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 19000,
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "0",
- "escrow_quantity_normalized": "1",
- "satoshirate_normalized": "0.00019000",
- "satoshi_price_normalized": "0.00019000"
- },
- "block_time": 1721714738,
- "asset_info": {
- "asset_longname": null,
- "description": "STAMP:eyJwIjoic3JjLTcyMSIsIm9wIjoibWludCIsImMiOiJBOTY4MjE5MTM2MDA0ODEyNDAwMCIsInRzIjpbMiw4LDksMTMsNywxXX0=",
- "issuer": "bc1q24kj35nvrrkhrx9zquej4lxdja65h3xmy5wfsx",
- "divisible": false,
- "locked": true
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "dispense_quantity_normalized": "1",
- "btc_amount_normalized": "0.00019000"
- },
- {
- "tx_index": 2742046,
- "dispense_index": 0,
- "tx_hash": "8fd404fd4fda65b04f62670394c1c82c243d68c2ce87f6af51041b33fe7f7990",
- "block_index": 853490,
- "source": "1DsaD5R9UAQGjVAaXH9scTcnev6Fnfnrcj",
- "destination": "178LXY38UVH6z7XLQr3i3CvuX7dp6cJPvA",
- "asset": "BUPEPE",
- "dispense_quantity": 2,
- "dispenser_tx_hash": "055c58cc7379f10202e093c25b5f81ccbfb8f994b369738f4f2a81df75c79330",
- "btc_amount": 320001,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2742042,
- "block_index": 853490,
- "source": "1DsaD5R9UAQGjVAaXH9scTcnev6Fnfnrcj",
- "give_quantity": 1,
- "escrow_quantity": 6,
- "satoshirate": 160000,
- "status": 0,
- "give_remaining": 4,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "1DsaD5R9UAQGjVAaXH9scTcnev6Fnfnrcj",
- "dispense_count": 1,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 160000,
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "4",
- "escrow_quantity_normalized": "6",
- "satoshirate_normalized": "0.00160000",
- "satoshi_price_normalized": "0.00160000"
- },
- "block_time": 1721701678,
+ "block_time": 1726509680,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "Bitcoin Uncensored Podcast - Chris DeRose and Junseth",
- "issuer": "15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "2",
- "btc_amount_normalized": "0.00320001"
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
},
{
- "tx_index": 2742038,
+ "tx_index": 27,
"dispense_index": 0,
- "tx_hash": "5dda7e7609c2dd98898ef50a924bfea0102cf98c9b71b53ff3700af1c91e1de4",
- "block_index": 853478,
- "source": "18jDqytbwiqcr8VEN8Ckdgr9n9nKNryxwh",
- "destination": "16Kzr7ocw1pTDhR5FL5vvFWmiSz4iFpygS",
- "asset": "FAKELIBRARY",
- "dispense_quantity": 1,
- "dispenser_tx_hash": "0201a8600129034570150b90bb92ea4aafcce220ac15cc15b56d6e04003df4f1",
- "btc_amount": 106969,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
"confirmed": true,
"dispenser": {
- "tx_index": 2715770,
- "block_index": 853478,
- "source": "18jDqytbwiqcr8VEN8Ckdgr9n9nKNryxwh",
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"give_quantity": 1,
- "escrow_quantity": 69,
- "satoshirate": 106969,
- "status": 0,
- "give_remaining": 68,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
"oracle_address": null,
"last_status_tx_hash": null,
- "origin": "18jDqytbwiqcr8VEN8Ckdgr9n9nKNryxwh",
- "dispense_count": 1,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
"last_status_tx_source": null,
"close_block_index": null,
"fiat_price": null,
"oracle_price": null,
"fiat_unit": null,
"oracle_price_last_updated": null,
- "satoshi_price": 106969,
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "68",
- "escrow_quantity_normalized": "69",
- "satoshirate_normalized": "0.00106969",
- "satoshi_price_normalized": "0.00106969"
- },
- "block_time": 1721695448,
- "asset_info": {
- "asset_longname": null,
- "description": "xcp.coindaddy.io/FAKELIBRARY.json",
- "issuer": "1DGstezxYXU5sR1sDHRqBHXZZkkXnxnN5x",
- "divisible": false,
- "locked": true
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
},
- "dispense_quantity_normalized": "1",
- "btc_amount_normalized": "0.00106969"
- },
- {
- "tx_index": 2742037,
- "dispense_index": 0,
- "tx_hash": "23d5b27a2a1b8a0d95f3da9784cd57f803a5af099defc5695137c4143153b724",
- "block_index": 853477,
- "source": "1FBTRvZhAoSCzQ9hV2sHdhqCMvjFjNnbZY",
- "destination": "16Kzr7ocw1pTDhR5FL5vvFWmiSz4iFpygS",
- "asset": "FAKEPEPEBAR",
- "dispense_quantity": 1,
- "dispenser_tx_hash": "71eb0b611b83c57d5e0f4584b983180b9678de4ea64e812a070c9414ec0dc4a2",
- "btc_amount": 100000,
- "confirmed": true,
- "dispenser": {
- "tx_index": 2721422,
- "block_index": 853477,
- "source": "1FBTRvZhAoSCzQ9hV2sHdhqCMvjFjNnbZY",
- "give_quantity": 1,
- "escrow_quantity": 14,
- "satoshirate": 100000,
- "status": 0,
- "give_remaining": 13,
- "oracle_address": null,
- "last_status_tx_hash": null,
- "origin": "1APxNaxSgYTknypZ5tT8XMWti5M6CueYd7",
- "dispense_count": 1,
- "last_status_tx_source": null,
- "close_block_index": null,
- "fiat_price": null,
- "oracle_price": null,
- "fiat_unit": null,
- "oracle_price_last_updated": null,
- "satoshi_price": 100000,
- "give_quantity_normalized": "1",
- "give_remaining_normalized": "13",
- "escrow_quantity_normalized": "14",
- "satoshirate_normalized": "0.00100000",
- "satoshi_price_normalized": "0.00100000"
- },
- "block_time": 1721695297,
+ "block_time": 1726509665,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://o5l57zr33dkod5aldxwlvkvs6uyeftk7tmprq6y6om4s5li4t6wq.arweave.net/d1ff5jvY1OH0Cx3suqqy9TBCzV-bHxh7HnM5Lq0cn60/FAKEP.json",
- "issuer": "1APxNaxSgYTknypZ5tT8XMWti5M6CueYd7",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "dispense_quantity_normalized": "1",
- "btc_amount_normalized": "0.00100000"
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
}
],
- "next_cursor": 193458,
- "result_count": 193463
+ "next_cursor": null,
+ "result_count": 3
}
```
@@ -12056,7 +13398,7 @@ Returns all the dispenses
Returns all the sends include Enhanced and MPMA sends
+ Parameters
- + cursor (int, optional) - The last index of the debits to return
+ + cursor (str, optional) - The last index of the debits to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of debits to return
+ Default: `100`
@@ -12073,113 +13415,128 @@ Returns all the sends include Enhanced and MPMA sends
{
"result": [
{
- "tx_index": 2740786,
- "tx_hash": "573e31bbdb677d7b52eacda010af7d498161d7367a8e8f7bdad19fbfa3e5aed6",
- "block_index": 852286,
- "source": "bc1q4x2r7eau6vpnr4dya3keqt97qduf5xuh5kakx2",
- "destination": "1NmBhD1hainXiAGQweQgtJjfvZvoDcAFdF",
- "asset": "PEPETHEFROG",
- "quantity": 1,
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 10,
"status": "valid",
- "msg_index": 0,
+ "msg_index": 2,
"memo": null,
- "block_time": 1721037148,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "I'm PEPE THE FROG",
- "issuer": "1M7HN2wh32YU4AMfMatrAnCcdyfmuow7V3",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740778,
- "tx_hash": "c4aee57394121792e0ba180a2469d03afff4f4cbcf61545eb47638362e923a8f",
- "block_index": 852278,
- "source": "13dicrBBUfmZgrZX5WJiH1xi8B3fsuWm2D",
- "destination": "1JvPXP8GUtx21iDYPRzUj17UgAq89nhnMM",
- "asset": "STARTOKEN",
- "quantity": 100000000,
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
"status": "valid",
- "msg_index": 0,
- "memo": "47696674",
- "block_time": 1721031667,
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
"asset_longname": null,
- "description": "https://easyasset.art/j/mcr6gt/STAR.json",
- "issuer": "13dicrBBUfmZgrZX5WJiH1xi8B3fsuWm2D",
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
- "locked": true
+ "locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740777,
- "tx_hash": "2a4ff532ee124b7eb3356d55744caa5e83cf44c5ddf423c44a22e4b2b467978d",
- "block_index": 852278,
- "source": "13dicrBBUfmZgrZX5WJiH1xi8B3fsuWm2D",
- "destination": "19WfojhTFHoRSDCzRjJebwGHVSjWnSJb7S",
- "asset": "STARTOKEN",
- "quantity": 350000000000,
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
"status": "valid",
"msg_index": 0,
- "memo": "456e6a6f79",
- "block_time": 1721031667,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
"asset_info": {
"asset_longname": null,
- "description": "https://easyasset.art/j/mcr6gt/STAR.json",
- "issuer": "13dicrBBUfmZgrZX5WJiH1xi8B3fsuWm2D",
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"divisible": true,
- "locked": true
+ "locked": false
},
- "quantity_normalized": "3500.00000000"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740776,
- "tx_hash": "54cd7469077307aed4b0128e60d6eb5afc9d14b6fc118882de8fac59a3531222",
- "block_index": 852278,
- "source": "13dicrBBUfmZgrZX5WJiH1xi8B3fsuWm2D",
- "destination": "1PSHqxC67RVdedDgK8YCogtwNnBdrLWBHU",
- "asset": "STARLAND",
- "quantity": 1,
+ "tx_index": 53,
+ "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03",
+ "block_index": 187,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 10000,
"status": "valid",
"msg_index": 0,
- "memo": "31353024206f6666657265642c20636f6d65206765742072657761726473",
- "block_time": 1721031667,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509886,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "https://easyasset.art/j/ht59lq/STARL.json",
- "issuer": "13dicrBBUfmZgrZX5WJiH1xi8B3fsuWm2D",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "0.00010000",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740771,
- "tx_hash": "28148e0405626dddcaf06cbe15dccc697f08529b78b531bdb756a7f727d3c7ae",
- "block_index": 852271,
- "source": "1Lhoi43wAkTgei1WK5drpSF9V8Y76jnj89",
- "destination": "15yG8DX3QWEhKPCSxiHkZ4cmEda6ExnLyi",
- "asset": "DANKPEPEGARD",
- "quantity": 1,
+ "tx_index": 42,
+ "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7",
+ "block_index": 155,
+ "source": "3f0027dbe860c95e4cea6d1c83db0d8ea3acf7adbeacefd7e8eb56e9399d879b:0",
+ "destination": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1",
+ "asset": "XCP",
+ "quantity": 1500000000,
"status": "valid",
"msg_index": 1,
- "memo": "",
- "block_time": 1721029657,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509741,
"asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "imgur/FtxWcKu.jpeg;DANKPEPEGARD",
- "issuer": "1Lhoi43wAkTgei1WK5drpSF9V8Y76jnj89",
- "divisible": false,
- "locked": true
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1"
+ "quantity_normalized": "15.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
- "next_cursor": 1631883,
- "result_count": 1631888
+ "next_cursor": 9,
+ "result_count": 14
}
```
@@ -12190,7 +13547,7 @@ Returns all the sends include Enhanced and MPMA sends
Returns all the issuances
+ Parameters
- + cursor (int, optional) - The last index of the issuances to return
+ + cursor (str, optional) - The last index of the issuances to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of issuances to return
+ Default: `100`
@@ -12207,128 +13564,148 @@ Returns all the issuances
{
"result": [
{
- "tx_index": 2740784,
- "tx_hash": "3e8b38590be753a2ae8482908198efccfc8317cc609513babb14fe9a18d192e9",
+ "tx_index": 46,
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
"msg_index": 0,
- "block_index": 852285,
- "asset": "ROUNDDECLOCK",
- "quantity": 0,
- "divisible": false,
- "source": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
- "issuer": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
+ "block_index": 159,
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "https://easyasset.art/j/8osoah/ROUND.json",
+ "description": "A subnumeric asset",
"fee_paid": 0,
"status": "valid",
- "asset_longname": null,
- "locked": true,
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "locked": false,
"reset": false,
- "block_time": 1721036618,
- "quantity_normalized": "0",
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509780,
+ "quantity_normalized": "1000.00000000",
"fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740782,
- "tx_hash": "8192721f8cd61ee8cc4644e360a583ce9b4d367b26a269907a0159f9cd6309f1",
+ "tx_index": 45,
+ "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f",
"msg_index": 0,
- "block_index": 852283,
- "asset": "A838828713842287188",
- "quantity": 1,
- "divisible": false,
- "source": "bc1qk5tgfjs6ysazwz5gyn53tx9uwe8qglnj9u73am",
- "issuer": "bc1qqmfrcg2yfap4gk2sg5s8xan8ypg92sjv8f0s7u",
- "transfer": true,
+ "block_index": 158,
+ "asset": "TESTLOCKDESC",
+ "quantity": 0,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "STAMP:DYLE_ORB0011B.svg",
+ "description": "Test Locking Description",
"fee_paid": 0,
"status": "valid",
"asset_longname": null,
- "locked": true,
+ "locked": false,
"reset": false,
- "block_time": 1721036182,
- "quantity_normalized": "1",
+ "description_locked": true,
+ "fair_minting": false,
+ "asset_events": "lock_description reissuance",
+ "confirmed": true,
+ "block_time": 1726509775,
+ "quantity_normalized": "0.00000000",
"fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740780,
- "tx_hash": "1f3c09392034f2dd60196dc5829153b9ff7ffee31a73991143ea7541119df9cb",
+ "tx_index": 44,
+ "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af",
"msg_index": 0,
- "block_index": 852283,
- "asset": "ROUNDDECLOCK",
- "quantity": 57,
- "divisible": false,
- "source": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
- "issuer": "1KsT1iuaEYXE4cj1a3vC8Q6tmrHmyBLaoT",
+ "block_index": 157,
+ "asset": "A95428959745315388",
+ "quantity": 0,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "https://easyasset.art/j/8osoah/ROUND.json",
- "fee_paid": 50000000,
+ "description": "Test Locking Description",
+ "fee_paid": 0,
"status": "valid",
- "asset_longname": null,
+ "asset_longname": "TESTLOCKDESC.MYSUBASSET",
"locked": false,
"reset": false,
- "block_time": 1721036182,
- "quantity_normalized": "57",
- "fee_paid_normalized": "0.50000000"
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509760,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 2740772,
- "tx_hash": "90a17cfa151a5b3592abaded6e51659032cccc3e3fc0f63ea50218f849394a13",
+ "tx_index": 43,
+ "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f",
"msg_index": 0,
- "block_index": 852276,
- "asset": "A858869968078308988",
- "quantity": 1,
- "divisible": false,
- "source": "bc1qk5tgfjs6ysazwz5gyn53tx9uwe8qglnj9u73am",
- "issuer": "bc1qqpggj5zwguxs5xs2qqqqqr2ffpz9yqqqdg80ca",
- "transfer": true,
+ "block_index": 156,
+ "asset": "TESTLOCKDESC",
+ "quantity": 10000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "STAMP:DYLE_LETTER_B.png",
- "fee_paid": 0,
+ "description": "Test Locking Description",
+ "fee_paid": 50000000,
"status": "valid",
"asset_longname": null,
- "locked": true,
+ "locked": false,
"reset": false,
- "block_time": 1721031433,
- "quantity_normalized": "1",
- "fee_paid_normalized": "0.00000000"
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509746,
+ "quantity_normalized": "100.00000000",
+ "fee_paid_normalized": "0.50000000"
},
{
- "tx_index": 2740768,
- "tx_hash": "ce91cab99d0aae48971be02b4a6d460b1dbc21f6ffe889fc0e43fbf9858e91ab",
+ "tx_index": 42,
+ "tx_hash": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7",
"msg_index": 0,
- "block_index": 852270,
- "asset": "A1597488399549536617",
- "quantity": 69,
- "divisible": false,
- "source": "bc1qnpyejf6wfewuyputfsjvz9d9xmxqxhs4anmkxc",
- "issuer": "bc1qnpyejf6wfewuyputfsjvz9d9xmxqxhs4anmkxc",
+ "block_index": 155,
+ "asset": "MYASSETB",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99",
+ "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "STAMP:",
- "fee_paid": 0,
+ "description": "My super asset B",
+ "fee_paid": 50000000,
"status": "valid",
"asset_longname": null,
- "locked": true,
+ "locked": false,
"reset": false,
- "block_time": 1721029453,
- "quantity_normalized": "69",
- "fee_paid_normalized": "0.00000000"
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509741,
+ "quantity_normalized": "1000.00000000",
+ "fee_paid_normalized": "0.50000000"
}
],
- "next_cursor": 335913,
- "result_count": 335918
+ "next_cursor": 16,
+ "result_count": 21
}
```
@@ -12337,7 +13714,7 @@ Returns all the issuances
Returns the issuances of a block
+ Parameters
- + tx_hash: `54cb76d13f9e496294abdf40e87fa266e4cc040219b76c67fa819eaaaee4195a` (str, required) - The hash of the transaction to return
+ + tx_hash: `3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491` (str, required) - The hash of the transaction to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -12348,28 +13725,32 @@ Returns the issuances of a block
```
{
"result": {
- "tx_index": 2736735,
- "tx_hash": "54cb76d13f9e496294abdf40e87fa266e4cc040219b76c67fa819eaaaee4195a",
+ "tx_index": 46,
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
"msg_index": 0,
- "block_index": 848405,
- "asset": "PEPELXIX",
- "quantity": 0,
- "divisible": false,
- "source": "1hNcteiesYbJpaEQF8s74nHaQQ69h2N4j",
- "issuer": "1hNcteiesYbJpaEQF8s74nHaQQ69h2N4j",
+ "block_index": 159,
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "",
- "fee_paid": 50000000,
+ "description": "A subnumeric asset",
+ "fee_paid": 0,
"status": "valid",
- "asset_longname": null,
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
"locked": false,
"reset": false,
- "block_time": 1718674755,
- "quantity_normalized": "0",
- "fee_paid_normalized": "0.50000000"
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509780,
+ "quantity_normalized": "1000.00000000",
+ "fee_paid_normalized": "0.00000000"
}
}
```
@@ -12381,7 +13762,7 @@ Returns the issuances of a block
Returns all sweeps
+ Parameters
- + cursor (int, optional) - The last index of the sweeps to return
+ + cursor (str, optional) - The last index of the sweeps to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of sweeps to return
+ Default: `100`
@@ -12398,73 +13779,22 @@ Returns all sweeps
{
"result": [
{
- "tx_index": 2739895,
- "tx_hash": "7e1caf7ffa6db66be3ecd227962e23ccf79d941a1266babf88cab1fa500dec94",
- "block_index": 851491,
- "source": "1AmdRiWxB9pNR59j2xpPCm5r7ruipX8NHo",
- "destination": "16F1n49WqX9jFcY3j6CfGCURhCd44uaHUx",
- "flags": 3,
- "status": "valid",
- "memo": null,
- "fee_paid": 14000000,
- "block_time": 1720578229,
- "fee_paid_normalized": "0.14000000"
- },
- {
- "tx_index": 2739887,
- "tx_hash": "76b8201c010aa0e0099d51878146a2784d6cb741f3fabf16af2bcfdbe789333d",
- "block_index": 851488,
- "source": "1GseH5VxMLLMyq2j2NjT82xTNvsLD3WJEE",
- "destination": "16F1n49WqX9jFcY3j6CfGCURhCd44uaHUx",
- "flags": 1,
- "status": "valid",
- "memo": null,
- "fee_paid": 30600000,
- "block_time": 1720576639,
- "fee_paid_normalized": "0.30600000"
- },
- {
- "tx_index": 2739837,
- "tx_hash": "125181bbbe3792f0112c32207ce2239393556e4fa892f2fa8a8683f0e10e338f",
- "block_index": 851461,
- "source": "18CK94Pnd1vAjdoPDBNbGsaCuimFnHxERG",
- "destination": "1GseH5VxMLLMyq2j2NjT82xTNvsLD3WJEE",
- "flags": 3,
- "status": "valid",
- "memo": null,
- "fee_paid": 30400000,
- "block_time": 1720557426,
- "fee_paid_normalized": "0.30400000"
- },
- {
- "tx_index": 2739827,
- "tx_hash": "40e6ab2b5b201ad6998db02a407a7170bf54b2469dece7534f5be387a8c5aa80",
- "block_index": 851458,
- "source": "16XA6UTfmL7A3E6CEMXYohqJf1XLiRrHtG",
- "destination": "1GseH5VxMLLMyq2j2NjT82xTNvsLD3WJEE",
- "flags": 3,
- "status": "valid",
- "memo": null,
- "fee_paid": 400000,
- "block_time": 1720554961,
- "fee_paid_normalized": "0.00400000"
- },
- {
- "tx_index": 2739256,
- "tx_hash": "f20f5258ff47d8d3aa9a14ddbf5c8685c94e34765a5cea9e3e2c53a0fc993866",
- "block_index": 850857,
- "source": "1Ngy6z6tpz6VjPN3irmztSGxhri4xLZJcc",
- "destination": "1LSbNkNGUidmQavQPqbqPR1MxqmHzwwEuY",
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"flags": 1,
"status": "valid",
- "memo": null,
- "fee_paid": 10800000,
- "block_time": 1720226825,
- "fee_paid_normalized": "0.10800000"
+ "memo": "sweep my assets",
+ "fee_paid": 600000,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
}
],
- "next_cursor": 2739255,
- "result_count": 1064
+ "next_cursor": null,
+ "result_count": 1
}
```
@@ -12473,7 +13803,7 @@ Returns all sweeps
Returns the sweeps of a transaction
+ Parameters
- + tx_hash: `8cacf853c989393ce21e05e286958a3c650b94ac6f92807114552e1492e9c937` (str, required) - The hash of the transaction to return
+ + tx_hash: `dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b` (str, required) - The hash of the transaction to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -12485,17 +13815,18 @@ Returns the sweeps of a transaction
{
"result": [
{
- "tx_index": 2736442,
- "tx_hash": "8cacf853c989393ce21e05e286958a3c650b94ac6f92807114552e1492e9c937",
- "block_index": 848010,
- "source": "1JTW6Hw6xaxcNkakMg7tSmBpdWeuGyNkU3",
- "destination": "1D1RiWbmikELv1P2hfWKguWuQMZ1Siws5g",
- "flags": 3,
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
"status": "valid",
- "memo": null,
- "fee_paid": 28000000,
- "block_time": 1718444698,
- "fee_paid_normalized": "0.28000000"
+ "memo": "sweep my assets",
+ "fee_paid": 600000,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
}
],
"next_cursor": null,
@@ -12510,7 +13841,7 @@ Returns the sweeps of a transaction
Returns all valid broadcasts
+ Parameters
- + cursor (int, optional) - The last index of the broadcasts to return
+ + cursor (str, optional) - The last index of the broadcasts to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of broadcasts to return
+ Default: `100`
@@ -12527,78 +13858,38 @@ Returns all valid broadcasts
{
"result": [
{
- "tx_index": 2740688,
- "tx_hash": "7ee0bd6bad2c6e6e46c04d59e2af5339b2708d89c8e7e774939bb4da89af4868",
- "block_index": 852204,
- "source": "1CRjCTJkLcmEBJBZn2UE2obfS6v9FMqmWN",
- "timestamp": 1709019240,
- "value": 0.0,
- "fee_fraction_int": 0,
- "text": "bt:MINT|0|GAS|60",
- "locked": false,
- "status": "valid",
- "block_time": 1720994963,
- "fee_fraction_int_normalized": "0.00000000"
- },
- {
- "tx_index": 2740687,
- "tx_hash": "a46d75a5d2a23358dff0cef5cbcff013d9b05aac9c20bb58b07b3501f5edcb5e",
- "block_index": 852204,
- "source": "1CRjCTJkLcmEBJBZn2UE2obfS6v9FMqmWN",
- "timestamp": 1709018940,
- "value": 0.0,
- "fee_fraction_int": 0,
- "text": "bt:MINT|0|GAS|60",
- "locked": false,
- "status": "valid",
- "block_time": 1720994963,
- "fee_fraction_int_normalized": "0.00000000"
- },
- {
- "tx_index": 2740684,
- "tx_hash": "42ef047f9c6c764d32916e678f8458a843a9ffe4069ee508317bef3671eeb894",
- "block_index": 852204,
- "source": "18vmtdihz4yoPjTJsdeVK79eFdQ4Qs8m2h",
- "timestamp": 1709019180,
- "value": 0.0,
- "fee_fraction_int": 0,
- "text": "bt:MINT|0|GAS|60",
- "locked": false,
- "status": "valid",
- "block_time": 1720994963,
- "fee_fraction_int_normalized": "0.00000000"
- },
- {
- "tx_index": 2740683,
- "tx_hash": "25ad948e228b9d3e78130785373e435fa45331b5cc214ea224ac7602e34063ab",
- "block_index": 852204,
- "source": "18vmtdihz4yoPjTJsdeVK79eFdQ4Qs8m2h",
- "timestamp": 1709018940,
- "value": 0.0,
+ "tx_index": 25,
+ "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a",
+ "block_index": 138,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "timestamp": 4003903983,
+ "value": 66600.0,
"fee_fraction_int": 0,
- "text": "bt:MINT|0|GAS|60",
+ "text": "price-USD",
"locked": false,
"status": "valid",
- "block_time": 1720994963,
+ "confirmed": true,
+ "block_time": 1726509656,
"fee_fraction_int_normalized": "0.00000000"
},
{
- "tx_index": 2740677,
- "tx_hash": "d24ff2e5e3d239460899154ccd3c458509be5a454c71e8ddd8883f2ba0889662",
- "block_index": 852204,
- "source": "1Nwspn8KmnTcYUAt1ERz1eGLYeYgzN4mwM",
- "timestamp": 1702278540,
- "value": 0.0,
+ "tx_index": 24,
+ "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d",
+ "block_index": 137,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "timestamp": 4003903983,
+ "value": 999.0,
"fee_fraction_int": 0,
- "text": "bt:MINTISAT]1000",
+ "text": "Hello, world!",
"locked": false,
"status": "valid",
- "block_time": 1720994963,
+ "confirmed": true,
+ "block_time": 1726509652,
"fee_fraction_int_normalized": "0.00000000"
}
],
- "next_cursor": 2740672,
- "result_count": 86739
+ "next_cursor": null,
+ "result_count": 2
}
```
@@ -12607,7 +13898,7 @@ Returns all valid broadcasts
Returns the broadcast of a transaction
+ Parameters
- + tx_hash: `916944b5ae39289615ea55c91ada4605300d6213edf131db3913cf42f0f1b717` (str, required) - The hash of the transaction to return
+ + tx_hash: `0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a` (str, required) - The hash of the transaction to return
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -12618,31 +13909,36 @@ Returns the broadcast of a transaction
```
{
"result": {
- "tx_index": 2735567,
- "tx_hash": "916944b5ae39289615ea55c91ada4605300d6213edf131db3913cf42f0f1b717",
- "block_index": 846550,
- "source": "1Eb5YZhgxZgQn9S2a5msiBnEsvztAwQZym",
- "timestamp": 1717542117,
- "value": 0.0,
+ "tx_index": 25,
+ "tx_hash": "0b3452fcb5ee0a881ba450a768e89de4e0c89e297785e478dd6fc844975bec3a",
+ "block_index": 138,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "timestamp": 4003903983,
+ "value": 66600.0,
"fee_fraction_int": 0,
- "text": "help",
+ "text": "price-USD",
"locked": false,
"status": "valid",
- "block_time": 1717542359,
+ "confirmed": true,
+ "block_time": 1726509656,
"fee_fraction_int_normalized": "0.00000000"
}
}
```
-## Group Z-pages
+## Group Fairminters
-### Check Server Health [GET /v2/healthz{?check_type}{&verbose}{&show_unconfirmed}]
+### Get All Fairminters [GET /v2/fairminters{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
-Health check route.
+Returns all fairminters
+ Parameters
- + check_type: `light` (str, optional) - Type of health check to perform. Options are 'light' and 'heavy'
- + Default: `light`
+ + cursor (str, optional) - The last index of the fairminter to return
+ + Default: `None`
+ + limit: `5` (int, optional) - The maximum number of fairminter to return
+ + Default: `100`
+ + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter)
+ + Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
@@ -12652,34 +13948,165 @@ Health check route.
```
{
- "result": {
- "status": "Healthy"
- }
+ "result": [
+ {
+ "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "tx_index": 22,
+ "block_index": 135,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTD",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 50,
+ "quantity_by_price": 60,
+ "hard_cap": 0,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "open",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509644
+ },
+ {
+ "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "tx_index": 18,
+ "block_index": 131,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTC",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 5,
+ "hard_cap": 0,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "open",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509617
+ },
+ {
+ "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16",
+ "tx_index": 14,
+ "block_index": 130,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTB",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 1,
+ "hard_cap": 10000000000,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 1000000000,
+ "soft_cap_deadline_block": 130,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "closed",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509613
+ },
+ {
+ "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "tx_index": 10,
+ "block_index": 125,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTA",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 1,
+ "hard_cap": 10000000000,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 1000000000,
+ "soft_cap_deadline_block": 124,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "closed",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509592
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 4
}
```
-### Check Server Health [GET /healthz{?check_type}{&verbose}{&show_unconfirmed}]
+### Get Fairminter [GET /v2/fairminters/{tx_hash}{?verbose}{&show_unconfirmed}]
-Health check route.
+Returns the fairminter by its hash
+ Parameters
- + check_type: `light` (str, optional) - Type of health check to perform. Options are 'light' and 'heavy'
- + Default: `light`
+ + tx_hash (str, required) -
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
+### Get Fairmints By Fairminter [GET /v2/fairminters/{tx_hash}/mints{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
+
+Returns the mints by fairminter
+
++ Parameters
+ + tx_hash (str, required) -
+ + cursor (str, optional) -
+ + Default: `None`
+ + limit (int, optional) -
+ + Default: `100`
+ + offset (int, optional) -
+ + Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ Default: `false`
+ show_unconfirmed (bool, optional) - Include results from Mempool.
+ Default: `false`
-+ Response 200 (application/json)
-
- ```
- {
- "result": {
- "status": "Healthy"
- }
- }
- ```
-
## Group Bitcoin
### Get Unspent Txouts By Addresses [GET /v2/bitcoin/addresses/utxos{?addresses}{&unconfirmed}{&verbose}{&show_unconfirmed}]
@@ -12687,7 +14114,7 @@ Health check route.
Returns a list of unspent outputs for a list of addresses
+ Parameters
- + addresses: `14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS,1JQheacLPdM5ySCkrZkV66G2ApAXe1mqLj` (str, required) - The addresses to search for
+ + addresses: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p,bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d` (str, required) - The addresses to search for
+ unconfirmed (bool, optional) - Include unconfirmed transactions
+ Default: `False`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
@@ -12701,202 +14128,22 @@ Returns a list of unspent outputs for a list of addresses
{
"result": [
{
- "vout": 0,
- "height": 839021,
- "value": 12354,
- "confirmations": 13463,
- "amount": 0.00012354,
- "txid": "23758832e0fc92a7ea303623b8f743219cb8e637e7e7ac9fb6f90641efac9379",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 8,
- "height": 846480,
- "value": 151286,
- "confirmations": 6004,
- "amount": 0.00151286,
- "txid": "eea9feaa317df3de155e33f202c532e16979fdfe964524aa9e6118a02c6ffc62",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 841481,
- "value": 289853,
- "confirmations": 11003,
- "amount": 0.00289853,
- "txid": "0e4109dbacb9789fa8760c62e872a78333c2df9d85f4909d324084a964869080",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 838442,
- "value": 557283,
- "confirmations": 14042,
- "amount": 0.00557283,
- "txid": "aba5810714aa6196fec5538a83bbc281077a84ef2cbce2045b4c9f3c4439f14f",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 10,
- "height": 845775,
- "value": 517691,
- "confirmations": 6709,
- "amount": 0.00517691,
- "txid": "622975b062e44c11ca5e61ec8ad72535349218103434d5e7d0144dabd1058e68",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 841617,
- "value": 92742,
- "confirmations": 10867,
- "amount": 0.00092742,
- "txid": "341ae6b63c8f316a8a7ac5060d1df3f5e1bfeae2cc7996412f5b330bbc2e8bdb",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 8,
- "height": 847750,
- "value": 477155,
- "confirmations": 4734,
- "amount": 0.00477155,
- "txid": "326e9ecef4384ee3bb2124fb5a0da23fef9bf474693b16b6def5180ad2f175a5",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 833187,
- "value": 619481,
- "confirmations": 19297,
- "amount": 0.00619481,
- "txid": "2c8bc3eede9ec60d26c6fd7f44829adc64da593552044a28c673022220f560c3",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 838608,
- "value": 77148,
- "confirmations": 13876,
- "amount": 0.00077148,
- "txid": "ec97c11ff5cb318505ebe20d7aa3c033816824a79f9a49821ffb584ed7d6c78f",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 25,
- "height": 844809,
- "value": 376627,
- "confirmations": 7675,
- "amount": 0.00376627,
- "txid": "c45b372652f18070d0d054efa04133c236708db1410081be2081fbc951ca1cce",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 12,
- "height": 844220,
- "value": 490366,
- "confirmations": 8264,
- "amount": 0.00490366,
- "txid": "2fa627ba1088c5483c9c0cd83cd54adf39529ffbdeb439a399b2a670931d00fc",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 839462,
- "value": 78615,
- "confirmations": 13022,
- "amount": 0.00078615,
- "txid": "eae4f1dba4d75bda9dd0de12f69a980be267bbc16b7a280a2a4b40c4b3bbb70a",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 837402,
- "value": 70501,
- "confirmations": 15082,
- "amount": 0.00070501,
- "txid": "687b875d1dc472aa2fb994c5753c9b9b56e5c6fd1a6de18a92fcb3dc7ba8067e",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 13,
- "height": 849412,
- "value": 637128,
- "confirmations": 3072,
- "amount": 0.00637128,
- "txid": "ed314723b407051a1054a988e0095e6a4e16cb58eedb67e8b8ff3d33ead84884",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 14,
- "height": 842368,
- "value": 47357,
- "confirmations": 10116,
- "amount": 0.00047357,
- "txid": "402374f5e7b1b40a8737ed981b9458596445791a534bbcc69c54ce4524ccb102",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 10,
- "height": 848469,
- "value": 300818,
- "confirmations": 4015,
- "amount": 0.00300818,
- "txid": "b0e8c471b5288b221731cbc0b9eca1998212178a082c8c99ee3cc25d004aa6b7",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 843688,
- "value": 43319,
- "confirmations": 8796,
- "amount": 0.00043319,
- "txid": "aa70e0c2fb4f1cb91ea95ed75129e176fd41d97816c5bbf8dddcdfa4457bf50e",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 1,
- "height": 845480,
- "value": 72368,
- "confirmations": 7004,
- "amount": 0.00072368,
- "txid": "f866c27a5cde294f3ba5651552715c134da48bad6fbb6832d02947bc11f7ef3f",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
+ "vout": 2,
+ "height": 146,
+ "value": 4949970000,
+ "confirmations": 48,
+ "amount": 49.4997,
+ "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "address": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p"
},
{
"vout": 2,
- "height": 844432,
- "value": 363951,
- "confirmations": 8052,
- "amount": 0.00363951,
- "txid": "e1161b21719d57634a73837e882fa4bf674f08bb19509b141b1a0ff61c220cef",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 0,
- "height": 839421,
- "value": 336973,
- "confirmations": 13063,
- "amount": 0.00336973,
- "txid": "c732f0906eeada2113524c6652c17b2784780110bffd4333eb8f719ac0eff3be",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 3,
- "height": 843818,
- "value": 543251,
- "confirmations": 8666,
- "amount": 0.00543251,
- "txid": "be4dc2b2a5d05671654ee7f949b3fc4d9f447cd8b5d348805af5c2306a2aa05c",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
- },
- {
- "vout": 6,
- "height": 833559,
- "value": 34611,
- "confirmations": 18925,
- "amount": 0.00034611,
- "txid": "98bef616ef265dd2f6004683e908d7df97e0c5f322cdf2fb2ebea9a9131cfa79",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS"
+ "height": 155,
+ "value": 100000,
+ "confirmations": 39,
+ "amount": 0.001,
+ "txid": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7",
+ "address": "bcrt1qqt2dxp9pmcgvjrckeyuy29myfghay5le53hl0d"
}
],
"next_cursor": null,
@@ -12909,7 +14156,7 @@ Returns a list of unspent outputs for a list of addresses
Returns all transactions involving a given address
+ Parameters
- + address: `14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS` (str, required) - The address to search for
+ + address: `bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2` (str, required) - The address to search for
+ unconfirmed: `True` (bool, optional) - Include unconfirmed transactions
+ Default: `True`
+ only_tx_hashes: `True` (bool, optional) - Return only the tx hashes
@@ -12925,42 +14172,32 @@ Returns all transactions involving a given address
{
"result": [
{
- "tx_hash": "eae4f1dba4d75bda9dd0de12f69a980be267bbc16b7a280a2a4b40c4b3bbb70a"
- },
- {
- "tx_hash": "7ec16c461e3ba2d3acae48fcc8f58c04fba9f307b00c391eab507337ddc0bf16"
- },
- {
- "tx_hash": "ad35f05767aadd39019122b4f4828ccb059b8121c07be6d36eb1e2ddbe9ac317"
- },
- {
- "tx_hash": "3190047bf2320bdcd0fade655ae49be309519d151330aa478573815229cc0018"
- },
- {
- "tx_hash": "aba5810714aa6196fec5538a83bbc281077a84ef2cbce2045b4c9f3c4439f14f"
+ "tx_hash": "f96235259f9722ca1558a6601a39e235c6a60fa33d67cc9e5039890d0ab2fe03"
},
{
- "tx_hash": "23758832e0fc92a7ea303623b8f743219cb8e637e7e7ac9fb6f90641efac9379"
+ "tx_hash": "efce747367cf4f6f269d55f239087910bc90dcb738205d57146a4a5b537dad17"
},
{
- "tx_hash": "98bef616ef265dd2f6004683e908d7df97e0c5f322cdf2fb2ebea9a9131cfa79"
+ "tx_hash": "d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21"
},
{
- "tx_hash": "687b875d1dc472aa2fb994c5753c9b9b56e5c6fd1a6de18a92fcb3dc7ba8067e"
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
},
{
- "tx_hash": "ec97c11ff5cb318505ebe20d7aa3c033816824a79f9a49821ffb584ed7d6c78f"
+ "tx_hash": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172"
},
{
- "tx_hash": "c732f0906eeada2113524c6652c17b2784780110bffd4333eb8f719ac0eff3be"
+ "tx_hash": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88"
},
{
- "tx_hash": "2c8bc3eede9ec60d26c6fd7f44829adc64da593552044a28c673022220f560c3"
+ "tx_hash": "58f41fb8b8ec22f12daa5aad5a4f72194f54f652542abd409766afe4de2798b9"
},
{
- "tx_hash": "a209e345549cffef6e2190b53ac0222afc965fd618843df5ccbd645a6a7999ee"
+ "tx_hash": "cd209fe04d43a38dcf842ad0d74fd71e123c66549db03f3650099a7e5f0297be"
}
- ]
+ ],
+ "next_cursor": null,
+ "result_count": null
}
```
@@ -12969,7 +14206,7 @@ Returns all transactions involving a given address
Get the oldest transaction for an address.
+ Parameters
- + address: `14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS` (str, required) - The address to search for.
+ + address: `bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99` (str, required) - The address to search for.
+ block_index (int, optional) - The block index to search from.
+ Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
@@ -12982,8 +14219,8 @@ Get the oldest transaction for an address.
```
{
"result": {
- "block_index": 833187,
- "tx_hash": "2c8bc3eede9ec60d26c6fd7f44829adc64da593552044a28c673022220f560c3"
+ "block_index": 1,
+ "tx_hash": "39808e5b91587a72ae37c23d618a8526cf4c292592c2681dd3400837654b0786"
}
}
```
@@ -12993,7 +14230,7 @@ Get the oldest transaction for an address.
Returns a list of unspent outputs for a specific address
+ Parameters
- + address: `14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS` (str, required) - The address to search for
+ + address: `bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p` (str, required) - The address to search for
+ unconfirmed (bool, optional) - Include unconfirmed transactions
+ Default: `False`
+ unspent_tx_hash (str, optional) - Filter by unspent_tx_hash
@@ -13009,86 +14246,16 @@ Returns a list of unspent outputs for a specific address
{
"result": [
{
- "vout": 6,
- "height": 833559,
- "value": 34611,
- "confirmations": 7083,
- "amount": 0.00034611,
- "txid": "98bef616ef265dd2f6004683e908d7df97e0c5f322cdf2fb2ebea9a9131cfa79"
- },
- {
- "vout": 0,
- "height": 833187,
- "value": 619481,
- "confirmations": 7455,
- "amount": 0.00619481,
- "txid": "2c8bc3eede9ec60d26c6fd7f44829adc64da593552044a28c673022220f560c3"
- },
- {
- "vout": 0,
- "height": 837379,
- "value": 992721,
- "confirmations": 3263,
- "amount": 0.00992721,
- "txid": "ad35f05767aadd39019122b4f4828ccb059b8121c07be6d36eb1e2ddbe9ac317"
- },
- {
- "vout": 0,
- "height": 840640,
- "value": 838185,
- "confirmations": 2,
- "amount": 0.00838185,
- "txid": "3190047bf2320bdcd0fade655ae49be309519d151330aa478573815229cc0018"
- },
- {
- "vout": 0,
- "height": 839421,
- "value": 336973,
- "confirmations": 1221,
- "amount": 0.00336973,
- "txid": "c732f0906eeada2113524c6652c17b2784780110bffd4333eb8f719ac0eff3be"
- },
- {
- "vout": 0,
- "height": 839462,
- "value": 78615,
- "confirmations": 1180,
- "amount": 0.00078615,
- "txid": "eae4f1dba4d75bda9dd0de12f69a980be267bbc16b7a280a2a4b40c4b3bbb70a"
- },
- {
- "vout": 0,
- "height": 838442,
- "value": 557283,
- "confirmations": 2200,
- "amount": 0.00557283,
- "txid": "aba5810714aa6196fec5538a83bbc281077a84ef2cbce2045b4c9f3c4439f14f"
- },
- {
- "vout": 0,
- "height": 838608,
- "value": 77148,
- "confirmations": 2034,
- "amount": 0.00077148,
- "txid": "ec97c11ff5cb318505ebe20d7aa3c033816824a79f9a49821ffb584ed7d6c78f"
- },
- {
- "vout": 0,
- "height": 837402,
- "value": 70501,
- "confirmations": 3240,
- "amount": 0.00070501,
- "txid": "687b875d1dc472aa2fb994c5753c9b9b56e5c6fd1a6de18a92fcb3dc7ba8067e"
- },
- {
- "vout": 0,
- "height": 839021,
- "value": 12354,
- "confirmations": 1621,
- "amount": 0.00012354,
- "txid": "23758832e0fc92a7ea303623b8f743219cb8e637e7e7ac9fb6f90641efac9379"
+ "vout": 2,
+ "height": 146,
+ "value": 4949970000,
+ "confirmations": 48,
+ "amount": 49.4997,
+ "txid": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535"
}
- ]
+ ],
+ "next_cursor": null,
+ "result_count": null
}
```
@@ -13097,7 +14264,7 @@ Returns a list of unspent outputs for a specific address
Get pubkey for an address.
+ Parameters
- + address: `14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS` (str, required) - Address to get pubkey for.
+ + address: `bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj` (str, required) - Address to get pubkey for.
+ provided_pubkeys (str, optional) - Comma separated list of provided pubkeys.
+ Default: `None`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
@@ -13109,7 +14276,7 @@ Get pubkey for an address.
```
{
- "result": "0388ef0905568d425f1ffd4031d93dda4ef0e220c9b5fc4a6cbaf11544c4a5ca49"
+ "result": "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169"
}
```
@@ -13118,7 +14285,7 @@ Get pubkey for an address.
Get a transaction from the blockchain
+ Parameters
- + tx_hash: `3190047bf2320bdcd0fade655ae49be309519d151330aa478573815229cc0018` (str, required) - The transaction hash
+ + tx_hash: `f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce` (str, required) - The transaction hash
+ format: `hex` (str, optional) - Whether to return JSON output or raw hex
+ Default: `json`
+ verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
@@ -13130,48 +14297,7 @@ Get a transaction from the blockchain
```
{
- "result": {
- "txid": "3190047bf2320bdcd0fade655ae49be309519d151330aa478573815229cc0018",
- "hash": "417c24d7a5539bc5b8496e26528382ac297a85a1c6b891b220f72712405ec300",
- "version": 2,
- "size": 195,
- "vsize": 113,
- "weight": 450,
- "locktime": 0,
- "vin": [
- {
- "txid": "fc940430637d22a3d276bde8f7eb489760265cab642d8392f6017d73df94cd7a",
- "vout": 2,
- "scriptSig": {
- "asm": "",
- "hex": ""
- },
- "txinwitness": [
- "3045022100e4a30e5c0e0f7a28dfcec566cda00d0775a4207744ed6f223a4234cbed87a8ac02205b2403279ba7d8235ea1e8b6497465b97b46f3b3066a58c326822a9b1c25b4a501",
- "020e66cffeb4657b40a89063340cf7066030af3c6ce55744ed3570a7aecaa6b0da"
- ],
- "sequence": 4294967295
- }
- ],
- "vout": [
- {
- "value": 0.00838185,
- "n": 0,
- "scriptPubKey": {
- "asm": "OP_DUP OP_HASH160 25f70b0f1512c1742d3301fe34370894c79127bb OP_EQUALVERIFY OP_CHECKSIG",
- "desc": "addr(14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS)#68uhm9u9",
- "hex": "76a91425f70b0f1512c1742d3301fe34370894c79127bb88ac",
- "address": "14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS",
- "type": "pubkeyhash"
- }
- }
- ],
- "hex": "020000000001017acd94df737d01f692832d64ab5c26609748ebf7e8bd76d2a3227d63300494fc0200000000ffffffff0129ca0c00000000001976a91425f70b0f1512c1742d3301fe34370894c79127bb88ac02483045022100e4a30e5c0e0f7a28dfcec566cda00d0775a4207744ed6f223a4234cbed87a8ac02205b2403279ba7d8235ea1e8b6497465b97b46f3b3066a58c326822a9b1c25b4a50121020e66cffeb4657b40a89063340cf7066030af3c6ce55744ed3570a7aecaa6b0da00000000",
- "blockhash": "000000000000000000020f596ed481076b7754143284b47fc8d32642202e5f76",
- "confirmations": 2,
- "time": 1713951767,
- "blocktime": 1713951767
- }
+ "result": "02000000000101ba21bea38dc876b1215be6872f0c75a77328eb90aea0f5e5f5d687b38e7ca5050300000000ffffffff020000000000000000226a20e661db2d032f2a3e7844cfb698121f85b2b30cced7b8b215b0e8fe1f5fd1a779680b0a2701000000160014ae2b0c1095bbdf23747f76b242be716817701b780247304402205f232b082605ae63445a865c556deef60158bbdf42b4ac8953b712ef33fe80a202203c7aebb1b51e30698a54c8e0177213dcbcd480529ede188b0a18129a80637fef0121035352a3478786437bb2f973478638b43a6bee4a925c1b0efd94dc193e94b198b500000000"
}
```
@@ -13193,7 +14319,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc
```
{
- "result": 295443
+ "result": 68546
}
```
@@ -13208,6 +14334,36 @@ Proxy to `sendrawtransaction` RPC call.
+ show_unconfirmed (bool, optional) - Include results from Mempool.
+ Default: `false`
+### Get Mempool Info [GET /v2/bitcoin/getmempoolinfo{?verbose}{&show_unconfirmed}]
+
+Get the current mempool info.
+
++ Parameters
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": {
+ "loaded": true,
+ "size": 1,
+ "bytes": 167,
+ "usage": 1216,
+ "total_fee": 0.0001,
+ "maxmempool": 300000000,
+ "mempoolminfee": 1e-05,
+ "minrelaytxfee": 1e-05,
+ "incrementalrelayfee": 1e-05,
+ "unbroadcastcount": 1,
+ "fullrbf": false
+ }
+ }
+ ```
+
## Group Mempool
### Get All Mempool Events [GET /v2/mempool/events{?event_name}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}]
@@ -13217,7 +14373,7 @@ Returns all mempool events
+ Parameters
+ event_name (str, optional) - Comma separated list of events to return
+ Default: `None`
- + cursor (int, optional) - The last event index to return
+ + cursor (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -13234,76 +14390,75 @@ Returns all mempool events
{
"result": [
{
- "tx_hash": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
"event": "TRANSACTION_PARSED",
"params": {
"supported": true,
- "tx_hash": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
- "tx_index": 2740787
- }
- },
- {
- "tx_hash": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
- "event": "CREDIT",
- "params": {
- "address": "1MjTPRdUpwH5e9yYLpiyE8zd1TvzwTvgUm",
- "asset": "A209615127882410734",
- "block_index": 852292,
- "calling_function": "issuance",
- "event": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
- "quantity": 100,
- "tx_index": 2740787,
- "block_time": 1721038693
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60
}
},
{
- "tx_hash": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
- "event": "ASSET_ISSUANCE",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "ENHANCED_SEND",
"params": {
- "asset": "A209615127882410734",
- "asset_longname": null,
+ "asset": "XCP",
"block_index": 9999999,
- "call_date": 0,
- "call_price": 0.0,
- "callable": false,
- "description": "STAMP:",
- "divisible": false,
- "fee_paid": 0,
- "issuer": "1MjTPRdUpwH5e9yYLpiyE8zd1TvzwTvgUm",
- "locked": true,
- "quantity": 100,
- "reset": false,
- "source": "1MjTPRdUpwH5e9yYLpiyE8zd1TvzwTvgUm",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "quantity": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"status": "valid",
- "transfer": false,
- "tx_hash": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
- "tx_index": 2740787,
- "quantity_normalized": "100",
- "fee_paid_normalized": "0.00000000"
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
}
},
{
- "tx_hash": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
- "event": "ASSET_CREATION",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "CREDIT",
"params": {
- "asset_id": "209615127882410734",
- "asset_longname": null,
- "asset_name": "A209615127882410734",
- "block_index": 9999999
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 193,
+ "calling_function": "send",
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
}
},
{
- "tx_hash": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
"event": "DEBIT",
"params": {
- "action": "issuance fee",
- "address": "1MjTPRdUpwH5e9yYLpiyE8zd1TvzwTvgUm",
+ "action": "send",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
"asset": "XCP",
- "block_index": 852292,
- "event": "acc5f1916a954680c6432861626907af0b5d65df6d874b4122b5cacba9064ae5",
- "quantity": 0,
- "tx_index": 2740787,
- "block_time": 1721038693,
+ "block_index": 193,
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -13311,12 +14466,48 @@ Returns all mempool events
"locked": true,
"issuer": null
},
- "quantity_normalized": "0.00000000"
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "NEW_TRANSACTION",
+ "params": {
+ "block_hash": "mempool",
+ "block_index": 9999999,
+ "block_time": 1726509917.0831685,
+ "btc_amount": 0,
+ "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92",
+ "destination": "",
+ "fee": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1",
+ "unpacked_data": {
+ "message_type": "enhanced_send",
+ "message_type_id": 2,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 10000,
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
}
}
],
- "next_cursor": 129,
- "result_count": 134
+ "next_cursor": null,
+ "result_count": 5
}
```
@@ -13325,8 +14516,8 @@ Returns all mempool events
Returns the mempool events filtered by event name
+ Parameters
- + event: `OPEN_ORDER` (str, required) - The event to return
- + cursor (int, optional) - The last event index to return
+ + event: `CREDIT` (str, required) - The event to return
+ + cursor (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -13341,9 +14532,34 @@ Returns the mempool events filtered by event name
```
{
- "result": [],
+ "result": [
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 193,
+ "calling_function": "send",
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ }
+ ],
"next_cursor": null,
- "result_count": 0
+ "result_count": 1
}
```
@@ -13352,10 +14568,10 @@ Returns the mempool events filtered by event name
Returns the mempool events filtered by transaction hash
+ Parameters
- + tx_hash: `84b34b19d971adc2ad2dc6bfc5065ca976db1488f207df4887da976fbf2fd040` (str, required) - The hash of the transaction to return
+ + tx_hash: `adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6` (str, required) - The hash of the transaction to return
+ event_name (str, optional) - Comma separated list of events to return
+ Default: `None`
- + cursor (int, optional) - The last event index to return
+ + cursor (str, optional) - The last event index to return
+ Default: `None`
+ limit: `5` (int, optional) - The maximum number of events to return
+ Default: `100`
@@ -13370,9 +14586,184 @@ Returns the mempool events filtered by transaction hash
```
{
- "result": [],
+ "result": [
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "TRANSACTION_PARSED",
+ "params": {
+ "supported": true,
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "ENHANCED_SEND",
+ "params": {
+ "asset": "XCP",
+ "block_index": 9999999,
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "quantity": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "status": "valid",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 193,
+ "calling_function": "send",
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "DEBIT",
+ "params": {
+ "action": "send",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 193,
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "NEW_TRANSACTION",
+ "params": {
+ "block_hash": "mempool",
+ "block_index": 9999999,
+ "block_time": 1726509917.0831685,
+ "btc_amount": 0,
+ "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92",
+ "destination": "",
+ "fee": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1",
+ "unpacked_data": {
+ "message_type": "enhanced_send",
+ "message_type_id": 2,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 10000,
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ }
+ ],
"next_cursor": null,
- "result_count": 0
+ "result_count": 5
+ }
+ ```
+
+## Group Routes
+
+### Get Routes [GET /v2/routes{?verbose}{&show_unconfirmed}]
+
+Return the API routes.
+
++ Parameters
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
+## Group Z-pages
+
+### Check Server Health [GET /v2/healthz{?check_type}{&verbose}{&show_unconfirmed}]
+
+Health check route.
+
++ Parameters
+ + check_type: `light` (str, optional) - Type of health check to perform. Options are 'light' and 'heavy'
+ + Default: `light`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": {
+ "status": "Healthy"
+ }
+ }
+ ```
+
+### Check Server Health [GET /healthz{?check_type}{&verbose}{&show_unconfirmed}]
+
+Health check route.
+
++ Parameters
+ + check_type: `light` (str, optional) - Type of health check to perform. Options are 'light' and 'heavy'
+ + Default: `light`
+ + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response.
+ + Default: `false`
+ + show_unconfirmed (bool, optional) - Include results from Mempool.
+ + Default: `false`
+
++ Response 200 (application/json)
+
+ ```
+ {
+ "result": {
+ "status": "Healthy"
+ }
}
```
diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py
index 4c26629ecd..cd122bab0b 100644
--- a/counterparty-core/counterpartycore/lib/api/api_server.py
+++ b/counterparty-core/counterpartycore/lib/api/api_server.py
@@ -323,12 +323,16 @@ def handle_route(**kwargs):
capture_exception(e)
logger.error("Error in API: %s", e)
# import traceback
- # print(traceback.format_exc()) # for debugging
+ # print(traceback.format_exc()) # for debugging
return return_result(
503, error="Unknown error", start_time=start_time, query_args=query_args
)
if isinstance(result, requests.Response):
+ message = f"API Request - {request.remote_addr} {request.method} {request.url}"
+ message += f" - Response {result.status_code}"
+ message += f" - {int((time.time() - start_time) * 1000)}ms"
+ logger.debug(message)
return result.content, result.status_code, result.headers.items()
# clean up and return the result
diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py
index 05e6a254c6..eccdaaa2a4 100644
--- a/counterparty-core/counterpartycore/lib/api/api_v1.py
+++ b/counterparty-core/counterpartycore/lib/api/api_v1.py
@@ -937,10 +937,12 @@ def get_tx_info(tx_hex, block_index=None):
# block_index mandatory for transactions before block 335000
use_txid = util.enabled("correct_segwit_txids", block_index=block_index)
with self.connection_pool.connection() as db:
- source, destination, btc_amount, fee, data, extra = gettxinfo.get_tx_info(
- db,
- deserialize.deserialize_tx(tx_hex, use_txid=use_txid),
- block_index=block_index,
+ source, destination, btc_amount, fee, data, _dispensers_outs, _utxos_info = (
+ gettxinfo.get_tx_info(
+ db,
+ deserialize.deserialize_tx(tx_hex, use_txid=use_txid),
+ block_index=block_index,
+ )
)
return (
source,
diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py
index 1842ac1ccb..e13bebdd98 100644
--- a/counterparty-core/counterpartycore/lib/api/api_watcher.py
+++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py
@@ -29,6 +29,7 @@
"RPS_MATCH_UPDATE": ["id"],
"RPS_UPDATE": ["tx_hash"],
"ADDRESS_OPTIONS_UPDATE": ["address"],
+ "FAIRMINTER_UPDATE": ["tx_hash"],
}
EXPIRATION_EVENTS_OBJECT_ID = {
@@ -134,7 +135,11 @@ def get_event_to_parse_count(api_db, ledger_db):
def get_event_bindings(event):
event_bindings = json.loads(event["bindings"])
- if "order_match_id" in event_bindings:
+ if (
+ "order_match_id" in event_bindings
+ and "id" in event_bindings
+ and event_bindings["order_match_id"] == event_bindings["id"]
+ ):
del event_bindings["order_match_id"]
return event_bindings
@@ -262,6 +267,7 @@ def rollback_event(api_db, event):
rollback_assets_info(api_db, event)
rollback_xcp_supply(api_db, event)
rollback_address_events(api_db, event)
+ rollback_fairminters(api_db, event)
sql = "DELETE FROM messages WHERE message_index = ?"
delete_all(api_db, sql, (event["message_index"],))
@@ -293,23 +299,34 @@ def update_balances(api_db, event):
if event["event"] == "DEBIT":
quantity = -quantity
- sql = "SELECT * FROM balances WHERE address = :address AND asset = :asset"
+ field_name = "address"
+ address_or_utxo = event_bindings["address"]
+ if "utxo" in event_bindings and event_bindings["utxo"]:
+ field_name = "utxo"
+ address_or_utxo = event_bindings["utxo"]
+ event_bindings["address_or_utxo"] = address_or_utxo
+
+ sql = f"SELECT * FROM balances WHERE {field_name} = :address_or_utxo AND asset = :asset" # noqa: S608
existing_balance = fetch_one(api_db, sql, event_bindings)
if existing_balance is not None:
- sql = """
+ sql = f"""
UPDATE balances
SET quantity = quantity + :quantity
- WHERE address = :address AND asset = :asset
- """
+ WHERE {field_name} = :address_or_utxo AND asset = :asset
+ """ # noqa: S608
else:
- sql = """
- INSERT INTO balances (address, asset, quantity)
- VALUES (:address, :asset, :quantity)
- """
+ sql = f"""
+ INSERT INTO balances ({field_name}, asset, quantity, utxo_address)
+ VALUES (:address_or_utxo, :asset, :quantity, :utxo_address)
+ """ # noqa: S608
+ utxo_address = None
+ if "utxo_address" in event_bindings:
+ utxo_address = event_bindings["utxo_address"]
insert_bindings = {
- "address": event_bindings["address"],
+ "address_or_utxo": address_or_utxo,
"asset": event_bindings["asset"],
+ "utxo_address": utxo_address,
"quantity": quantity,
}
cursor.execute(sql, insert_bindings)
@@ -584,6 +601,40 @@ def rollback_address_events(api_db, event):
cursor.execute(sql, event)
+def update_fairminters(api_db, event):
+ if event["event"] != "NEW_FAIRMINT":
+ return
+ event_bindings = json.loads(event["bindings"])
+ if event_bindings["status"] != "valid":
+ return
+ cursor = api_db.cursor()
+ sql = """
+ UPDATE fairminters SET
+ earned_quantity = earned_quantity + :earn_quantity,
+ commission = commission + :commission,
+ paid_quantity = paid_quantity + :paid_quantity
+ WHERE tx_hash = :fairminter_tx_hash
+ """
+ cursor.execute(sql, event_bindings)
+
+
+def rollback_fairminters(api_db, event):
+ if event["event"] != "NEW_FAIRMINT":
+ return
+ if event["status"] != "valid":
+ return
+ event_bindings = json.loads(event["bindings"])
+ cursor = api_db.cursor()
+ sql = """
+ UPDATE fairminters SET
+ earned_quantity = earned_quantity - :earn_quantity,
+ commission = commission - :commission,
+ paid_quantity = paid_quantity - :paid_quantity
+ WHERE tx_hash = :fairminter_tx_hash
+ """
+ cursor.execute(sql, event_bindings)
+
+
def parse_event(api_db, event, catching_up=False):
if event["event"] in SKIP_EVENTS:
event["insert_rowid"] = None
@@ -599,6 +650,7 @@ def parse_event(api_db, event, catching_up=False):
update_assets_info(api_db, event)
update_xcp_supply(api_db, event)
update_address_events(api_db, event)
+ update_fairminters(api_db, event)
insert_event(api_db, event)
logger.event(f"API Watcher - Event parsed: {event['message_index']} {event['event']}")
if event["event"] == "BLOCK_PARSED" and not catching_up:
diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py b/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py
index 50dcf0bfee..a601a306be 100644
--- a/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py
+++ b/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py
@@ -1,5 +1,5 @@
#
-# file: counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py
+# file: counterpartycore/lib/api/migrations/0004.create_address_events_table.py
#
import logging
import os
diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0007.add_description_locked.sql b/counterparty-core/counterpartycore/lib/api/migrations/0007.add_description_locked.sql
new file mode 100644
index 0000000000..0d21d2c4c0
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/api/migrations/0007.add_description_locked.sql
@@ -0,0 +1,2 @@
+-- depends: 0006.add_confirmed_field_in_assets_info
+ALTER TABLE issuances ADD COLUMN description_locked BOOL;
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0007.create_fairminters_tables.sql b/counterparty-core/counterpartycore/lib/api/migrations/0007.create_fairminters_tables.sql
new file mode 100644
index 0000000000..16a08accfa
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/api/migrations/0007.create_fairminters_tables.sql
@@ -0,0 +1,57 @@
+-- depends: 0007.add_description_locked
+CREATE TABLE IF NOT EXISTS fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT,
+ earned_quantity INTEGER,
+ commission INTEGER,
+ paid_quantity INTEGER
+);
+CREATE INDEX IF NOT EXISTS fairminters_tx_hash_idx ON fairminters (tx_hash);
+CREATE INDEX IF NOT EXISTS fairminters_block_index_idx ON fairminters (block_index);
+CREATE INDEX IF NOT EXISTS fairminters_asset_idx ON fairminters (asset);
+CREATE INDEX IF NOT EXISTS fairminters_asset_parent_idx ON fairminters (asset_parent);
+CREATE INDEX IF NOT EXISTS fairminters_asset_longname_idx ON fairminters (asset_longname);
+CREATE INDEX IF NOT EXISTS fairminters_status_idx ON fairminters (status);
+
+CREATE TABLE IF NOT EXISTS fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+);
+CREATE INDEX IF NOT EXISTS fairmints_tx_hash_idx ON fairmints (tx_hash);
+CREATE INDEX IF NOT EXISTS fairmints_block_index_idx ON fairmints (block_index);
+CREATE INDEX IF NOT EXISTS fairmints_source_idx ON fairmints (source);
+CREATE INDEX IF NOT EXISTS fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash);
+CREATE INDEX IF NOT EXISTS fairmints_asset_idx ON fairmints (asset);
+CREATE INDEX IF NOT EXISTS fairmints_status_idx ON fairmints (status);
+
+ALTER TABLE issuances ADD COLUMN fair_minting BOOL DEFAULT 0;
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0008.add_utxo_fields.sql b/counterparty-core/counterpartycore/lib/api/migrations/0008.add_utxo_fields.sql
new file mode 100644
index 0000000000..316cd7b607
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/api/migrations/0008.add_utxo_fields.sql
@@ -0,0 +1,15 @@
+-- depends: 0007.create_fairminters_tables
+ALTER TABLE balances ADD COLUMN utxo TEXT;
+ALTER TABLE balances ADD COLUMN utxo_address TEXT;
+ALTER TABLE credits ADD COLUMN utxo TEXT;
+ALTER TABLE credits ADD COLUMN utxo_address TEXT;
+ALTER TABLE debits ADD COLUMN utxo TEXT;
+ALTER TABLE debits ADD COLUMN utxo_address TEXT;
+ALTER TABLE transactions ADD COLUMN utxos_info TEXT;
+ALTER TABLE sends ADD COLUMN fee_paid INTEGER DEFAULT 0;
+CREATE INDEX IF NOT EXISTS balances_utxo_idx ON balances (utxo);
+CREATE INDEX IF NOT EXISTS credits_utxo_idx ON credits (utxo);
+CREATE INDEX IF NOT EXISTS debits_utxo_idx ON debits (utxo);
+CREATE INDEX IF NOT EXISTS balances_utxo_address_idx ON balances (utxo_address);
+CREATE INDEX IF NOT EXISTS credits_utxo_address_idx ON credits (utxo_address);
+CREATE INDEX IF NOT EXISTS debits_utxo_address_idx ON debits (utxo_address);
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0009.add_transactions_count_table.sql b/counterparty-core/counterpartycore/lib/api/migrations/0009.add_transactions_count_table.sql
new file mode 100644
index 0000000000..424c46b56a
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/api/migrations/0009.add_transactions_count_table.sql
@@ -0,0 +1,6 @@
+-- depends: 0008.add_utxo_fields
+CREATE TABLE IF NOT EXISTS transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+CREATE INDEX IF NOT EXISTS transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id);
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0010.add_asset_events_field.sql b/counterparty-core/counterpartycore/lib/api/migrations/0010.add_asset_events_field.sql
new file mode 100644
index 0000000000..4802a9e160
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/api/migrations/0010.add_asset_events_field.sql
@@ -0,0 +1,2 @@
+-- depends: 0009.add_transactions_count_table
+ALTER TABLE issuances ADD COLUMN asset_events TEXT;
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py
index 0289b1ba35..7bbd7506c8 100644
--- a/counterparty-core/counterpartycore/lib/api/queries.py
+++ b/counterparty-core/counterpartycore/lib/api/queries.py
@@ -10,12 +10,8 @@
OrderMatchesStatus = Literal["all", "pending", "completed", "expired"]
BetStatus = Literal["cancelled", "dropped", "expired", "filled", "open"]
DispenserStatus = Literal["all", "open", "closed", "closing", "open_empty_address"]
-DispenserStatusNumber = {
- "open": 0,
- "closed": 10,
- "closing": 11,
- "open_empty_address": 1,
-}
+DispenserStatusNumber = {"open": 0, "closed": 10, "closing": 11, "open_empty_address": 1}
+DispenserStatusNumberInverted = {value: key for key, value in DispenserStatusNumber.items()}
BetMatchesStatus = Literal[
"dropped",
@@ -26,6 +22,7 @@
"settled: liquidated for bear",
]
DebitAction = Literal[
+ None,
"bet",
"destroy",
"dividend",
@@ -44,6 +41,7 @@
"sweep fee",
]
CreditAction = Literal[
+ None,
"Closed: Max dispenses reached",
"bet settled: for equal",
"bet settled: for notequal",
@@ -285,11 +283,11 @@ def select_row(db, table, where, select="*", group_by=""):
return None
-def get_blocks(db, cursor: int = None, limit: int = 10, offset: int = None):
+def get_blocks(db, cursor: str = None, limit: int = 10, offset: int = None):
"""
Returns the list of the last ten blocks
- :param int cursor: The index of the most recent block to return (e.g. 840000)
- :param int limit: The number of blocks to return (e.g. 2)
+ :param str cursor: The index of the most recent block to return (e.g. $LAST_BLOCK_INDEX)
+ :param int limit: The number of blocks to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_rows(
@@ -300,7 +298,7 @@ def get_blocks(db, cursor: int = None, limit: int = 10, offset: int = None):
def get_block_by_height(db, block_index: int):
"""
Return the information of a block
- :param int block_index: The index of the block to return (e.g. 840464)
+ :param int block_index: The index of the block to return (e.g. $LAST_BLOCK_INDEX)
"""
return select_row(db, "blocks", where={"block_index": block_index})
@@ -308,7 +306,7 @@ def get_block_by_height(db, block_index: int):
def get_block_by_hash(db, block_hash: str):
"""
Return the information of a block
- :param str block_hash: The index of the block to return (e.g. 0000000000000000000073b0a277154cbc420e04fd8c699ae188d8d4421418ad)
+ :param str block_hash: The index of the block to return (e.g. $LAST_BLOCK_HASH)
"""
return select_row(db, "blocks", where={"block_hash": block_hash})
@@ -320,10 +318,10 @@ def get_last_block(db):
return select_row(db, "blocks", where={})
-def get_transactions(db, cursor: int = None, limit: int = 10, offset: int = None):
+def get_transactions(db, cursor: str = None, limit: int = 10, offset: int = None):
"""
Returns the list of the last ten transactions
- :param int cursor: The index of the most recent transactions to return (e.g. 2736157)
+ :param str cursor: The index of the most recent transactions to return (e.g. $LAST_TX_INDEX)
:param int limit: The number of transactions to return (e.g. 2)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -333,12 +331,12 @@ def get_transactions(db, cursor: int = None, limit: int = 10, offset: int = None
def get_transactions_by_block(
- db, block_index: int, cursor: int = None, limit: int = 10, offset: int = None
+ db, block_index: int, cursor: str = None, limit: int = 10, offset: int = None
):
"""
Returns the transactions of a block
- :param int block_index: The index of the block to return (e.g. 840464)
- :param int cursor: The last transaction index to return (e.g. 10665092)
+ :param int block_index: The index of the block to return (e.g. $LAST_BLOCK_INDEX)
+ :param str cursor: The last transaction index to return (e.g. $LAST_TX_INDEX)
:param int limit: The maximum number of transactions to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -354,12 +352,12 @@ def get_transactions_by_block(
def get_transactions_by_address(
- db, address: str, cursor: int = None, limit: int = 10, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 10, offset: int = None
):
"""
Returns the transactions of an address
- :param str address: The address to return (e.g. 1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx)
- :param int cursor: The last transaction index to return (e.g. 2736469)
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last transaction index to return (e.g. $LAST_TX_INDEX)
:param int limit: The maximum number of transactions to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -375,12 +373,12 @@ def get_transactions_by_address(
def get_transactions_by_addresses(
- db, addresses: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, addresses: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the transactions of a list of addresses
- :param str addresses: Comma separated list of addresses to return (e.g. 1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx,1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx)
- :param int cursor: The last transaction index to return (e.g. 2736469)
+ :param str addresses: Comma separated list of addresses to return (e.g. $ADDRESS_1,$ADDRESS_2)
+ :param str cursor: The last transaction index to return (e.g. $LAST_TX_INDEX)
:param int limit: The maximum number of transactions to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -398,7 +396,7 @@ def get_transactions_by_addresses(
def get_transaction_by_hash(db, tx_hash: str):
"""
Returns a transaction by its hash.
- :param tx_hash: The hash of the transaction (e.g. 876a6cfbd4aa22ba4fa85c2e1953a1c66649468a43a961ad16ea4d5329e3e4c5)
+ :param tx_hash: The hash of the transaction (e.g. $LAST_TX_HASH)
"""
return select_row(
db,
@@ -410,7 +408,7 @@ def get_transaction_by_hash(db, tx_hash: str):
def get_transaction_by_tx_index(db, tx_index: int):
"""
Returns a transaction by its index.
- :param tx_index: The index of the transaction (e.g. 10000)
+ :param tx_index: The index of the transaction (e.g. $LAST_TX_INDEX)
"""
return select_row(
db,
@@ -420,12 +418,12 @@ def get_transaction_by_tx_index(db, tx_index: int):
def get_all_events(
- db, event_name: str = None, cursor: int = None, limit: int = 100, offset: int = None
+ db, event_name: str = None, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns all events
:param str event_name: Comma separated list of events to return
- :param int cursor: The last event index to return (e.g. 10665092)
+ :param str cursor: The last event index to return (e.g. $LAST_EVENT_INDEX)
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -448,15 +446,15 @@ def get_events_by_block(
db,
block_index: int,
event_name: str = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the events of a block
- :param int block_index: The index of the block to return (e.g. 840464)
+ :param int block_index: The index of the block to return (e.g. $LAST_EVENT_BLOCK)
:param str event_name: Comma separated list of events to return
- :param int cursor: The last event index to return (e.g. 10665092)
+ :param str cursor: The last event index to return (e.g. $LAST_EVENT_INDEX)
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -479,15 +477,15 @@ def get_events_by_transaction_hash(
db,
tx_hash: str,
event_name: str = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the events of a transaction
- :param str tx_hash: The hash of the transaction to return (e.g. 84b34b19d971adc2ad2dc6bfc5065ca976db1488f207df4887da976fbf2fd040)
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_EVENT_TX_HASH)
:param str event_name: Comma separated list of events to return
- :param int cursor: The last event index to return (e.g. 10665092)
+ :param str cursor: The last event index to return (e.g. $LAST_EVENT_INDEX)
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -507,13 +505,13 @@ def get_events_by_transaction_hash(
def get_events_by_transaction_hash_and_event(
- db, tx_hash: str, event: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, tx_hash: str, event: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the events of a transaction
- :param str tx_hash: The hash of the transaction to return (e.g. 84b34b19d971adc2ad2dc6bfc5065ca976db1488f207df4887da976fbf2fd040)
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_EVENT_TX_HASH)
:param str event: The event to filter by (e.g. CREDIT)
- :param int cursor: The last event index to return (e.g. 10665092)
+ :param str cursor: The last event index to return (e.g. $LAST_EVENT_INDEX)
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -533,15 +531,15 @@ def get_events_by_transaction_index(
db,
tx_index: int,
event_name: str = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the events of a transaction
- :param str tx_index: The index of the transaction to return (e.g. 1000)
+ :param str tx_index: The index of the transaction to return (e.g. $LAST_EVENT_TX_INDEX)
:param str event_name: Comma separated list of events to return
- :param int cursor: The last event index to return (e.g. 10665092)
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -559,13 +557,13 @@ def get_events_by_transaction_index(
def get_events_by_transaction_index_and_event(
- db, tx_index: int, event: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, tx_index: int, event: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the events of a transaction
- :param str tx_index: The index of the transaction to return (e.g. 1000)
+ :param str tx_index: The index of the transaction to return (e.g. $LAST_EVENT_TX_INDEX)
:param str event: The event to filter by (e.g. CREDIT)
- :param int cursor: The last event index to return (e.g. 10665092)
+ :param str cursor: The last event index to return (e.g. $LAST_EVENT_INDEX)
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -578,13 +576,13 @@ def get_events_by_transaction_index_and_event(
def get_events_by_block_and_event(
- db, block_index: int, event: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, block_index: int, event: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the events of a block filtered by event
- :param int block_index: The index of the block to return (e.g. 840464)
+ :param int block_index: The index of the block to return (e.g. $LAST_EVENT_BLOCK)
:param str event: The event to filter by (e.g. CREDIT)
- :param int cursor: The last event index to return
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -605,7 +603,7 @@ def get_events_by_block_and_event(
def get_event_by_index(db, event_index: int):
"""
Returns the event of an index
- :param int event_index: The index of the event to return (e.g. 10665092)
+ :param int event_index: The index of the event to return (e.g. $LAST_EVENT_INDEX)
"""
return select_row(
db,
@@ -615,11 +613,11 @@ def get_event_by_index(db, event_index: int):
)
-def get_events_by_name(db, event: str, cursor: int = None, limit: int = 100, offset: int = None):
+def get_events_by_name(db, event: str, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns the events filtered by event name
:param str event: The event to return (e.g. CREDIT)
- :param int cursor: The last event index to return (e.g. 10665092)
+ :param str cursor: The last event index to return (e.g. $LAST_EVENT_INDEX)
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -639,15 +637,15 @@ def get_events_by_addresses(
db,
addresses: str,
event_name: str = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the events of a list of addresses
- :param str addresses: Comma separated list of addresses to return (e.g. 1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V,bc1q5mqesdy0gaj0suzxg4jx7ycmpw66kygdyn80mg)
+ :param str addresses: Comma separated list of addresses to return (e.g. $ADDRESS_1,$ADDRESS_2)
:param str event_name: Comma separated list of events to return
- :param int cursor: The last event index to return (e.g. 17629293)
+ :param str cursor: The last event index to return (e.g. $LAST_EVENT_INDEX)
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -678,12 +676,12 @@ def get_events_by_addresses(
def get_all_mempool_events(
- db, event_name: str = None, cursor: int = None, limit: int = 100, offset: int = None
+ db, event_name: str = None, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns all mempool events
:param str event_name: Comma separated list of events to return
- :param int cursor: The last event index to return
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -697,12 +695,12 @@ def get_all_mempool_events(
def get_mempool_events_by_name(
- db, event: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, event: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the mempool events filtered by event name
- :param str event: The event to return (e.g. OPEN_ORDER)
- :param int cursor: The last event index to return
+ :param str event: The event to return (e.g. CREDIT)
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -722,15 +720,15 @@ def get_mempool_events_by_tx_hash(
db,
tx_hash: str,
event_name: str = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the mempool events filtered by transaction hash
- :param str tx_hash: The hash of the transaction to return (e.g. 84b34b19d971adc2ad2dc6bfc5065ca976db1488f207df4887da976fbf2fd040)
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_MEMPOOL_TX_HASH)
:param str event_name: Comma separated list of events to return
- :param int cursor: The last event index to return
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -743,11 +741,11 @@ def get_mempool_events_by_tx_hash(
)
-def get_mempool_events_by_addresses(db, addresses: str, cursor: int = None, limit: int = 100):
+def get_mempool_events_by_addresses(db, addresses: str, cursor: str = None, limit: int = 100):
"""
Returns the mempool events of a list of addresses
- :param str addresses: Comma separated list of addresses to return (e.g. 1EC2K34dNc41pk63rc7bMQjbndqfoqQg4V,bc1q5mqesdy0gaj0suzxg4jx7ycmpw66kygdyn80mg)
- :param int cursor: The last event index to return
+ :param str addresses: Comma separated list of addresses to return (e.g. $ADDRESS_3,$ADDRESS_4)
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
"""
where = []
@@ -770,8 +768,8 @@ def get_event_counts_by_block(
):
"""
Returns the event counts of a block
- :param int block_index: The index of the block to return (e.g. 840464)
- :param int cursor: The last event index to return
+ :param int block_index: The index of the block to return (e.g. $LAST_BLOCK_INDEX)
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -804,7 +802,7 @@ def get_event_count(db, event: str):
def get_all_events_counts(db, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns the event counts of all blocks
- :param int cursor: The last event index to return
+ :param str cursor: The last event index to return
:param int limit: The maximum number of events to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -824,15 +822,15 @@ def get_credits_by_block(
db,
block_index: int,
action: CreditAction = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the credits of a block
- :param int block_index: The index of the block to return (e.g. 840464)
+ :param int block_index: The index of the block to return (e.g. $LAST_CREDIT_BLOCK)
:param str action: The action to filter by
- :param int cursor: The last credit index to return
+ :param str cursor: The last credit index to return
:param int limit: The maximum number of credits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -853,21 +851,22 @@ def get_credits_by_address(
db,
address: str,
action: CreditAction = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the credits of an address
- :param str address: The address to return (e.g. 1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs)
+ :param str address: The address to return (e.g. $ADDRESS_1)
:param str action: The action to filter by
- :param int cursor: The last index of the credits to return
+ :param str cursor: The last index of the credits to return
:param int limit: The maximum number of credits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
- where = {"address": address, "quantity__gt": 0}
+ where = [{"address": address, "quantity__gt": 0}, {"utxo_address": address, "quantity__gt": 0}]
if action:
- where["calling_function"] = action
+ where[0]["calling_function"] = action
+ where[1]["calling_function"] = action
return select_rows(db, "credits", where=where, last_cursor=cursor, limit=limit, offset=offset)
@@ -875,15 +874,15 @@ def get_credits_by_asset(
db,
asset: str,
action: CreditAction = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the credits of an asset
- :param str asset: The asset to return (e.g. UNNEGOTIABLE)
+ :param str asset: The asset to return (e.g. $ASSET_1)
:param str action: The action to filter by
- :param int cursor: The last index of the credits to return
+ :param str cursor: The last index of the credits to return
:param int limit: The maximum number of credits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -897,15 +896,15 @@ def get_debits_by_block(
db,
block_index: int,
action: DebitAction = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the debits of a block
- :param int block_index: The index of the block to return (e.g. 840464)
+ :param int block_index: The index of the block to return (e.g. $LAST_DEBIT_BLOCK)
:param str action: The action to filter by
- :param int cursor: The last index of the debits to return
+ :param str cursor: The last index of the debits to return
:param int limit: The maximum number of debits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -926,21 +925,22 @@ def get_debits_by_address(
db,
address: str,
action: DebitAction = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the debits of an address
- :param str address: The address to return (e.g. bc1q7787j6msqczs58asdtetchl3zwe8ruj57p9r9y)
+ :param str address: The address to return (e.g. $ADDRESS_1)
:param str action: The action to filter by
- :param int cursor: The last index of the debits to return
+ :param str cursor: The last index of the debits to return
:param int limit: The maximum number of debits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
- where = {"address": address, "quantity__gt": 0}
+ where = [{"address": address, "quantity__gt": 0}, {"utxo_address": address, "quantity__gt": 0}]
if action:
- where["action"] = action
+ where[0]["action"] = action
+ where[1]["action"] = action
return select_rows(db, "debits", where=where, last_cursor=cursor, limit=limit, offset=offset)
@@ -948,7 +948,7 @@ def get_debits_by_asset(
db,
asset: str,
action: DebitAction = None,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
@@ -956,7 +956,7 @@ def get_debits_by_asset(
Returns the debits of an asset
:param str asset: The asset to return (e.g. XCP)
:param str action: The action to filter by
- :param int cursor: The last index of the debits to return
+ :param str cursor: The last index of the debits to return
:param int limit: The maximum number of debits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -966,10 +966,10 @@ def get_debits_by_asset(
return select_rows(db, "debits", where=where, last_cursor=cursor, limit=limit, offset=offset)
-def get_sends(db, cursor: int = None, limit: int = 100, offset: int = None):
+def get_sends(db, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns all the sends include Enhanced and MPMA sends
- :param int cursor: The last index of the debits to return
+ :param str cursor: The last index of the debits to return
:param int limit: The maximum number of debits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -983,12 +983,12 @@ def get_sends(db, cursor: int = None, limit: int = 100, offset: int = None):
def get_sends_by_block(
- db, block_index: int, cursor: int = None, limit: int = 100, offset: int = None
+ db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the sends, include Enhanced and MPMA sends, of a block
- :param int block_index: The index of the block to return (e.g. 840459)
- :param int cursor: The last index of the debits to return
+ :param int block_index: The index of the block to return (e.g. $LAST_SEND_BLOCK)
+ :param str cursor: The last index of the debits to return
:param int limit: The maximum number of debits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1003,12 +1003,12 @@ def get_sends_by_block(
def get_sends_by_transaction_hash(
- db, tx_hash: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, tx_hash: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the sends, include Enhanced and MPMA sends, of a block
- :param str tx_hash: The hash of the transaction to return (e.g. c7497d0c427083df81a884ff39e282e176943a436a82f4c0a0878afdc601229f)
- :param int cursor: The last index of the debits to return
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_SEND_TX_HASH)
+ :param str cursor: The last index of the debits to return
:param int limit: The maximum number of debits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1022,11 +1022,11 @@ def get_sends_by_transaction_hash(
)
-def get_sends_by_asset(db, asset: str, cursor: int = None, limit: int = 100, offset: int = None):
+def get_sends_by_asset(db, asset: str, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns the sends, include Enhanced and MPMA sends, of an asset
:param str asset: The asset to return (e.g. XCP)
- :param int cursor: The last index of the debits to return
+ :param str cursor: The last index of the debits to return
:param int limit: The maximum number of debits to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1038,8 +1038,8 @@ def get_sends_by_asset(db, asset: str, cursor: int = None, limit: int = 100, off
def get_expirations(db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns the expirations of a block
- :param int block_index: The index of the block to return (e.g. 840356)
- :param int cursor: The last index of the expirations to return
+ :param int block_index: The index of the block to return (e.g. $LAST_ORDER_EXPIRATION_BLOCK)
+ :param str cursor: The last index of the expirations to return
:param int limit: The maximum number of expirations to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1053,11 +1053,11 @@ def get_expirations(db, block_index: int, cursor: str = None, limit: int = 100,
)
-def get_cancels(db, block_index: int, cursor: int = None, limit: int = 100, offset: int = None):
+def get_cancels(db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns the cancels of a block
- :param int block_index: The index of the block to return (e.g. 839746)
- :param int cursor: The last index of the cancels to return
+ :param int block_index: The index of the block to return (e.g. $LAST_CANCEL_BLOCK)
+ :param str cursor: The last index of the cancels to return
:param int limit: The maximum number of cancels to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1072,12 +1072,12 @@ def get_cancels(db, block_index: int, cursor: int = None, limit: int = 100, offs
def get_destructions(
- db, block_index: int, cursor: int = None, limit: int = 100, offset: int = None
+ db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the destructions of a block
- :param int block_index: The index of the block to return (e.g. 839988)
- :param int cursor: The last index of the destructions to return
+ :param int block_index: The index of the block to return (e.g. $LAST_DESTRUCTION_BLOCK)
+ :param str cursor: The last index of the destructions to return
:param int limit: The maximum number of destructions to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1091,16 +1091,17 @@ def get_destructions(
)
-def get_issuances(db, cursor: int = None, limit: int = 100, offset: int = None):
+def get_issuances(db, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns all the issuances
- :param int cursor: The last index of the issuances to return
+ :param str cursor: The last index of the issuances to return
:param int limit: The maximum number of issuances to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_rows(
db,
"issuances",
+ where={"status": "valid"},
last_cursor=cursor,
limit=limit,
offset=offset,
@@ -1108,19 +1109,19 @@ def get_issuances(db, cursor: int = None, limit: int = 100, offset: int = None):
def get_issuances_by_block(
- db, block_index: int, cursor: int = None, limit: int = 100, offset: int = None
+ db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the issuances of a block
- :param int block_index: The index of the block to return (e.g. 840464)
- :param int cursor: The last index of the issuances to return
+ :param int block_index: The index of the block to return (e.g. $LAST_ISSUANCE_BLOCK)
+ :param str cursor: The last index of the issuances to return
:param int limit: The maximum number of issuances to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_rows(
db,
"issuances",
- where={"block_index": block_index},
+ where={"block_index": block_index, "status": "valid"},
last_cursor=cursor,
limit=limit,
offset=offset,
@@ -1130,25 +1131,28 @@ def get_issuances_by_block(
def get_issuance_by_transaction_hash(db, tx_hash: str):
"""
Returns the issuances of a block
- :param str tx_hash: The hash of the transaction to return (e.g. 54cb76d13f9e496294abdf40e87fa266e4cc040219b76c67fa819eaaaee4195a)
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_ISSUANCE_TX_HASH)
"""
return select_row(db, "issuances", where={"tx_hash": tx_hash})
def get_issuances_by_asset(
- db, asset: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, asset: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the issuances of an asset
- :param str asset: The asset to return (e.g. UNNEGOTIABLE)
- :param int cursor: The last index of the issuances to return
+ :param str asset: The asset to return (e.g. $ASSET_1)
+ :param str cursor: The last index of the issuances to return
:param int limit: The maximum number of issuances to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_rows(
db,
"issuances",
- where=[{"asset": asset.upper()}, {"UPPER(asset_longname)": asset.upper()}],
+ where=[
+ {"asset": asset.upper(), "status": "valid"},
+ {"UPPER(asset_longname)": asset.upper(), "status": "valid"},
+ ],
last_cursor=cursor,
limit=limit,
offset=offset,
@@ -1156,24 +1160,29 @@ def get_issuances_by_asset(
def get_issuances_by_address(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the issuances of an address
- :param str address: The address to return (e.g. 178etygrwEeeyQso9we85rUqYZbkiqzL4A)
- :param int cursor: The last index of the issuances to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last index of the issuances to return
:param int limit: The maximum number of issuances to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_rows(
- db, "issuances", where={"issuer": address}, last_cursor=cursor, limit=limit, offset=offset
+ db,
+ "issuances",
+ where={"issuer": address, "status": "valid"},
+ last_cursor=cursor,
+ limit=limit,
+ offset=offset,
)
-def get_dispenses(db, cursor: int = None, limit: int = 100, offset: int = None):
+def get_dispenses(db, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns all the dispenses
- :param int cursor: The last index of the dispenses to return
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1187,12 +1196,12 @@ def get_dispenses(db, cursor: int = None, limit: int = 100, offset: int = None):
def get_dispenses_by_block(
- db, block_index: int, cursor: int = None, limit: int = 100, offset: int = None
+ db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of a block
- :param int block_index: The index of the block to return (e.g. 840322)
- :param int cursor: The last index of the dispenses to return
+ :param int block_index: The index of the block to return (e.g. $LAST_DISPENSE_BLOCK)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1207,12 +1216,12 @@ def get_dispenses_by_block(
def get_dispenses_by_transaction_hash(
- db, tx_hash: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, tx_hash: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of a block
- :param str tx_hash: The hash of the transaction to return (e.g. 5a7e6a0f8bbff69f5e6fefa75eb919b913649a14e68cca41af38737f49e5be92)
- :param int cursor: The last index of the dispenses to return
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_DISPENSE_TX_HASH)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1227,12 +1236,12 @@ def get_dispenses_by_transaction_hash(
def get_dispenses_by_dispenser(
- db, dispenser_hash: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, dispenser_hash: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of a dispenser
- :param str dispenser_hash: The hash of the dispenser to return (e.g. 753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a)
- :param int cursor: The last index of the dispenses to return
+ :param str dispenser_hash: The hash of the dispenser to return (e.g. $DISPENSER_TX_HASH_1)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1247,12 +1256,12 @@ def get_dispenses_by_dispenser(
def get_dispenses_by_source(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of a source
- :param str address: The address to return (e.g. bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2)
- :param int cursor: The last index of the dispenses to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1262,12 +1271,12 @@ def get_dispenses_by_source(
def get_dispenses_by_destination(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of a destination
- :param str address: The address to return (e.g. bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj)
- :param int cursor: The last index of the dispenses to return
+ :param str address: The address to return (e.g. $ADDRESS_2)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1282,12 +1291,12 @@ def get_dispenses_by_destination(
def get_dispenses_by_asset(
- db, asset: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, asset: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of an asset
- :param str asset: The asset to return (e.g. FLOCK)
- :param int cursor: The last index of the dispenses to return
+ :param str asset: The asset to return (e.g. XCP)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1302,13 +1311,13 @@ def get_dispenses_by_asset(
def get_dispenses_by_source_and_asset(
- db, address: str, asset: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, asset: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of an address and an asset
- :param str address: The address to return (e.g. bc1qq735dv8peps2ayr3qwwwdwylq4ddwcgrpyg9r2)
- :param str asset: The asset to return (e.g. FLOCK)
- :param int cursor: The last index of the dispenses to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str asset: The asset to return (e.g. XCP)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1323,13 +1332,13 @@ def get_dispenses_by_source_and_asset(
def get_dispenses_by_destination_and_asset(
- db, address: str, asset: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, asset: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dispenses of an address and an asset
- :param str address: The address to return (e.g. bc1qzcdkhnexpjc8wvkyrpyrsn0f5xzcpu877mjmgj)
- :param str asset: The asset to return (e.g. FLOCK)
- :param int cursor: The last index of the dispenses to return
+ :param str address: The address to return (e.g. $ADDRESS_2)
+ :param str asset: The asset to return (e.g. XCP)
+ :param str cursor: The last index of the dispenses to return
:param int limit: The maximum number of dispenses to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1343,10 +1352,10 @@ def get_dispenses_by_destination_and_asset(
)
-def get_sweeps(db, cursor: int = None, limit: int = 100, offset: int = None):
+def get_sweeps(db, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns all sweeps
- :param int cursor: The last index of the sweeps to return
+ :param str cursor: The last index of the sweeps to return
:param int limit: The maximum number of sweeps to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1360,12 +1369,12 @@ def get_sweeps(db, cursor: int = None, limit: int = 100, offset: int = None):
def get_sweeps_by_block(
- db, block_index: int, cursor: int = None, limit: int = 100, offset: int = None
+ db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the sweeps of a block
- :param int block_index: The index of the block to return (e.g. 836519)
- :param int cursor: The last index of the sweeps to return
+ :param int block_index: The index of the block to return (e.g. $LAST_SWEEP_BLOCK)
+ :param str cursor: The last index of the sweeps to return
:param int limit: The maximum number of sweeps to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1382,7 +1391,7 @@ def get_sweeps_by_block(
def get_sweep_by_transaction_hash(db, tx_hash: str):
"""
Returns the sweeps of a transaction
- :param str tx_hash: The hash of the transaction to return (e.g. 8cacf853c989393ce21e05e286958a3c650b94ac6f92807114552e1492e9c937)
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_SWEEP_TX_HASH)
"""
return select_rows(
db,
@@ -1392,12 +1401,12 @@ def get_sweep_by_transaction_hash(db, tx_hash: str):
def get_sweeps_by_address(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the sweeps of an address
- :param str address: The address to return (e.g. 18szqTVJUWwYrtRHq98Wn4DhCGGiy3jZ87)
- :param int cursor: The last index of the sweeps to return
+ :param str address: The address to return (e.g. $ADDRESS_3)
+ :param str cursor: The last index of the sweeps to return
:param int limit: The maximum number of sweeps to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1407,12 +1416,12 @@ def get_sweeps_by_address(
def get_address_balances(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None, sort: str = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None, sort: str = None
):
"""
Returns the balances of an address
- :param str address: The address to return (e.g. 1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs)
- :param int cursor: The last index of the balances to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last index of the balances to return
:param int limit: The maximum number of balances to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
:param str sort: The sort order of the balances to return (overrides the `cursor` parameter) (e.g. quantity:desc)
@@ -1420,22 +1429,25 @@ def get_address_balances(
return select_rows(
db,
"balances",
- where={"address": address, "quantity__gt": 0},
+ where=[
+ {"address": address, "quantity__gt": 0},
+ {"utxo_address": address, "quantity__gt": 0},
+ ],
last_cursor=cursor,
limit=limit,
offset=offset,
- select="address, asset, quantity",
+ select="address, asset, quantity, utxo, utxo_address",
sort=sort,
)
def get_balances_by_addresses(
- db, addresses: str, cursor: int = None, limit: int = 100, offset: int = None, sort: str = None
+ db, addresses: str, cursor: str = None, limit: int = 100, offset: int = None, sort: str = None
):
"""
Returns the balances of several addresses
- :param str addresses: Comma separated list of addresses (e.g. 1m8vd7FPHtS8fu6NQduCibfjCt3T8UPoz,1fUcHBfCgVqNwFmECZ2SSjKBvnFfWbKbr)
- :param int cursor: The last index of the balances to return
+ :param str addresses: Comma separated list of addresses (e.g. $ADDRESS_1,$ADDRESS_2)
+ :param str cursor: The last index of the balances to return
:param int limit: The maximum number of balances to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
:param str sort: The sort order of the balances to return (overrides the `cursor` parameter) (e.g. quantity:desc)
@@ -1444,7 +1456,10 @@ def get_balances_by_addresses(
db,
"balances",
select="DISTINCT asset AS asset",
- where={"address__in": addresses.split(","), "quantity__gt": 0},
+ where=[
+ {"address__in": addresses.split(","), "quantity__gt": 0},
+ {"utxo_address__in": addresses.split(","), "quantity__gt": 0},
+ ],
order="ASC",
cursor_field="asset",
last_cursor=cursor,
@@ -1456,8 +1471,11 @@ def get_balances_by_addresses(
balances = select_rows(
db,
"balances",
- where={"address__in": addresses.split(","), "asset__in": assets, "quantity__gt": 0},
- select="address, asset, quantity",
+ where=[
+ {"address__in": addresses.split(","), "asset__in": assets, "quantity__gt": 0},
+ {"utxo_address__in": addresses.split(","), "asset__in": assets, "quantity__gt": 0},
+ ],
+ select="address, asset, quantity, utxo, utxo_address",
order="ASC",
cursor_field="asset",
sort=sort,
@@ -1482,6 +1500,8 @@ def get_balances_by_addresses(
current_balances["addresses"].append(
{
"address": balance["address"],
+ "utxo": balance["utxo"],
+ "utxo_address": balance["utxo_address"],
"quantity": balance["quantity"],
}
)
@@ -1493,24 +1513,27 @@ def get_balances_by_addresses(
def get_balance_by_address_and_asset(db, address: str, asset: str):
"""
Returns the balance of an address and asset
- :param str address: The address to return (e.g. 1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs)
+ :param str address: The address to return (e.g. $ADDRESS_1)
:param str asset: The asset to return (e.g. XCP)
"""
return select_row(
db,
"balances",
- select="address, asset, quantity",
- where={"address": address, "asset": asset.upper()},
+ select="address, asset, quantity, utxo, utxo_address",
+ where=[
+ {"address": address, "asset": asset.upper()},
+ {"utxo_address": address, "asset": asset.upper()},
+ ],
)
def get_bets(
- db, status: BetStatus = "open", cursor: int = None, limit: int = 100, offset: int = None
+ db, status: BetStatus = "open", cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the bets of a feed
:param str status: The status of the bet (e.g. filled)
- :param int cursor: The last index of the bets to return
+ :param str cursor: The last index of the bets to return
:param int limit: The maximum number of bets to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1528,15 +1551,15 @@ def get_bet_by_feed(
db,
address: str,
status: BetStatus = "open",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the bets of a feed
- :param str address: The address of the feed (e.g. 1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk)
+ :param str address: The address of the feed (e.g. $ADDRESS_1)
:param str status: The status of the bet (e.g. filled)
- :param int cursor: The last index of the bets to return
+ :param str cursor: The last index of the bets to return
:param int limit: The maximum number of bets to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1552,13 +1575,13 @@ def get_bet_by_feed(
def get_valid_broadcasts(
db,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns all valid broadcasts
- :param int cursor: The last index of the broadcasts to return
+ :param str cursor: The last index of the broadcasts to return
:param int limit: The maximum number of broadcasts to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1576,14 +1599,14 @@ def get_valid_broadcasts(
def get_broadcasts_by_source(
db,
address: str,
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the broadcasts of a source
- :param str address: The address to return (e.g. 1QKEpuxEmdp428KEBSDZAKL46noSXWJBkk)
- :param int cursor: The last index of the broadcasts to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last index of the broadcasts to return
:param int limit: The maximum number of broadcasts to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1601,7 +1624,7 @@ def get_broadcasts_by_source(
def get_broadcast_by_transaction_hash(db, tx_hash: str):
"""
Returns the broadcast of a transaction
- :param str tx_hash: The hash of the transaction to return (e.g. 916944b5ae39289615ea55c91ada4605300d6213edf131db3913cf42f0f1b717)
+ :param str tx_hash: The hash of the transaction to return (e.g. $LAST_BROADCAST_TX_HASH)
"""
return select_row(
db,
@@ -1611,12 +1634,12 @@ def get_broadcast_by_transaction_hash(db, tx_hash: str):
def get_burns_by_address(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the burns of an address
- :param str address: The address to return (e.g. 1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W)
- :param int cursor: The last index of the burns to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last index of the burns to return
:param int limit: The maximum number of burns to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1626,12 +1649,12 @@ def get_burns_by_address(
def get_sends_by_address(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the sends, include Enhanced and MPMA sends, of an address
- :param str address: The address to return (e.g. 1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W)
- :param int cursor: The last index of the sends to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last index of the sends to return
:param int limit: The maximum number of sends to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1641,13 +1664,13 @@ def get_sends_by_address(
def get_sends_by_address_and_asset(
- db, address: str, asset: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, asset: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the sends, include Enhanced and MPMA sends, of an address and asset
- :param str address: The address to return (e.g. 1HVgrYx3U258KwvBEvuG7R8ss1RN2Z9J1W)
- :param str asset: The asset to return (e.g. XCP)
- :param int cursor: The last index of the sends to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str asset: The asset to return (e.g. $ASSET_5)
+ :param str cursor: The last index of the sends to return
:param int limit: The maximum number of sends to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1662,12 +1685,12 @@ def get_sends_by_address_and_asset(
def get_receive_by_address(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the receives of an address
- :param str address: The address to return (e.g. 1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs)
- :param int cursor: The last index of the sends to return
+ :param str address: The address to return (e.g. $ADDRESS_5)
+ :param str cursor: The last index of the sends to return
:param int limit: The maximum number of sends to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1677,13 +1700,13 @@ def get_receive_by_address(
def get_receive_by_address_and_asset(
- db, address: str, asset: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, asset: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the receives of an address and asset
- :param str address: The address to return (e.g. 1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs)
- :param str asset: The asset to return (e.g. XCP)
- :param int cursor: The last index of the sends to return
+ :param str address: The address to return (e.g. $ADDRESS_5)
+ :param str asset: The asset to return (e.g. $ASSET_5)
+ :param str cursor: The last index of the sends to return
:param int limit: The maximum number of sends to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1697,28 +1720,34 @@ def get_receive_by_address_and_asset(
)
-def preprare_dispenser_where(status, other_conditions=None):
+def prepare_dispenser_where(status, other_conditions=None):
where = []
statuses = status.split(",")
- for status in statuses:
- if status == "all":
+ for s in statuses:
+ if s.isdigit():
+ s = DispenserStatusNumberInverted.get(int(s), "all") # noqa: PLW2901
+
+ if s == "all":
where = other_conditions or {}
break
- if status in DispenserStatusNumber:
- where_status = {"status": DispenserStatusNumber[status]}
+
+ if s in DispenserStatusNumber:
+ where_status = {"status": DispenserStatusNumber[s]}
if other_conditions:
where_status.update(other_conditions)
+
where.append(where_status)
+
return where
def get_dispensers(
- db, status: DispenserStatus = "all", cursor: int = None, limit: int = 100, offset: int = None
+ db, status: DispenserStatus = "all", cursor: str = None, limit: int = 100, offset: int = None
):
"""
- Returns the dispensers of an address
- :param str status: The status of the dispensers to return (e.g. open)
- :param int cursor: The last index of the dispensers to return (e.g. 319619)
+ Returns all dispensers
+ :param str status: The status of the dispensers to return
+ :param str cursor: The last index of the dispensers to return
:param int limit: The maximum number of dispensers to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1726,7 +1755,7 @@ def get_dispensers(
return select_rows(
db,
"dispensers",
- where=preprare_dispenser_where(status),
+ where=prepare_dispenser_where(status),
last_cursor=cursor,
limit=limit,
offset=offset,
@@ -1737,22 +1766,22 @@ def get_dispensers_by_address(
db,
address: str,
status: DispenserStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the dispensers of an address
- :param str address: The address to return (e.g. bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz)
- :param str status: The status of the dispensers to return (e.g. open)
- :param int cursor: The last index of the dispensers to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str status: The status of the dispensers to return
+ :param str cursor: The last index of the dispensers to return
:param int limit: The maximum number of dispensers to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_rows(
db,
"dispensers",
- where=preprare_dispenser_where(status, {"source": address}),
+ where=prepare_dispenser_where(status, {"source": address}),
last_cursor=cursor,
limit=limit,
offset=offset,
@@ -1763,22 +1792,22 @@ def get_dispensers_by_asset(
db,
asset: str,
status: DispenserStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the dispensers of an asset
- :param str asset: The asset to return (e.g. ERYKAHPEPU)
- :param str status: The status of the dispensers to return (e.g. open)
- :param int cursor: The last index of the dispensers to return
+ :param str asset: The asset to return (e.g. XCP)
+ :param str status: The status of the dispensers to return
+ :param str cursor: The last index of the dispensers to return
:param int limit: The maximum number of dispensers to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_rows(
db,
"dispensers",
- where=preprare_dispenser_where(status, {"asset": asset.upper()}),
+ where=prepare_dispenser_where(status, {"asset": asset.upper()}),
last_cursor=cursor,
limit=limit,
offset=offset,
@@ -1788,8 +1817,8 @@ def get_dispensers_by_asset(
def get_dispenser_by_address_and_asset(db, address: str, asset: str):
"""
Returns the dispenser of an address and an asset
- :param str address: The address to return (e.g. bc1qlzkcy8c5fa6y6xvd8zn4axnvmhndfhku3hmdpz)
- :param str asset: The asset to return (e.g. ERYKAHPEPU)
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str asset: The asset to return (e.g. XCP)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
return select_row(
@@ -1805,7 +1834,7 @@ def get_valid_assets(
"""
Returns the valid assets
:param bool named: Whether to return only named assets (e.g. true)
- :param int cursor: The last index of the assets to return
+ :param str cursor: The last index of the assets to return
:param int limit: The maximum number of assets to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1829,7 +1858,7 @@ def get_valid_assets(
def get_asset(db, asset: str):
"""
Returns an asset by its name
- :param str asset: The name of the asset to return (e.g. PEPECASH)
+ :param str asset: The name of the asset to return (e.g. $ASSET_1)
"""
where = [{"asset": asset.upper()}, {"UPPER(asset_longname)": asset.upper()}]
return select_row(
@@ -1844,8 +1873,8 @@ def get_subassets_by_asset(
):
"""
Returns asset subassets
- :param str asset: The name of the asset to return (e.g. XCPTORCH)
- :param int cursor: The last index of the assets to return
+ :param str asset: The name of the asset to return (e.g. $ASSET_7)
+ :param str cursor: The last index of the assets to return
:param int limit: The maximum number of assets to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1865,9 +1894,9 @@ def get_valid_assets_by_issuer(
):
"""
Returns the valid assets of an issuer
- :param str address: The issuer to return (e.g. 1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD)
+ :param str address: The issuer to return (e.g. $ADDRESS_1)
:param bool named: Whether to return only named assets (e.g. true)
- :param int cursor: The last index of the assets to return
+ :param str cursor: The last index of the assets to return
:param int limit: The maximum number of assets to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1888,10 +1917,10 @@ def get_valid_assets_by_issuer(
)
-def get_dividends(db, cursor: int = None, limit: int = 100, offset: int = None):
+def get_dividends(db, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns all the dividends
- :param int cursor: The last index of the dividend to return
+ :param str cursor: The last index of the dividend to return
:param int limit: The maximum number of dividend to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1911,7 +1940,7 @@ def get_dividends(db, cursor: int = None, limit: int = 100, offset: int = None):
def get_dividend(db, dividend_hash: str):
"""
Returns a dividend by its hash
- :param str dividend_hash: The hash of the dividend to return (e.g. d74242f4789f98c0ff6df44fe21a2cf614f02e694c1e34f1193d3a8f35cc01a0)
+ :param str dividend_hash: The hash of the dividend to return (e.g. $LAST_DIVIDEND_TX_HASH)
"""
return select_row(
db,
@@ -1921,12 +1950,12 @@ def get_dividend(db, dividend_hash: str):
def get_dividends_by_asset(
- db, asset: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, asset: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dividends of an asset
- :param str asset: The asset to return (e.g. GMONEYPEPE)
- :param int cursor: The last index of the dividend to return
+ :param str asset: The asset to return (e.g. $ASSET_5)
+ :param str cursor: The last index of the dividend to return
:param int limit: The maximum number of dividend to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1941,12 +1970,12 @@ def get_dividends_by_asset(
def get_dividends_distributed_by_address(
- db, address: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the dividends distributed by an address
- :param str address: The address to return (e.g. 1PHnxfHgojebxzW6muz8zfbE4bkDtbEudx)
- :param int cursor: The last index of the assets to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str cursor: The last index of the assets to return
:param int limit: The maximum number of assets to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1961,12 +1990,12 @@ def get_dividends_distributed_by_address(
def get_dividend_disribution(
- db, dividend_hash: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, dividend_hash: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns a dividend distribution by its hash
- :param str dividend_hash: The hash of the dividend distribution to return (e.g. 54b424bf80622a879fdc76f83308b76b9279154d5f75da8c558fec16d04c9968)
- :param int cursor: The last index of the credit to return
+ :param str dividend_hash: The hash of the dividend distribution to return (e.g. $LAST_DIVIDEND_TX_HASH)
+ :param str cursor: The last index of the credit to return
:param int limit: The maximum number of credit to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -1985,8 +2014,8 @@ def get_asset_balances(
):
"""
Returns the asset balances
- :param str asset: The asset to return (e.g. UNNEGOTIABLE)
- :param int cursor: The last index of the balances to return
+ :param str asset: The asset to return (e.g. $ASSET_1)
+ :param str cursor: The last index of the balances to return
:param int limit: The maximum number of balances to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
:param str sort: The sort order of the balances to return (overrides the `cursor` parameter) (e.g. quantity:desc)
@@ -1995,8 +2024,8 @@ def get_asset_balances(
db,
"balances",
where={"asset": asset.upper(), "quantity__gt": 0},
- cursor_field="address",
- select="address, asset, quantity",
+ # cursor_field="address, utxo",
+ select="address, utxo, utxo_address, asset, quantity",
order="ASC",
last_cursor=cursor,
limit=limit,
@@ -2029,12 +2058,12 @@ def prepare_order_matches_where(status, other_conditions=None):
def get_orders(
- db, status: OrderStatus = "all", cursor: int = None, limit: int = 100, offset: int = None
+ db, status: OrderStatus = "all", cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns all the orders
- :param str status: The status of the orders to return (e.g. filled)
- :param int cursor: The last index of the orders to return
+ :param str status: The status of the orders to return
+ :param str cursor: The last index of the orders to return
:param int limit: The maximum number of orders to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2053,15 +2082,15 @@ def get_orders_by_asset(
db,
asset: str,
status: OrderStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the orders of an asset
- :param str asset: The asset to return (e.g. NEEDPEPE)
- :param str status: The status of the orders to return (e.g. filled)
- :param int cursor: The last index of the orders to return
+ :param str asset: The asset to return (e.g. XCP)
+ :param str status: The status of the orders to return
+ :param str cursor: The last index of the orders to return
:param int limit: The maximum number of orders to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2084,15 +2113,15 @@ def get_orders_by_address(
db,
address: str,
status: OrderStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the orders of an address
- :param str address: The address to return (e.g. 1H875qrfLT3USeA1zDhngDMtb7VsmAdL8c)
- :param str status: The status of the orders to return (e.g. filled)
- :param int cursor: The last index of the orders to return
+ :param str address: The address to return (e.g. $ADDRESS_1)
+ :param str status: The status of the orders to return
+ :param str cursor: The last index of the orders to return
:param int limit: The maximum number of orders to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2112,16 +2141,16 @@ def get_orders_by_two_assets(
asset1: str,
asset2: str,
status: OrderStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the orders to exchange two assets
- :param str asset1: The first asset to return (e.g. NEEDPEPE)
+ :param str asset1: The first asset to return (e.g. BTC)
:param str asset2: The second asset to return (e.g. XCP)
- :param str status: The status of the orders to return (e.g. filled)
- :param int cursor: The last index of the orders to return
+ :param str status: The status of the orders to return
+ :param str cursor: The last index of the orders to return
:param int limit: The maximum number of orders to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2151,8 +2180,8 @@ def get_orders_by_two_assets(
def get_asset_holders(db, asset: str, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns the holders of an asset
- :param str asset: The asset to return (e.g. ERYKAHPEPU)
- :param int cursor: The last index of the holder to return
+ :param str asset: The asset to return (e.g. $ASSET_1)
+ :param str cursor: The last index of the holder to return
:param int limit: The maximum number of holders to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2172,7 +2201,7 @@ def get_asset_holders(db, asset: str, cursor: str = None, limit: int = 100, offs
def get_order(db, order_hash: str):
"""
Returns the information of an order
- :param str order_hash: The hash of the transaction that created the order (e.g. 23f68fdf934e81144cca31ce8ef69062d553c521321a039166e7ba99aede0776)
+ :param str order_hash: The hash of the transaction that created the order (e.g. $LAST_ORDER_TX_HASH)
"""
return select_row(
db,
@@ -2181,19 +2210,39 @@ def get_order(db, order_hash: str):
)
+def get_all_order_matches(
+ db, status: OrderMatchesStatus = "all", cursor: str = None, limit: int = 100, offset: int = None
+):
+ """
+ Returns all the order matches
+ :param str status: The status of the order matches to return
+ :param str cursor: The last index of the order matches to return
+ :param int limit: The maximum number of order matches to return (e.g. 5)
+ :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
+ """
+ return select_rows(
+ db,
+ "order_matches",
+ where=prepare_order_matches_where(status),
+ last_cursor=cursor,
+ limit=limit,
+ offset=offset,
+ )
+
+
def get_order_matches_by_order(
db,
order_hash: str,
status: OrderMatchesStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the order matches of an order
- :param str order_hash: The hash of the transaction that created the order (e.g. 5461e6f99a37a7167428b4a720a52052cd9afed43905f818f5d7d4f56abd0947)
- :param str status: The status of the order matches to return (e.g. completed)
- :param int cursor: The last index of the order matches to return
+ :param str order_hash: The hash of the transaction that created the order (e.g. $ORDER_WITH_MATCH_HASH)
+ :param str status: The status of the order matches to return
+ :param str cursor: The last index of the order matches to return
:param int limit: The maximum number of order matches to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2214,15 +2263,15 @@ def get_order_matches_by_asset(
db,
asset: str,
status: OrderMatchesStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the orders of an asset
- :param str asset: The asset to return (e.g. NEEDPEPE)
- :param str status: The status of the order matches to return (e.g. completed)
- :param int cursor: The last index of the order matches to return
+ :param str asset: The asset to return (e.g. XCP)
+ :param str status: The status of the order matches to return
+ :param str cursor: The last index of the order matches to return
:param int limit: The maximum number of order matches to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2245,16 +2294,16 @@ def get_order_matches_by_two_assets(
asset1: str,
asset2: str,
status: OrderMatchesStatus = "all",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
"""
Returns the orders to exchange two assets
- :param str asset1: The first asset to return (e.g. NEEDPEPE)
+ :param str asset1: The first asset to return (e.g. BTC)
:param str asset2: The second asset to return (e.g. XCP)
- :param str status: The status of the order matches to return (e.g. completed)
- :param int cursor: The last index of the order matches to return
+ :param str status: The status of the order matches to return
+ :param str cursor: The last index of the order matches to return
:param int limit: The maximum number of order matches to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2283,12 +2332,12 @@ def get_order_matches_by_two_assets(
def get_btcpays_by_order(
- db, order_hash: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, order_hash: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the BTC pays of an order
- :param str order_hash: The hash of the transaction that created the order (e.g. 299b5b648f54eacb839f3487232d49aea373cdd681b706d4cc0b5e0b03688db4)
- :param int cursor: The last index of the resolutions to return
+ :param str order_hash: The hash of the transaction that created the order (e.g. $ORDER_WITH_BTCPAY_HASH)
+ :param str cursor: The last index of the resolutions to return
:param int limit: The maximum number of resolutions to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2318,7 +2367,7 @@ def get_bet_matches_by_bet(
db,
bet_hash: str,
status: BetMatchesStatus = "pending",
- cursor: int = None,
+ cursor: str = None,
limit: int = 100,
offset: int = None,
):
@@ -2326,7 +2375,7 @@ def get_bet_matches_by_bet(
Returns the bet matches of a bet
:param str bet_hash: The hash of the transaction that created the bet (e.g. 5d097b4729cb74d927b4458d365beb811a26fcee7f8712f049ecbe780eb496ed)
:param str status: The status of the bet matches (e.g. expired)
- :param int cursor: The last index of the bet matches to return
+ :param str cursor: The last index of the bet matches to return
:param int limit: The maximum number of bet matches to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2344,12 +2393,12 @@ def get_bet_matches_by_bet(
def get_resolutions_by_bet(
- db, bet_hash: str, cursor: int = None, limit: int = 100, offset: int = None
+ db, bet_hash: str, cursor: str = None, limit: int = 100, offset: int = None
):
"""
Returns the resolutions of a bet
:param str bet_hash: The hash of the transaction that created the bet (e.g. 36bbbb7dbd85054dac140a8ad8204eda2ee859545528bd2a9da69ad77c277ace)
- :param int cursor: The last index of the resolutions to return
+ :param str cursor: The last index of the resolutions to return
:param int limit: The maximum number of resolutions to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2363,11 +2412,11 @@ def get_resolutions_by_bet(
)
-def get_all_burns(db, cursor: int = None, limit: int = 100, offset: int = None):
+def get_all_burns(db, cursor: str = None, limit: int = 100, offset: int = None):
"""
Returns the burns
:param str status: The status of the burns to return (e.g. valid)
- :param int cursor: The last index of the burns to return
+ :param str cursor: The last index of the burns to return
:param int limit: The maximum number of burns to return (e.g. 5)
:param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
"""
@@ -2379,10 +2428,123 @@ def get_all_burns(db, cursor: int = None, limit: int = 100, offset: int = None):
def get_dispenser_info_by_hash(db, dispenser_hash: str):
"""
Returns the dispenser information by tx_hash
- :param str dispenser_hash: The hash of the dispenser to return (e.g. 753787004d6e93e71f6e0aa1e0932cc74457d12276d53856424b2e4088cc542a)
+ :param str dispenser_hash: The hash of the dispenser to return (e.g. $DISPENSER_TX_HASH_1)
"""
return select_row(
db,
"dispensers",
where={"tx_hash": dispenser_hash},
)
+
+
+def get_all_fairminters(db, cursor: str = None, limit: int = 100, offset: int = None):
+ """
+ Returns all fairminters
+ :param str cursor: The last index of the fairminter to return
+ :param int limit: The maximum number of fairminter to return (e.g. 5)
+ :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter)
+ """
+ return select_rows(db, "fairminters", last_cursor=cursor, limit=limit, offset=offset)
+
+
+def get_fairminter(db, tx_hash: str):
+ """
+ Returns the fairminter by its hash
+ :param str fairminter_hash: The hash of the fairminter to return (e.g. $LAST_FAIRMINTER_TX_HASH)
+ """
+ return select_row(
+ db,
+ "fairminters",
+ where={"tx_hash": tx_hash},
+ )
+
+
+def get_fairminters_by_asset(
+ db, asset: str, cursor: str = None, limit: int = 100, offset: int = None
+):
+ """
+ Returns the fairminter by its asset
+ :param str asset: The asset of the fairminter to return (e.g. $ASSET_1)
+ """
+ where = {"asset": asset.upper()}
+ if "." in asset:
+ where = {"asset_longname": asset.upper()}
+ return select_rows(
+ db, "fairminters", where=where, last_cursor=cursor, limit=limit, offset=offset
+ )
+
+
+def get_fairminters_by_address(
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
+):
+ """
+ Returns the fairminter by its source
+ :param str address: The source of the fairminter to return (e.g. $ADDRESS_1)
+ """
+ return select_rows(
+ db, "fairminters", where={"source": address}, last_cursor=cursor, limit=limit, offset=offset
+ )
+
+
+def get_fairmints_by_fairminter(
+ db, tx_hash: str, cursor: str = None, limit: int = 100, offset: int = None
+):
+ """
+ Returns the mints by fairminter
+ :param str fairminter_hash: The hash of the fairminter to return (e.g. $LAST_FAIRMINTER_TX_HASH)
+ """
+ return select_rows(
+ db,
+ "fairmints",
+ where={"fairminter_tx_hash": tx_hash},
+ last_cursor=cursor,
+ limit=limit,
+ offset=offset,
+ )
+
+
+def get_fairmints_by_address(
+ db, address: str, cursor: str = None, limit: int = 100, offset: int = None
+):
+ """
+ Returns the mints by address
+ :param str address: The address of the mints to return (e.g. $ADDRESS_2)
+ """
+ return select_rows(
+ db, "fairmints", where={"source": address}, last_cursor=cursor, limit=limit, offset=offset
+ )
+
+
+def get_fairmints_by_asset(
+ db, asset: str, cursor: str = None, limit: int = 100, offset: int = None
+):
+ """
+ Returns the mints by asset
+ :param str asset: The asset of the mints to return (e.g. $ASSET_1)
+ """
+ return select_rows(
+ db,
+ "fairmints",
+ where={"asset": asset.upper()},
+ last_cursor=cursor,
+ limit=limit,
+ offset=offset,
+ )
+
+
+def get_fairmints_by_address_and_asset(
+ db, address: str, asset: str, cursor: str = None, limit: int = 100, offset: int = None
+):
+ """
+ Returns the mints by address and asset
+ :param str address: The address of the mints to return (e.g. $ADDRESS_2)
+ :param str asset: The asset of the mints to return (e.g. $ASSET_1)
+ """
+ return select_rows(
+ db,
+ "fairmints",
+ where={"source": address, "asset": asset.upper()},
+ last_cursor=cursor,
+ limit=limit,
+ offset=offset,
+ )
diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py
index b0de353b6f..ec79b1b1c7 100644
--- a/counterparty-core/counterpartycore/lib/api/routes.py
+++ b/counterparty-core/counterpartycore/lib/api/routes.py
@@ -2,6 +2,12 @@
from counterpartycore.lib.api import queries, util
from counterpartycore.lib.backend import addrindexrs, bitcoind
+
+def get_routes():
+ """Return the API routes."""
+ return ROUTES
+
+
# Define the API routes except root (`/`) defined in `api_server.py`
ROUTES = util.prepare_routes(
{
@@ -63,6 +69,9 @@
"/v2/addresses/
/transactions": queries.get_transactions_by_address,
"/v2/addresses//dividends": queries.get_dividends_distributed_by_address,
"/v2/addresses//orders": queries.get_orders_by_address,
+ "/v2/addresses//fairminters": queries.get_fairminters_by_address,
+ "/v2/addresses//fairmints": queries.get_fairmints_by_address,
+ "/v2/addresses//fairmints/": queries.get_fairmints_by_address_and_asset,
### /addresses//compose/ ###
"/v2/addresses//compose/bet": transaction.compose_bet,
"/v2/addresses//compose/broadcast": transaction.compose_broadcast,
@@ -77,6 +86,12 @@
"/v2/addresses//compose/order": transaction.compose_order,
"/v2/addresses//compose/send": transaction.compose_send,
"/v2/addresses//compose/sweep": transaction.compose_sweep,
+ "/v2/addresses//compose/dispense": transaction.compose_dispense,
+ "/v2/addresses//compose/fairminter": transaction.compose_fairminter,
+ "/v2/addresses//compose/fairmint": transaction.compose_fairmint,
+ "/v2/addresses//compose/attach": transaction.compose_attach,
+ "/v2/utxos//compose/detach": transaction.compose_detach,
+ "/v2/utxos//compose/movetoutxo": transaction.compose_movetoutxo,
### /assets ###
"/v2/assets": queries.get_valid_assets,
"/v2/assets/": queries.get_asset,
@@ -94,6 +109,9 @@
"/v2/assets//holders": queries.get_asset_holders,
"/v2/assets//dispenses": queries.get_dispenses_by_asset,
"/v2/assets//subassets": queries.get_subassets_by_asset,
+ "/v2/assets//fairminters": queries.get_fairminters_by_asset,
+ "/v2/assets//fairmints": queries.get_fairmints_by_asset,
+ "/v2/assets//fairmints/": queries.get_fairmints_by_address_and_asset,
### /orders ###
"/v2/orders": queries.get_orders,
"/v2/orders/": queries.get_order,
@@ -101,6 +119,7 @@
"/v2/orders//btcpays": queries.get_btcpays_by_order,
"/v2/orders//": queries.get_orders_by_two_assets,
"/v2/orders///matches": queries.get_order_matches_by_two_assets,
+ "/v2/order_matches": queries.get_all_order_matches,
### /bets ###
"/v2/bets": queries.get_bets,
"/v2/bets/": queries.get_bet,
@@ -135,9 +154,10 @@
### /broadcasts ###
"/v2/broadcasts": queries.get_valid_broadcasts,
"/v2/broadcasts/": queries.get_broadcast_by_transaction_hash,
- ### /healthz ###
- "/v2/healthz": util.check_server_health,
- "/healthz": util.check_server_health,
+ ### /fairminters ###
+ "/v2/fairminters": queries.get_all_fairminters,
+ "/v2/fairminters/": queries.get_fairminter,
+ "/v2/fairminters//mints": queries.get_fairmints_by_fairminter,
### /bitcoin ###
"/v2/bitcoin/addresses/utxos": addrindexrs.get_unspent_txouts_by_addresses,
"/v2/bitcoin/addresses//transactions": addrindexrs.get_transactions_by_address,
@@ -147,10 +167,16 @@
"/v2/bitcoin/transactions/": util.get_transaction,
"/v2/bitcoin/estimatesmartfee": bitcoind.fee_per_kb,
"/v2/bitcoin/transactions": bitcoind.sendrawtransaction,
+ "/v2/bitcoin/getmempoolinfo": bitcoind.get_mempool_info,
### /mempool ###
"/v2/mempool/events": queries.get_all_mempool_events,
"/v2/mempool/events/": queries.get_mempool_events_by_name,
"/v2/mempool/transactions//events": queries.get_mempool_events_by_tx_hash,
+ ### /routes ###
+ "/v2/routes": get_routes,
+ ### /healthz ###
+ "/v2/healthz": util.check_server_health,
+ "/healthz": util.check_server_health,
### API v1 ###
"/": util.redirect_to_rpc_v1,
"/v1/": util.redirect_to_rpc_v1,
diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py
index 7fc28e80e9..e83d2922a3 100644
--- a/counterparty-core/counterpartycore/lib/api/util.py
+++ b/counterparty-core/counterpartycore/lib/api/util.py
@@ -129,7 +129,7 @@ def clean_rowids_and_confirmed_fields(query_result):
def pubkeyhash_to_pubkey(address: str, provided_pubkeys: str = None):
"""
Get pubkey for an address.
- :param address: Address to get pubkey for. (e.g. 14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS)
+ :param address: Address to get pubkey for. (e.g. $ADDRESS_1)
:param provided_pubkeys: Comma separated list of provided pubkeys.
"""
if provided_pubkeys:
@@ -142,7 +142,7 @@ def pubkeyhash_to_pubkey(address: str, provided_pubkeys: str = None):
def get_transaction(tx_hash: str, format: str = "json"):
"""
Get a transaction from the blockchain
- :param tx_hash: The transaction hash (e.g. 3190047bf2320bdcd0fade655ae49be309519d151330aa478573815229cc0018)
+ :param tx_hash: The transaction hash (e.g. $LAST_TX_HASH)
:param format: Whether to return JSON output or raw hex (e.g. hex)
"""
return backend.bitcoind.getrawtransaction(tx_hash, verbose=format == "json")
@@ -151,7 +151,7 @@ def get_transaction(tx_hash: str, format: str = "json"):
def get_oldest_transaction_by_address(address: str, block_index: int = None):
"""
Get the oldest transaction for an address.
- :param address: The address to search for. (e.g. 14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS)
+ :param address: The address to search for. (e.g. $ADDRESS_9)
:param block_index: The block index to search from.
"""
return backend.addrindexrs.get_oldest_tx(
@@ -276,6 +276,8 @@ def default(self, o):
return "{0:.8f}".format(o)
if isinstance(o, bytes):
return o.hex()
+ if callable(o):
+ return o.__name__
return super().default(o)
@@ -674,6 +676,8 @@ def inject_unpacked_data(db, result_list):
def inject_details(db, result, rule=None):
+ if isinstance(result, (int, str)):
+ return result
# let's work with a list
result_list = result
result_is_dict = False
diff --git a/counterparty-core/counterpartycore/lib/backend/addrindexrs.py b/counterparty-core/counterpartycore/lib/backend/addrindexrs.py
index 43a3fce9b8..08e84e679c 100644
--- a/counterparty-core/counterpartycore/lib/backend/addrindexrs.py
+++ b/counterparty-core/counterpartycore/lib/backend/addrindexrs.py
@@ -458,7 +458,7 @@ def _get_unspent_txouts(source):
def get_unspent_txouts(address: str, unconfirmed: bool = False, unspent_tx_hash: str = None):
"""
Returns a list of unspent outputs for a specific address
- :param address: The address to search for (e.g. 14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS)
+ :param address: The address to search for (e.g. $ADDRESS_7)
:param unconfirmed: Include unconfirmed transactions
:param unspent_tx_hash: Filter by unspent_tx_hash
"""
@@ -486,7 +486,7 @@ def get_unspent_txouts(address: str, unconfirmed: bool = False, unspent_tx_hash:
def get_unspent_txouts_by_addresses(addresses: str, unconfirmed: bool = False):
"""
Returns a list of unspent outputs for a list of addresses
- :param addresses: The addresses to search for (e.g. 14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS,1JQheacLPdM5ySCkrZkV66G2ApAXe1mqLj)
+ :param addresses: The addresses to search for (e.g. $ADDRESS_7,$ADDRESS_8)
:param unconfirmed: Include unconfirmed transactions
"""
unspents = []
@@ -564,7 +564,7 @@ def get_transactions_by_address(
):
"""
Returns all transactions involving a given address
- :param address: The address to search for (e.g. 14TjwxgnuqgB4HcDcSZk2m7WKwcGVYxRjS)
+ :param address: The address to search for (e.g. $ADDRESS_3)
:param unconfirmed: Include unconfirmed transactions (e.g. True)
:param only_tx_hashes: Return only the tx hashes (e.g. True)
"""
diff --git a/counterparty-core/counterpartycore/lib/backend/bitcoind.py b/counterparty-core/counterpartycore/lib/backend/bitcoind.py
index ede85396e8..e09839fa82 100644
--- a/counterparty-core/counterpartycore/lib/backend/bitcoind.py
+++ b/counterparty-core/counterpartycore/lib/backend/bitcoind.py
@@ -130,6 +130,42 @@ def getrawtransaction(tx_hash, verbose=False):
return rpc("getrawtransaction", [tx_hash, 1 if verbose else 0])
+def createrawtransaction(inputs, outputs):
+ return rpc("createrawtransaction", [inputs, outputs])
+
+
+@functools.lru_cache(maxsize=1000)
+def get_utxo_address_and_value(utxo):
+ tx_hash = utxo.split(":")[0]
+ vout = int(utxo.split(":")[1])
+ try:
+ transaction = getrawtransaction(tx_hash, True)
+ except exceptions.BitcoindRPCError as e:
+ raise exceptions.InvalidUTXOError(f"Could not find UTXO {utxo}") from e
+ if vout >= len(transaction["vout"]):
+ raise exceptions.InvalidUTXOError("vout index out of range")
+ if "address" not in transaction["vout"][vout]["scriptPubKey"]:
+ raise exceptions.InvalidUTXOError("vout does not have an address")
+ return transaction["vout"][vout]["scriptPubKey"]["address"], transaction["vout"][vout]["value"]
+
+
+def safe_get_utxo_address(utxo):
+ try:
+ return get_utxo_address_and_value(utxo)[0]
+ except exceptions.InvalidUTXOError:
+ return "unknown"
+
+
+def is_valid_utxo(utxo):
+ if not util.is_utxo_format(utxo):
+ return False
+ try:
+ get_utxo_address_and_value(utxo)
+ return True
+ except exceptions.InvalidUTXOError:
+ return False
+
+
def fee_per_kb(
conf_target: int = config.ESTIMATE_FEE_CONF_TARGET, mode: str = config.ESTIMATE_FEE_MODE
):
@@ -177,6 +213,13 @@ def get_zmq_notifications():
return rpc("getzmqnotifications", [])
+def get_mempool_info():
+ """
+ Get the current mempool info.
+ """
+ return rpc("getmempoolinfo", [])
+
+
def wait_for_block(block_index):
block_count = getblockcount()
while block_count < block_index:
diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py
index 587e382153..056a67bf6b 100644
--- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py
+++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py
@@ -26,6 +26,7 @@ def __init__(self, start_height=0, indexer_config=None):
"db_dir": config.FETCHER_DB,
"log_file": config.FETCHER_LOG,
"log_level": config.LOG_LEVEL_STRING,
+ "json_format": config.JSON_LOGS,
"start_height": start_height,
}
else:
@@ -57,7 +58,9 @@ def start(self):
config.__version__,
fetcher_version,
)
- raise ValueError("Fetcher version mismatch.")
+ raise ValueError(
+ f"Fetcher version mismatch {config.__version__} != {fetcher_version}."
+ )
self.fetcher.start()
except Exception as e:
logger.error(f"Failed to initialize fetcher: {e}. Retrying in 5 seconds...")
diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py
index 7a7e1f8f27..c6c2c15b6c 100644
--- a/counterparty-core/counterpartycore/lib/blocks.py
+++ b/counterparty-core/counterpartycore/lib/blocks.py
@@ -19,6 +19,7 @@
config,
database,
exceptions,
+ gas,
ledger,
log,
message_type,
@@ -34,14 +35,18 @@
burn,
cancel,
destroy,
+ dispense,
dispenser,
dividend,
+ fairmint,
+ fairminter,
issuance,
order,
rps,
rpsresolve,
send,
sweep,
+ utxo,
)
from .messages.versions import enhanced_send, mpma # noqa: E402
@@ -80,6 +85,9 @@
"dispensers",
"dispenses",
"dispenser_refills",
+ "fairminters",
+ "fairmints",
+ "transaction_count",
]
MAINNET_BURNS = {}
@@ -97,6 +105,12 @@ def parse_tx(db, tx):
try:
with db:
+ if "utxos_info" in tx and tx["utxos_info"]:
+ utxo.move_assets(db, tx)
+
+ if not tx["source"]: # utxos move only
+ return
+
# Only one source and one destination allowed for now.
if len(tx["source"].split("-")) > 1:
return
@@ -178,7 +192,19 @@ def parse_tx(db, tx):
elif message_type_id == dispenser.DISPENSE_ID and util.enabled(
"dispensers", block_index=tx["block_index"]
):
- dispenser.dispense(db, tx)
+ dispense.parse(db, tx)
+ elif message_type_id == fairminter.ID and util.enabled(
+ "fairminter", block_index=tx["block_index"]
+ ):
+ fairminter.parse(db, tx, message)
+ elif message_type_id == fairmint.ID and util.enabled(
+ "fairminter", block_index=tx["block_index"]
+ ):
+ fairmint.parse(db, tx, message)
+ elif message_type_id == utxo.ID and util.enabled(
+ "utxo_support", block_index=tx["block_index"]
+ ):
+ utxo.parse(db, tx, message)
else:
supported = False
@@ -203,14 +229,17 @@ def parse_tx(db, tx):
{"supported": False, "tx_hash": tx["tx_hash"]},
)
if tx["block_index"] != config.MEMPOOL_BLOCK_INDEX:
- logger.info(f"Unsupported transaction: hash {tx['tx_hash']}; data {tx['data']}")
+ logger.info(
+ f"Unsupported transaction: hash {tx['tx_hash']}; ID: {message_type_id}; data {tx['data']}"
+ )
cursor.close()
+ util.CURRENT_TX_HASH = None
return False
# NOTE: for debugging (check asset conservation after every `N` transactions).
# if not tx['tx_index'] % N:
# check.asset_conservation(db)
-
+ util.CURRENT_TX_HASH = None
return True
except Exception as e:
raise exceptions.ParseTransactionError(f"{e}") # noqa: B904
@@ -234,6 +263,7 @@ def replay_transactions_events(db, transactions):
"btc_amount": tx["btc_amount"],
"fee": tx["fee"],
"data": tx["data"],
+ "utxos_info": tx["utxos_info"],
}
ledger.add_to_journal(
db,
@@ -308,6 +338,9 @@ def parse_block(
# Close dispensers
dispenser.close_pending(db, block_index)
+ # Fairminters operations
+ fairminter.before_block(db, block_index)
+
txlist = []
for tx in transactions:
try:
@@ -321,6 +354,9 @@ def parse_block(
raise e
# pass
+ # Fairminters operations
+ fairminter.after_block(db, block_index)
+
if block_index != config.MEMPOOL_BLOCK_INDEX:
# Calculate consensus hashes.
new_txlist_hash, found_txlist_hash = check.consensus_hash(
@@ -478,10 +514,18 @@ def initialise(db):
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index))
"""
)
+
+ transactions_columns = [
+ column["name"] for column in cursor.execute("""PRAGMA table_info(transactions)""")
+ ]
+ if "utxos_info" not in transactions_columns:
+ cursor.execute("""ALTER TABLE transactions ADD COLUMN utxos_info TEXT""")
+
database.create_indexes(
cursor,
"transactions",
@@ -515,6 +559,9 @@ def initialise(db):
debits_columns = [column["name"] for column in cursor.execute("""PRAGMA table_info(debits)""")]
if "tx_index" not in debits_columns:
cursor.execute("""ALTER TABLE debits ADD COLUMN tx_index INTEGER""")
+ if "utxo" not in debits_columns:
+ cursor.execute("""ALTER TABLE debits ADD COLUMN utxo TEXT""")
+ cursor.execute("""ALTER TABLE debits ADD COLUMN utxo_address TEXT""")
database.create_indexes(
cursor,
@@ -526,6 +573,8 @@ def initialise(db):
["event"],
["action"],
["quantity"],
+ ["utxo"],
+ ["utxo_address"],
],
)
@@ -547,6 +596,9 @@ def initialise(db):
]
if "tx_index" not in credits_columns:
cursor.execute("""ALTER TABLE credits ADD COLUMN tx_index INTEGER""")
+ if "utxo" not in credits_columns:
+ cursor.execute("""ALTER TABLE credits ADD COLUMN utxo TEXT""")
+ cursor.execute("""ALTER TABLE credits ADD COLUMN utxo_address TEXT""")
database.create_indexes(
cursor,
@@ -558,6 +610,8 @@ def initialise(db):
["event"],
["calling_function"],
["quantity"],
+ ["utxo"],
+ ["utxo_address"],
],
)
@@ -578,6 +632,9 @@ def initialise(db):
cursor.execute("""ALTER TABLE balances ADD COLUMN block_index INTEGER""")
if "tx_index" not in balances_columns:
cursor.execute("""ALTER TABLE balances ADD COLUMN tx_index INTEGER""")
+ if "utxo" not in balances_columns:
+ cursor.execute("""ALTER TABLE balances ADD COLUMN utxo TEXT""")
+ cursor.execute("""ALTER TABLE balances ADD COLUMN utxo_address TEXT""")
database.create_indexes(
cursor,
@@ -588,6 +645,8 @@ def initialise(db):
["asset"],
["block_index"],
["quantity"],
+ ["utxo"],
+ ["utxo_address"],
],
)
@@ -670,6 +729,10 @@ def initialise(db):
rpsresolve.initialise(db)
sweep.initialise(db)
dispenser.initialise(db)
+ fairminter.initialise(db)
+ fairmint.initialise(db)
+
+ gas.initialise(db)
# Messages
cursor.execute(
@@ -899,7 +962,7 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_
util.CURRENT_TX_HASH = tx_hash
cursor = db.cursor()
- source, destination, btc_amount, fee, data, dispensers_outs = get_tx_info(
+ source, destination, btc_amount, fee, data, dispensers_outs, utxos_info = get_tx_info(
db, decoded_tx, block_index
)
@@ -910,7 +973,9 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_
else:
assert block_index == util.CURRENT_BLOCK_INDEX
- if source and (data or destination == config.UNSPENDABLE or dispensers_outs):
+ if (source and (data or destination == config.UNSPENDABLE or dispensers_outs)) or len(
+ utxos_info
+ ) > 1:
transaction_bindings = {
"tx_index": tx_index,
"tx_hash": tx_hash,
@@ -922,24 +987,26 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_
"btc_amount": btc_amount,
"fee": fee,
"data": data,
+ "utxos_info": " ".join(utxos_info),
}
ledger.insert_record(db, "transactions", transaction_bindings, "NEW_TRANSACTION")
- for next_out in dispensers_outs:
- transaction_outputs_bindings = {
- "tx_index": tx_index,
- "tx_hash": tx_hash,
- "block_index": block_index,
- "out_index": next_out["out_index"],
- "destination": next_out["destination"],
- "btc_amount": next_out["btc_amount"],
- }
- ledger.insert_record(
- db,
- "transaction_outputs",
- transaction_outputs_bindings,
- "NEW_TRANSACTION_OUTPUT",
- )
+ if dispensers_outs:
+ for next_out in dispensers_outs:
+ transaction_outputs_bindings = {
+ "tx_index": tx_index,
+ "tx_hash": tx_hash,
+ "block_index": block_index,
+ "out_index": next_out["out_index"],
+ "destination": next_out["destination"],
+ "btc_amount": next_out["btc_amount"],
+ }
+ ledger.insert_record(
+ db,
+ "transaction_outputs",
+ transaction_outputs_bindings,
+ "NEW_TRANSACTION_OUTPUT",
+ )
cursor.close()
@@ -1228,6 +1295,7 @@ def check_database_version(db):
def catch_up(db, check_asset_conservation=True):
+ util.BLOCK_PARSER_STATUS = "catching up"
# update the current block index
util.CURRENT_BLOCK_INDEX = ledger.last_db_index(db)
if util.CURRENT_BLOCK_INDEX == 0:
diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py
index 762c26b330..7221db1318 100644
--- a/counterparty-core/counterpartycore/lib/check.py
+++ b/counterparty-core/counterpartycore/lib/check.py
@@ -163,6 +163,10 @@
"ledger_hash": "ab9f9c1aafdfc816a19aa403775c56b0b63e4c977685427f8fcee85db449cb15",
"txlist_hash": "c8c7b8c0a86d601274e047d7038d47cd20f7147d9245f0d22449102b4b0c6fbf",
},
+ 650000: {
+ "ledger_hash": "7e4d5af885d20a68eb78d939f3b56f10c3e4defbb797297754579122e9611679",
+ "txlist_hash": "14405c618a97fb2fc8b5640f84ad8a4aece924474a5b4ffc4e67c46914676ba6",
+ },
700000: {
"ledger_hash": "4e84538d7bde57bbea518563f2a50f4245597bf5e5619fc4cbe9d981ab9d0adc",
"txlist_hash": "abb48c10d692c159180a376b4a9002abcf582fab1b5652ba3ccdc73f4b5e0d8a",
@@ -643,6 +647,10 @@
"ledger_hash": "0e594ca2b3b36b66475b1c53d9b02d9fe4726e28f6f61db8fdf8103a787e6c3e",
"txlist_hash": "993c980296307d38656b4458a9b3913a8028adc02630fb6a8c55bea009008dd7",
},
+ 861500: {
+ "ledger_hash": "76ca4415a24ae04579b05b517f41441b7cb45eb881db71d1b59de5d373a4bc28",
+ "txlist_hash": "b05b906391cf96d5b4b5893c5fda13fb64635d26785ee3ad1330fe701eb41cb4",
+ },
}
CONSENSUS_HASH_VERSION_TESTNET = 7
diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py
index 5560d0f39a..8ba23c9916 100644
--- a/counterparty-core/counterpartycore/lib/config.py
+++ b/counterparty-core/counterpartycore/lib/config.py
@@ -5,7 +5,7 @@
# Semantic Version
-__version__ = "10.3.2" # for hatch
+__version__ = "10.4.0" # for hatch
VERSION_STRING = __version__
version = VERSION_STRING.split("-")[0].split(".")
VERSION_MAJOR = int(version[0])
@@ -114,7 +114,7 @@
BURN_START_MAINNET = 278310
BURN_END_MAINNET = 283810
-BLOCK_FIRST_REGTEST = 1
+BLOCK_FIRST_REGTEST = 101
BLOCK_FIRST_REGTEST_HASH = "0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206"
BURN_START_REGTEST = 101
BURN_END_REGTEST = 150000000
diff --git a/counterparty-core/counterpartycore/lib/exceptions.py b/counterparty-core/counterpartycore/lib/exceptions.py
index f4a216d8f9..166014a241 100644
--- a/counterparty-core/counterpartycore/lib/exceptions.py
+++ b/counterparty-core/counterpartycore/lib/exceptions.py
@@ -125,3 +125,15 @@ class SerializationError(Exception):
class NoEventToParse(Exception):
pass
+
+
+class InvalidUTXOError(Exception):
+ pass
+
+
+class NoDispenserError(Exception):
+ pass
+
+
+class NoPriceError(Exception):
+ pass
diff --git a/counterparty-core/counterpartycore/lib/follow.py b/counterparty-core/counterpartycore/lib/follow.py
index a84619eafe..4d922473ad 100644
--- a/counterparty-core/counterpartycore/lib/follow.py
+++ b/counterparty-core/counterpartycore/lib/follow.py
@@ -17,6 +17,7 @@
ledger,
mempool,
sentry,
+ util,
)
from counterpartycore.lib.telemetry.oneshot import TelemetryOneShot
@@ -117,7 +118,12 @@ def receive_rawblock(self, body):
# check if already parsed by block.catch_up()
existing_block = ledger.get_block_by_hash(self.db, decoded_block["block_hash"])
if existing_block is None:
- blocks.parse_new_block(self.db, decoded_block)
+ previous_block = ledger.get_block_by_hash(self.db, decoded_block["hash_prev"])
+ if previous_block is None:
+ # catch up with rpc if previous block is missing
+ blocks.catch_up(self.db, check_asset_conservation=False)
+ else:
+ blocks.parse_new_block(self.db, decoded_block)
mempool.clean_mempool(self.db)
if not config.NO_TELEMETRY:
TelemetryOneShot().submit()
@@ -160,7 +166,8 @@ def receive_sequence(self, body):
# logger.trace("Adding transaction to mempool block: %s", item_hash)
# logger.trace("Mempool block size: %s", len(self.mempool_block))
self.mempool_block.append(raw_tx)
- if len(self.mempool_block) == MEMPOOL_BLOCK_MAX_SIZE:
+ mempool_block_max_size = 100 if config.NETWORK_NAME == "mainnet" else 1
+ if len(self.mempool_block) == mempool_block_max_size:
# parse mempool block
mempool.parse_mempool_transactions(self.db, self.mempool_block)
# reset mempool block
@@ -203,11 +210,13 @@ async def receive_multipart(self, socket, topic_name):
self.receive_message(topic, body, seq)
except Exception as e:
logger.error("Error processing message: %s", e)
+ # print(traceback.format_exc()) # for debugging
capture_exception(e)
raise e
async def handle(self):
self.check_software_version_if_needed()
+ util.BLOCK_PARSER_STATUS = "following"
# sequence topic
await self.receive_multipart(self.zmq_sub_socket_sequence, "sequence")
diff --git a/counterparty-core/counterpartycore/lib/gas.py b/counterparty-core/counterpartycore/lib/gas.py
new file mode 100644
index 0000000000..feb2b30bd7
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/gas.py
@@ -0,0 +1,109 @@
+import math
+
+from counterpartycore.lib import config, database, ledger, util
+
+PERIOD_DURATION = 2016 # blocks, around 2 weeks
+
+
+def initialise(db):
+ cursor = db.cursor()
+ # transaction_count
+ cursor.execute(
+ """CREATE TABLE IF NOT EXISTS transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER)
+ """
+ )
+ database.create_indexes(
+ cursor,
+ "transaction_count",
+ [
+ ["block_index", "transaction_id"],
+ ],
+ )
+
+
+def get_transaction_count_for_last_period(db, transaction_id, block_index):
+ cursor = db.cursor()
+ count = cursor.execute(
+ f"""
+ SELECT count FROM transaction_count
+ WHERE transaction_id = ? AND block_index >= ? - {PERIOD_DURATION}
+ ORDER BY rowid DESC
+ LIMIT 1
+ """, # noqa S608
+ (transaction_id, block_index),
+ ).fetchone()
+ if count is None:
+ return 0
+ return count["count"]
+
+
+def increment_counter(db, transaction_id, block_index):
+ current_count = get_transaction_count_for_last_period(db, transaction_id, block_index)
+ new_count = current_count + 1
+
+ bindings = {
+ "block_index": block_index,
+ "transaction_id": transaction_id,
+ "count": new_count,
+ }
+ ledger.insert_record(db, "transaction_count", bindings, "INCREMENT_TRANSACTION_COUNT")
+
+
+def get_average_transactions(db, transaction_id, block_index):
+ if block_index < PERIOD_DURATION:
+ return 0
+ transaction_count = get_transaction_count_for_last_period(db, transaction_id, block_index)
+ # return average number of transactions for the last PERIOD_DURATION blocks
+ return transaction_count // PERIOD_DURATION
+
+
+def get_transaction_fee(db, transaction_id, block_index):
+ x = get_average_transactions(db, transaction_id, block_index)
+ fee_params = util.get_value_by_block_index("fee_parameters", block_index)
+
+ a = fee_params[str(transaction_id)]["fee_lower_threshold"]
+ b = fee_params[str(transaction_id)]["fee_upper_threshold"]
+ base_fee = fee_params[str(transaction_id)]["base_fee"]
+ k = fee_params[str(transaction_id)]["fee_sigmoid_k"]
+
+ fee = calculate_fee(x, a, b, base_fee, k)
+ return int(fee * config.UNIT)
+
+
+def calculate_fee(x, a, b, base_fee, k):
+ """
+ Calculate the fee based on the number of transactions per block,
+ ensuring continuity at the transition point.
+
+ Parameters:
+ x (float): Number of transactions per period
+ a (float): Lower threshold (fee is zero below this)
+ b (float): Upper threshold (transition point to exponential growth)
+ base_fee (float): Base fee amount
+ k (float): Sigmoid steepness factor
+
+ Returns:
+ float: Calculated fee
+ """
+
+ def sigmoid(t):
+ return 1 / (1 + math.exp(-k * (t - 0.5)))
+
+ if x <= a:
+ return 0
+ elif x <= b:
+ return base_fee * sigmoid((x - a) / (b - a))
+ else:
+ # Calculate sigmoid value and derivative at x = b
+ sigmoid_at_b = sigmoid(1)
+ sigmoid_derivative_at_b = k * sigmoid_at_b * (1 - sigmoid_at_b)
+
+ # Calculate parameters for the exponential part
+ m = sigmoid_derivative_at_b * (b - a) / base_fee
+ c = math.log(m)
+
+ # Exponential function that matches sigmoid at x = b
+ return base_fee * sigmoid_at_b * math.exp(c * ((x - b) / (b - a)))
diff --git a/counterparty-core/counterpartycore/lib/gettxinfo.py b/counterparty-core/counterpartycore/lib/gettxinfo.py
index d6fe9071f1..88a6b6b33b 100644
--- a/counterparty-core/counterpartycore/lib/gettxinfo.py
+++ b/counterparty-core/counterpartycore/lib/gettxinfo.py
@@ -2,7 +2,7 @@
import logging
import struct
-from counterpartycore.lib import arc4, backend, config, script, util
+from counterpartycore.lib import arc4, backend, config, ledger, message_type, script, util
from counterpartycore.lib.exceptions import BTCOnlyError, DecodeError
from counterpartycore.lib.messages import dispenser
from counterpartycore.lib.opcodes import * # noqa: F403
@@ -250,6 +250,8 @@ def get_dispensers_tx_info(sources, dispensers_outputs):
dispenser_source = sources.split("-")[0]
out_index = 0
for out in dispensers_outputs:
+ if out[0] is None or out[1] is None:
+ continue
if out[0] != dispenser_source:
source = dispenser_source
destination = out[0]
@@ -345,7 +347,6 @@ def get_tx_info_new(db, decoded_tx, block_index, p2sh_is_segwit=False, composing
The destinations, if they exists, always comes before the data output; the
change, if it exists, always comes after.
"""
-
# Ignore coinbase transactions.
if decoded_tx["coinbase"]:
raise DecodeError("coinbase transaction")
@@ -382,6 +383,9 @@ def get_tx_info_new(db, decoded_tx, block_index, p2sh_is_segwit=False, composing
if not data and destinations != [
config.UNSPENDABLE,
]:
+ if util.enabled("disable_vanilla_btc_dispense", block_index):
+ raise BTCOnlyError("no data and not unspendable")
+
if util.enabled("dispensers", block_index) and not composing:
dispensers_outputs = get_dispensers_outputs(db, potential_dispensers)
if len(dispensers_outputs) == 0:
@@ -408,6 +412,21 @@ def get_tx_info_new(db, decoded_tx, block_index, p2sh_is_segwit=False, composing
return get_dispensers_tx_info(sources, dispensers_outputs)
destinations = "-".join(destinations)
+
+ try:
+ message_type_id, _ = message_type.unpack(data, block_index)
+ except struct.error: # Deterministically raised.
+ message_type_id = None
+
+ if message_type_id == dispenser.DISPENSE_ID and util.enabled(
+ "enable_dispense_tx", block_index=block_index
+ ):
+ # if there is a dispense prefix we assume all potential_dispensers are dispensers
+ # that's mean we don't need to call get_dispensers_outputs()
+ # and so we avoid a db query (dispenser.is_dispensable()).
+ # If one of them is not a dispenser `dispenser.dispense()` will silently skip it
+ return get_dispensers_tx_info(sources, potential_dispensers)
+
return sources, destinations, btc_amount, round(fee), data, []
@@ -529,11 +548,45 @@ def _get_tx_info(db, decoded_tx, block_index, p2sh_is_segwit=False):
return get_tx_info_legacy(decoded_tx, block_index)
+def get_utxos_info(db, decoded_tx):
+ """
+ Get the UTXO move info.
+ Returns a list of UTXOs. Last UTXO is the destination, previous UTXOs are the sources.
+ """
+ sources = []
+ # we check that each vin does not contain assets..
+ for vin in decoded_tx["vin"]:
+ if isinstance(vin["hash"], str):
+ vin_hash = vin["hash"]
+ else:
+ vin_hash = inverse_hash(binascii.hexlify(vin["hash"]).decode("utf-8"))
+ utxo = vin_hash + ":" + str(vin["n"])
+ utxo_balances = ledger.get_utxo_balances(db, utxo)
+ if len(utxo_balances) > 0:
+ sources.append(utxo)
+ destination = None
+ # the destination is the first non-OP_RETURN vout
+ for n, vout in enumerate(decoded_tx["vout"]):
+ asm = script.script_to_asm(vout["script_pub_key"])
+ if asm[0] == OP_RETURN: # noqa: F405
+ continue
+ destination = decoded_tx["tx_hash"] + ":" + str(n)
+ return sources + [destination]
+ return []
+
+
def get_tx_info(db, decoded_tx, block_index):
"""Get the transaction info. Returns normalized None data for DecodeError and BTCOnlyError."""
+ if util.enabled("utxo_support", block_index=block_index):
+ utxos_info = get_utxos_info(db, decoded_tx)
+ else:
+ utxos_info = []
try:
- return _get_tx_info(db, decoded_tx, block_index)
+ source, destination, btc_amount, fee, data, dispensers_outs = _get_tx_info(
+ db, decoded_tx, block_index
+ )
+ return source, destination, btc_amount, fee, data, dispensers_outs, utxos_info
except DecodeError as e: # noqa: F841
- return b"", None, None, None, None, None
+ return b"", None, None, None, None, None, utxos_info
except BTCOnlyError as e: # noqa: F841
- return b"", None, None, None, None, None
+ return b"", None, None, None, None, None, utxos_info
diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py
index c1ad93406a..def083436a 100644
--- a/counterparty-core/counterpartycore/lib/ledger.py
+++ b/counterparty-core/counterpartycore/lib/ledger.py
@@ -245,7 +245,7 @@ def replay_events(db, events):
###########################
-def remove_from_balance(db, address, asset, quantity, tx_index):
+def remove_from_balance(db, address, asset, quantity, tx_index, utxo_address=None):
balance_cursor = db.cursor()
no_balance = False
@@ -262,17 +262,25 @@ def remove_from_balance(db, address, asset, quantity, tx_index):
balance = min(balance, config.MAX_INT)
assert balance >= 0
+ balance_address = address
+ utxo = None
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ balance_address = None
+ utxo = address
+
if not no_balance: # don't create balance if quantity is 0 and there is no balance
bindings = {
"quantity": balance,
- "address": address,
+ "address": balance_address,
+ "utxo": utxo,
+ "utxo_address": utxo_address,
"asset": asset,
"block_index": util.CURRENT_BLOCK_INDEX,
"tx_index": tx_index,
}
query = """
- INSERT INTO balances
- VALUES (:address, :asset, :quantity, :block_index, :tx_index)
+ INSERT INTO balances (address, asset, quantity, block_index, tx_index, utxo, utxo_address)
+ VALUES (:address, :asset, :quantity, :block_index, :tx_index, :utxo, :utxo_address)
"""
balance_cursor.execute(query, bindings)
@@ -294,8 +302,6 @@ def debit(db, address, asset, quantity, tx_index, action=None, event=None):
if asset == config.BTC:
raise DebitError("Cannot debit bitcoins.")
- debit_cursor = db.cursor() # noqa: F841
-
# Contracts can only hold XCP balances.
if util.enabled("contracts_only_xcp_balances"): # Protocol change.
if len(address) == 40:
@@ -304,12 +310,22 @@ def debit(db, address, asset, quantity, tx_index, action=None, event=None):
if asset == config.BTC:
raise exceptions.BalanceError(f"Cannot debit bitcoins from a {config.XCP_NAME} address!")
- remove_from_balance(db, address, asset, quantity, tx_index)
+ debit_address = address
+ utxo = None
+ utxo_address = None
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ debit_address = None
+ utxo = address
+ utxo_address = backend.bitcoind.safe_get_utxo_address(utxo)
+
+ remove_from_balance(db, address, asset, quantity, tx_index, utxo_address)
# Record debit.
bindings = {
"block_index": block_index,
- "address": address,
+ "address": debit_address,
+ "utxo": utxo,
+ "utxo_address": utxo_address,
"asset": asset,
"quantity": quantity,
"action": action,
@@ -321,23 +337,31 @@ def debit(db, address, asset, quantity, tx_index, action=None, event=None):
BLOCK_LEDGER.append(f"{block_index}{address}{asset}{quantity}")
-def add_to_balance(db, address, asset, quantity, tx_index):
+def add_to_balance(db, address, asset, quantity, tx_index, utxo_address=None):
balance_cursor = db.cursor()
old_balance = get_balance(db, address, asset)
balance = round(old_balance + quantity)
balance = min(balance, config.MAX_INT)
+ balance_address = address
+ utxo = None
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ balance_address = None
+ utxo = address
+
bindings = {
"quantity": balance,
- "address": address,
+ "address": balance_address,
+ "utxo": utxo,
+ "utxo_address": utxo_address,
"asset": asset,
"block_index": util.CURRENT_BLOCK_INDEX,
"tx_index": tx_index,
}
query = """
- INSERT INTO balances
- VALUES (:address, :asset, :quantity, :block_index, :tx_index)
+ INSERT INTO balances (address, asset, quantity, block_index, tx_index, utxo, utxo_address)
+ VALUES (:address, :asset, :quantity, :block_index, :tx_index, :utxo, :utxo_address)
"""
balance_cursor.execute(query, bindings)
@@ -359,19 +383,27 @@ def credit(db, address, asset, quantity, tx_index, action=None, event=None):
if asset == config.BTC:
raise CreditError("Cannot debit bitcoins.")
- credit_cursor = db.cursor() # noqa: F841
-
# Contracts can only hold XCP balances.
if util.enabled("contracts_only_xcp_balances"): # Protocol change.
if len(address) == 40:
assert asset == config.XCP
- add_to_balance(db, address, asset, quantity, tx_index)
+ credit_address = address
+ utxo = None
+ utxo_address = None
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ credit_address = None
+ utxo = address
+ utxo_address = backend.bitcoind.safe_get_utxo_address(utxo)
+
+ add_to_balance(db, address, asset, quantity, tx_index, utxo_address)
# Record credit.
bindings = {
"block_index": block_index,
- "address": address,
+ "address": credit_address,
+ "utxo": utxo,
+ "utxo_address": utxo_address,
"asset": asset,
"quantity": quantity,
"calling_function": action,
@@ -392,11 +424,16 @@ def transfer(db, source, destination, asset, quantity, action, event):
def get_balance(db, address, asset, raise_error_if_no_balance=False, return_list=False):
"""Get balance of contract or address."""
cursor = db.cursor()
- query = """
+
+ field_name = "address"
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ field_name = "utxo"
+
+ query = f"""
SELECT * FROM balances
- WHERE (address = ? AND asset = ?)
+ WHERE ({field_name} = ? AND asset = ?)
ORDER BY rowid DESC LIMIT 1
- """
+ """ # noqa: S608
bindings = (address, asset)
balances = list(cursor.execute(query, bindings))
cursor.close()
@@ -415,25 +452,39 @@ def get_address_balances(db, address: str):
:param str address: The address to return (e.g. 1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs)
"""
cursor = db.cursor()
- query = """
- SELECT address, asset, quantity, MAX(rowid)
+
+ field_name = "address"
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ field_name = "utxo"
+
+ query = f"""
+ SELECT {field_name}, asset, quantity, MAX(rowid)
FROM balances
- WHERE address = ?
- GROUP BY address, asset
- """
+ WHERE {field_name} = ?
+ GROUP BY {field_name}, asset
+ """ # noqa: S608
bindings = (address,)
cursor.execute(query, bindings)
return cursor.fetchall()
+def get_utxo_balances(db, utxo: str):
+ return get_address_balances(db, utxo)
+
+
def get_address_assets(db, address):
cursor = db.cursor()
- query = """
+
+ field_name = "address"
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ field_name = "utxo"
+
+ query = f"""
SELECT DISTINCT asset
FROM balances
- WHERE address=:address
+ WHERE {field_name}=:address
GROUP BY asset
- """
+ """ # noqa: S608
bindings = {"address": address}
cursor.execute(query, bindings)
return cursor.fetchall()
@@ -441,19 +492,46 @@ def get_address_assets(db, address):
def get_balances_count(db, address):
cursor = db.cursor()
- query = """
+
+ field_name = "address"
+ if util.enabled("utxo_support") and util.is_utxo_format(address):
+ field_name = "utxo"
+
+ query = f"""
SELECT COUNT(*) AS cnt FROM (
SELECT DISTINCT asset
FROM balances
- WHERE address=:address
+ WHERE {field_name}=:address
GROUP BY asset
)
- """
+ """ # noqa: S608
bindings = {"address": address}
cursor.execute(query, bindings)
return cursor.fetchall()
+def get_credits_by_asset(db, asset: str):
+ cursor = db.cursor()
+ query = """
+ SELECT * FROM credits
+ WHERE asset = ?
+ """
+ bindings = (asset,)
+ cursor.execute(query, bindings)
+ return cursor.fetchall()
+
+
+def get_debits_by_asset(db, asset: str):
+ cursor = db.cursor()
+ query = """
+ SELECT * FROM debits
+ WHERE asset = ?
+ """
+ bindings = (asset,)
+ cursor.execute(query, bindings)
+ return cursor.fetchall()
+
+
#####################
# ISSUANCES #
#####################
@@ -579,7 +657,9 @@ def resolve_subasset_longname(db, asset_name):
if util.enabled("subassets"):
subasset_longname = None
try:
- subasset_parent, subasset_longname = util.parse_subasset_from_asset_name(asset_name)
+ _subasset_parent, subasset_longname = util.parse_subasset_from_asset_name(
+ asset_name, util.enabled("allow_subassets_on_numerics")
+ )
except Exception as e: # noqa: F841
logger.warning(f"Invalid subasset {asset_name}")
subasset_longname = None
@@ -880,6 +960,32 @@ def get_assets_by_longname(db, asset_longname):
return cursor.fetchall()
+def get_asset(db, asset):
+ cursor = db.cursor()
+ name_field = "asset_longname" if "." in asset else "asset"
+ query = f"""
+ SELECT * FROM issuances
+ WHERE ({name_field} = ? AND status = ?)
+ ORDER BY tx_index DESC
+ """ # nosec B608 # noqa: S608
+ bindings = (asset, "valid")
+ cursor.execute(query, bindings)
+ issuances = cursor.fetchall()
+ if not issuances:
+ return None
+
+ locked = False
+ for issuance in issuances:
+ if issuance["locked"]:
+ locked = True
+ break
+
+ asset = issuances[0]
+ asset["supply"] = asset_supply(db, issuance["asset"])
+ asset["locked"] = locked
+ return asset
+
+
#####################
# BROADCASTS #
#####################
@@ -991,10 +1097,14 @@ def get_block(db, block_index: int):
Return the information of a block
:param int block_index: The index of the block to return (e.g. 840464)
"""
- blocks = get_blocks(db, last=block_index, limit=1)
- if blocks:
- return blocks[0]
- return None
+ query = """
+ SELECT * FROM blocks
+ WHERE block_index = ?
+ """
+ bindings = (block_index,)
+ cursor = db.cursor()
+ cursor.execute(query, bindings)
+ return cursor.fetchone()
def last_db_index(db):
@@ -1003,7 +1113,7 @@ def last_db_index(db):
if len(list(cursor.execute(query))) == 0:
return 0
- query = "SELECT block_index FROM blocks ORDER BY block_index DESC LIMIT 1"
+ query = "SELECT block_index FROM blocks WHERE ledger_hash IS NOT NULL ORDER BY block_index DESC LIMIT 1"
blocks = list(cursor.execute(query))
if len(blocks) == 0:
return 0
@@ -1111,6 +1221,21 @@ def get_addresses(db, address=None):
return cursor.fetchall()
+def get_send_msg_index(db, tx_hash):
+ cursor = db.cursor()
+ last_msg_index = cursor.execute(
+ """
+ SELECT MAX(msg_index) as msg_index FROM sends WHERE tx_hash = ?
+ """,
+ (tx_hash,),
+ ).fetchone()
+ if last_msg_index and last_msg_index["msg_index"] is not None:
+ msg_index = last_msg_index["msg_index"] + 1
+ else:
+ msg_index = 0
+ return msg_index
+
+
#####################
# DISPENSERS #
#####################
@@ -1613,7 +1738,7 @@ def __init__(self, db):
select_orders_query = """
SELECT * FROM (
SELECT *, MAX(rowid) FROM orders GROUP BY tx_hash
- ) WHERE status != 'expired'
+ ) WHERE status != 'expired'
"""
with db:
@@ -1701,8 +1826,9 @@ def get_matching_orders_no_cache(db, tx_hash, give_asset, get_asset):
def get_matching_orders(db, tx_hash, give_asset, get_asset):
- # return get_matching_orders_no_cache(db, tx_hash, give_asset, get_asset)
- return OrdersCache(db).get_matching_orders(tx_hash, give_asset, get_asset)
+ if util.BLOCK_PARSER_STATUS == "catching up":
+ return OrdersCache(db).get_matching_orders(tx_hash, give_asset, get_asset)
+ return get_matching_orders_no_cache(db, tx_hash, give_asset, get_asset)
def insert_order(db, order):
@@ -1763,6 +1889,108 @@ def update_order_match_status(db, id, status):
)
+#####################
+# FAIRMINTER #
+#####################
+
+
+def get_fairminters_to_open(db, block_index):
+ cursor = db.cursor()
+ query = """
+ SELECT *, MAX(rowid) AS rowid FROM fairminters
+ WHERE start_block = :start_block
+ GROUP BY tx_hash
+ ORDER BY tx_index
+ """
+ bindings = {
+ "start_block": block_index,
+ }
+ cursor.execute(query, bindings)
+ return cursor.fetchall()
+
+
+def get_fairminters_to_close(db, block_index):
+ cursor = db.cursor()
+ query = """
+ SELECT * FROM (
+ SELECT *, MAX(rowid) AS rowid FROM fairminters
+ WHERE end_block = :end_block
+ GROUP BY tx_hash
+ ) WHERE status != :status
+ ORDER BY tx_index
+ """
+ bindings = {
+ "status": "closed",
+ "end_block": block_index,
+ }
+ cursor.execute(query, bindings)
+ return cursor.fetchall()
+
+
+def get_fairminter_by_asset(db, asset):
+ cursor = db.cursor()
+ query = """
+ SELECT * FROM fairminters
+ WHERE asset = ?
+ ORDER BY rowid DESC LIMIT 1
+ """
+ bindings = (asset,)
+ cursor.execute(query, bindings)
+ return cursor.fetchone()
+
+
+def get_fairmint_quantities(db, fairminter_tx_hash):
+ cursor = db.cursor()
+ query = """
+ SELECT
+ SUM(earn_quantity) AS quantity,
+ SUM(paid_quantity) AS paid_quantity,
+ SUM(commission) AS commission
+ FROM fairmints
+ WHERE fairminter_tx_hash = ? AND status = ?
+ """
+ bindings = (fairminter_tx_hash, "valid")
+ cursor.execute(query, bindings)
+ sums = cursor.fetchone()
+ if not sums:
+ return None, None
+ return sums["quantity"] + sums["commission"], sums["paid_quantity"]
+
+
+def get_soft_caped_fairminters(db, block_index):
+ cursor = db.cursor()
+ query = """
+ SELECT * FROM (
+ SELECT *, MAX(rowid) AS rowid
+ FROM fairminters
+ WHERE soft_cap > 0 AND soft_cap_deadline_block = :block_index
+ GROUP BY tx_hash
+ ) WHERE status = :status
+ ORDER BY tx_index
+ """
+ bindings = {
+ "block_index": block_index,
+ "status": "open",
+ }
+ cursor.execute(query, bindings)
+ return cursor.fetchall()
+
+
+def get_valid_fairmints(db, fairminter_tx_hash):
+ cursor = db.cursor()
+ query = """
+ SELECT * FROM fairmints
+ WHERE fairminter_tx_hash = ? AND status = ?
+ """
+ bindings = (fairminter_tx_hash, "valid")
+ cursor.execute(query, bindings)
+ return cursor.fetchall()
+
+
+def update_fairminter(db, tx_hash, update_data):
+ insert_update(db, "fairminters", "tx_hash", tx_hash, update_data, "FAIRMINTER_UPDATE")
+
+
#####################
# SUPPLIES #
#####################
@@ -1824,7 +2052,7 @@ def holders(db, asset, exclude_empty_holders=False):
query = """
SELECT *, rowid
FROM balances
- WHERE asset = ?
+ WHERE asset = ? AND address IS NOT NULL
"""
bindings = (asset,)
cursor.execute(query, bindings)
@@ -1836,6 +2064,21 @@ def holders(db, asset, exclude_empty_holders=False):
table="balances",
)
+ query = """
+ SELECT *, rowid
+ FROM balances
+ WHERE asset = ? AND utxo IS NOT NULL
+ """
+ bindings = (asset,)
+ cursor.execute(query, bindings)
+ holders += _get_holders(
+ cursor,
+ ["asset", "utxo"],
+ {"address": "utxo", "address_quantity": "quantity"},
+ exclude_empty_holders=exclude_empty_holders,
+ table="balances",
+ )
+
# Funds escrowed in orders. (Protocol change.)
query = """
SELECT * FROM (
@@ -2165,7 +2408,7 @@ def held(db): # TODO: Rename ?
SELECT asset, SUM(quantity) AS total FROM (
SELECT address, asset, quantity, (address || asset) AS aa, MAX(rowid)
FROM balances
- WHERE address IS NOT NULL
+ WHERE address IS NOT NULL AND utxo IS NULL
GROUP BY aa
) GROUP BY asset
""",
@@ -2173,7 +2416,15 @@ def held(db): # TODO: Rename ?
SELECT asset, SUM(quantity) AS total FROM (
SELECT NULL, asset, quantity
FROM balances
- WHERE address IS NULL
+ WHERE address IS NULL AND utxo IS NULL
+ ) GROUP BY asset
+ """,
+ """
+ SELECT asset, SUM(quantity) AS total FROM (
+ SELECT utxo, asset, quantity, (utxo || asset) AS aa, MAX(rowid)
+ FROM balances
+ WHERE address IS NULL AND utxo IS NOT NULL
+ GROUP BY aa
) GROUP BY asset
""",
"""
diff --git a/counterparty-core/counterpartycore/lib/mempool.py b/counterparty-core/counterpartycore/lib/mempool.py
index 43e49b296a..c6a9bf2170 100644
--- a/counterparty-core/counterpartycore/lib/mempool.py
+++ b/counterparty-core/counterpartycore/lib/mempool.py
@@ -25,11 +25,19 @@ def parse_mempool_transactions(db, raw_tx_list):
)
# get the last tx_index
cursor.execute("SELECT tx_index FROM transactions ORDER BY tx_index DESC LIMIT 1")
- mempool_tx_index = cursor.fetchone()["tx_index"] + 1
+ last_tx = cursor.fetchone()
+ if last_tx:
+ mempool_tx_index = last_tx["tx_index"] + 1
+ else:
+ mempool_tx_index = 0
# get message index before parsing the block
cursor.execute("SELECT MAX(message_index) as message_index FROM messages")
- message_index_before = cursor.fetchone()["message_index"]
+ last_message = cursor.fetchone()
+ if last_message:
+ message_index_before = last_message["message_index"]
+ else:
+ message_index_before = -1
# list_tx
decoded_tx_count = 0
@@ -72,6 +80,7 @@ def parse_mempool_transactions(db, raw_tx_list):
except exceptions.MempoolError:
# save events in the mempool table
for event in transaction_events:
+ event["timestamp"] = now
cursor.execute(
"""INSERT INTO mempool VALUES(:tx_hash, :command, :category, :bindings, :timestamp, :event)""",
event,
@@ -95,3 +104,8 @@ def clean_mempool(db):
tx = ledger.get_transaction(db, event["tx_hash"])
if tx:
clean_transaction_events(db, event["tx_hash"])
+ # delete mempool events older than 24 hours
+ cursor.execute(
+ "DELETE FROM mempool WHERE timestamp < ?",
+ (time.time() - 24 * 60 * 60,),
+ )
diff --git a/counterparty-core/counterpartycore/lib/messages/__init__.py b/counterparty-core/counterpartycore/lib/messages/__init__.py
index 6c29b458fe..0bace87a1a 100644
--- a/counterparty-core/counterpartycore/lib/messages/__init__.py
+++ b/counterparty-core/counterpartycore/lib/messages/__init__.py
@@ -17,6 +17,8 @@
# 70 cancel
# 80 rps
# 81 rpsresolve
+# 90 fairminter
+# 100 utxo attach and dettach
# 110 destroy
#
# Allocate each new type of message within the "logical" 10 number boundary
diff --git a/counterparty-core/counterpartycore/lib/messages/destroy.py b/counterparty-core/counterpartycore/lib/messages/destroy.py
index 17af45be8d..ca84a3a0b0 100644
--- a/counterparty-core/counterpartycore/lib/messages/destroy.py
+++ b/counterparty-core/counterpartycore/lib/messages/destroy.py
@@ -29,17 +29,24 @@ def initialise(db):
],
)
- cursor.execute("""CREATE TABLE IF NOT EXISTS destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index))
- """)
+ create_destructions_sql = """
+ CREATE TABLE IF NOT EXISTS destructions(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ )
+ """
+ cursor.execute(create_destructions_sql)
+
+ if database.has_fk_on(cursor, "destructions", "transactions.tx_index") or database.field_is_pk(
+ cursor, "destructions", "tx_index"
+ ):
+ database.copy_old_table(cursor, "destructions", create_destructions_sql)
database.create_indexes(
cursor,
diff --git a/counterparty-core/counterpartycore/lib/messages/dispense.py b/counterparty-core/counterpartycore/lib/messages/dispense.py
new file mode 100644
index 0000000000..736b2d49df
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/messages/dispense.py
@@ -0,0 +1,199 @@
+import logging
+import struct
+from math import floor
+
+from counterpartycore.lib import config, exceptions, ledger, util
+from counterpartycore.lib.messages import dispenser as dispenser_module
+
+logger = logging.getLogger(config.LOGGER_NAME)
+
+
+def get_must_give(db, dispenser, btc_amount, block_index=None):
+ if (dispenser["oracle_address"] is not None) and util.enabled( # noqa: E711
+ "oracle_dispensers", block_index
+ ):
+ last_price, _last_fee, _last_fiat_label, _last_updated = ledger.get_oracle_last_price(
+ db, dispenser["oracle_address"], block_index or util.CURRENT_BLOCK_INDEX
+ )
+ if last_price is None:
+ raise exceptions.NoPriceError(
+ f"No price available for this oracle {dispenser['oracle_address']} at block {block_index}"
+ )
+ fiatrate = util.satoshirate_to_fiat(dispenser["satoshirate"])
+ return int(floor(((btc_amount / config.UNIT) * last_price) / fiatrate))
+
+ return int(floor(btc_amount / dispenser["satoshirate"]))
+
+
+def validate(db, _source, destination, quantity):
+ problems = []
+ if not util.enabled("enable_dispense_tx"):
+ problems.append("dispense tx is not enabled")
+ dispensers = ledger.get_dispensers(db, address=destination)
+ if len(dispensers) == 0:
+ problems.append("address doesn't have any open dispenser")
+ for dispenser in dispensers:
+ if dispenser["status"] != dispenser_module.STATUS_OPEN:
+ problems.append("dispenser is not open")
+ if dispenser["give_remaining"] == 0:
+ problems.append("dispenser is empty")
+ else:
+ try:
+ must_give = get_must_give(db, dispenser, quantity) * dispenser["give_quantity"]
+ logger.debug("must_give: %s", must_give)
+ if must_give > dispenser["give_remaining"]:
+ problems.append("dispenser doesn't have enough asset to give")
+ except exceptions.NoPriceError as e:
+ problems.append(str(e))
+ return problems
+
+
+def compose(db, source, destination, quantity):
+ problems = validate(db, source, destination, quantity)
+ if problems:
+ raise exceptions.ComposeError(problems)
+ # create data
+ data = struct.pack(config.SHORT_TXTYPE_FORMAT, dispenser_module.DISPENSE_ID)
+ data += b"\x00"
+ return (source, [(destination, quantity)], data)
+
+
+def unpack(message, return_dict=False):
+ if return_dict:
+ return {"data": message}
+ return message
+
+
+def parse(db, tx):
+ cursor = db.cursor()
+
+ outs = []
+ if util.enabled("multiple_dispenses"):
+ outs = ledger.get_vouts(db, tx["tx_hash"])
+ else:
+ outs = [tx]
+
+ # if len(outs) == 0:
+ # outs = [tx]
+ # or
+ # assert len(outs) > 0 ?
+
+ dispense_index = 0
+
+ for next_out in outs:
+ dispensers = []
+ if next_out["destination"] is not None:
+ dispensers = ledger.get_dispensers(
+ db, address=next_out["destination"], status_in=[0, 11], order_by="asset"
+ )
+
+ for dispenser in dispensers:
+ satoshirate = dispenser["satoshirate"]
+ give_quantity = dispenser["give_quantity"]
+
+ if satoshirate > 0 and give_quantity > 0:
+ must_give = get_must_give(
+ db, dispenser, next_out["btc_amount"], next_out["block_index"]
+ )
+ remaining = int(floor(dispenser["give_remaining"] / give_quantity))
+ actually_given = min(must_give, remaining) * give_quantity
+ give_remaining = dispenser["give_remaining"] - actually_given
+
+ assert give_remaining >= 0
+
+ # Skip dispense if quantity is 0
+ if util.enabled("zero_quantity_value_adjustment_1") and actually_given == 0:
+ continue
+
+ ledger.credit(
+ db,
+ next_out["source"],
+ dispenser["asset"],
+ actually_given,
+ tx["tx_index"],
+ action="dispense",
+ event=next_out["tx_hash"],
+ )
+
+ # Checking if the dispenser reach its max dispenses limit
+ max_dispenses_limit = util.get_value_by_block_index(
+ "max_dispenses_limit", next_out["block_index"]
+ )
+ max_dispenser_limit_hit = False
+
+ if dispenser["dispense_count"] + 1 >= max_dispenses_limit > 0:
+ max_dispenser_limit_hit = True
+
+ dispenser["give_remaining"] = give_remaining
+ if give_remaining < dispenser["give_quantity"] or max_dispenser_limit_hit:
+ # close the dispenser
+ dispenser["give_remaining"] = 0
+ if give_remaining > 0:
+ if max_dispenser_limit_hit:
+ credit_action = "Closed: Max dispenses reached"
+ dispenser["closing_reason"] = "max_dispenses_reached"
+ else:
+ credit_action = "dispenser close"
+ dispenser["closing_reason"] = "no_more_to_give"
+
+ # return the remaining to the owner
+ ledger.credit(
+ db,
+ dispenser["source"],
+ dispenser["asset"],
+ give_remaining,
+ tx["tx_index"],
+ action=credit_action,
+ event=next_out["tx_hash"],
+ )
+ else:
+ dispenser["closing_reason"] = "depleted"
+ dispenser["status"] = dispenser_module.STATUS_CLOSED
+
+ dispenser["block_index"] = next_out["block_index"]
+ dispenser["prev_status"] = dispenser_module.STATUS_OPEN
+
+ set_data = {
+ "give_remaining": dispenser["give_remaining"],
+ "status": dispenser["status"],
+ "dispense_count": dispenser["dispense_count"] + 1,
+ }
+ ledger.update_dispenser(
+ db,
+ dispenser["rowid"],
+ set_data,
+ {
+ "source": dispenser["source"],
+ "asset": dispenser["asset"],
+ "tx_hash": dispenser["tx_hash"],
+ },
+ )
+
+ bindings = {
+ "tx_index": next_out["tx_index"],
+ "tx_hash": next_out["tx_hash"],
+ "dispense_index": dispense_index,
+ "block_index": next_out["block_index"],
+ "source": next_out["destination"],
+ "destination": next_out["source"],
+ "asset": dispenser["asset"],
+ "dispense_quantity": actually_given,
+ "dispenser_tx_hash": dispenser["tx_hash"],
+ }
+ ledger.insert_record(
+ db,
+ "dispenses",
+ bindings,
+ "DISPENSE",
+ {
+ "btc_amount": next_out["btc_amount"],
+ },
+ )
+ dispense_index += 1
+
+ logger.info(
+ "Dispense %(dispense_quantity)s %(asset)s from %(source)s to %(destination)s (%(tx_hash)s) [valid]",
+ bindings,
+ )
+
+ cursor.close()
diff --git a/counterparty-core/counterpartycore/lib/messages/dispenser.py b/counterparty-core/counterpartycore/lib/messages/dispenser.py
index 19634c9c60..59ca8593f8 100644
--- a/counterparty-core/counterpartycore/lib/messages/dispenser.py
+++ b/counterparty-core/counterpartycore/lib/messages/dispenser.py
@@ -234,11 +234,35 @@ def validate(
problems.append(
f"address doesn't has enough balance of {asset} ({available[0]['quantity']} < {escrow_quantity})"
)
+ elif (
+ util.enabled("dispenser_must_be_created_by_source")
+ and open_address is not None
+ and source != open_address
+ and status != STATUS_CLOSED
+ and len(
+ ledger.get_dispensers(
+ db,
+ status_in=[0, 11],
+ address=open_address if status == STATUS_OPEN_EMPTY_ADDRESS else source,
+ asset=asset,
+ )
+ )
+ == 0
+ ):
+ problems.append("dispenser must be created by source")
else:
- if status == STATUS_OPEN_EMPTY_ADDRESS and not (open_address):
+ if status == STATUS_OPEN_EMPTY_ADDRESS and not open_address:
open_address = source
status = STATUS_OPEN
+ # status == STATUS_OPEN_EMPTY_ADDRESS means open_address != source
+ if (
+ util.enabled("dispenser_must_be_created_by_source")
+ and status == STATUS_OPEN_EMPTY_ADDRESS
+ and open_address == source
+ ):
+ status = STATUS_OPEN
+
open_dispensers = []
if (
util.enabled("dispenser_origin_permission_extended", block_index)
@@ -843,156 +867,6 @@ def is_dispensable(db, address, amount):
return False
-def dispense(db, tx):
- cursor = db.cursor()
-
- outs = []
- if util.enabled("multiple_dispenses"):
- outs = ledger.get_vouts(db, tx["tx_hash"])
- else:
- outs = [tx]
-
- # if len(outs) == 0:
- # outs = [tx]
- # or
- # assert len(outs) > 0 ?
-
- dispense_index = 0
-
- for next_out in outs:
- dispensers = []
- if next_out["destination"] is not None:
- dispensers = ledger.get_dispensers(
- db, address=next_out["destination"], status_in=[0, 11], order_by="asset"
- )
-
- for dispenser in dispensers:
- satoshirate = dispenser["satoshirate"]
- give_quantity = dispenser["give_quantity"]
-
- if satoshirate > 0 and give_quantity > 0:
- if (dispenser["oracle_address"] != None) and util.enabled( # noqa: E711
- "oracle_dispensers", next_out["block_index"]
- ):
- last_price, last_fee, last_fiat_label, last_updated = (
- ledger.get_oracle_last_price(
- db, dispenser["oracle_address"], next_out["block_index"]
- )
- )
- fiatrate = util.satoshirate_to_fiat(satoshirate)
- must_give = int(
- floor(((next_out["btc_amount"] / config.UNIT) * last_price) / fiatrate)
- )
- else:
- must_give = int(floor(next_out["btc_amount"] / satoshirate))
-
- remaining = int(floor(dispenser["give_remaining"] / give_quantity))
- actually_given = min(must_give, remaining) * give_quantity
- give_remaining = dispenser["give_remaining"] - actually_given
-
- assert give_remaining >= 0
-
- # Skip dispense if quantity is 0
- if util.enabled("zero_quantity_value_adjustment_1") and actually_given == 0:
- continue
-
- ledger.credit(
- db,
- next_out["source"],
- dispenser["asset"],
- actually_given,
- tx["tx_index"],
- action="dispense",
- event=next_out["tx_hash"],
- )
-
- # Checking if the dispenser reach its max dispenses limit
- max_dispenses_limit = util.get_value_by_block_index(
- "max_dispenses_limit", next_out["block_index"]
- )
- max_dispenser_limit_hit = False
-
- if (
- max_dispenses_limit > 0
- and dispenser["dispense_count"] + 1 >= max_dispenses_limit
- ):
- max_dispenser_limit_hit = True
-
- dispenser["give_remaining"] = give_remaining
- if give_remaining < dispenser["give_quantity"] or max_dispenser_limit_hit:
- # close the dispenser
- dispenser["give_remaining"] = 0
- if give_remaining > 0:
- if max_dispenser_limit_hit:
- credit_action = "Closed: Max dispenses reached"
- dispenser["closing_reason"] = "max_dispenses_reached"
- else:
- credit_action = "dispenser close"
- dispenser["closing_reason"] = "no_more_to_give"
-
- # return the remaining to the owner
- ledger.credit(
- db,
- dispenser["source"],
- dispenser["asset"],
- give_remaining,
- tx["tx_index"],
- action=credit_action,
- event=next_out["tx_hash"],
- )
- else:
- dispenser["closing_reason"] = "depleted"
- dispenser["status"] = STATUS_CLOSED
-
- dispenser["block_index"] = next_out["block_index"]
- dispenser["prev_status"] = STATUS_OPEN
-
- set_data = {
- "give_remaining": dispenser["give_remaining"],
- "status": dispenser["status"],
- "dispense_count": dispenser["dispense_count"] + 1,
- }
- ledger.update_dispenser(
- db,
- dispenser["rowid"],
- set_data,
- {
- "source": dispenser["source"],
- "asset": dispenser["asset"],
- "tx_hash": dispenser["tx_hash"],
- },
- )
-
- bindings = {
- "tx_index": next_out["tx_index"],
- "tx_hash": next_out["tx_hash"],
- "dispense_index": dispense_index,
- "block_index": next_out["block_index"],
- "source": next_out["destination"],
- "destination": next_out["source"],
- "asset": dispenser["asset"],
- "dispense_quantity": actually_given,
- "dispenser_tx_hash": dispenser["tx_hash"],
- }
- ledger.insert_record(
- db,
- "dispenses",
- bindings,
- "DISPENSE",
- {
- "btc_amount": next_out["btc_amount"],
- },
- )
- dispense_index += 1
-
- logger.info(
- "Dispense %(dispense_quantity)s %(asset)s from %(source)s to %(destination)s (%(tx_hash)s) [valid]",
- bindings,
- )
-
- cursor.close()
-
-
def close_pending(db, block_index):
block_delay = util.get_value_by_block_index("dispenser_close_delay", block_index)
diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py
new file mode 100644
index 0000000000..9f578b193c
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py
@@ -0,0 +1,316 @@
+import decimal
+import logging
+import math
+import struct
+
+from counterpartycore.lib import config, database, exceptions, ledger
+from counterpartycore.lib.messages import fairminter as fairminter_mod
+
+logger = logging.getLogger(config.LOGGER_NAME)
+
+ID = 91
+
+
+def D(value):
+ return decimal.Decimal(str(value))
+
+
+def initialise(db):
+ cursor = db.cursor()
+
+ create_table_sql = """
+ CREATE TABLE IF NOT EXISTS fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ )
+ """
+
+ cursor.execute(create_table_sql)
+
+ database.create_indexes(
+ cursor,
+ "fairmints",
+ [
+ ["tx_hash"],
+ ["block_index"],
+ ["fairminter_tx_hash"],
+ ["asset"],
+ ["source"],
+ ["status"],
+ ],
+ )
+
+
+def validate(
+ db,
+ source,
+ asset,
+ quantity=0,
+):
+ problems = []
+
+ if not isinstance(quantity, int):
+ problems.append("quantity must be an integer")
+
+ fairminter = ledger.get_fairminter_by_asset(db, asset)
+ if not fairminter:
+ problems.append(f"fairminter not found for asset: `{asset}`")
+ return problems
+
+ if fairminter["status"] != "open":
+ problems.append(f"fairminter is not open for asset: `{asset}`")
+
+ asset_supply = ledger.asset_supply(db, fairminter["asset"])
+
+ if fairminter["price"] > 0:
+ # if the fairminter is not free the quantity is mandatory
+ if quantity <= 0:
+ problems.append("Quantity must be greater than 0")
+ return problems
+ if fairminter["max_mint_per_tx"] > 0 and quantity > fairminter["max_mint_per_tx"]:
+ problems.append("Quantity exceeds maximum allowed per transaction")
+ return problems
+ if quantity > config.MAX_INT:
+ problems.append("quantity exceeds maximum allowed value")
+ return problems
+ # check id we don't exceed the hard cap
+ if fairminter["hard_cap"] > 0 and asset_supply + quantity > fairminter["hard_cap"]:
+ problems.append("asset supply quantity exceeds hard cap")
+ # check if the user has enough XCP
+ xcp_total_price = quantity * fairminter["price"]
+ balance = ledger.get_balance(db, source, config.XCP)
+ if balance < xcp_total_price:
+ problems.append("insufficient XCP balance")
+ else:
+ # check id we don't exceed the hard cap
+ if (
+ fairminter["hard_cap"] > 0
+ and asset_supply + fairminter["max_mint_per_tx"] > fairminter["hard_cap"]
+ ):
+ problems.append("asset supply quantity exceeds hard cap")
+
+ return problems
+
+
+def compose(
+ db,
+ source,
+ asset,
+ quantity=0,
+):
+ problems = validate(db, source, asset, quantity)
+ if len(problems) > 0:
+ raise exceptions.ComposeError(problems)
+
+ # create message
+ data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID)
+ # to optimize the data size (avoiding fixed sizes per parameter) we use a simple
+ # string of characters separated by `|`.
+ data_content = "|".join(
+ [
+ str(value)
+ for value in [
+ asset,
+ quantity,
+ ]
+ ]
+ ).encode("utf-8")
+ data += struct.pack(f">{len(data_content)}s", data_content)
+ return (source, [], data)
+
+
+def unpack(message, return_dict=False):
+ try:
+ data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|")
+ (asset, quantity) = data_content
+ if return_dict:
+ return {"asset": asset, "quantity": int(quantity)}
+
+ return (asset, int(quantity))
+ except Exception as e:
+ raise exceptions.UnpackError(f"Cannot unpack fair mint message: {e}") from e
+
+
+def parse(db, tx, message):
+ (asset, quantity) = unpack(message)
+ problems = validate(db, tx["source"], asset, quantity)
+
+ # if problems, insert into fairmints table with status invalid and return
+ status = "valid"
+ if problems:
+ status = "invalid: " + "; ".join(problems)
+ bindings = {
+ "tx_hash": tx["tx_hash"],
+ "tx_index": tx["tx_index"],
+ "block_index": tx["block_index"],
+ "source": tx["source"],
+ "status": status,
+ }
+ ledger.insert_record(db, "fairmints", bindings, "NEW_FAIRMINT")
+ logger.info(f"Fairmint {tx['tx_hash']} is invalid: {status}")
+ return
+
+ # get corresponding fairminter
+ fairminter = ledger.get_fairminter_by_asset(db, asset)
+
+ # determine if the soft cap has been reached
+ soft_cap_not_reached = (
+ fairminter["soft_cap"] > 0 and fairminter["soft_cap_deadline_block"] >= tx["block_index"]
+ )
+
+ # we determine who to send the payment and assets to
+ # By default the assets are sent to the minter
+ # and the payment to the issuer
+ xcp_action = "fairmint payment"
+ xcp_destination = fairminter["source"]
+ asset_action = "fairmint"
+ asset_destination = tx["source"]
+
+ # if the soft cap is not reached we escrow the assets and payments
+ # which will be distributed in the `fairminters.check_soft_cap()` function.
+ if soft_cap_not_reached:
+ xcp_action = "escrowed fairmint"
+ xcp_destination = config.UNSPENDABLE
+ asset_action = "escrowed fairmint"
+ asset_destination = config.UNSPENDABLE
+ # if the soft cap is reached but the payment must
+ # be burned there is no destination.
+ elif fairminter["burn_payment"]:
+ xcp_action = "burn fairmint payment"
+ xcp_destination = None
+ # we determine how many assets we need to send
+ # and the price paid by the user
+ if fairminter["price"] > 0:
+ paid_quantity = (D(quantity) / D(fairminter["quantity_by_price"])) * D(fairminter["price"])
+ paid_quantity = int(math.ceil(paid_quantity))
+ earn_quantity = quantity
+ else:
+ paid_quantity = 0
+ earn_quantity = fairminter["max_mint_per_tx"]
+ # we determine the commission to be paid to the issuer
+ # and we subtract it from the assets to be sent to the user
+ commission = 0
+ if fairminter["minted_asset_commission_int"] > 0:
+ commission = int((D(fairminter["minted_asset_commission_int"]) / D(1e8)) * D(earn_quantity))
+ earn_quantity -= commission
+
+ if paid_quantity > 0:
+ # we debit the user
+ ledger.debit(
+ db, tx["source"], config.XCP, paid_quantity, tx["tx_index"], xcp_action, tx["tx_hash"]
+ )
+ if xcp_destination:
+ # we credit the destination if it exists (issuer or escrow)
+ ledger.credit(
+ db,
+ xcp_destination,
+ config.XCP,
+ paid_quantity,
+ tx["tx_index"],
+ xcp_action,
+ tx["tx_hash"],
+ )
+ else:
+ # else we burn the payment
+ bindings = {
+ "tx_index": tx["tx_index"],
+ "tx_hash": tx["tx_hash"],
+ "block_index": tx["block_index"],
+ "source": tx["source"],
+ "asset": config.XCP,
+ "quantity": paid_quantity,
+ "tag": xcp_action,
+ "status": "valid",
+ }
+ ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION")
+
+ if asset_destination == config.UNSPENDABLE:
+ # the minted amount and commission are escrowed
+ ledger.credit(
+ db,
+ asset_destination,
+ asset,
+ earn_quantity + commission,
+ tx["tx_index"],
+ asset_action,
+ tx["tx_hash"],
+ )
+ else:
+ # the minted amount is sent to the user
+ ledger.credit(
+ db, asset_destination, asset, earn_quantity, tx["tx_index"], asset_action, tx["tx_hash"]
+ )
+ if commission > 0:
+ # the commission is sent to the issuer
+ ledger.credit(
+ db,
+ fairminter["source"],
+ asset,
+ commission,
+ tx["tx_index"],
+ "fairmint commission",
+ tx["tx_hash"],
+ )
+
+ # we insert the fairmint record
+ bindings = {
+ "tx_hash": tx["tx_hash"],
+ "tx_index": tx["tx_index"],
+ "block_index": tx["block_index"],
+ "source": tx["source"],
+ "fairminter_tx_hash": fairminter["tx_hash"],
+ "asset": fairminter["asset"],
+ "earn_quantity": earn_quantity,
+ "paid_quantity": paid_quantity,
+ "commission": commission,
+ "status": status,
+ }
+ ledger.insert_record(db, "fairmints", bindings, "NEW_FAIRMINT")
+
+ # we prepare the new issuance
+ last_issuance = ledger.get_asset(db, asset)
+ bindings = last_issuance | {
+ "tx_index": tx["tx_index"],
+ "tx_hash": tx["tx_hash"],
+ "block_index": tx["block_index"],
+ "quantity": earn_quantity + commission,
+ "source": tx["source"],
+ "status": "valid",
+ "fee_paid": 0,
+ }
+
+ # we check if the hard cap is reached and in this case...
+ if fairminter["hard_cap"] > 0:
+ asset_supply = ledger.asset_supply(db, fairminter["asset"])
+ if asset_supply + quantity == fairminter["hard_cap"]:
+ # ...we unlock the issuances for this assets
+ bindings["fair_minting"] = False
+ # we check if we need to lock the assets
+ if fairminter["lock_quantity"]:
+ bindings["locked"] = True
+ if fairminter["lock_description"]:
+ bindings["description_locked"] = True
+ # and we close the fairminter
+ if (
+ fairminter["soft_cap"] > 0
+ and fairminter["soft_cap_deadline_block"] >= tx["block_index"]
+ ):
+ fairminter_mod.check_fairminter_soft_cap(db, fairminter, tx["block_index"])
+ ledger.update_fairminter(db, fairminter["tx_hash"], {"status": "closed"})
+
+ # we insert the new issuance
+ del bindings["supply"]
+ ledger.insert_record(db, "issuances", bindings, "ASSET_ISSUANCE", {"asset_events": "fairmint"})
+
+ # log
+ logger.info(
+ f"{earn_quantity + commission} {asset} minted for {paid_quantity} XCP by {tx['source']}"
+ )
diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py
new file mode 100644
index 0000000000..09e479ad49
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py
@@ -0,0 +1,743 @@
+import decimal
+import logging
+import struct
+
+from counterpartycore.lib import config, database, exceptions, ledger, util
+
+logger = logging.getLogger(config.LOGGER_NAME)
+D = decimal.Decimal
+
+ID = 90
+
+
+def initialise(db):
+ cursor = db.cursor()
+
+ create_table_sql = """
+ CREATE TABLE IF NOT EXISTS fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ )
+ """
+ cursor.execute(create_table_sql)
+
+ database.create_indexes(
+ cursor,
+ "fairminters",
+ [
+ ["tx_hash"],
+ ["block_index"],
+ ["asset"],
+ ["asset_longname"],
+ ["asset_parent"],
+ ["source"],
+ ["status"],
+ ],
+ )
+
+
+def validate(
+ db,
+ source,
+ asset,
+ asset_parent="",
+ price=0,
+ quantity_by_price=1,
+ max_mint_per_tx=0,
+ hard_cap=0,
+ premint_quantity=0,
+ start_block=0,
+ end_block=0,
+ soft_cap=0,
+ soft_cap_deadline_block=0,
+ minted_asset_commission=0.0,
+ burn_payment=False,
+ lock_description=False,
+ lock_quantity=False,
+ divisible=True,
+ description="",
+):
+ problems = []
+
+ # check integer parameters
+ for param_name, param_value in {
+ "price": price,
+ "quantity_by_price": quantity_by_price,
+ "max_mint_per_tx": max_mint_per_tx,
+ "hard_cap": hard_cap,
+ "premint_quantity": premint_quantity,
+ "start_block": start_block,
+ "end_block": end_block,
+ "soft_cap": soft_cap,
+ "soft_cap_deadline_block": soft_cap_deadline_block,
+ }.items():
+ if param_value != 0:
+ if not isinstance(param_value, int):
+ problems.append(f"`{param_name}` must be an integer")
+ elif param_value < 0:
+ problems.append(f"`{param_name}` must be >= 0.")
+ elif param_value > config.MAX_INT:
+ problems.append(f"`{param_name}` exceeds maximum value")
+ if quantity_by_price < 1:
+ problems.append("quantity_by_price must be >= 1")
+ # check boolean parameters
+ for param_name, param_value in {
+ "burn_payment": burn_payment,
+ "lock_description": lock_description,
+ "lock_quantity": lock_quantity,
+ "divisible": divisible,
+ }.items():
+ if not isinstance(param_value, bool):
+ problems.append(f"`{param_name}` must be a boolean.")
+ # check minted_asset_commission
+ if minted_asset_commission is not None:
+ if not isinstance(minted_asset_commission, (float, D)):
+ problems.append("minted_asset_commission must be a float")
+ elif minted_asset_commission < 0 or minted_asset_commission >= 1:
+ problems.append(
+ "`minted_asset_commission` must be less than 0 or greater than or equal to 1"
+ )
+
+ # check asset name format
+ try:
+ ledger.generate_asset_id(asset, util.CURRENT_BLOCK_INDEX)
+ if asset_parent != "":
+ ledger.generate_asset_id(asset_parent, util.CURRENT_BLOCK_INDEX)
+ except exceptions.AssetNameError as e:
+ problems.append(f"Invalid asset name: {e}")
+
+ asset_name = asset
+ # is subasset ?
+ if asset_parent != "":
+ asset_name = f"{asset_parent}.{asset}"
+
+ # check if asset exists
+ existing_asset = ledger.get_asset(db, asset_name)
+
+ if existing_asset:
+ # check if a fair minter is already opened for this asset
+ if existing_asset["fair_minting"]:
+ problems.append(f"Fair minter already opened for `{asset_name}`.")
+ # check if asset is locked
+ if existing_asset["locked"]:
+ problems.append(f"Asset `{asset_name}` is locked.")
+ # check if source is the issuer
+ if existing_asset["issuer"] != source:
+ problems.append(f"Asset `{asset_name}` is not issued by `{source}`.")
+ # check if description is locked
+ # TODO
+ # if description != "" and existing_asset["description_locked"]:
+ # problems.append(f"Description of asset `{asset_name}` is locked.")
+ # check if hard cap is already reached
+ if hard_cap and existing_asset["supply"] + premint_quantity >= hard_cap:
+ problems.append(f"Hard cap of asset `{asset_name}` is already reached.")
+ else:
+ if premint_quantity > 0 and premint_quantity >= hard_cap:
+ problems.append("Premint quantity must be < hard cap.")
+
+ if existing_asset is None and asset_parent != "":
+ # if the asset does not exist its parent must exist
+ existing_parent = ledger.get_asset(db, asset_parent)
+ if existing_parent is None:
+ problems.append("Asset parent does not exist")
+
+ if price == 0 and max_mint_per_tx == 0:
+ problems.append("Price or max_mint_per_tx must be > 0.")
+
+ if end_block < 0:
+ problems.append("end block must be greater than or equal to 0")
+
+ if start_block > end_block > 0:
+ problems.append("Start block must be <= end block.") # could be one block fair minter
+
+ if soft_cap >= hard_cap > 0:
+ problems.append("Soft cap must be < hard cap.")
+ if soft_cap > 0:
+ if not soft_cap_deadline_block:
+ problems.append("Soft cap deadline block must be specified if soft cap is specified.")
+ elif soft_cap_deadline_block >= end_block > 0:
+ problems.append("Soft cap deadline block must be < end block.")
+
+ return problems
+
+
+def compose(
+ db,
+ source,
+ asset,
+ asset_parent="",
+ price=0,
+ quantity_by_price=1,
+ max_mint_per_tx=0,
+ hard_cap=0,
+ premint_quantity=0,
+ start_block=0,
+ end_block=0,
+ soft_cap=0,
+ soft_cap_deadline_block=0,
+ minted_asset_commission=0.0,
+ burn_payment=False,
+ lock_description=False,
+ lock_quantity=False,
+ divisible=True,
+ description="",
+):
+ # validate parameters
+ problems = validate(
+ db,
+ source,
+ asset,
+ asset_parent,
+ price,
+ quantity_by_price,
+ max_mint_per_tx,
+ hard_cap,
+ premint_quantity,
+ start_block,
+ end_block,
+ soft_cap,
+ soft_cap_deadline_block,
+ minted_asset_commission,
+ burn_payment,
+ lock_description,
+ lock_quantity,
+ divisible,
+ description,
+ )
+ if len(problems) > 0:
+ raise exceptions.ComposeError(problems)
+
+ minted_asset_commission_int = int(minted_asset_commission * 1e8)
+
+ # create message
+ data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID)
+ # to optimize the data size (avoiding fixed sizes per parameter) we use a simple
+ # string of characters separated by `|`.
+ # The description is placed last to be able to contain `|`.
+ data_content = "|".join(
+ [
+ str(value)
+ for value in [
+ asset,
+ asset_parent,
+ price,
+ quantity_by_price,
+ max_mint_per_tx,
+ hard_cap,
+ premint_quantity,
+ start_block,
+ end_block,
+ soft_cap,
+ soft_cap_deadline_block,
+ minted_asset_commission_int,
+ int(burn_payment),
+ int(lock_description),
+ int(lock_quantity),
+ int(divisible),
+ description,
+ ]
+ ]
+ ).encode("utf-8")
+ data += struct.pack(f">{len(data_content)}s", data_content)
+ return (source, [], data)
+
+
+def unpack(message, return_dict=False):
+ try:
+ data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|")
+ arg_count = len(data_content)
+ (
+ asset,
+ asset_parent,
+ price,
+ quantity_by_price,
+ max_mint_per_tx,
+ hard_cap,
+ premint_quantity,
+ start_block,
+ end_block,
+ soft_cap,
+ soft_cap_deadline_block,
+ minted_asset_commission_int,
+ burn_payment,
+ lock_description,
+ lock_quantity,
+ divisible,
+ ) = data_content[0 : arg_count - 1]
+ # The description is placed last to be able to contain `|`.
+ description = "|".join(data_content[arg_count - 1 :])
+
+ minted_asset_commission = D(minted_asset_commission_int) / D(1e8)
+
+ if return_dict:
+ return {
+ "asset": asset,
+ "asset_parent": asset_parent,
+ "price": int(price),
+ "quantity_by_price": int(quantity_by_price),
+ "max_mint_per_tx": int(max_mint_per_tx),
+ "hard_cap": int(hard_cap),
+ "premint_quantity": int(premint_quantity),
+ "start_block": int(start_block),
+ "end_block": int(end_block),
+ "soft_cap": int(soft_cap),
+ "soft_cap_deadline_block": int(soft_cap_deadline_block),
+ "minted_asset_commission": minted_asset_commission,
+ "burn_payment": bool(int(burn_payment)),
+ "lock_description": bool(int(lock_description)),
+ "lock_quantity": bool(int(lock_quantity)),
+ "divisible": bool(int(divisible)),
+ "description": description,
+ }
+
+ return (
+ asset,
+ asset_parent,
+ int(price),
+ int(quantity_by_price),
+ int(max_mint_per_tx),
+ int(hard_cap),
+ int(premint_quantity),
+ int(start_block),
+ int(end_block),
+ int(soft_cap),
+ int(soft_cap_deadline_block),
+ minted_asset_commission,
+ bool(int(burn_payment)),
+ bool(int(lock_description)),
+ bool(int(lock_quantity)),
+ bool(int(divisible)),
+ description,
+ )
+ except Exception as e:
+ raise exceptions.UnpackError(f"Cannot unpack fair minter message: {e}") from e
+
+
+def parse(db, tx, message):
+ (
+ asset,
+ asset_parent,
+ price,
+ quantity_by_price,
+ max_mint_per_tx,
+ hard_cap,
+ premint_quantity,
+ start_block,
+ end_block,
+ soft_cap,
+ soft_cap_deadline_block,
+ minted_asset_commission,
+ burn_payment,
+ lock_description,
+ lock_quantity,
+ divisible,
+ description,
+ ) = unpack(message)
+
+ problems = validate(
+ db,
+ tx["source"],
+ asset,
+ asset_parent,
+ price,
+ quantity_by_price,
+ max_mint_per_tx,
+ hard_cap,
+ premint_quantity,
+ start_block,
+ end_block,
+ soft_cap,
+ soft_cap_deadline_block,
+ minted_asset_commission,
+ burn_payment,
+ lock_description,
+ lock_quantity,
+ divisible,
+ description,
+ )
+
+ # if problems, insert into fairminters table with status invalid and return
+ if problems:
+ status = "invalid: " + "; ".join(problems)
+ bindings = {
+ "tx_hash": tx["tx_hash"],
+ "tx_index": tx["tx_index"],
+ "block_index": tx["block_index"],
+ "source": tx["source"],
+ "status": status,
+ }
+ ledger.insert_record(db, "fairminters", bindings, "NEW_FAIRMINTER")
+ logger.info(f"Fair minter {tx['tx_hash']} is invalid: {status}")
+ return
+
+ # determine status
+ status = "pending"
+ if start_block == 0 or tx["block_index"] >= start_block:
+ status = "open"
+ if end_block > 0 and tx["block_index"] > end_block:
+ status = "closed"
+
+ # is subasset ?
+ asset_longname = ""
+ if asset_parent != "":
+ asset_longname = f"{asset_parent}.{asset}"
+
+ existing_asset = ledger.get_asset(db, asset_longname if asset_longname != "" else asset)
+
+ fee = 0
+ asset_name = asset
+ if asset_longname != "":
+ # if the asset is a subasset and does not exist we generate a random numeric name
+ # subassets are free
+ if existing_asset is None:
+ asset_name = util.generate_random_asset()
+ else:
+ asset_name = existing_asset["asset"]
+ else:
+ # only new named assets have fees
+ if existing_asset is None and not asset.startswith("A"):
+ fee = 0.5 * config.UNIT
+
+ # we only premint if the faireminter is open and soft cap reached,
+ # otherwise we will do it at opening (`start_block`) or when
+ # the soft cap is reached
+ pre_minted = False
+ if status == "open" and premint_quantity > 0 and soft_cap == 0:
+ pre_minted = True
+
+ # insert into fairminters table
+ bindings = {
+ "tx_hash": tx["tx_hash"],
+ "tx_index": tx["tx_index"],
+ "block_index": tx["block_index"],
+ "source": tx["source"],
+ "asset": asset_name,
+ "asset_parent": asset_parent,
+ "asset_longname": asset_longname,
+ "description": description,
+ "price": price,
+ "quantity_by_price": quantity_by_price,
+ "hard_cap": hard_cap,
+ "burn_payment": burn_payment,
+ "max_mint_per_tx": max_mint_per_tx,
+ "premint_quantity": premint_quantity,
+ "start_block": start_block,
+ "end_block": end_block,
+ "minted_asset_commission_int": int(minted_asset_commission * D(1e8)),
+ "soft_cap": soft_cap,
+ "soft_cap_deadline_block": soft_cap_deadline_block,
+ "lock_description": lock_description,
+ "lock_quantity": lock_quantity,
+ "divisible": divisible,
+ "status": status,
+ "pre_minted": pre_minted,
+ }
+ ledger.insert_record(db, "fairminters", bindings, "NEW_FAIRMINTER")
+ logger.info(f"Fair minter opened for {asset_name} by {tx['source']}.")
+
+ if not existing_asset:
+ # Add to table of assets if new asset
+ asset_id = ledger.generate_asset_id(asset_name, tx["block_index"])
+ bindings = {
+ "asset_id": str(asset_id),
+ "asset_name": asset_name,
+ "block_index": tx["block_index"],
+ "asset_longname": asset_longname if asset_longname != "" else None,
+ }
+ ledger.insert_record(db, "assets", bindings, "ASSET_CREATION")
+
+ # insert issuance
+ bindings = {
+ "tx_index": tx["tx_index"],
+ "tx_hash": tx["tx_hash"],
+ "block_index": tx["block_index"],
+ "asset": asset,
+ "quantity": premint_quantity,
+ "divisible": divisible,
+ "source": tx["source"],
+ "issuer": tx["source"],
+ "transfer": False,
+ "callable": False,
+ "call_date": 0,
+ "call_price": 0,
+ "description": description,
+ "fee_paid": fee,
+ "locked": False,
+ "reset": False,
+ "status": "valid",
+ "asset_longname": asset_longname,
+ "fair_minting": True,
+ }
+ ledger.insert_record(
+ db, "issuances", bindings, "ASSET_ISSUANCE", {"asset_events": "open_fairminter"}
+ )
+
+ if pre_minted:
+ # issuer is credited with the preminted quantity
+ ledger.credit(
+ db,
+ tx["source"],
+ asset_name,
+ premint_quantity,
+ tx["tx_index"],
+ action="premint",
+ event=tx["tx_hash"],
+ )
+ elif premint_quantity > 0:
+ # This means that the fair mint is not yet open. In this case we escrow the premint.
+ ledger.credit(
+ db,
+ config.UNSPENDABLE,
+ asset_name,
+ premint_quantity,
+ tx["tx_index"],
+ action="escrowed premint",
+ event=tx["tx_hash"],
+ )
+
+ # debit fees
+ if fee > 0:
+ ledger.debit(
+ db,
+ tx["source"],
+ config.XCP,
+ int(fee),
+ tx["tx_index"],
+ action="fairminter fee",
+ event=tx["tx_hash"],
+ )
+
+
+def unescrow_premint(db, fairminter, destroy=False):
+ # unescrow premint quantity...
+ ledger.debit(
+ db,
+ config.UNSPENDABLE,
+ fairminter["asset"],
+ fairminter["premint_quantity"],
+ 0, # tx_index=0 for block actions
+ action="unescrowed premint",
+ event=fairminter["tx_hash"],
+ )
+ # ...and send it to the issuer
+ if not destroy:
+ ledger.credit(
+ db,
+ fairminter["source"],
+ fairminter["asset"],
+ fairminter["premint_quantity"],
+ 0, # tx_index=0 for block actions
+ action="premint",
+ event=fairminter["tx_hash"],
+ )
+
+
+# called each block
+def open_fairminters(db, block_index):
+ # gets the fairminters with a `start_block` equal to `block_index`
+ fairminters = ledger.get_fairminters_to_open(db, block_index)
+ for fairminter in fairminters:
+ assert fairminter["status"] != "open" # sanity check
+ # update status to open
+ update_data = {"status": "open"}
+ # if there is a premint we must unescrow it and send it to the issuer
+ if fairminter["premint_quantity"] > 0 and fairminter["soft_cap"] == 0:
+ assert not fairminter["pre_minted"] # sanity check
+ unescrow_premint(db, fairminter)
+ update_data["pre_minted"] = True
+ # update fairminter
+ ledger.update_fairminter(db, fairminter["tx_hash"], update_data)
+
+
+def close_fairminter(db, fairminter, block_index):
+ # update status to closed
+ ledger.update_fairminter(db, fairminter["tx_hash"], {"status": "closed"})
+ # unlock issuance when fair minter is closed
+ last_issuance = ledger.get_asset(db, fairminter["asset"])
+ last_issuance["quantity"] = 0
+ last_issuance["fair_minting"] = False
+ last_issuance["block_index"] = block_index
+ last_issuance["msg_index"] += 1 # (tx_index, msg_index) and (tx_hash, msg_index) are unique
+ if fairminter["lock_quantity"]:
+ last_issuance["locked"] = True
+ if fairminter["lock_description"]:
+ last_issuance["description_locked"] = True
+ del last_issuance["supply"]
+ ledger.insert_record(
+ db, "issuances", last_issuance, "ASSET_ISSUANCE", {"asset_events": "close_fairminter"}
+ )
+
+
+def close_fairminters(db, block_index):
+ fairminters = ledger.get_fairminters_to_close(db, block_index)
+ for fairminter in fairminters:
+ assert fairminter["status"] != "closed" # sanity check
+ close_fairminter(db, fairminter, block_index)
+
+
+def check_fairminter_soft_cap(db, fairminter, block_index):
+ fairmint_quantity, paid_quantity = ledger.get_fairmint_quantities(db, fairminter["tx_hash"])
+ fairminter_supply = fairmint_quantity + fairminter["premint_quantity"]
+ fairmints = ledger.get_valid_fairmints(db, fairminter["tx_hash"])
+
+ # we start by unescrow all the assets and payments for this fairminter...
+ ledger.debit(
+ db,
+ config.UNSPENDABLE,
+ fairminter["asset"],
+ fairminter_supply,
+ 0, # tx_index=0 for block actions
+ action="unescrowed fairmint",
+ event=fairminter["tx_hash"],
+ )
+ if paid_quantity > 0:
+ ledger.debit(
+ db,
+ config.UNSPENDABLE,
+ config.XCP,
+ paid_quantity,
+ 0, # tx_index=0 for block actions
+ action="unescrowed fairmint payment",
+ event=fairminter["tx_hash"],
+ )
+ # ...and then we loop on the fairmints to decide how
+ # to distribute the assets and payments
+ for fairmint in fairmints:
+ # is the fairmint paid ?
+ if fairmint["paid_quantity"] > 0:
+ # soft cap not reached
+ if fairmint_quantity < fairminter["soft_cap"]:
+ # reimburse paid quantity to minter
+ xcp_destination = fairmint["source"]
+ xcp_action = "fairmint refund"
+ # soft cap reached but payment is burned
+ elif fairminter["burn_payment"]:
+ # burn paid quantity
+ xcp_destination = None
+ xcp_action = "burned fairmint payment"
+ # soft cap reached and payment sent to issuer
+ else:
+ # send funds to issuer
+ xcp_destination = fairminter["source"]
+ xcp_action = "fairmint payment"
+ # credit paid quantity to issuer or minter...
+ if xcp_destination:
+ ledger.credit(
+ db,
+ xcp_destination,
+ config.XCP,
+ fairmint["paid_quantity"],
+ fairmint["tx_index"],
+ action=xcp_action,
+ event=fairmint["tx_hash"],
+ )
+ # ...or destroy it
+ else:
+ bindings = {
+ "tx_index": fairmint["tx_index"],
+ "tx_hash": fairmint["tx_hash"],
+ "block_index": block_index,
+ "source": fairmint["source"],
+ "asset": config.XCP,
+ "quantity": fairmint["paid_quantity"],
+ "tag": xcp_action,
+ "status": "valid",
+ }
+ ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION")
+
+ # the soft cap is reached:
+ # - the assets are distributed to the miner,
+ # - the commissions to the issuer,
+ # - the premint is unescrowed
+ if fairmint_quantity >= fairminter["soft_cap"]:
+ # send assets to minter
+ ledger.credit(
+ db,
+ fairmint["source"],
+ fairminter["asset"],
+ fairmint["earn_quantity"],
+ fairmint["tx_index"],
+ action="unescrowed fairmint",
+ event=fairmint["tx_hash"],
+ )
+ # send commission to issuer
+ if fairmint["commission"] > 0:
+ ledger.credit(
+ db,
+ fairminter["source"],
+ fairminter["asset"],
+ fairmint["commission"],
+ fairmint["tx_index"],
+ action="fairmint commission",
+ event=fairmint["tx_hash"],
+ )
+ if fairminter["premint_quantity"] > 0:
+ ledger.credit(
+ db,
+ fairminter["source"],
+ fairminter["asset"],
+ fairminter["premint_quantity"],
+ 0, # tx_index=0 for block actions
+ action="premint",
+ event=fairminter["tx_hash"],
+ )
+ # the soft cap is not reached, we close the
+ # fairminter and destroy all the assets at once
+ if fairmint_quantity < fairminter["soft_cap"]:
+ close_fairminter(db, fairminter, block_index)
+ # destroy assets
+ bindings = {
+ "tx_index": fairminter["tx_index"],
+ "tx_hash": fairminter["tx_hash"],
+ "block_index": block_index,
+ "source": fairminter["source"],
+ "asset": fairminter["asset"],
+ "quantity": fairminter_supply,
+ "tag": "soft cap not reached",
+ "status": "valid",
+ }
+ ledger.insert_record(db, "destructions", bindings, "ASSET_DESTRUCTION")
+
+
+def check_soft_cap(db, block_index):
+ # get fairminters with `soft_cap_deadline_block` equal to `block_index`
+ fairminters = ledger.get_soft_caped_fairminters(db, block_index)
+
+ # we loop on the fairminters to check if the soft cap is reached.
+ # If it is reached we transfer the assets to the minters and the payments
+ # to the issuer. If not we refund the payments and destroy the assets.
+ for fairminter in fairminters:
+ check_fairminter_soft_cap(db, fairminter, block_index)
+
+
+# This function is called on each block BEFORE parsing the transactions
+def before_block(db, block_index):
+ open_fairminters(db, block_index)
+
+
+# This function is called on each block AFTER parsing the transactions
+def after_block(db, block_index):
+ check_soft_cap(db, block_index)
+ close_fairminters(db, block_index)
diff --git a/counterparty-core/counterpartycore/lib/messages/issuance.py b/counterparty-core/counterpartycore/lib/messages/issuance.py
index 473c2fc1e4..94cfdcfd6f 100644
--- a/counterparty-core/counterpartycore/lib/messages/issuance.py
+++ b/counterparty-core/counterpartycore/lib/messages/issuance.py
@@ -66,6 +66,7 @@ def initialise(db):
status TEXT,
asset_longname TEXT,
reset BOOL,
+ description_locked BOOL,
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index))
""")
@@ -76,6 +77,8 @@ def initialise(db):
cursor.execute("""ALTER TABLE issuances ADD COLUMN asset_longname TEXT""")
if "reset" not in columns:
cursor.execute("""ALTER TABLE issuances ADD COLUMN reset BOOL""")
+ if "description_locked" not in columns:
+ cursor.execute("""ALTER TABLE issuances ADD COLUMN description_locked BOOL""")
# If sweep_hotfix activated, Create issuances copy, copy old data, drop old table, rename new table, recreate indexes
# SQLite can’t do `ALTER TABLE IF COLUMN NOT EXISTS` nor can drop UNIQUE constraints
@@ -100,6 +103,7 @@ def initialise(db):
status TEXT,
asset_longname TEXT,
reset BOOL,
+ description_locked BOOL,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index))
@@ -107,15 +111,49 @@ def initialise(db):
cursor.execute(
"""INSERT INTO new_issuances(tx_index, tx_hash, msg_index,
block_index, asset, quantity, divisible, source, issuer, transfer, callable,
- call_date, call_price, description, fee_paid, locked, status, asset_longname, reset)
+ call_date, call_price, description, fee_paid, locked, status, asset_longname, reset, description_locked)
SELECT tx_index, tx_hash, 0, block_index, asset, quantity, divisible, source,
issuer, transfer, callable, call_date, call_price, description, fee_paid,
- locked, status, asset_longname, reset FROM issuances""",
+ locked, status, asset_longname, reset, description_locked FROM issuances""",
{},
)
cursor.execute("DROP TABLE issuances")
cursor.execute("ALTER TABLE new_issuances RENAME TO issuances")
+ if "fair_minting" not in columns:
+ cursor.execute("""ALTER TABLE issuances ADD COLUMN fair_minting BOOL DEFAULT 0""")
+
+ # remove FOREIGN KEY with transactions
+ if database.has_fk_on(cursor, "issuances", "transactions.tx_index"):
+ create_issuances_query = """
+ CREATE TABLE IF NOT EXISTS issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ )
+ """
+ database.copy_old_table(cursor, "issuances", create_issuances_query)
+
database.create_indexes(
cursor,
"issuances",
@@ -216,6 +254,9 @@ def validate(
# before the issuance_lock_fix, only the last issuance was checked
issuance_locked = True
+ if last_issuance["fair_minting"]:
+ problems.append("cannot issue during fair minting")
+
if last_issuance["issuer"] != source:
problems.append("issued by another address")
if (bool(last_issuance["divisible"]) != bool(divisible)) and (
@@ -236,6 +277,14 @@ def validate(
problems.append("locked asset and non‐zero quantity")
if issuance_locked and reset:
problems.append("cannot reset a locked asset")
+ if (
+ util.enabled("lockable_issuance_descriptions", block_index)
+ and last_issuance["description_locked"]
+ ):
+ if description is not None:
+ problems.append("Cannot update a locked description")
+ if reset:
+ problems.append("Cannot reset issuance with locked description")
else:
reissuance = False
if description.lower() == "lock":
@@ -277,8 +326,11 @@ def validate(
cursor.close()
if util.enabled("numeric_asset_names"): # Protocol change.
if subasset_longname is not None and util.enabled("subassets"): # Protocol change.
- # subasset issuance is 0.25
- fee = int(0.25 * config.UNIT)
+ if util.enabled("free_subassets", block_index):
+ fee = 0
+ else:
+ # subasset issuance is 0.25
+ fee = int(0.25 * config.UNIT)
elif len(asset) >= 13:
fee = 0
else:
@@ -371,7 +423,9 @@ def compose(
subasset_parent = None
subasset_longname = None
if util.enabled("subassets"): # Protocol change.
- subasset_parent, subasset_longname = util.parse_subasset_from_asset_name(asset)
+ subasset_parent, subasset_longname = util.parse_subasset_from_asset_name(
+ asset, util.enabled("allow_subassets_on_numerics")
+ )
if subasset_longname is not None:
# try to find an existing subasset
assets = ledger.get_assets_by_longname(db, subasset_longname)
@@ -381,7 +435,7 @@ def compose(
else:
# this is a new issuance
# generate a random numeric asset id which will map to this subasset
- asset = util.generate_random_asset()
+ asset = util.generate_random_asset(subasset_longname)
asset_id = ledger.generate_asset_id(asset, util.CURRENT_BLOCK_INDEX)
asset_name = ledger.generate_asset_name(
@@ -769,6 +823,14 @@ def unpack(db, message, message_type_id, block_index, return_dict=False):
)
+def _get_last_description(db, asset, default):
+ issuances = ledger.get_issuances(db, asset=asset, status="valid", first=True)
+ if len(issuances) > 0:
+ return issuances[-1]["description"] # Use last description
+
+ return default
+
+
def parse(db, tx, message, message_type_id):
(
asset_id,
@@ -791,7 +853,7 @@ def parse(db, tx, message, message_type_id):
# ensure the subasset_longname is valid
util.validate_subasset_longname(subasset_longname)
subasset_parent, subasset_longname = util.parse_subasset_from_asset_name(
- subasset_longname
+ subasset_longname, util.enabled("allow_subassets_on_numerics")
)
except exceptions.AssetNameError as e: # noqa: F841
asset = None
@@ -896,7 +958,9 @@ def parse(db, tx, message, message_type_id):
"asset_longname": reissued_asset_longname,
}
- ledger.insert_record(db, "issuances", bindings, "RESET_ISSUANCE")
+ ledger.insert_record(
+ db, "issuances", bindings, "RESET_ISSUANCE", {"asset_events": "reset"}
+ )
logger.info("Reset issuance of %(asset)s [%(tx_hash)s] (%(status)s)", bindings)
@@ -913,6 +977,8 @@ def parse(db, tx, message, message_type_id):
)
else:
+ asset_events = []
+
if tx["destination"]:
issuer = tx["destination"]
transfer = True
@@ -936,26 +1002,35 @@ def parse(db, tx, message, message_type_id):
# Lock?
if not isinstance(lock, bool):
lock = False
- if status == "valid":
- if (description and description.lower() == "lock") or lock:
- lock = True
- issuances = ledger.get_issuances(db, asset=asset, status="valid", first=True)
- if description.lower() == "lock" and len(issuances) > 0:
- description = issuances[-1]["description"] # Use last description
- if not reissuance:
- # Add to table of assets.
- bindings = {
- "asset_id": str(asset_id),
- "asset_name": str(asset),
- "block_index": tx["block_index"],
- "asset_longname": subasset_longname,
- }
- ledger.insert_record(db, "assets", bindings, "ASSET_CREATION")
+ description_locked = False
+ if status == "valid" and description:
+ if description.lower() == "lock":
+ lock = True
+ description = _get_last_description(db, asset, description)
+ asset_events.append("lock_quantity")
+ elif description.lower() == "lock_description" and util.enabled(
+ "lockable_issuance_descriptions", tx["block_index"]
+ ):
+ description_locked = True
+ description = _get_last_description(db, asset, description)
+ asset_events.append("lock_description")
+
+ if status == "valid" and not reissuance:
+ # Add to table of assets.
+ bindings = {
+ "asset_id": str(asset_id),
+ "asset_name": str(asset),
+ "block_index": tx["block_index"],
+ "asset_longname": subasset_longname,
+ }
+ ledger.insert_record(db, "assets", bindings, "ASSET_CREATION")
+ asset_events.append("creation")
if status == "valid" and reissuance:
# when reissuing, add the asset_longname to the issuances table for API lookups
asset_longname = reissued_asset_longname
+ asset_events.append("reissuance")
else:
asset_longname = subasset_longname
@@ -976,12 +1051,22 @@ def parse(db, tx, message, message_type_id):
"description": description,
"fee_paid": fee,
"locked": lock,
+ "description_locked": description_locked,
"reset": reset,
"status": status,
"asset_longname": asset_longname,
}
+ # ensure last issuance is locked when fair minting is active
+ if "cannot issue during fair minting" in status:
+ bindings["fair_minting"] = True
if "integer overflow" not in status:
- ledger.insert_record(db, "issuances", bindings, "ASSET_ISSUANCE")
+ ledger.insert_record(
+ db,
+ "issuances",
+ bindings,
+ "ASSET_ISSUANCE",
+ {"asset_events": " ".join(asset_events)},
+ )
logger.info(
"Issuance of %(quantity)s %(asset)s by %(source)s [%(tx_hash)s] (%(status)s)", bindings
diff --git a/counterparty-core/counterpartycore/lib/messages/order.py b/counterparty-core/counterpartycore/lib/messages/order.py
index 7ca34248da..98b7d715f5 100644
--- a/counterparty-core/counterpartycore/lib/messages/order.py
+++ b/counterparty-core/counterpartycore/lib/messages/order.py
@@ -1,5 +1,3 @@
-#! /usr/bin/python3
-
# Filled orders may not be re‐opened, so only orders not involving BTC (and so
# which cannot have expired order matches) may be filled.
import decimal
@@ -575,6 +573,8 @@ def parse(db, tx, message):
min_btc_quantity = 0.001 * config.UNIT # 0.001 BTC
if util.enabled("btc_order_minimum_adjustment_1"):
min_btc_quantity = 0.00001 * config.UNIT # 0.00001 BTC
+ if util.enabled("fix_min_btc_quantity", tx["block_index"]):
+ min_btc_quantity = int(D("0.00001") * D(1e8))
if (give_asset == config.BTC and give_quantity < min_btc_quantity) or (
get_asset == config.BTC and get_quantity < min_btc_quantity
@@ -764,6 +764,9 @@ def match(db, tx, block_index=None):
if block_index >= 313900 or config.TESTNET or config.REGTEST: # Protocol change.
min_btc_quantity = 0.001 * config.UNIT # 0.001 BTC
+ if util.enabled("fix_min_btc_quantity", block_index):
+ # we subtract 1 because the <= instead of < like when checking orders
+ min_btc_quantity = int(D("0.00001") * D(1e8)) - 1
if (forward_asset == config.BTC and forward_quantity <= min_btc_quantity) or (
backward_asset == config.BTC and backward_quantity <= min_btc_quantity
):
@@ -1017,9 +1020,9 @@ def expire_order_matches(db, block_index):
def expire(db, block_index):
- # if util.enabled("expire_order_matches_then_orders"):
- # expire_order_matches(db, block_index)
- # expire_orders(db, block_index)
- # else:
- expire_orders(db, block_index)
- expire_order_matches(db, block_index)
+ if util.enabled("expire_order_matches_then_orders"):
+ expire_order_matches(db, block_index)
+ expire_orders(db, block_index)
+ else:
+ expire_orders(db, block_index)
+ expire_order_matches(db, block_index)
diff --git a/counterparty-core/counterpartycore/lib/messages/send.py b/counterparty-core/counterpartycore/lib/messages/send.py
index b0317e5e2e..77bcf65d09 100644
--- a/counterparty-core/counterpartycore/lib/messages/send.py
+++ b/counterparty-core/counterpartycore/lib/messages/send.py
@@ -90,6 +90,9 @@ def initialise(db):
if "memo" not in columns:
cursor.execute("""ALTER TABLE sends ADD COLUMN memo BLOB""")
+ if "fee_paid" not in columns:
+ cursor.execute("""ALTER TABLE sends ADD COLUMN fee_paid INTEGER DEFAULT 0""")
+
database.create_indexes(
cursor,
"sends",
diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py
new file mode 100644
index 0000000000..b4ad365bba
--- /dev/null
+++ b/counterparty-core/counterpartycore/lib/messages/utxo.py
@@ -0,0 +1,317 @@
+import logging
+import struct
+
+from counterpartycore.lib import backend, config, exceptions, gas, ledger, script, util
+
+logger = logging.getLogger(config.LOGGER_NAME)
+
+ID = 100
+
+
+def validate(db, source, destination, asset, quantity, block_index=None):
+ problems = []
+
+ if asset == config.BTC:
+ problems.append("cannot send bitcoins") # Only for parsing.
+
+ if not isinstance(quantity, int):
+ problems.append("quantity must be in satoshis")
+ return problems
+
+ if quantity <= 0:
+ problems.append("quantity must be greater than zero")
+
+ # For SQLite3
+ if quantity > config.MAX_INT:
+ problems.append("integer overflow")
+
+ source_is_address = True
+ destination_is_address = True
+ # check if source is an address
+ try:
+ script.validate(source)
+ except script.AddressError:
+ source_is_address = False
+ # check if destination is an address
+ if destination:
+ try:
+ script.validate(destination)
+ except script.AddressError:
+ destination_is_address = False
+
+ # check if source is a UTXO
+ source_is_utxo = util.is_utxo_format(source)
+ # check if destination is a UTXO
+ if destination:
+ destination_is_utxo = util.is_utxo_format(destination)
+ else:
+ destination_is_utxo = True
+
+ # attach to utxo
+ if source_is_address and not destination_is_utxo:
+ problems.append("If source is an address, destination must be a UTXO")
+ # or detach from utxo
+ if source_is_utxo and not destination_is_address:
+ problems.append("If source is a UTXO, destination must be an address")
+
+ # fee only for attach to utxo
+ if source_is_address:
+ fee = gas.get_transaction_fee(db, ID, block_index or util.CURRENT_BLOCK_INDEX)
+ else:
+ fee = 0
+
+ # check if source has enough funds
+ asset_balance = ledger.get_balance(db, source, asset)
+ if asset == config.XCP:
+ # fee is always paid in XCP
+ if asset_balance < quantity + fee:
+ problems.append("insufficient funds for transfer and fee")
+ else:
+ if asset_balance < quantity:
+ problems.append("insufficient funds for transfer")
+ if source_is_address:
+ xcp_balance = ledger.get_balance(db, source, config.XCP)
+ if xcp_balance < fee:
+ problems.append("insufficient funds for fee")
+
+ return problems
+
+
+def compose(db, source, destination, asset, quantity):
+ """
+ Compose a UTXO message.
+ source: the source address or UTXO
+ destination: the destination address or UTXO
+ asset: the asset to transfer
+ quantity: the quantity to transfer
+ """
+ problems = validate(db, source, destination, asset, quantity)
+ if problems:
+ raise exceptions.ComposeError(problems)
+
+ # we make an RPC call only at the time of composition
+ if (
+ destination
+ and util.is_utxo_format(destination)
+ and not backend.bitcoind.is_valid_utxo(destination)
+ ):
+ raise exceptions.ComposeError(["destination is not a UTXO"])
+ if util.is_utxo_format(source) and not backend.bitcoind.is_valid_utxo(source):
+ raise exceptions.ComposeError(["source is not a UTXO"])
+
+ # create message
+ data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID)
+ # to optimize the data size (avoiding fixed sizes per parameter) we use a simple
+ # string of characters separated by `|`.
+ data_content = "|".join(
+ [
+ str(value)
+ for value in [
+ source,
+ destination or "",
+ asset,
+ quantity,
+ ]
+ ]
+ ).encode("utf-8")
+ data += struct.pack(f">{len(data_content)}s", data_content)
+
+ source_address = source
+ # if source is a UTXO, we get the corresponding address
+ if util.is_utxo_format(source):
+ source_address, _value = backend.bitcoind.get_utxo_address_and_value(source)
+
+ return (source_address, [], data)
+
+
+def unpack(message, return_dict=False):
+ try:
+ data_content = struct.unpack(f">{len(message)}s", message)[0].decode("utf-8").split("|")
+ (source, destination_str, asset, quantity) = data_content
+ destination = None if destination_str == "" else destination_str
+
+ if return_dict:
+ return {
+ "source": source,
+ "destination": destination,
+ "asset": asset,
+ "quantity": int(quantity),
+ }
+
+ return (source, destination, asset, int(quantity))
+ except Exception as e:
+ raise exceptions.UnpackError(f"Cannot unpack utxo message: {e}") from e
+
+
+def parse(db, tx, message):
+ (source, destination, asset, quantity) = unpack(message)
+
+ problems = validate(db, source, destination, asset, quantity, tx["block_index"])
+
+ recipient = destination
+ # if no destination, we assume the destination is the first non-OP_RETURN output
+ # that's mean the last element of the UTXOs info in `transactions` table
+ if not recipient:
+ recipient = tx["utxos_info"].split(" ")[-1]
+
+ # detach if source is a UTXO
+ if util.is_utxo_format(source):
+ source_address, _value = backend.bitcoind.get_utxo_address_and_value(source)
+ if source_address != tx["source"]:
+ problems.append("source does not match the UTXO source")
+ action = "detach from utxo"
+ event = "DETACH_FROM_UTXO"
+ # attach if source is an address
+ else:
+ if source != tx["source"]:
+ problems.append("source does not match the source address")
+ action = "attach to utxo"
+ event = "ATTACH_TO_UTXO"
+
+ status = "valid"
+ if problems:
+ status = "invalid: " + "; ".join(problems)
+
+ # prepare bindings
+ bindings = {
+ "tx_index": tx["tx_index"],
+ "tx_hash": tx["tx_hash"],
+ "msg_index": ledger.get_send_msg_index(db, tx["tx_hash"]),
+ "block_index": tx["block_index"],
+ "status": status,
+ }
+
+ if status == "valid":
+ # fee payment only for attach to utxo
+ if action == "attach to utxo":
+ fee = gas.get_transaction_fee(db, ID, tx["block_index"])
+ else:
+ fee = 0
+ if fee > 0:
+ # fee is always paid by the address
+ if action == "attach to utxo":
+ fee_payer = source
+ else:
+ fee_payer = recipient
+ # debit fee from the fee payer
+ ledger.debit(
+ db,
+ fee_payer,
+ config.XCP,
+ fee,
+ tx["tx_index"],
+ action=f"{action} fee",
+ event=tx["tx_hash"],
+ )
+ # destroy fee
+ destroy_bindings = {
+ "tx_index": tx["tx_index"],
+ "tx_hash": tx["tx_hash"],
+ "block_index": tx["block_index"],
+ "source": tx["source"],
+ "asset": config.XCP,
+ "quantity": fee,
+ "tag": f"{action} fee",
+ "status": "valid",
+ }
+ ledger.insert_record(db, "destructions", destroy_bindings, "ASSET_DESTRUCTION")
+ # debit asset from source and credit to recipient
+ ledger.debit(
+ db, source, asset, quantity, tx["tx_index"], action=action, event=tx["tx_hash"]
+ )
+ ledger.credit(
+ db,
+ recipient,
+ asset,
+ quantity,
+ tx["tx_index"],
+ action=action,
+ event=tx["tx_hash"],
+ )
+ # we store parameters only if the transaction is valid
+ bindings = bindings | {
+ "source": source,
+ "destination": recipient,
+ "asset": asset,
+ "quantity": quantity,
+ "fee_paid": fee,
+ }
+ # update counter
+ if action == "attach to utxo":
+ gas.increment_counter(db, ID, tx["block_index"])
+
+ ledger.insert_record(db, "sends", bindings, event)
+
+ # log valid transactions
+ if status == "valid":
+ if util.is_utxo_format(source):
+ logger.info(
+ "Detach %(asset)s from %(source)s to address: %(destination)s (%(tx_hash)s) [%(status)s]",
+ bindings,
+ )
+ else:
+ logger.info(
+ "Attach %(asset)s from %(source)s to utxo: %(destination)s (%(tx_hash)s) [%(status)s]",
+ bindings,
+ )
+
+
+# call on each block
+def move_assets(db, tx):
+ utxos = tx["utxos_info"].split(" ")
+ # do nothing if there is only one UTXO (it's the first non-OP_RETURN output)
+ if len(utxos) < 2:
+ return
+ # if there are more than one UTXO in the `utxos_info` field,
+ # we move all assets from the first UTXO to the last one
+ destination = utxos.pop()
+ sources = utxos
+ action = "utxo move"
+
+ msg_index = 0
+ # we move all assets from each source to the destination
+ for source in sources:
+ balances = ledger.get_utxo_balances(db, source)
+ for balance in balances:
+ if balance["quantity"] == 0:
+ continue
+ # debit asset from source
+ ledger.debit(
+ db,
+ source,
+ balance["asset"],
+ balance["quantity"],
+ tx["tx_index"],
+ action=action,
+ event=tx["tx_hash"],
+ )
+ # credit asset to destination
+ ledger.credit(
+ db,
+ destination,
+ balance["asset"],
+ balance["quantity"],
+ tx["tx_index"],
+ action=action,
+ event=tx["tx_hash"],
+ )
+ # store the move in the `sends` table
+ bindings = {
+ "tx_index": tx["tx_index"],
+ "tx_hash": tx["tx_hash"],
+ "block_index": tx["block_index"],
+ "status": "valid",
+ "source": source,
+ "destination": destination,
+ "asset": balance["asset"],
+ "quantity": balance["quantity"],
+ "msg_index": msg_index,
+ }
+
+ ledger.insert_record(db, "sends", bindings, "UTXO_MOVE")
+ msg_index += 1
+
+ # log the move
+ logger.info(
+ f"Move {balance['asset']} from utxo: {source} to utxo: {destination} ({tx['tx_hash']})"
+ )
diff --git a/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py b/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py
index 00bda42e42..909f248c70 100644
--- a/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py
+++ b/counterparty-core/counterpartycore/lib/messages/versions/enhanced_send.py
@@ -4,6 +4,7 @@
import struct
from counterpartycore.lib import address, config, exceptions, ledger, message_type, util
+from counterpartycore.lib.messages.versions import send1
logger = logging.getLogger(config.LOGGER_NAME)
@@ -104,7 +105,8 @@ def compose(
# Just send BTC?
if asset == config.BTC:
- return (source, [(destination, quantity)], None)
+ # try to compose a dispense instead
+ return send1.compose_send_btc(db, source, destination, quantity)
# resolve subassets
asset = ledger.resolve_subasset_longname(db, asset)
diff --git a/counterparty-core/counterpartycore/lib/messages/versions/send1.py b/counterparty-core/counterpartycore/lib/messages/versions/send1.py
index caba67015f..e6c85d14db 100644
--- a/counterparty-core/counterpartycore/lib/messages/versions/send1.py
+++ b/counterparty-core/counterpartycore/lib/messages/versions/send1.py
@@ -6,6 +6,7 @@
import struct
from ... import config, exceptions, ledger, message_type, util
+from .. import dispense
logger = logging.getLogger(config.LOGGER_NAME)
@@ -67,12 +68,23 @@ def validate(db, source, destination, asset, quantity, block_index):
return problems
+def compose_send_btc(db, source: str, destination: str, quantity: int):
+ if not util.enabled("enable_dispense_tx"):
+ return (source, [(destination, quantity)], None)
+ # try to compose a dispense instead
+ try:
+ return dispense.compose(db, source, destination, quantity)
+ except (exceptions.NoDispenserError, exceptions.ComposeError):
+ # simple BTC send
+ return (source, [(destination, quantity)], None)
+
+
def compose(db, source: str, destination: str, asset: str, quantity: int):
cursor = db.cursor()
# Just send BTC?
if asset == config.BTC:
- return (source, [(destination, quantity)], None)
+ return compose_send_btc(db, source, destination, quantity)
# resolve subassets
asset = ledger.resolve_subasset_longname(db, asset)
@@ -166,6 +178,3 @@ def parse(db, tx, message):
)
cursor.close()
-
-
-# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
diff --git a/counterparty-core/counterpartycore/lib/sentry.py b/counterparty-core/counterpartycore/lib/sentry.py
index 4aae5d5ca4..3ca4f32088 100644
--- a/counterparty-core/counterpartycore/lib/sentry.py
+++ b/counterparty-core/counterpartycore/lib/sentry.py
@@ -49,7 +49,7 @@ def init():
dsn=dsn,
environment=environment,
release=release,
- traces_sample_rate=0.1,
+ traces_sample_rate=0.02,
before_send=before_send,
before_send_transaction=before_send_transaction,
)
diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py
index 178f7dbe23..73ec26d68c 100644
--- a/counterparty-core/counterpartycore/lib/transaction.py
+++ b/counterparty-core/counterpartycore/lib/transaction.py
@@ -30,6 +30,7 @@
util,
)
from counterpartycore.lib.backend import addrindexrs
+from counterpartycore.lib.messages import dispense # noqa: F401
from counterpartycore.lib.transaction_helper import p2sh_encoding, serializer
# Constants
@@ -107,6 +108,7 @@ def construct(
p2sh_source_multisig_pubkeys=None,
p2sh_source_multisig_pubkeys_required=None,
p2sh_pretx_txid=None,
+ exclude_utxos="",
):
if TRANSACTION_SERVICE_SINGLETON is None:
raise Exception("Transaction not initialized")
@@ -135,6 +137,7 @@ def construct(
p2sh_source_multisig_pubkeys,
p2sh_source_multisig_pubkeys_required,
p2sh_pretx_txid,
+ exclude_utxos,
)
@@ -348,6 +351,7 @@ def construct_coin_selection(
data_btc_out,
regular_dust_size,
disable_utxo_locks,
+ exclude_utxos,
):
# Array of UTXOs, as retrieved by listunspent function from bitcoind
if custom_inputs:
@@ -381,6 +385,7 @@ def construct_coin_selection(
make_outkey(output) not in filter_unspents_utxo_locks
and self.make_outkey_vin_txid(output["txid"], output["vout"])
not in filter_unspents_p2sh_locks
+ and f"{output['txid']}:{output['vout']}" not in exclude_utxos.split(",")
):
filtered_unspent.append(output)
unspent = filtered_unspent
@@ -565,6 +570,7 @@ def construct(
p2sh_source_multisig_pubkeys=None,
p2sh_source_multisig_pubkeys_required=None,
p2sh_pretx_txid=None,
+ exclude_utxos="",
):
if estimate_fee_per_kb is None:
estimate_fee_per_kb = config.ESTIMATE_FEE_PER_KB
@@ -780,6 +786,7 @@ def construct(
data_btc_out,
regular_dust_size,
disable_utxo_locks,
+ exclude_utxos,
)
btc_in = n_btc_in
final_fee = n_final_fee
@@ -838,7 +845,7 @@ def construct(
txid_ba = bytearray(ptx.GetTxid())
txid_ba.reverse()
pretx_txid = bytes(txid_ba) # gonna leave the malleability problem to upstream
- self.logger.trace("pretx_txid: %s", binascii.hexlify(pretx_txid))
+ self.logger.debug(f"pretx_txid {pretx_txid}")
if unsigned_pretx:
# we set a long lock on this, don't want other TXs to spend from it
@@ -1103,6 +1110,16 @@ def get_dust_return_pubkey(source, provided_pubkeys, encoding):
False,
"Construct a PSBT instead of a raw transaction hex",
),
+ "exclude_utxos": (
+ str,
+ "",
+ "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ ),
+ "return_only_data": (
+ bool,
+ False,
+ "Return only the data part of the transaction",
+ ),
}
@@ -1156,6 +1173,8 @@ def compose_transaction(
segwit=False,
api_v1=False,
return_psbt=False,
+ exclude_utxos="",
+ return_only_data=False,
):
"""Create and return a transaction."""
@@ -1174,7 +1193,7 @@ def compose_transaction(
for address_name in ["source", "destination"]:
if address_name in params:
address = params[address_name]
- if isinstance(address, list):
+ if isinstance(address, list) or address is None or util.is_utxo_format(address):
# pkhshs = []
# for addr in address:
# provided_pubkeys += script.extract_pubkeys(addr)
@@ -1227,6 +1246,9 @@ def compose_transaction(
tx_info = compose_method(db, **params)
+ if return_only_data:
+ return config.PREFIX + tx_info[2]
+
raw_transaction = construct(
db,
tx_info,
@@ -1251,6 +1273,7 @@ def compose_transaction(
old_style_api=old_style_api,
segwit=segwit,
estimate_fee_per_kb_nblocks=confirmation_target,
+ exclude_utxos=exclude_utxos,
)
if return_psbt:
psbt = backend.bitcoind.convert_to_psbt(raw_transaction)
@@ -1285,6 +1308,14 @@ def compose(db, source, transaction_name, api_v1=False, **kwargs):
)
+def get_key_name(**construct_args):
+ if construct_args.get("return_only_data"):
+ return "data"
+ if construct_args.get("return_psbt"):
+ return "psbt"
+ return "rawtransaction"
+
+
def compose_bet(
db,
address: str,
@@ -1300,8 +1331,8 @@ def compose_bet(
):
"""
Composes a transaction to issue a bet against a feed.
- :param address: The address that will make the bet (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
- :param feed_address: The address that hosts the feed to be bet on (e.g. 1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev)
+ :param address: The address that will make the bet (e.g. $ADDRESS_1)
+ :param feed_address: The address that hosts the feed to be bet on (e.g. $ADDRESS_2)
:param bet_type: Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual (e.g. 2)
:param deadline: The time at which the bet should be decided/settled, in Unix time (seconds since epoch) (e.g. 3000000000)
:param wager_quantity: The quantities of XCP to wager (in satoshis, hence integer) (e.g. 1000)
@@ -1328,7 +1359,7 @@ def compose_bet(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "bet",
}
@@ -1339,8 +1370,8 @@ def compose_broadcast(
):
"""
Composes a transaction to broadcast textual and numerical information to the network.
- :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
- :param timestamp: The timestamp of the broadcast, in Unix time (e.g. 4003903983)
+ :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1)
+ :param timestamp: The timestamp of the broadcast, in Unix time (e.g. 4003903985)
:param value: Numerical value of the broadcast (e.g. 100)
:param fee_fraction: How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) (e.g. 0.05)
:param text: The textual part of the broadcast (e.g. "Hello, world!")
@@ -1359,7 +1390,7 @@ def compose_broadcast(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "broadcast",
}
@@ -1368,8 +1399,8 @@ def compose_broadcast(
def compose_btcpay(db, address: str, order_match_id: str, **construct_args):
"""
Composes a transaction to pay for a BTC order match.
- :param address: The address that will be sending the payment (e.g. bc1qsteve3tfxfg9pcmvzw645sr9zy7es5rx645p6l)
- :param order_match_id: The ID of the order match to pay for (e.g. e470416a9500fb046835192da013f48e6468a07dba1bede4a0b68e666ed23c8d_4953bde3d9417b103615c2d3d4b284d4fcf7cbd820e5dd19ac0084e9ebd090b2)
+ :param address: The address that will be sending the payment (e.g. $ADDRESS_1)
+ :param order_match_id: The ID of the order match to pay for (e.g. $LAST_ORDER_MATCH_ID)
"""
params = {"source": address, "order_match_id": order_match_id}
rawtransaction = compose_transaction(
@@ -1379,7 +1410,7 @@ def compose_btcpay(db, address: str, order_match_id: str, **construct_args):
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "btcpay",
}
@@ -1388,7 +1419,7 @@ def compose_btcpay(db, address: str, order_match_id: str, **construct_args):
def compose_burn(db, address: str, quantity: int, overburn: bool = False, **construct_args):
"""
Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available).
- :param address: The address with the BTC to burn (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
+ :param address: The address with the BTC to burn (e.g. $ADDRESS_1)
:param quantity: The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) (e.g. 1000)
:param overburn: Whether to allow the burn to exceed 1 BTC for the address
"""
@@ -1400,7 +1431,7 @@ def compose_burn(db, address: str, quantity: int, overburn: bool = False, **cons
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "burn",
}
@@ -1409,8 +1440,8 @@ def compose_burn(db, address: str, quantity: int, overburn: bool = False, **cons
def compose_cancel(db, address: str, offer_hash: str, **construct_args):
"""
Composes a transaction to cancel an open order or bet.
- :param address: The address that placed the order/bet to be cancelled (e.g. 15e15ua6A3FJqjMevtrWcFSzKn9k6bMQeA)
- :param offer_hash: The hash of the order/bet to be cancelled (e.g. 8ce3335391bf71f8f12c0573b4f85b9adc4882a9955d9f8e5ababfdd0060279a)
+ :param address: The address that placed the order/bet to be cancelled (e.g. $ADDRESS_1)
+ :param offer_hash: The hash of the order/bet to be cancelled (e.g. $LAST_ORDER_TX_HASH)
"""
params = {"source": address, "offer_hash": offer_hash}
rawtransaction = compose_transaction(
@@ -1420,7 +1451,7 @@ def compose_cancel(db, address: str, offer_hash: str, **construct_args):
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "cancel",
}
@@ -1429,7 +1460,7 @@ def compose_cancel(db, address: str, offer_hash: str, **construct_args):
def compose_destroy(db, address: str, asset: str, quantity: int, tag: str, **construct_args):
"""
Composes a transaction to destroy a quantity of an asset.
- :param address: The address that will be sending the asset to be destroyed (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
+ :param address: The address that will be sending the asset to be destroyed (e.g. $ADDRESS_1)
:param asset: The asset to be destroyed (e.g. XCP)
:param quantity: The quantity of the asset to be destroyed (in satoshis, hence integer) (e.g. 1000)
:param tag: A tag for the destruction (e.g. "bugs!")
@@ -1442,7 +1473,7 @@ def compose_destroy(db, address: str, asset: str, quantity: int, tag: str, **con
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "destroy",
}
@@ -1461,14 +1492,14 @@ def compose_dispenser(
**construct_args,
):
"""
- Opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation.
- :param address: The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
+ Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation.
+ :param address: The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. $ADDRESS_7)
:param asset: The asset or subasset to dispense (e.g. XCP)
:param give_quantity: The quantity of the asset to dispense (in satoshis, hence integer) (e.g. 1000)
:param escrow_quantity: The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) (e.g. 1000)
:param mainchainrate: The quantity of the main chain asset (BTC) per dispensed portion (in satoshis, hence integer) (e.g. 100)
:param status: The state of the dispenser. 0 for open, 1 for open using open_address, 10 for closed (e.g. 0)
- :param open_address: The address that you would like to open the dispenser on
+ :param open_address: The address that you would like to open the dispenser on; MUST be equal to `address` from block 900000 onwards
:param oracle_address: The address that you would like to use as a price oracle for this dispenser
"""
params = {
@@ -1488,7 +1519,7 @@ def compose_dispenser(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "dispenser",
}
@@ -1499,9 +1530,9 @@ def compose_dividend(
):
"""
Composes a transaction to issue a dividend to holders of a given asset.
- :param address: The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) (e.g. 1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD)
+ :param address: The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) (e.g. $ADDRESS_1)
:param quantity_per_unit: The amount of dividend_asset rewarded (in satoshis, hence integer) (e.g. 1)
- :param asset: The asset or subasset that the dividends are being rewarded on (e.g. PEPECASH)
+ :param asset: The asset or subasset that the dividends are being rewarded on (e.g. $ASSET_1)
:param dividend_asset: The asset or subasset that the dividends are paid in (e.g. XCP)
"""
params = {
@@ -1517,7 +1548,7 @@ def compose_dividend(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "dividend",
}
@@ -1537,10 +1568,10 @@ def compose_issuance(
):
"""
Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset.
- :param address: The address that will be issuing or transfering the asset (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
+ :param address: The address that will be issuing or transfering the asset (e.g. $ADDRESS_1)
:param asset: The assets to issue or transfer. This can also be a subasset longname for new subasset issuances (e.g. XCPTEST)
:param quantity: The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) (e.g. 1000)
- :param transfer_destination: The address to receive the asset (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
+ :param transfer_destination: The address to receive the asset (e.g. $ADDRESS_1)
:param divisible: Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued)
:param lock: Whether this issuance should lock supply of this asset forever
:param reset: Wether this issuance should reset any existing supply
@@ -1563,7 +1594,7 @@ def compose_issuance(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "issuance",
}
@@ -1575,16 +1606,16 @@ def compose_mpma(
assets: str,
destinations: str,
quantities: str,
- memo: str,
- memo_is_hex: bool,
+ memo: str = None,
+ memo_is_hex: bool = False,
**construct_args,
):
"""
Composes a transaction to send multiple payments to multiple addresses.
- :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. 1Fv87qmdtjQDP9d4p9E5ncBQvYB4a3Rhy6)
- :param assets: comma-separated list of assets to send (e.g. BAABAABLKSHP,BADHAIRDAY,BADWOJAK)
- :param destinations: comma-separated list of addresses to send to (e.g. 1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev,1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD,1C3uGcoSGzKVgFqyZ3kM2DBq9CYttTMAVs)
- :param quantities: comma-separated list of quantities to send (in satoshis, hence integer) (e.g. 1,2,3)
+ :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1)
+ :param assets: comma-separated list of assets to send (e.g. XCP,$ASSET_5)
+ :param destinations: comma-separated list of addresses to send to (e.g. $ADDRESS_1,$ADDRESS_2)
+ :param quantities: comma-separated list of quantities to send (in satoshis, hence integer) (e.g. 1,2)
:param memo: The Memo associated with this transaction (e.g. "Hello, world!")
:param memo_is_hex: Whether the memo field is a hexadecimal string (e.g. False)
"""
@@ -1615,7 +1646,7 @@ def compose_mpma(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "mpma",
}
@@ -1634,10 +1665,10 @@ def compose_order(
):
"""
Composes a transaction to place an order on the distributed exchange.
- :param address: The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
+ :param address: The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) (e.g. $ADDRESS_1)
:param give_asset: The asset that will be given in the trade (e.g. XCP)
:param give_quantity: The quantity of the asset that will be given (in satoshis, hence integer) (e.g. 1000)
- :param get_asset: The asset that will be received in the trade (e.g. PEPECASH)
+ :param get_asset: The asset that will be received in the trade (e.g. $ASSET_1)
:param get_quantity: The quantity of the asset that will be received (in satoshis, hence integer) (e.g. 1000)
:param expiration: The number of blocks for which the order should be valid (e.g. 100)
:param fee_required: The miners’ fee required to be paid by orders for them to match this one; in BTC; required only if buying BTC (may be zero, though) (e.g. 100)
@@ -1658,7 +1689,7 @@ def compose_order(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "order",
}
@@ -1677,8 +1708,8 @@ def compose_send(
):
"""
Composes a transaction to send a quantity of an asset to another address.
- :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
- :param destination: The address that will be receiving the asset (e.g. 1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev)
+ :param address: The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1)
+ :param destination: The address that will be receiving the asset (e.g. $ADDRESS_2)
:param asset: The asset or subasset to send (e.g. XCP)
:param quantity: The quantity of the asset to send (in satoshis, hence integer) (e.g. 1000)
:param memo: The Memo associated with this transaction
@@ -1701,17 +1732,48 @@ def compose_send(
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "send",
}
+def compose_dispense(
+ db,
+ address: str,
+ dispenser: str,
+ quantity: int,
+ **construct_args,
+):
+ """
+ Composes a transaction to send BTC to a dispenser.
+ :param address: The address that will be sending (must have the necessary quantity of BTC) (e.g. $ADDRESS_2)
+ :param dispenser: The dispenser that will be receiving the asset (e.g. $ADDRESS_4)
+ :param quantity: The quantity of BTC to send (in satoshis, hence integer) (e.g. 1000)
+ """
+ params = {
+ "source": address,
+ "destination": dispenser,
+ "quantity": quantity,
+ }
+ rawtransaction = compose_transaction(
+ db,
+ name="dispense",
+ params=params,
+ **construct_args,
+ )
+ return {
+ get_key_name(**construct_args): rawtransaction,
+ "params": params,
+ "name": "dispense",
+ }
+
+
def compose_sweep(db, address: str, destination: str, flags: int, memo: str, **construct_args):
"""
Composes a transaction to Sends all assets and/or transfer ownerships to a destination address.
- :param address: The address that will be sending (e.g. 1CounterpartyXXXXXXXXXXXXXXXUWLpVr)
- :param destination: The address to receive the assets and/or ownerships (e.g. 1JDogZS6tQcSxwfxhv6XKKjcyicYA4Feev)
+ :param address: The address that will be sending (e.g. $ADDRESS_1)
+ :param destination: The address to receive the assets and/or ownerships (e.g. $ADDRESS_2)
:param flags: An OR mask of flags indicating how the sweep should be processed. Possible flags are:
- FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred.
- FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred.
@@ -1732,25 +1794,261 @@ def compose_sweep(db, address: str, destination: str, flags: int, memo: str, **c
**construct_args,
)
return {
- "rawtransaction": rawtransaction,
+ get_key_name(**construct_args): rawtransaction,
"params": params,
"name": "sweep",
}
+def compose_fairminter(
+ db,
+ address: str,
+ asset: str,
+ asset_parent: str = "",
+ price: int = 0,
+ quantity_by_price: int = 1,
+ max_mint_per_tx: int = 0,
+ hard_cap: int = 0,
+ premint_quantity: int = 0,
+ start_block: int = 0,
+ end_block: int = 0,
+ soft_cap: int = 0,
+ soft_cap_deadline_block: int = 0,
+ minted_asset_commission: float = 0.0,
+ burn_payment: bool = False,
+ lock_description: bool = False,
+ lock_quantity: bool = False,
+ divisible: bool = True,
+ description: str = "",
+ **construct_args,
+):
+ """
+ Composes a transaction to issue a new asset using the FairMinter protocol.
+ :param address: The address that will be issuing the asset (e.g. $ADDRESS_1)
+ :param asset: The asset to issue (e.g. MYASSET)
+ :param asset_parent: The parent asset of the asset to issue
+ :param price: The price in XCP of the asset to issue (e.g. 10)
+ :param quantity_by_price: The quantity of asset to mint per `price` paid
+ :param max_mint_per_tx: Amount minted if price is equal to 0; otherwise, maximum amount of asset that can be minted in a single transaction; if 0, there is no limit
+ :param hard_cap: The maximum amount of asset that can be minted; if 0 there is no limit
+ :param premint_quantity: Amount of asset to be minted when the sale starts, if 0, no premint; preminted assets are sent to the source of the transaction
+ :param start_block: The block at which the sale starts
+ :param end_block: The block at which the sale ends
+ :param soft_cap: Minimum amount of asset to be minted, if None, no minimum; if the soft cap is not reached by the soft_cap_deadline_block, the sale is canceled, asset is revoked from all minters and all payments are refunded
+ :param soft_cap_deadline_block: The block at which the soft cap must be reached
+ :param minted_asset_commission: Commission to be paid in minted asset, a fraction of 1 (i.e., 0.05 is five percent); the commission is deducted from the asset received by the minter and sent to the Fair Minter owner
+ :param burn_payment: If True, the payment asset is burned, otherwise it is sent to the source
+ :param lock_description: If True, the description of the asset is locked
+ :param lock_quantity: If True, the quantity of the asset cannot be changed after the minting
+ :param divisible: If True, the asset is divisible
+ :param description: The description of the asset
+ """
+ params = {
+ "source": address,
+ "asset": asset,
+ "asset_parent": asset_parent,
+ "price": price,
+ "quantity_by_price": quantity_by_price,
+ "max_mint_per_tx": max_mint_per_tx,
+ "hard_cap": hard_cap,
+ "premint_quantity": premint_quantity,
+ "start_block": start_block,
+ "end_block": end_block,
+ "soft_cap": soft_cap,
+ "soft_cap_deadline_block": soft_cap_deadline_block,
+ "minted_asset_commission": minted_asset_commission,
+ "burn_payment": burn_payment,
+ "lock_description": lock_description,
+ "lock_quantity": lock_quantity,
+ "divisible": divisible,
+ "description": description,
+ }
+ rawtransaction = compose_transaction(
+ db,
+ name="fairminter",
+ params=params,
+ **construct_args,
+ )
+ return {
+ get_key_name(**construct_args): rawtransaction,
+ "params": params,
+ "name": "fairminter",
+ }
+
+
+def compose_fairmint(db, address: str, asset: str, quantity: int = 0, **construct_args):
+ """
+ Composes a transaction to mint a quantity of an asset using the FairMinter protocol.
+ :param address: The address that will be minting the asset (e.g. $ADDRESS_1)
+ :param asset: The asset to mint (e.g. $ASSET_3)
+ :param quantity: The quantity of the asset to mint (in satoshis, hence integer) (e.g. 1)
+ """
+ params = {"source": address, "asset": asset, "quantity": quantity}
+ rawtransaction = compose_transaction(
+ db,
+ name="fairmint",
+ params=params,
+ **construct_args,
+ )
+ return {
+ get_key_name(**construct_args): rawtransaction,
+ "params": params,
+ "name": "fairmint",
+ }
+
+
+def compose_utxo(
+ db,
+ source: str,
+ destination: str,
+ asset: str,
+ quantity: int,
+ **construct_args,
+):
+ params = {
+ "source": source,
+ "destination": destination,
+ "asset": asset,
+ "quantity": quantity,
+ }
+ rawtransaction = compose_transaction(
+ db,
+ name="utxo",
+ params=params,
+ **construct_args,
+ )
+ return {
+ get_key_name(**construct_args): rawtransaction,
+ "params": params,
+ "name": "utxo",
+ }
+
+
+def compose_attach(
+ db,
+ address: str,
+ asset: str,
+ quantity: int,
+ destination: str = None,
+ **construct_args,
+):
+ """
+ Composes a transaction to attach assets from an address to UTXO.
+ :param address: The address from which the assets are attached (e.g. $ADDRESS_1)
+ :param destination: The utxo to attach the assets to (e.g. $UTXO_1_ADDRESS_1)
+ :param asset: The asset or subasset to attach (e.g. XCP)
+ :param quantity: The quantity of the asset to attach (in satoshis, hence integer) (e.g. 1000)
+ """
+ return compose_utxo(
+ db,
+ source=address,
+ destination=destination,
+ asset=asset,
+ quantity=quantity,
+ **construct_args,
+ )
+
+
+def compose_detach(
+ db,
+ utxo: str,
+ destination: str,
+ asset: str,
+ quantity: int,
+ **construct_args,
+):
+ """
+ Composes a transaction to detach assets from UTXO to an address.
+ :param utxo: The utxo from which the assets are detached (e.g. $UTXO_WITH_BALANCE)
+ :param destination: The address to detach the assets to (e.g. $ADDRESS_1)
+ :param asset: The asset or subasset to detach (e.g. XCP)
+ :param quantity: The quantity of the asset to detach (in satoshis, hence integer) (e.g. 1000)
+ """
+ return compose_utxo(
+ db,
+ source=utxo,
+ destination=destination,
+ asset=asset,
+ quantity=quantity,
+ **construct_args,
+ )
+
+
+def compose_movetoutxo(db, utxo: str, destination: str, more_utxos: str = ""):
+ """
+ Composes a transaction to move assets from UTXO to another UTXO.
+ :param utxo: The utxo from which the assets are moved
+ :param destination: The address to move the assets to
+ :param more_utxos: The additional utxos to fund the transaction
+ """
+ decimal.getcontext().prec = 8
+
+ more_utxos_list = []
+ input_count = 1
+ total_value = D("0")
+ try:
+ source_address, source_value = backend.bitcoind.get_utxo_address_and_value(utxo)
+ total_value += D(source_value)
+ for more_utxo in more_utxos.split(","):
+ if more_utxo == "":
+ continue
+ _more_utxo_address, more_utxo_value = backend.bitcoind.get_utxo_address_and_value(
+ more_utxo
+ )
+ more_utxo_tx_hash, more_utxo_vout = more_utxo.split(":")
+ more_utxos_list.append({"txid": more_utxo_tx_hash, "vout": int(more_utxo_vout)})
+ input_count += 1
+ total_value += D(more_utxo_value)
+ except exceptions.InvalidUTXOError as e:
+ raise exceptions.ComposeError("Invalid UTXO for source") from e
+
+ try:
+ script.validate(destination)
+ except Exception as e:
+ raise exceptions.ComposeError("Invalid address for destination") from e
+
+ tx_hash, vout = utxo.split(":")
+
+ fee_per_kb = backend.bitcoind.fee_per_kb()
+ # Transaction Size (in bytes) = (Number of Inputs x 148) + (Number of Outputs x 34) + 10
+ tx_size = (input_count * 148) + (2 * 34) + 10
+ fee = (D(fee_per_kb) / config.UNIT) * (D(tx_size) / 1024)
+
+ dust = D("0.0000546")
+ change = D(total_value) - dust - fee
+
+ if change < 0:
+ raise exceptions.ComposeError("Insufficient funds for fee")
+
+ inputs = [{"txid": tx_hash, "vout": int(vout)}] + more_utxos_list
+ outputs = [{destination: str(dust)}, {source_address: str(change)}]
+ rawtransaction = backend.bitcoind.createrawtransaction(inputs, outputs)
+
+ return {
+ "rawtransaction": rawtransaction,
+ "params": {
+ "source": utxo,
+ "destination": destination,
+ },
+ "name": "movetoutxo",
+ }
+
+
def info(db, rawtransaction: str, block_index: int = None):
"""
Returns Counterparty information from a raw transaction in hex format.
- :param rawtransaction: Raw transaction in hex format (e.g. 01000000017828697743c03aef6a3a8ba54b22bf579ffcab8161faf20e7b20c4ecd75cc986010000006b483045022100d1bd0531bb1ed2dd2cbf77d6933273e792a3dbfa84327d419169850ddd5976f502205d1ab0f7bcbf1a0cc183f0520c9aa8f711d41cb790c0c4ac39da6da4a093d798012103d3b1f711e907acb556e239f6cafb6a4f7fe40d8dd809b0e06e739c2afd73f202ffffffff0200000000000000004d6a4bf29880b93b0711524c7ef9c76835752088db8bd4113a3daf41fc45ffdc8867ebdbf26817fae377696f36790e52f51005806e9399a427172fedf348cf798ed86e548002ee96909eef0775ec3c2b0100000000001976a91443434cf159cc585fbd74daa9c4b833235b19761b88ac00000000)
+ :param rawtransaction: Raw transaction in hex format (e.g. $RAW_TRANSACTION_1)
:param block_index: Block index mandatory for transactions before block 335000
"""
decoded_tx = deserialize.deserialize_tx(
rawtransaction, use_txid=util.enabled("correct_segwit_txids", block_index)
)
- source, destination, btc_amount, fee, data, _extra = gettxinfo.get_tx_info(
- db,
- decoded_tx,
- block_index=block_index,
+ source, destination, btc_amount, fee, data, _dispensers_outs, _utxos_info = (
+ gettxinfo.get_tx_info(
+ db,
+ decoded_tx,
+ block_index=block_index,
+ )
)
del decoded_tx["__data__"]
result = {
@@ -1770,7 +2068,7 @@ def info(db, rawtransaction: str, block_index: int = None):
def unpack(db, datahex: str, block_index: int = None):
"""
Unpacks Counterparty data in hex format and returns the message type and data.
- :param datahex: Data in hex format (e.g. 16010b9142801429a60000000000000001000000554e4e45474f544941424c45205745204d555354204245434f4d4520554e4e45474f544941424c4520574520415245)
+ :param datahex: Data in hex format (e.g. 020000000001016a65c1624e53f4d33ce02e726a6606faed60cc014d5b1a578ba3e09b4b3f8f890100000000ffffffff020000000000000000176a150d55e8b6118808b7b663b365473f142274028b8af60245092701000000160014a3df8a5a83d4e2827b59b43f5ce6ce5d2e52093f0247304402204b7a2859cbce34e725a1132fec2dd4b075503dadff0a0c407ae7c22a7712fe4d0220563ceb2ceebdf649343bb24819fc808639cce7781305b4588ffbe4a20390d2780121020ace9adf60fe4ec05dab922ccdc5727cbf664cafc7cdb845de534855266314c800000000)
:param block_index: Block index of the transaction containing this data
"""
data = binascii.unhexlify(datahex)
@@ -1814,7 +2112,7 @@ def unpack(db, datahex: str, block_index: int = None):
message_data = messages.dispenser.unpack(message, return_dict=True)
elif message_type_id == messages.dispenser.DISPENSE_ID:
message_type_name = "dispense"
- message_data = {}
+ message_data = messages.dispense.unpack(message, return_dict=True)
# Dividend
elif message_type_id == messages.dividend.ID:
message_type_name = "dividend"
@@ -1864,6 +2162,14 @@ def unpack(db, datahex: str, block_index: int = None):
elif message_type_id == messages.sweep.ID:
message_type_name = "sweep"
message_data = messages.sweep.unpack(message)
+ # Fair Minter
+ elif message_type_id == messages.fairminter.ID:
+ message_type_name = "fairminter"
+ message_data = messages.fairminter.unpack(message)
+ # Fair Mint
+ elif message_type_id == messages.fairmint.ID:
+ message_type_name = "fairmint"
+ message_data = messages.fairmint.unpack(message)
except (exceptions.UnpackError, UnicodeDecodeError) as e:
message_data = {"error": str(e)}
diff --git a/counterparty-core/counterpartycore/lib/util.py b/counterparty-core/counterpartycore/lib/util.py
index 99fc398c15..6acda9db42 100644
--- a/counterparty-core/counterpartycore/lib/util.py
+++ b/counterparty-core/counterpartycore/lib/util.py
@@ -26,6 +26,7 @@
CURRENT_BLOCK_INDEX = None
CURRENT_TX_HASH = None
PARSING_MEMPOOL = False
+BLOCK_PARSER_STATUS = "starting"
D = decimal.Decimal
B26_DIGITS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
@@ -178,7 +179,7 @@ def date_passed(date):
# checks and validates subassets (PARENT.SUBASSET)
# throws exceptions for assset or subasset names with invalid syntax
# returns (None, None) if the asset is not a subasset name
-def parse_subasset_from_asset_name(asset):
+def parse_subasset_from_asset_name(asset, allow_subassets_on_numerics=False):
subasset_parent = None
subasset_child = None
subasset_longname = None
@@ -189,7 +190,7 @@ def parse_subasset_from_asset_name(asset):
subasset_longname = asset
# validate parent asset
- validate_subasset_parent_name(subasset_parent)
+ validate_subasset_parent_name(subasset_parent, allow_subassets_on_numerics)
# validate child asset
validate_subasset_longname(subasset_longname, subasset_child)
@@ -225,8 +226,21 @@ def validate_subasset_longname(subasset_longname, subasset_child=None):
return True
-# throws exceptions for invalid subasset names
-def validate_subasset_parent_name(asset_name):
+def is_numeric(s):
+ pattern = r"^A(\d{17,20})$"
+ match = re.match(pattern, s)
+ if match:
+ numeric_part = match.group(1)
+ numeric_value = int(numeric_part)
+ lower_bound = 26**12 + 1
+ upper_bound = 256**8
+
+ return lower_bound <= numeric_value <= upper_bound
+
+ return False
+
+
+def legacy_validate_subasset_parent_name(asset_name):
if asset_name == config.BTC:
raise exceptions.AssetNameError(f"parent asset cannot be {config.BTC}")
if asset_name == config.XCP:
@@ -236,13 +250,35 @@ def validate_subasset_parent_name(asset_name):
if len(asset_name) >= 13:
raise exceptions.AssetNameError("parent asset name too long")
if asset_name[0] == "A":
- raise exceptions.AssetNameError("parent asset name starts with ‘A’")
+ raise exceptions.AssetNameError("parent asset name starts with 'A'")
for c in asset_name:
if c not in B26_DIGITS:
raise exceptions.AssetNameError("parent asset name contains invalid character:", c)
return True
+# throws exceptions for invalid subasset names
+def validate_subasset_parent_name(asset_name, allow_subassets_on_numerics):
+ if not allow_subassets_on_numerics:
+ return legacy_validate_subasset_parent_name(asset_name)
+
+ if asset_name == config.BTC:
+ raise exceptions.AssetNameError(f"parent asset cannot be {config.BTC}")
+ if asset_name == config.XCP:
+ raise exceptions.AssetNameError(f"parent asset cannot be {config.XCP}")
+ if len(asset_name) < 4:
+ raise exceptions.AssetNameError("parent asset name too short")
+ if len(asset_name) > 21:
+ raise exceptions.AssetNameError("parent asset name too long")
+
+ if not is_numeric(asset_name):
+ for c in asset_name:
+ if c not in B26_DIGITS:
+ raise exceptions.AssetNameError("parent asset name contains invalid character:", c)
+
+ return True
+
+
def compact_subasset_longname(string):
"""Compacts a subasset name string into an array of bytes to save space using a base68 encoding scheme.
Assumes all characters provided belong to SUBASSET_DIGITS.
@@ -265,7 +301,12 @@ def expand_subasset_longname(raw_bytes):
return ret
-def generate_random_asset():
+def generate_random_asset(subasset_longname=None):
+ # deterministic random asset name for regtest
+ if config.REGTEST and subasset_longname:
+ return "A" + str(
+ int(hashlib.shake_256(bytes(subasset_longname, "utf8")).hexdigest(4), 16) + 26**12 + 1
+ )
# Standard pseudo-random generators are suitable for our purpose.
return "A" + str(random.randint(26**12 + 1, 2**64 - 1)) # nosec B311 # noqa: S311
@@ -501,6 +542,14 @@ def satoshirate_to_fiat(satoshirate):
def enabled(change_name, block_index=None):
"""Return True if protocol change is enabled."""
if config.REGTEST:
+ regtest_protocole_file = os.path.join(
+ os.path.dirname(config.DATABASE), "regtest_disabled_changes.json"
+ )
+ if os.path.exists(regtest_protocole_file):
+ with open(regtest_protocole_file) as f:
+ regtest_disabled_changes = json.load(f)
+ if change_name in regtest_disabled_changes:
+ return False
return True # All changes are always enabled on REGTEST
if config.TESTNET:
@@ -584,3 +633,22 @@ def inverse_hash(hashstring):
def ib2h(b):
return inverse_hash(b2h(b))
+
+
+def is_utxo_format(value):
+ if not isinstance(value, str):
+ return False
+ values = value.split(":")
+ if len(values) != 2:
+ return False
+ if not values[1].isnumeric():
+ return False
+ if str(int(values[1])) != values[1]:
+ return False
+ try:
+ int(values[0], 16)
+ except ValueError:
+ return False
+ if len(values[0]) != 64:
+ return False
+ return True
diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json
index 7179f877c1..47a7f2b975 100644
--- a/counterparty-core/counterpartycore/protocol_changes.json
+++ b/counterparty-core/counterpartycore/protocol_changes.json
@@ -535,11 +535,107 @@
}
}
},
+ "enable_dispense_tx": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "disable_vanilla_btc_dispense": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "dispenser_must_be_created_by_source": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 2,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
"expire_order_matches_then_orders": {
"minimum_version_major": 10,
- "minimum_version_minor": 2,
+ "minimum_version_minor": 4,
"minimum_version_revision": 0,
- "block_index": 900000,
- "testnet_block_index": 2815000
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "fairminter": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "lockable_issuance_descriptions": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "utxo_support": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "free_subassets": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "allow_subassets_on_numerics": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "fix_min_btc_quantity": {
+ "minimum_version_major": 10,
+ "minimum_version_minor": 4,
+ "minimum_version_revision": 0,
+ "block_index": 866000,
+ "testnet_block_index": 2925800
+ },
+ "fee_parameters": {
+ "minimum_version_major": 0,
+ "mainnet":{
+ "1": {
+ "value": null
+ },
+ "866000": {
+ "value": {
+ "100": {
+ "fee_lower_threshold": 3,
+ "fee_upper_threshold": 15,
+ "base_fee": 1,
+ "fee_sigmoid_k": 1
+ }
+ }
+ }
+ },
+ "testnet":{
+ "1": {
+ "value": null
+ },
+ "2925800": {
+ "value": {
+ "100": {
+ "fee_lower_threshold": 3,
+ "fee_upper_threshold": 15,
+ "base_fee": 1,
+ "fee_sigmoid_k": 1
+ }
+ }
+ }
+ }
}
}
diff --git a/counterparty-core/counterpartycore/test/api_v2_test.py b/counterparty-core/counterpartycore/test/api_v2_test.py
index faa0dde3db..3a4e2403e8 100644
--- a/counterparty-core/counterpartycore/test/api_v2_test.py
+++ b/counterparty-core/counterpartycore/test/api_v2_test.py
@@ -35,6 +35,8 @@ def test_api_v2(request):
dividend_hash = "42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518"
issuance_hash = "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf"
broadcast_hash = "7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af"
+ minter_hash = "83b96c0f72fea31403567852f2bdb4840ffdf18bda2e82df4f27aad633830e29"
+ # mint_hash = "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67"
event = "CREDIT"
event_index = 10
tx_index = 2
@@ -48,6 +50,7 @@ def test_api_v2(request):
"v1",
"rpc",
"api",
+ "fairminters", # TEMPORARY
]
results = {}
fixtures = {}
@@ -83,6 +86,8 @@ def test_api_v2(request):
url = url.replace("", issuance_hash)
if "broadcasts" in url:
url = url.replace("", broadcast_hash)
+ if "fairminters" in url:
+ url = url.replace("", minter_hash)
url = url.replace("", tx_hash)
url = url.replace("", block_hash)
url = url.replace("", dividend_hash)
@@ -130,26 +135,90 @@ def test_new_get_balances_by_address():
result = requests.get(url) # noqa: S113
assert result.json()["result"] == [
+ {
+ "address": None,
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ {
+ "address": None,
+ "asset": "XCP",
+ "quantity": 100,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "RAIDFAIRMIN",
+ "quantity": 20,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "FREEFAIRMIN",
+ "quantity": 10,
+ "utxo": None,
+ "utxo_address": None,
+ },
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "A95428956661682277",
"quantity": 100000000,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "PARENT",
+ "quantity": 100000000,
+ "utxo": None,
+ "utxo_address": None,
},
- {"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "PARENT", "quantity": 100000000},
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "MAXI",
"quantity": 9223372036854775807,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "LOCKED",
+ "quantity": 1000,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "CALLABLE",
+ "quantity": 1000,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "NODIVISIBLE",
+ "quantity": 985,
+ "utxo": None,
+ "utxo_address": None,
},
- {"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "LOCKED", "quantity": 1000},
- {"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "CALLABLE", "quantity": 1000},
- {"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "NODIVISIBLE", "quantity": 985},
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "DIVISIBLE",
- "quantity": 98800000000,
+ "quantity": 98799999999,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 91674999880,
+ "utxo": None,
+ "utxo_address": None,
},
- {"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "XCP", "quantity": 91875000000},
]
@@ -158,26 +227,87 @@ def test_new_get_balances_by_asset():
asset = "XCP"
url = f"{API_ROOT}/v2/assets/{asset}/balances"
result = requests.get(url) # noqa: S113
+ import json
+ print(json.dumps(result.json()["result"], indent=4))
assert result.json()["result"] == [
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 91674999880,
+ },
+ {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 99999990,
+ },
{
"address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "utxo": None,
+ "utxo_address": None,
"asset": "XCP",
"quantity": 300000000,
},
- {"address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy", "asset": "XCP", "quantity": 46449548498},
- {"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "asset": "XCP", "quantity": 91875000000},
- {"address": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj", "asset": "XCP", "quantity": 92945878046},
- {"address": "mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK", "asset": "XCP", "quantity": 14999857},
- {"address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "XCP", "quantity": 99999990},
- {"address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", "asset": "XCP", "quantity": 92999130360},
- {"address": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42", "asset": "XCP", "quantity": 92949122099},
- {"address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM", "asset": "XCP", "quantity": 92999138812},
+ {
+ "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 92999138821,
+ },
+ {
+ "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 92949130360,
+ },
+ {
+ "address": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 92949122099,
+ },
+ {
+ "address": "mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 14999857,
+ },
+ {
+ "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 46449548498,
+ },
{
"address": "tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx",
+ "utxo": None,
+ "utxo_address": None,
"asset": "XCP",
"quantity": 92999030129,
},
+ {
+ "address": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "utxo": None,
+ "utxo_address": None,
+ "asset": "XCP",
+ "quantity": 92945878046,
+ },
+ {
+ "address": None,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 100,
+ },
]
@@ -196,11 +326,16 @@ def test_new_get_balances_vs_old():
],
},
)
- new_balances = sorted(new_balances, key=lambda x: (x["address"], x["asset"], x["quantity"]))
- old_balance = sorted(old_balance, key=lambda x: (x["address"], x["asset"], x["quantity"]))
+ new_balances = sorted(
+ new_balances, key=lambda x: (x["address"] or x["utxo"], x["asset"], x["quantity"])
+ )
+ old_balance = sorted(
+ old_balance, key=lambda x: (x["address"] or x["utxo"], x["asset"], x["quantity"])
+ )
assert len(new_balances) == len(old_balance)
for new_balance, old_balance in zip(new_balances, old_balance): # noqa: B020
assert new_balance["address"] == old_balance["address"]
+ assert new_balance["utxo"] == old_balance["utxo"]
assert new_balance["asset"] == old_balance["asset"]
assert new_balance["quantity"] == old_balance["quantity"]
@@ -236,14 +371,14 @@ def test_new_get_asset_orders():
assert result[0] == {
"tx_index": 493,
"tx_hash": "1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
- "block_index": 310492,
+ "block_index": 310513,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"give_asset": "BTC",
"give_quantity": 800000,
- "give_remaining": 0,
+ "give_remaining": 800000,
"get_asset": "XCP",
"get_quantity": 100000000,
- "get_remaining": 0,
+ "get_remaining": 100000000,
"expiration": 2000,
"expire_index": 312492,
"fee_required": 0,
@@ -301,11 +436,74 @@ def test_new_get_order_matches():
"backward_quantity": 800000,
"tx0_block_index": 310491,
"tx1_block_index": 310492,
- "block_index": 310492,
+ "block_index": 310513,
"tx0_expiration": 2000,
"tx1_expiration": 2000,
"match_expire_index": 310512,
"fee_paid": 7200,
- "status": "pending",
+ "status": "expired",
"confirmed": True,
}
+
+
+@pytest.mark.usefixtures("api_server_v2")
+def test_asset_dispensers():
+ asset = "XCP"
+
+ url = f"{API_ROOT}/v2/assets/{asset}/dispensers?status=1"
+ result = requests.get(url) # noqa: S113
+ assert result.json()["result"] == []
+
+ url = f"{API_ROOT}/v2/assets/{asset}/dispensers?status=0"
+ result = requests.get(url) # noqa: S113
+ assert result.json()["result"] == [
+ {
+ "tx_index": 108,
+ "tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
+ "block_index": 310107,
+ "source": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "asset": "XCP",
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "satoshirate": 100,
+ "status": 0,
+ "give_remaining": 100,
+ "oracle_address": None,
+ "last_status_tx_hash": None,
+ "origin": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "dispense_count": 0,
+ "last_status_tx_source": None,
+ "close_block_index": None,
+ "confirmed": True,
+ }
+ ]
+
+ asset = "TESTDISP"
+
+ url = f"{API_ROOT}/v2/assets/{asset}/dispensers?status=1"
+ result = requests.get(url) # noqa: S113
+ assert result.json()["result"] == []
+
+ url = f"{API_ROOT}/v2/assets/{asset}/dispensers?status=0"
+ result = requests.get(url) # noqa: S113
+ assert result.json()["result"] == [
+ {
+ "tx_index": 511,
+ "tx_hash": "af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e",
+ "block_index": 310510,
+ "source": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "asset": "TESTDISP",
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "satoshirate": 100,
+ "status": 0,
+ "give_remaining": 100,
+ "oracle_address": None,
+ "last_status_tx_hash": None,
+ "origin": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "dispense_count": 0,
+ "last_status_tx_source": None,
+ "close_block_index": None,
+ "confirmed": True,
+ }
+ ]
diff --git a/counterparty-core/counterpartycore/test/bytespersigop_test.py b/counterparty-core/counterpartycore/test/bytespersigop_test.py
index 98a613c90b..13d721934e 100644
--- a/counterparty-core/counterpartycore/test/bytespersigop_test.py
+++ b/counterparty-core/counterpartycore/test/bytespersigop_test.py
@@ -19,50 +19,51 @@
def test_bytespersigop(server_db):
- assert util.enabled("bytespersigop") == False # noqa: E712
-
- transaction.initialise()
-
- # ADDR[0], bytespersigop=False, desc 41 bytes, opreturn
- txhex = transaction.compose_transaction(
- server_db,
- "issuance",
- {
- "source": ADDR[0],
- "asset": "TESTING",
- "quantity": 100,
- "transfer_destination": None,
- "divisible": False,
- "description": "t" * 41,
- },
- )
-
- tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex))
-
- assert len(tx.vin) == 1
- assert len(tx.vout) == 2
- assert "OP_RETURN" in repr(tx.vout[0].scriptPubKey)
-
- # ADDR[0], bytespersigop=False, desc 42 bytes, multisig
- txhex = transaction.compose_transaction(
- server_db,
- "issuance",
- {
- "source": ADDR[0],
- "asset": "TESTING",
- "quantity": 100,
- "transfer_destination": None,
- "divisible": False,
- "description": "t" * 42,
- },
- )
-
- tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex))
-
- assert len(tx.vin) == 1
- assert len(tx.vout) == 3
- assert "OP_CHECKMULTISIG" in repr(tx.vout[0].scriptPubKey)
- assert "OP_CHECKMULTISIG" in repr(tx.vout[1].scriptPubKey)
+ with util_test.MockProtocolChangesContext(short_tx_type_id=False):
+ assert util.enabled("bytespersigop") == False # noqa: E712
+
+ transaction.initialise()
+
+ # ADDR[0], bytespersigop=False, desc 41 bytes, opreturn
+ txhex = transaction.compose_transaction(
+ server_db,
+ "issuance",
+ {
+ "source": ADDR[0],
+ "asset": "TESTING",
+ "quantity": 100,
+ "transfer_destination": None,
+ "divisible": False,
+ "description": "t" * 41,
+ },
+ )
+
+ tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex))
+
+ assert len(tx.vin) == 1
+ assert len(tx.vout) == 2
+ assert "OP_RETURN" in repr(tx.vout[0].scriptPubKey)
+
+ # ADDR[0], bytespersigop=False, desc 42 bytes, multisig
+ txhex = transaction.compose_transaction(
+ server_db,
+ "issuance",
+ {
+ "source": ADDR[0],
+ "asset": "TESTING",
+ "quantity": 100,
+ "transfer_destination": None,
+ "divisible": False,
+ "description": "t" * 42,
+ },
+ )
+
+ tx = bitcoinlib.core.CTransaction.deserialize(binascii.unhexlify(txhex))
+
+ assert len(tx.vin) == 1
+ # assert len(tx.vout) == 3
+ assert "OP_CHECKMULTISIG" in repr(tx.vout[0].scriptPubKey)
+ assert "OP_CHECKMULTISIG" in repr(tx.vout[1].scriptPubKey)
# enable byterpersigop
with util_test.MockProtocolChangesContext(bytespersigop=True):
diff --git a/counterparty-core/counterpartycore/test/complex_unit_test.py b/counterparty-core/counterpartycore/test/complex_unit_test.py
index 070072dccb..773266d125 100644
--- a/counterparty-core/counterpartycore/test/complex_unit_test.py
+++ b/counterparty-core/counterpartycore/test/complex_unit_test.py
@@ -37,7 +37,7 @@ def test_alice_bob(server_db, cp_server, api_server):
# balance before send
alice_balance = ledger.get_balance(server_db, alice, "XCP")
bob_balance = ledger.get_balance(server_db, bob, "XCP")
- assert alice_balance == 91875000000
+ assert alice_balance == 91674999880
assert bob_balance == 0
# create send
diff --git a/counterparty-core/counterpartycore/test/conftest.py b/counterparty-core/counterpartycore/test/conftest.py
index 94271021b5..cfd3637626 100644
--- a/counterparty-core/counterpartycore/test/conftest.py
+++ b/counterparty-core/counterpartycore/test/conftest.py
@@ -42,7 +42,7 @@
"allow_always_latest": True,
}, # override to be true only at block 310495
"short_tx_type_id": {
- "block_index": 310502,
+ "block_index": DEFAULT_PARAMS["default_block_index"] + 1,
"allow_always_latest": False,
}, # override to be true only at block 310502
"enhanced_sends": {
@@ -50,7 +50,7 @@
"allow_always_latest": False,
}, # override to be true only at block 310999
"issuance_lock_fix": {
- "block_index": 310502,
+ "block_index": DEFAULT_PARAMS["default_block_index"] + 1,
"allow_always_latest": False,
}, # override to be true only at block 310502
"segwit_support": {
@@ -58,7 +58,10 @@
"allow_always_latest": False,
}, # override to be true only at block 310999,
"dispensers": {"block_index": 0, "allow_always_latest": True},
- "multisig_addresses": {"block_index": 310502, "allow_always_latest": True},
+ "multisig_addresses": {
+ "block_index": DEFAULT_PARAMS["default_block_index"] + 1,
+ "allow_always_latest": True,
+ },
}
DISABLE_ALL_MOCK_PROTOCOL_CHANGES_AT_BLOCK = (
False # if true, never look at MOCK_PROTOCOL_CHANGES_AT_BLOCK
@@ -120,7 +123,7 @@ def shouldCheckForMockProtocolChangesAtBlock(change_name):
_generate_random_asset = util.generate_random_asset
-def generate_random_asset():
+def generate_random_asset(subasset_longname=None):
if RANDOM_ASSET_INT is None:
return _generate_random_asset()
else:
@@ -240,7 +243,7 @@ def api_server(request, cp_server):
config.RPC_PORT = TEST_RPC_PORT = TEST_RPC_PORT + 1
server.configure_rpc(config.RPC_PASSWORD)
- # print(config.DATABASE, config.API_DATABASE)
+ print("api_server", config.DATABASE, config.API_DATABASE)
# start RPC server and wait for server to be ready
api_server = api.APIServer()
@@ -345,7 +348,8 @@ def is_server_ready():
if result.status_code != 200:
raise requests.exceptions.RequestException
result = result.json()
- if result["result"]["counterparty_height"] < 310500:
+ print(DEFAULT_PARAMS["default_block_index"])
+ if result["result"]["counterparty_height"] < DEFAULT_PARAMS["default_block_index"] - 1:
raise requests.exceptions.RequestException
break
except requests.exceptions.RequestException:
@@ -582,6 +586,15 @@ def check_wal_file(dbfile):
def rps_expire(db, block_index):
pass
+ def is_valid_utxo(value):
+ return util.is_utxo_format(value)
+
+ def get_utxo_address_and_value(value):
+ return "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", 100
+
+ def get_transaction_fee(db, transaction_type, block_index):
+ return 10
+
monkeypatch.setattr("counterpartycore.lib.transaction.arc4.init_arc4", init_arc4)
monkeypatch.setattr(
"counterpartycore.lib.backend.addrindexrs.get_unspent_txouts", get_unspent_txouts
@@ -595,6 +608,11 @@ def rps_expire(db, block_index):
monkeypatch.setattr(
"counterpartycore.lib.backend.bitcoind.getrawtransaction", mocked_getrawtransaction
)
+ monkeypatch.setattr("counterpartycore.lib.backend.bitcoind.is_valid_utxo", is_valid_utxo)
+ monkeypatch.setattr(
+ "counterpartycore.lib.backend.bitcoind.get_utxo_address_and_value",
+ get_utxo_address_and_value,
+ )
monkeypatch.setattr(
"counterpartycore.lib.backend.addrindexrs.getrawtransaction_batch",
mocked_getrawtransaction_batch,
@@ -616,3 +634,5 @@ def rps_expire(db, block_index):
monkeypatch.setattr(
"counterpartycore.lib.ledger.get_matching_orders", ledger.get_matching_orders_no_cache
)
+
+ monkeypatch.setattr("counterpartycore.lib.gas.get_transaction_fee", get_transaction_fee)
diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json
index a8ad442013..dac6834153 100644
--- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json
+++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json
@@ -2,139 +2,139 @@
"http://localhost:10009/v2/blocks?verbose=true": {
"result": [
{
- "block_index": 310500,
- "block_hash": "54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b",
- "block_time": 310500000,
+ "block_index": 310703,
+ "block_hash": "b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218",
+ "block_time": 310703000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d",
- "txlist_hash": "35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1",
- "messages_hash": "4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96",
+ "ledger_hash": "cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a",
+ "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786",
+ "messages_hash": "82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d",
"transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310499,
- "block_hash": "1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764",
- "block_time": 310499000,
+ "block_index": 310702,
+ "block_hash": "69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8",
+ "block_time": 310702000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "b9fcbdafddd46fdda061f6e9f8744b426b6ca37e32b315df1098cbc7899ae9b9",
- "txlist_hash": "032166892f568bb97f4f69ef5bdf49cc1b15cc9f8c7f6c1f3e1f9d54816ad7e5",
- "messages_hash": "dc4258fd460745fe443598c0119627362b7bceea1892f32243221551f45db0c9",
+ "ledger_hash": "7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe",
+ "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c",
+ "messages_hash": "9e09c7b47df3a09f541b40931ccce3b512ca113a6d4dd5e6d3505e29bfea8e31",
"transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310498,
- "block_hash": "b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e",
- "block_time": 310498000,
+ "block_index": 310701,
+ "block_hash": "9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1",
+ "block_time": 310701000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414",
- "txlist_hash": "b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7",
- "messages_hash": "31fb849548f5054c3f49f5ba1fc015a6169db27f00e90ea2baa6fe453e2744a5",
- "transaction_count": 1,
+ "ledger_hash": "562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d",
+ "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f",
+ "messages_hash": "a12df3e7bce37d8f4a9c4c0a2a3f367fb071142acff947cecc23173b4925fb53",
+ "transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310497,
- "block_hash": "f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e",
- "block_time": 310497000,
+ "block_index": 310700,
+ "block_hash": "4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5",
+ "block_time": 310700000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819",
- "txlist_hash": "ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519",
- "messages_hash": "ad86d199894b3c4e8a2d05332b58b81350bfaf9686b5a0896fdc286cd5d95833",
- "transaction_count": 1,
+ "ledger_hash": "9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e",
+ "txlist_hash": "1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084",
+ "messages_hash": "8a30a60098f9f82a118549ec730568a44d5fa6eb3335a20aec2b44599039342d",
+ "transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310496,
- "block_hash": "65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8",
- "block_time": 310496000,
+ "block_index": 310699,
+ "block_hash": "3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d",
+ "block_time": 310699000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941",
- "txlist_hash": "9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4",
- "messages_hash": "1417fc5280cab90a898e1b89baf5e8ebafcf666e43ecc2042bae44519c54794e",
- "transaction_count": 1,
+ "ledger_hash": "d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12",
+ "txlist_hash": "d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94",
+ "messages_hash": "3a2b15d7772dd7a9d22d7bfcc558ec8da5713b427e25289eb809b4edeb673e2e",
+ "transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310495,
- "block_hash": "4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67",
- "block_time": 310495000,
+ "block_index": 310698,
+ "block_hash": "ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53",
+ "block_time": 310698000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd",
- "txlist_hash": "09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29",
- "messages_hash": "c426ad40e2d4e6e3e6301c9122fdb9ef7f28fad2ef6135985046a4a9b2acdedb",
- "transaction_count": 1,
+ "ledger_hash": "7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65",
+ "txlist_hash": "9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58",
+ "messages_hash": "2d3ce8e66aa0fa6491fa43efa2de7264011d91dc04b6a7aa37d7974876c3c22a",
+ "transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310494,
- "block_hash": "7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d",
- "block_time": 310494000,
+ "block_index": 310697,
+ "block_hash": "4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304",
+ "block_time": 310697000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919",
- "txlist_hash": "9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014",
- "messages_hash": "ab785cd4356200a496f5b85e7f824d03bb32b81cafa403176a6ded65e0aa8a0a",
- "transaction_count": 1,
+ "ledger_hash": "ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584",
+ "txlist_hash": "663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708",
+ "messages_hash": "ef1273df0c8d6bbe9078468440fe92eec3515e5985064775d453615448d836cd",
+ "transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310493,
- "block_hash": "c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf",
- "block_time": 310493000,
+ "block_index": 310696,
+ "block_hash": "7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7",
+ "block_time": 310696000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c",
- "txlist_hash": "7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6",
- "messages_hash": "2a51d45368d39a8ed09a7c24aab6271397a8a6dbabc960b4b26d051547f15f3e",
- "transaction_count": 1,
+ "ledger_hash": "122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728",
+ "txlist_hash": "deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973",
+ "messages_hash": "1b9aef26cd6d6e43ebc95c01db0ce8ccb05b8400955737643bef4458471f7c29",
+ "transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310492,
- "block_hash": "8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607",
- "block_time": 310492000,
+ "block_index": 310695,
+ "block_hash": "a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538",
+ "block_time": 310695000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740",
- "txlist_hash": "daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e",
- "messages_hash": "fc77802662487506752caa901851d67dee6b960606286e180c6e9cd5a5f6cba0",
- "transaction_count": 1,
+ "ledger_hash": "e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1",
+ "txlist_hash": "9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3",
+ "messages_hash": "7112da51430ab9dfb8dba1fe06f52fcffdac61e146a50c73e95e1ecffa62b6fd",
+ "transaction_count": 0,
"confirmed": true
},
{
- "block_index": 310491,
- "block_hash": "811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16",
- "block_time": 310491000,
+ "block_index": 310694,
+ "block_hash": "586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0",
+ "block_time": 310694000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6",
- "txlist_hash": "f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8",
- "messages_hash": "fa5278b9c27ee7e35fb9b13329e4146133c9219897aaa6fde667e2eda5ac015f",
- "transaction_count": 1,
+ "ledger_hash": "2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8",
+ "txlist_hash": "52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1",
+ "messages_hash": "193fa09a1d321e9e1eb9fadf56dbf46128a0e0f23276afb0af169be0a2714a51",
+ "transaction_count": 0,
"confirmed": true
}
],
- "next_cursor": 310490,
- "result_count": 502
+ "next_cursor": 310693,
+ "result_count": 705
},
"http://localhost:10009/v2/blocks/last?verbose=true": {
"result": {
- "block_index": 310500,
- "block_hash": "54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b",
- "block_time": 310500000,
+ "block_index": 310703,
+ "block_hash": "b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218",
+ "block_time": 310703000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d",
- "txlist_hash": "35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1",
- "messages_hash": "4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96",
+ "ledger_hash": "cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a",
+ "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786",
+ "messages_hash": "82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d",
"transaction_count": 0,
"confirmed": true
}
@@ -148,7 +148,7 @@
"difficulty": null,
"ledger_hash": "3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6",
"txlist_hash": "f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8",
- "messages_hash": "fa5278b9c27ee7e35fb9b13329e4146133c9219897aaa6fde667e2eda5ac015f",
+ "messages_hash": "9e9c8f8f8d7dfb437d16e3fb14b93104a64d31577e5771fd91ad73d816d0feae",
"transaction_count": 1,
"confirmed": true
}
@@ -160,10 +160,10 @@
"block_time": 310500000,
"previous_block_hash": null,
"difficulty": null,
- "ledger_hash": "5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d",
- "txlist_hash": "35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1",
- "messages_hash": "4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96",
- "transaction_count": 0,
+ "ledger_hash": "6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b",
+ "txlist_hash": "d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767",
+ "messages_hash": "7e9485dcce4f7f6aa33c498249ecf99ffb3cd102cc30888c70b93c73d43d591d",
+ "transaction_count": 1,
"confirmed": true
}
},
@@ -181,6 +181,7 @@
"fee": 6800,
"data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0",
"supported": true,
+ "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0",
"confirmed": true,
"unpacked_data": {
"message_type": "order",
@@ -226,7 +227,7 @@
"params": {
"block_index": 310491,
"ledger_hash": "3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6",
- "messages_hash": "fa5278b9c27ee7e35fb9b13329e4146133c9219897aaa6fde667e2eda5ac015f",
+ "messages_hash": "9e9c8f8f8d7dfb437d16e3fb14b93104a64d31577e5771fd91ad73d816d0feae",
"transaction_count": 1,
"txlist_hash": "f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8",
"block_time": 310491000
@@ -301,6 +302,8 @@
"event": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
"quantity": 100000000,
"tx_index": 492,
+ "utxo": null,
+ "utxo_address": null,
"block_time": 310491000,
"asset_info": {
"divisible": true,
@@ -328,6 +331,7 @@
"supported": true,
"tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
"tx_index": 492,
+ "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0",
"unpacked_data": {
"message_type": "order",
"message_type_id": 10,
@@ -429,6 +433,8 @@
"action": "open order",
"event": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
"tx_index": 492,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310491000,
"asset_info": {
@@ -482,337 +488,266 @@
"http://localhost:10009/v2/transactions?verbose=true": {
"result": [
{
- "tx_index": 499,
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "block_index": 310498,
- "block_hash": "b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e",
- "block_time": 310498000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx_index": 511,
+ "tx_hash": "af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e",
+ "block_index": 310510,
+ "block_hash": "b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2",
+ "block_time": 310510000,
+ "source": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
"destination": null,
"btc_amount": 0,
- "fee": 6550,
- "data": "0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74",
+ "fee": 6150,
+ "data": "0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400",
"supported": true,
+ "utxos_info": "b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 21,
+ "message_type": "dispenser",
+ "message_type_id": 12,
"message_data": {
- "asset_id": null,
- "asset": null,
- "subasset_longname": null,
- "quantity": null,
- "divisible": null,
- "lock": null,
- "reset": null,
- "callable": null,
- "call_date": null,
- "call_price": null,
- "description": null,
- "status": "invalid: could not unpack"
+ "asset": "TESTDISP",
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "mainchainrate": 100,
+ "dispenser_status": 0,
+ "action_address": null,
+ "oracle_address": null,
+ "status": "valid",
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Test dispensers asset",
+ "issuer": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "divisible": false,
+ "locked": false
+ },
+ "give_quantity_normalized": "100",
+ "escrow_quantity_normalized": "100"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 498,
- "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
- "block_index": 310497,
- "block_hash": "f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e",
- "block_time": 310497000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx_index": 510,
+ "tx_hash": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1",
+ "block_index": 310509,
+ "block_hash": "4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee",
+ "block_time": 310509000,
+ "source": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
"destination": null,
"btc_amount": 0,
- "fee": 6300,
- "data": "00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574",
+ "fee": 6800,
+ "data": "0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574",
"supported": true,
+ "utxos_info": "5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0",
"confirmed": true,
"unpacked_data": {
"message_type": "issuance",
"message_type_id": 20,
"message_data": {
- "asset_id": 178522493,
- "asset": "PARENT",
+ "asset_id": 154062662379,
+ "asset": "TESTDISP",
"subasset_longname": null,
- "quantity": 100000000,
- "divisible": true,
+ "quantity": 1000,
+ "divisible": false,
"lock": null,
"reset": null,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "Parent asset",
+ "description": "Test dispensers asset",
"status": "valid",
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1000"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 497,
- "tx_hash": "a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba",
- "block_index": 310496,
- "block_hash": "65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8",
- "block_time": 310496000,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "btc_amount": 5430,
- "fee": 7650,
- "data": "00000000000000000000000100000015a4018c1e",
+ "tx_index": 509,
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf",
+ "block_time": 310508000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10850,
+ "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31",
"supported": true,
+ "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "send",
- "message_type_id": 0,
+ "message_type": "unknown",
+ "message_type_id": 1684893238,
"message_data": {
- "asset": "XCP",
- "quantity": 92945878046,
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "quantity_normalized": "929.45878000"
+ "error": "Unknown message type"
}
},
- "btc_amount_normalized": "0.00005430"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 496,
- "tx_hash": "02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e",
- "block_index": 310495,
- "block_hash": "4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67",
- "block_time": 310495000,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "btc_amount": 5430,
- "fee": 7650,
- "data": "00000000000000063e985ffd000000000000000a",
+ "tx_index": 508,
+ "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "block_index": 310507,
+ "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93",
+ "block_time": 310507000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10850,
+ "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030",
"supported": true,
+ "utxos_info": "c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "send",
- "message_type_id": 0,
+ "message_type": "unknown",
+ "message_type_id": 1684893238,
"message_data": {
- "asset": "DIVIDEND",
- "quantity": 10,
- "asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "divisible": true,
- "locked": false
- },
- "quantity_normalized": "0.00000010"
+ "error": "Unknown message type"
}
},
- "btc_amount_normalized": "0.00005430"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 495,
- "tx_hash": "321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503",
- "block_index": 310494,
- "block_hash": "7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d",
- "block_time": 310494000,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "tx_index": 507,
+ "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18",
+ "block_index": 310506,
+ "block_hash": "9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c",
+ "block_time": 310506000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "00000014000000063e985ffd00000000000000640100000000000000000000",
+ "fee": 5800,
+ "data": "5b413136303336313238353739323733333732397c3230",
"supported": true,
+ "utxos_info": "33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 20,
+ "message_type": "unknown",
+ "message_type_id": 1530999094,
"message_data": {
- "asset_id": 26819977213,
- "asset": "DIVIDEND",
- "subasset_longname": null,
- "quantity": 100,
- "divisible": true,
- "lock": null,
- "reset": null,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "",
- "status": "valid",
- "quantity_normalized": "0.00000100"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 494,
- "tx_hash": "c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a",
- "block_index": 310493,
- "block_hash": "c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf",
- "block_time": 310493000,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "destination": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
- "btc_amount": 62000000,
- "fee": 5625,
- "data": "",
+ "tx_index": 506,
+ "tx_hash": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8",
+ "block_index": 310505,
+ "block_hash": "dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a",
+ "block_time": 310505000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 5800,
+ "data": "5b413136303336313238353739323733333732397c3130",
"supported": true,
+ "utxos_info": "f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1",
"confirmed": true,
"unpacked_data": {
"message_type": "unknown",
- "message_type_id": null,
+ "message_type_id": 1530999094,
"message_data": {
"error": "Unknown message type"
}
},
- "btc_amount_normalized": "0.62000000"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 493,
- "tx_hash": "1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
- "block_index": 310492,
- "block_hash": "8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607",
- "block_time": 310492000,
+ "tx_index": 505,
+ "tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9",
+ "block_index": 310504,
+ "block_hash": "0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25",
+ "block_time": 310504000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"destination": null,
"btc_amount": 0,
- "fee": 1000000,
- "data": "0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000",
+ "fee": 8825,
+ "data": "5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e",
"supported": true,
+ "utxos_info": "a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "order",
- "message_type_id": 10,
+ "message_type": "unknown",
+ "message_type_id": 1514221878,
"message_data": {
- "give_asset": "BTC",
- "give_quantity": 800000,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "expiration": 2000,
- "fee_required": 0,
- "status": "open",
- "give_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Bitcoin cryptocurrency",
- "locked": false,
- "issuer": null
- },
- "get_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "give_quantity_normalized": "0.00800000",
- "get_quantity_normalized": "1.00000000",
- "fee_required_normalized": "0.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 492,
- "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
- "block_index": 310491,
- "block_hash": "811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16",
- "block_time": 310491000,
+ "tx_index": 504,
+ "tx_hash": "c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7",
+ "block_index": 310503,
+ "block_hash": "219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c",
+ "block_time": 310503000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0",
+ "fee": 6675,
+ "data": "5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c",
"supported": true,
+ "utxos_info": "3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "order",
- "message_type_id": 10,
+ "message_type": "unknown",
+ "message_type_id": 1515274569,
"message_data": {
- "give_asset": "XCP",
- "give_quantity": 100000000,
- "get_asset": "BTC",
- "get_quantity": 800000,
- "expiration": 2000,
- "fee_required": 900000,
- "status": "open",
- "give_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "get_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Bitcoin cryptocurrency",
- "locked": false,
- "issuer": null
- },
- "give_quantity_normalized": "1.00000000",
- "get_quantity_normalized": "0.00800000",
- "fee_required_normalized": "0.00900000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 491,
- "tx_hash": "7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af",
- "block_index": 310490,
- "block_hash": "e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c",
- "block_time": 310490000,
- "source": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ "tx_index": 503,
+ "tx_hash": "9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1",
+ "block_index": 310502,
+ "block_hash": "b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67",
+ "block_time": 310502000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "0000001e52bb33043ff000000000000000000000096f7074696f6e732031",
+ "fee": 6375,
+ "data": "5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c",
"supported": true,
+ "utxos_info": "c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "broadcast",
- "message_type_id": 30,
+ "message_type": "unknown",
+ "message_type_id": 1515340105,
"message_data": {
- "timestamp": 1388000004,
- "value": 1.0,
- "fee_fraction_int": 0,
- "text": "options 1",
- "status": "valid",
- "fee_fraction_int_normalized": "0.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 490,
- "tx_hash": "685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1",
- "block_index": 310489,
- "block_hash": "2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6",
- "block_time": 310489000,
- "source": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
+ "tx_index": 502,
+ "tx_hash": "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67",
+ "block_index": 310501,
+ "block_hash": "9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba",
+ "block_time": 310501000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "0000001e52bb33033ff000000000000000000000046c6f636b",
+ "fee": 5575,
+ "data": "5b46524545464149524d494e7c30",
"supported": true,
+ "utxos_info": "fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "broadcast",
- "message_type_id": 30,
+ "message_type": "unknown",
+ "message_type_id": 1531335237,
"message_data": {
- "timestamp": 1388000003,
- "value": 1.0,
- "fee_fraction_int": 0,
- "text": "lock",
- "status": "valid",
- "fee_fraction_int_normalized": "0.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
}
],
- "next_cursor": 489,
- "result_count": 52
+ "next_cursor": 501,
+ "result_count": 64
},
"http://localhost:10009/v2/transactions/2?verbose=true": {
"result": {
@@ -827,6 +762,7 @@
"fee": 6800,
"data": "00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574",
"supported": true,
+ "utxos_info": "ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0",
"confirmed": true,
"unpacked_data": {
"message_type": "issuance",
@@ -863,6 +799,7 @@
"fee": 6800,
"data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0",
"supported": true,
+ "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0",
"confirmed": true,
"unpacked_data": {
"message_type": "order",
@@ -922,6 +859,8 @@
"event": "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1",
"quantity": 100000000000,
"tx_index": 2,
+ "utxo": null,
+ "utxo_address": null,
"block_time": 310001000,
"asset_info": {
"asset_longname": null,
@@ -941,12 +880,14 @@
"event": "ASSET_ISSUANCE",
"params": {
"asset": "DIVISIBLE",
+ "asset_events": "creation",
"asset_longname": null,
"block_index": 310001,
"call_date": 0,
"call_price": 0.0,
"callable": false,
"description": "Divisible asset",
+ "description_locked": false,
"divisible": true,
"fee_paid": 50000000,
"issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
@@ -991,6 +932,8 @@
"event": "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1",
"quantity": 50000000,
"tx_index": 2,
+ "utxo": null,
+ "utxo_address": null,
"block_time": 310001000,
"asset_info": {
"divisible": true,
@@ -1083,6 +1026,8 @@
"event": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
"quantity": 100000000,
"tx_index": 492,
+ "utxo": null,
+ "utxo_address": null,
"block_time": 310491000,
"asset_info": {
"divisible": true,
@@ -1124,6 +1069,8 @@
"event": "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1",
"quantity": 100000000000,
"tx_index": 2,
+ "utxo": null,
+ "utxo_address": null,
"block_time": 310001000,
"asset_info": {
"asset_longname": null,
@@ -1149,12 +1096,35 @@
},
"http://localhost:10009/v2/addresses/balances?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": {
"result": [
+ {
+ "asset": "A160361285792733729",
+ "total": 50,
+ "addresses": [
+ {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 50,
+ "quantity_normalized": "0.00000050"
+ }
+ ],
+ "asset_info": {
+ "asset_longname": "",
+ "description": "softcap description",
+ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "divisible": true,
+ "locked": true
+ },
+ "total_normalized": "0.00000050"
+ },
{
"asset": "A95428956661682277",
"total": 100000000,
"addresses": [
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "utxo": null,
+ "utxo_address": null,
"quantity": 100000000,
"quantity_normalized": "1.00000000"
}
@@ -1174,6 +1144,8 @@
"addresses": [
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "utxo": null,
+ "utxo_address": null,
"quantity": 1000,
"quantity_normalized": "0.00001000"
}
@@ -1193,13 +1165,24 @@
"addresses": [
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 98800000000,
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 98799999999,
"quantity_normalized": "988.00000000"
},
{
"address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "utxo": null,
+ "utxo_address": null,
"quantity": 100000000,
"quantity_normalized": "1.00000000"
+ },
+ {
+ "address": null,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "quantity": 1,
+ "quantity_normalized": "0.00000001"
}
],
"asset_info": {
@@ -1212,369 +1195,278 @@
"total_normalized": "989.00000000"
},
{
- "asset": "LOCKED",
- "total": 1000,
+ "asset": "FREEFAIRMIN",
+ "total": 10,
"addresses": [
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 1000,
- "quantity_normalized": "0.00001000"
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 10,
+ "quantity_normalized": "0.00000010"
}
],
"asset_info": {
- "asset_longname": null,
- "description": "Locked asset",
+ "asset_longname": "",
+ "description": "",
"issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"divisible": true,
- "locked": true
+ "locked": false
},
- "total_normalized": "0.00001000"
+ "total_normalized": "0.00000010"
},
{
- "asset": "MAXI",
- "total": 9223372036854775807,
+ "asset": "LOCKED",
+ "total": 1000,
"addresses": [
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 9223372036854775807,
- "quantity_normalized": "92233720000.00000000"
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 1000,
+ "quantity_normalized": "0.00001000"
}
],
"asset_info": {
"asset_longname": null,
- "description": "Maximum quantity",
+ "description": "Locked asset",
"issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"divisible": true,
- "locked": false
- },
- "total_normalized": "92233720000.00000000"
- },
- {
- "asset": "NODIVISIBLE",
- "total": 990,
- "addresses": [
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 985,
- "quantity_normalized": "985"
- },
- {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 5,
- "quantity_normalized": "5"
- }
- ],
- "asset_info": {
- "asset_longname": null,
- "description": "No divisible asset",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "divisible": false,
- "locked": false
+ "locked": true
},
- "total_normalized": "990"
+ "total_normalized": "0.00001000"
}
],
- "next_cursor": "PARENT",
- "result_count": 8
+ "next_cursor": "MAXI",
+ "result_count": 11
},
"http://localhost:10009/v2/addresses/transactions?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": {
"result": [
{
- "tx_index": 499,
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "block_index": 310498,
- "block_hash": "b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e",
- "block_time": 310498000,
+ "tx_index": 509,
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf",
+ "block_time": 310508000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6550,
- "data": "0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74",
+ "fee": 10850,
+ "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31",
"supported": true,
+ "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 21,
+ "message_type": "unknown",
+ "message_type_id": 1684893238,
"message_data": {
- "asset_id": null,
- "asset": null,
- "subasset_longname": null,
- "quantity": null,
- "divisible": null,
- "lock": null,
- "reset": null,
- "callable": null,
- "call_date": null,
- "call_price": null,
- "description": null,
- "status": "invalid: could not unpack"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 498,
- "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
- "block_index": 310497,
- "block_hash": "f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e",
- "block_time": 310497000,
+ "tx_index": 508,
+ "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "block_index": 310507,
+ "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93",
+ "block_time": 310507000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6300,
- "data": "00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574",
+ "fee": 10850,
+ "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030",
"supported": true,
+ "utxos_info": "c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 20,
+ "message_type": "unknown",
+ "message_type_id": 1684893238,
"message_data": {
- "asset_id": 178522493,
- "asset": "PARENT",
- "subasset_longname": null,
- "quantity": 100000000,
- "divisible": true,
- "lock": null,
- "reset": null,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "Parent asset",
- "status": "valid",
- "quantity_normalized": "1.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 493,
- "tx_hash": "1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
- "block_index": 310492,
- "block_hash": "8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607",
- "block_time": 310492000,
+ "tx_index": 507,
+ "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18",
+ "block_index": 310506,
+ "block_hash": "9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c",
+ "block_time": 310506000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"destination": null,
"btc_amount": 0,
- "fee": 1000000,
- "data": "0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000",
+ "fee": 5800,
+ "data": "5b413136303336313238353739323733333732397c3230",
"supported": true,
+ "utxos_info": "33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "order",
- "message_type_id": 10,
+ "message_type": "unknown",
+ "message_type_id": 1530999094,
"message_data": {
- "give_asset": "BTC",
- "give_quantity": 800000,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "expiration": 2000,
- "fee_required": 0,
- "status": "open",
- "give_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Bitcoin cryptocurrency",
- "locked": false,
- "issuer": null
- },
- "get_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "give_quantity_normalized": "0.00800000",
- "get_quantity_normalized": "1.00000000",
- "fee_required_normalized": "0.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 492,
- "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
- "block_index": 310491,
- "block_hash": "811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16",
- "block_time": 310491000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx_index": 506,
+ "tx_hash": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8",
+ "block_index": 310505,
+ "block_hash": "dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a",
+ "block_time": 310505000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0",
+ "fee": 5800,
+ "data": "5b413136303336313238353739323733333732397c3130",
"supported": true,
+ "utxos_info": "f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "order",
- "message_type_id": 10,
+ "message_type": "unknown",
+ "message_type_id": 1530999094,
"message_data": {
- "give_asset": "XCP",
- "give_quantity": 100000000,
- "get_asset": "BTC",
- "get_quantity": 800000,
- "expiration": 2000,
- "fee_required": 900000,
- "status": "open",
- "give_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "get_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Bitcoin cryptocurrency",
- "locked": false,
- "issuer": null
- },
- "give_quantity_normalized": "1.00000000",
- "get_quantity_normalized": "0.00800000",
- "fee_required_normalized": "0.00900000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 483,
- "tx_hash": "c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34",
- "block_index": 310482,
- "block_hash": "2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6",
- "block_time": 310482000,
+ "tx_index": 505,
+ "tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9",
+ "block_index": 310504,
+ "block_hash": "0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25",
+ "block_time": 310504000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"destination": null,
"btc_amount": 0,
- "fee": 6350,
- "data": "0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001",
+ "fee": 8825,
+ "data": "5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e",
"supported": true,
+ "utxos_info": "a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "enhanced_send",
- "message_type_id": 2,
+ "message_type": "unknown",
+ "message_type_id": 1514221878,
"message_data": {
- "asset": "XCP",
- "quantity": 100000000,
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "memo": "fade0001",
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "quantity_normalized": "1.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 482,
- "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
- "block_index": 310481,
- "block_hash": "db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a",
- "block_time": 310481000,
+ "tx_index": 504,
+ "tx_hash": "c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7",
+ "block_index": 310503,
+ "block_hash": "219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c",
+ "block_time": 310503000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6375,
- "data": "0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f",
+ "fee": 6675,
+ "data": "5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c",
"supported": true,
+ "utxos_info": "3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "enhanced_send",
- "message_type_id": 2,
+ "message_type": "unknown",
+ "message_type_id": 1515274569,
"message_data": {
- "asset": "XCP",
- "quantity": 100000000,
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "memo": "68656c6c6f",
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "quantity_normalized": "1.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
}
],
- "next_cursor": 111,
- "result_count": 29
+ "next_cursor": 503,
+ "result_count": 39
},
"http://localhost:10009/v2/addresses/events?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": {
"result": [
{
- "event_index": 1233,
- "event": "CREDIT",
+ "event_index": 1355,
+ "event": "ORDER_MATCH_EXPIRATION",
+ "params": {
+ "block_index": 310513,
+ "order_match_id": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "block_time": 310513000
+ },
+ "tx_hash": null,
+ "block_index": 310513,
+ "block_time": 310513000
+ },
+ {
+ "event_index": 1327,
+ "event": "DEBIT",
"params": {
+ "action": "attach to utxo",
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "A95428956661682277",
- "block_index": 310498,
- "calling_function": "issuance",
- "event": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "quantity": 100000000,
- "tx_index": 499,
- "block_time": 310498000,
+ "asset": "DIVISIBLE",
+ "block_index": 310508,
+ "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "quantity": 1,
+ "tx_index": 509,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 310508000,
"asset_info": {
- "asset_longname": "PARENT.already.issued",
- "description": "Child of parent",
+ "asset_longname": null,
+ "description": "Divisible asset",
"issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"divisible": true,
"locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "0.00000001"
},
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "block_index": 310498,
- "block_time": 310498000
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "block_time": 310508000
},
{
- "event_index": 1232,
- "event": "ASSET_ISSUANCE",
+ "event_index": 1326,
+ "event": "ASSET_DESTRUCTION",
"params": {
- "asset": "A95428956661682277",
- "asset_longname": "PARENT.already.issued",
- "block_index": 310498,
- "call_date": 0,
- "call_price": 0.0,
- "callable": false,
- "description": "Child of parent",
- "divisible": true,
- "fee_paid": 25000000,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": false,
- "quantity": 100000000,
- "reset": false,
+ "asset": "XCP",
+ "block_index": 310508,
+ "quantity": 10,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"status": "valid",
- "transfer": false,
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "tx_index": 499,
- "block_time": 310498000,
- "quantity_normalized": "1.00000000",
- "fee_paid_normalized": "0.25000000"
+ "tag": "attach to utxo fee",
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "tx_index": 509,
+ "block_time": 310508000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010"
},
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "block_index": 310498,
- "block_time": 310498000
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "block_time": 310508000
},
{
- "event_index": 1230,
+ "event_index": 1325,
"event": "DEBIT",
"params": {
- "action": "issuance fee",
+ "action": "attach to utxo fee",
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "XCP",
- "block_index": 310498,
- "event": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "quantity": 25000000,
- "tx_index": 499,
- "block_time": 310498000,
+ "block_index": 310508,
+ "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "quantity": 10,
+ "tx_index": 509,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 310508000,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -1582,125 +1474,158 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "0.25000000"
+ "quantity_normalized": "0.00000010"
},
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "block_index": 310498,
- "block_time": 310498000
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "block_time": 310508000
},
{
- "event_index": 1229,
+ "event_index": 1324,
"event": "NEW_TRANSACTION",
"params": {
- "block_hash": "b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e",
- "block_index": 310498,
- "block_time": 310498000,
+ "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf",
+ "block_index": 310508,
+ "block_time": 310508000,
"btc_amount": 0,
- "data": "0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74",
+ "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31",
"destination": "",
- "fee": 6550,
+ "fee": 10850,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"supported": true,
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "tx_index": 499,
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "tx_index": 509,
+ "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0",
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 21,
+ "message_type": "unknown",
+ "message_type_id": 1684893238,
"message_data": {
- "asset_id": null,
- "asset": null,
- "subasset_longname": null,
- "quantity": null,
- "divisible": null,
- "lock": null,
- "reset": null,
- "callable": null,
- "call_date": null,
- "call_price": null,
- "description": null,
- "status": "invalid: could not unpack"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
"tx_hash": null,
- "block_index": 310498,
- "block_time": 310498000
- },
- {
- "event_index": 1225,
- "event": "CREDIT",
- "params": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "PARENT",
- "block_index": 310497,
- "calling_function": "issuance",
- "event": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
- "quantity": 100000000,
- "tx_index": 498,
- "block_time": 310497000,
- "asset_info": {
- "asset_longname": null,
- "description": "Parent asset",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "divisible": true,
- "locked": false
- },
- "quantity_normalized": "1.00000000"
- },
- "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
- "block_index": 310497,
- "block_time": 310497000
+ "block_index": 310508,
+ "block_time": 310508000
}
],
- "next_cursor": 1224,
- "result_count": 118
+ "next_cursor": 1317,
+ "result_count": 167
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances?verbose=true": {
"result": [
{
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "A95428956661682277",
- "quantity": 100000000,
+ "address": null,
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset_info": {
- "asset_longname": "PARENT.already.issued",
- "description": "Child of parent",
+ "asset_longname": null,
+ "description": "Divisible asset",
"issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"divisible": true,
"locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "0.00000001"
},
{
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "PARENT",
- "quantity": 100000000,
+ "address": null,
+ "asset": "XCP",
+ "quantity": 100,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset_info": {
- "asset_longname": null,
- "description": "Parent asset",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"divisible": true,
- "locked": false
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "0.00000100"
},
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "MAXI",
- "quantity": 9223372036854775807,
+ "asset": "RAIDFAIRMIN",
+ "quantity": 20,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
- "asset_longname": null,
- "description": "Maximum quantity",
+ "asset_longname": "",
+ "description": "",
"issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"divisible": true,
"locked": false
},
- "quantity_normalized": "92233720000.00000000"
+ "quantity_normalized": "0.00000020"
},
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "LOCKED",
+ "asset": "FREEFAIRMIN",
+ "quantity": 10,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "A95428956661682277",
+ "quantity": 100000000,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": "PARENT.already.issued",
+ "description": "Child of parent",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "1.00000000"
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "PARENT",
+ "quantity": 100000000,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Parent asset",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "1.00000000"
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "MAXI",
+ "quantity": 9223372036854775807,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Maximum quantity",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "92233720000.00000000"
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "LOCKED",
"quantity": 1000,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"asset_longname": null,
"description": "Locked asset",
@@ -1714,6 +1639,8 @@
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "CALLABLE",
"quantity": 1000,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"asset_longname": null,
"description": "Callable asset",
@@ -1727,6 +1654,8 @@
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "NODIVISIBLE",
"quantity": 985,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"asset_longname": null,
"description": "No divisible asset",
@@ -1739,7 +1668,9 @@
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "DIVISIBLE",
- "quantity": 98800000000,
+ "quantity": 98799999999,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"asset_longname": null,
"description": "Divisible asset",
@@ -1752,7 +1683,9 @@
{
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "XCP",
- "quantity": 91875000000,
+ "quantity": 91674999880,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"divisible": true,
"asset_longname": null,
@@ -1760,17 +1693,19 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "918.75000000"
+ "quantity_normalized": "916.75000000"
}
],
"next_cursor": null,
- "result_count": 8
+ "result_count": 12
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances/NODIVISIBLE?verbose=true": {
"result": {
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "NODIVISIBLE",
"quantity": 985,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"asset_longname": null,
"description": "No divisible asset",
@@ -1783,6 +1718,90 @@
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/credits?verbose=true": {
"result": [
+ {
+ "block_index": 310508,
+ "address": null,
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "calling_function": "attach to utxo",
+ "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "tx_index": 509,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "confirmed": true,
+ "block_time": 310508000,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Divisible asset",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000001"
+ },
+ {
+ "block_index": 310507,
+ "address": null,
+ "asset": "XCP",
+ "quantity": 100,
+ "calling_function": "attach to utxo",
+ "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "tx_index": 508,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "confirmed": true,
+ "block_time": 310507000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000100"
+ },
+ {
+ "block_index": 310502,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "RAIDFAIRMIN",
+ "quantity": 20,
+ "calling_function": "premint",
+ "event": "9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1",
+ "tx_index": 503,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310502000,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000020"
+ },
+ {
+ "block_index": 310501,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "FREEFAIRMIN",
+ "quantity": 10,
+ "calling_function": "fairmint",
+ "event": "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67",
+ "tx_index": 502,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310501000,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
{
"block_index": 310498,
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
@@ -1791,6 +1810,8 @@
"calling_function": "issuance",
"event": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
"tx_index": 499,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310498000,
"asset_info": {
@@ -1810,6 +1831,8 @@
"calling_function": "issuance",
"event": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
"tx_index": 498,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310497000,
"asset_info": {
@@ -1829,6 +1852,8 @@
"calling_function": "send",
"event": "c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34",
"tx_index": 483,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310482000,
"asset_info": {
@@ -1848,6 +1873,8 @@
"calling_function": "bet settled",
"event": "16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae",
"tx_index": 103,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310102000,
"asset_info": {
@@ -1867,6 +1894,8 @@
"calling_function": "issuance",
"event": "bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39",
"tx_index": 17,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310016000,
"asset_info": {
@@ -1886,6 +1915,8 @@
"calling_function": "issuance",
"event": "90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da",
"tx_index": 5,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310004000,
"asset_info": {
@@ -1905,6 +1936,8 @@
"calling_function": "issuance",
"event": "c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140",
"tx_index": 4,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310003000,
"asset_info": {
@@ -1924,6 +1957,8 @@
"calling_function": "issuance",
"event": "7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584",
"tx_index": 3,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310002000,
"asset_info": {
@@ -1943,6 +1978,8 @@
"calling_function": "issuance",
"event": "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1",
"tx_index": 2,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310001000,
"asset_info": {
@@ -1962,6 +1999,8 @@
"calling_function": "burn",
"event": "6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597",
"tx_index": 1,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310000000,
"asset_info": {
@@ -1975,10 +2014,178 @@
}
],
"next_cursor": null,
- "result_count": 10
+ "result_count": 14
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/debits?verbose=true": {
"result": [
+ {
+ "block_index": 310508,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "action": "attach to utxo",
+ "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "tx_index": 509,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310508000,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Divisible asset",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000001"
+ },
+ {
+ "block_index": 310508,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 10,
+ "action": "attach to utxo fee",
+ "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "tx_index": 509,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310508000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "block_index": 310507,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 100,
+ "action": "attach to utxo",
+ "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "tx_index": 508,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310507000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000100"
+ },
+ {
+ "block_index": 310507,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 10,
+ "action": "attach to utxo fee",
+ "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "tx_index": 508,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310507000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "block_index": 310503,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 50000000,
+ "action": "fairminter fee",
+ "event": "c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7",
+ "tx_index": 504,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310503000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.50000000"
+ },
+ {
+ "block_index": 310502,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 50000000,
+ "action": "fairminter fee",
+ "event": "9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1",
+ "tx_index": 503,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310502000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.50000000"
+ },
+ {
+ "block_index": 310500,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 50000000,
+ "action": "fairminter fee",
+ "event": "13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe",
+ "tx_index": 501,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310500000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.50000000"
+ },
+ {
+ "block_index": 310499,
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "quantity": 50000000,
+ "action": "fairminter fee",
+ "event": "a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce",
+ "tx_index": 500,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 310499000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.50000000"
+ },
{
"block_index": 310498,
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
@@ -1987,6 +2194,8 @@
"action": "issuance fee",
"event": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
"tx_index": 499,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310498000,
"asset_info": {
@@ -2006,6 +2215,8 @@
"action": "issuance fee",
"event": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
"tx_index": 498,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310497000,
"asset_info": {
@@ -2025,6 +2236,8 @@
"action": "open order",
"event": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
"tx_index": 492,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310491000,
"asset_info": {
@@ -2044,6 +2257,8 @@
"action": "send",
"event": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
"tx_index": 482,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310481000,
"asset_info": {
@@ -2063,6 +2278,8 @@
"action": "send",
"event": "f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7",
"tx_index": 111,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310110000,
"asset_info": {
@@ -2082,6 +2299,8 @@
"action": "bet",
"event": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1",
"tx_index": 20,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310019000,
"asset_info": {
@@ -2101,6 +2320,8 @@
"action": "issuance fee",
"event": "bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39",
"tx_index": 17,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310016000,
"asset_info": {
@@ -2120,6 +2341,8 @@
"action": "send",
"event": "e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c",
"tx_index": 16,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310015000,
"asset_info": {
@@ -2139,6 +2362,8 @@
"action": "send",
"event": "1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a",
"tx_index": 15,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310014000,
"asset_info": {
@@ -2158,6 +2383,8 @@
"action": "send",
"event": "0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132",
"tx_index": 14,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310013000,
"asset_info": {
@@ -2177,6 +2404,8 @@
"action": "send",
"event": "698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6",
"tx_index": 13,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310012000,
"asset_info": {
@@ -2196,6 +2425,8 @@
"action": "open order",
"event": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a",
"tx_index": 11,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310010000,
"asset_info": {
@@ -2215,6 +2446,8 @@
"action": "open order",
"event": "21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b",
"tx_index": 10,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310009000,
"asset_info": {
@@ -2234,6 +2467,8 @@
"action": "send",
"event": "4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43",
"tx_index": 9,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310008000,
"asset_info": {
@@ -2253,6 +2488,8 @@
"action": "send",
"event": "6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753",
"tx_index": 8,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310007000,
"asset_info": {
@@ -2272,6 +2509,8 @@
"action": "open order",
"event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
"tx_index": 7,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310006000,
"asset_info": {
@@ -2291,6 +2530,8 @@
"action": "issuance fee",
"event": "90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da",
"tx_index": 5,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310004000,
"asset_info": {
@@ -2310,6 +2551,8 @@
"action": "issuance fee",
"event": "c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140",
"tx_index": 4,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310003000,
"asset_info": {
@@ -2329,6 +2572,8 @@
"action": "issuance fee",
"event": "7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584",
"tx_index": 3,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310002000,
"asset_info": {
@@ -2348,6 +2593,8 @@
"action": "issuance fee",
"event": "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1",
"tx_index": 2,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310001000,
"asset_info": {
@@ -2361,7 +2608,7 @@
}
],
"next_cursor": null,
- "result_count": 20
+ "result_count": 28
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/bets?verbose=true": {
"result": [
@@ -2448,6 +2695,54 @@
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/sends?verbose=true": {
"result": [
+ {
+ "tx_index": 509,
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 10,
+ "confirmed": true,
+ "block_time": 310508000,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Divisible asset",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000001",
+ "fee_paid_normalized": "0.00000010"
+ },
+ {
+ "tx_index": 508,
+ "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "block_index": 310507,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "asset": "XCP",
+ "quantity": 100,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 10,
+ "confirmed": true,
+ "block_time": 310507000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000100",
+ "fee_paid_normalized": "0.00000010"
+ },
{
"tx_index": 482,
"tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
@@ -2459,6 +2754,7 @@
"status": "valid",
"msg_index": 0,
"memo": "68656c6c6f",
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310481000,
"asset_info": {
@@ -2468,7 +2764,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 111,
@@ -2481,6 +2778,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310110000,
"asset_info": {
@@ -2490,7 +2788,8 @@
"divisible": true,
"locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 16,
@@ -2503,6 +2802,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310015000,
"asset_info": {
@@ -2512,7 +2812,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "10"
+ "quantity_normalized": "10",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 15,
@@ -2525,6 +2826,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310014000,
"asset_info": {
@@ -2534,7 +2836,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "5"
+ "quantity_normalized": "5",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 14,
@@ -2547,6 +2850,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310013000,
"asset_info": {
@@ -2556,7 +2860,8 @@
"divisible": true,
"locked": false
},
- "quantity_normalized": "10.00000000"
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 13,
@@ -2569,6 +2874,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310012000,
"asset_info": {
@@ -2578,7 +2884,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "3.00000000"
+ "quantity_normalized": "3.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 9,
@@ -2591,6 +2898,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310008000,
"asset_info": {
@@ -2600,7 +2908,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 8,
@@ -2613,6 +2922,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310007000,
"asset_info": {
@@ -2622,11 +2932,12 @@
"divisible": true,
"locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 8
+ "result_count": 10
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/receives?verbose=true": {
"result": [
@@ -2641,6 +2952,7 @@
"status": "valid",
"msg_index": 0,
"memo": "fade0001",
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310482000,
"asset_info": {
@@ -2650,7 +2962,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
@@ -2669,6 +2982,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310015000,
"asset_info": {
@@ -2678,7 +2992,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "10"
+ "quantity_normalized": "10",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 15,
@@ -2691,6 +3006,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310014000,
"asset_info": {
@@ -2700,7 +3016,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "5"
+ "quantity_normalized": "5",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
@@ -2782,6 +3099,146 @@
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/issuances?verbose=true": {
"result": [
+ {
+ "tx_index": 504,
+ "tx_hash": "c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7",
+ "msg_index": 0,
+ "block_index": 310503,
+ "asset": "QAIDFAIRMIN",
+ "quantity": 20,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310503000,
+ "quantity_normalized": "0.00000020",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 503,
+ "tx_hash": "9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1",
+ "msg_index": 0,
+ "block_index": 310502,
+ "asset": "RAIDFAIRMIN",
+ "quantity": 20,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310502000,
+ "quantity_normalized": "0.00000020",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 502,
+ "tx_hash": "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67",
+ "msg_index": 0,
+ "block_index": 310501,
+ "asset": "FREEFAIRMIN",
+ "quantity": 10,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 0,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "fairmint",
+ "confirmed": true,
+ "block_time": 310501000,
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 501,
+ "tx_hash": "13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe",
+ "msg_index": 0,
+ "block_index": 310500,
+ "asset": "PAIDFAIRMIN",
+ "quantity": 0,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310500000,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 500,
+ "tx_hash": "a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce",
+ "msg_index": 0,
+ "block_index": 310499,
+ "asset": "FREEFAIRMIN",
+ "quantity": 0,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310499000,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.50000000"
+ },
{
"tx_index": 499,
"tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
@@ -2802,6 +3259,9 @@
"asset_longname": "PARENT.already.issued",
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310498000,
"quantity_normalized": "1.00000000",
@@ -2827,6 +3287,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310497000,
"quantity_normalized": "1.00000000",
@@ -2852,6 +3315,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310016000,
"quantity_normalized": "92233720000.00000000",
@@ -2877,6 +3343,9 @@
"asset_longname": null,
"locked": true,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "lock_quantity reissuance",
"confirmed": true,
"block_time": 310005000,
"quantity_normalized": "0.00000000",
@@ -2902,6 +3371,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310004000,
"quantity_normalized": "0.00001000",
@@ -2927,6 +3399,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310003000,
"quantity_normalized": "0.00001000",
@@ -2952,6 +3427,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310002000,
"quantity_normalized": "1000",
@@ -2977,6 +3455,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310001000,
"quantity_normalized": "1000.00000000",
@@ -2984,10 +3465,78 @@
}
],
"next_cursor": null,
- "result_count": 8
+ "result_count": 13
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/assets?verbose=true": {
"result": [
+ {
+ "asset": "QAIDFAIRMIN",
+ "asset_id": "2260369790942965",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 20,
+ "description": "",
+ "first_issuance_block_index": 310503,
+ "last_issuance_block_index": 310503,
+ "confirmed": true,
+ "first_issuance_block_time": 310503000,
+ "last_issuance_block_time": 310503000,
+ "supply_normalized": "0.00000020"
+ },
+ {
+ "asset": "RAIDFAIRMIN",
+ "asset_id": "2401536886596341",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 20,
+ "description": "",
+ "first_issuance_block_index": 310502,
+ "last_issuance_block_index": 310502,
+ "confirmed": true,
+ "first_issuance_block_time": 310502000,
+ "last_issuance_block_time": 310502000,
+ "supply_normalized": "0.00000020"
+ },
+ {
+ "asset": "PAIDFAIRMIN",
+ "asset_id": "2119202695289589",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 0,
+ "description": "",
+ "first_issuance_block_index": 310500,
+ "last_issuance_block_index": 310500,
+ "confirmed": true,
+ "first_issuance_block_time": 310500000,
+ "last_issuance_block_time": 310500000,
+ "supply_normalized": "0.00000000"
+ },
+ {
+ "asset": "FREEFAIRMIN",
+ "asset_id": "799006024850293",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 10,
+ "description": "",
+ "first_issuance_block_index": 310499,
+ "last_issuance_block_index": 310501,
+ "confirmed": true,
+ "first_issuance_block_time": 310499000,
+ "last_issuance_block_time": 310501000,
+ "supply_normalized": "0.00000010"
+ },
{
"asset": "A95428956661682277",
"asset_id": "95428956661682277",
@@ -3109,337 +3658,289 @@
}
],
"next_cursor": null,
- "result_count": 7
+ "result_count": 11
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/transactions?verbose=true": {
"result": [
{
- "tx_index": 499,
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "block_index": 310498,
- "block_hash": "b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e",
- "block_time": 310498000,
+ "tx_index": 509,
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf",
+ "block_time": 310508000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6550,
- "data": "0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74",
+ "fee": 10850,
+ "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31",
"supported": true,
+ "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 21,
+ "message_type": "unknown",
+ "message_type_id": 1684893238,
"message_data": {
- "asset_id": null,
- "asset": null,
- "subasset_longname": null,
- "quantity": null,
- "divisible": null,
- "lock": null,
- "reset": null,
- "callable": null,
- "call_date": null,
- "call_price": null,
- "description": null,
- "status": "invalid: could not unpack"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 498,
- "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
- "block_index": 310497,
- "block_hash": "f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e",
- "block_time": 310497000,
+ "tx_index": 508,
+ "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "block_index": 310507,
+ "block_hash": "015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93",
+ "block_time": 310507000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6300,
- "data": "00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574",
+ "fee": 10850,
+ "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030",
"supported": true,
+ "utxos_info": "c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "issuance",
- "message_type_id": 20,
+ "message_type": "unknown",
+ "message_type_id": 1684893238,
"message_data": {
- "asset_id": 178522493,
- "asset": "PARENT",
- "subasset_longname": null,
- "quantity": 100000000,
- "divisible": true,
- "lock": null,
- "reset": null,
- "callable": false,
- "call_date": 0,
- "call_price": 0.0,
- "description": "Parent asset",
- "status": "valid",
- "quantity_normalized": "1.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 492,
- "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
- "block_index": 310491,
- "block_hash": "811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16",
- "block_time": 310491000,
+ "tx_index": 504,
+ "tx_hash": "c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7",
+ "block_index": 310503,
+ "block_hash": "219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c",
+ "block_time": 310503000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0",
+ "fee": 6675,
+ "data": "5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c",
"supported": true,
+ "utxos_info": "3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "order",
- "message_type_id": 10,
+ "message_type": "unknown",
+ "message_type_id": 1515274569,
"message_data": {
- "give_asset": "XCP",
- "give_quantity": 100000000,
- "get_asset": "BTC",
- "get_quantity": 800000,
- "expiration": 2000,
- "fee_required": 900000,
- "status": "open",
- "give_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "get_asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Bitcoin cryptocurrency",
- "locked": false,
- "issuer": null
- },
- "give_quantity_normalized": "1.00000000",
- "get_quantity_normalized": "0.00800000",
- "fee_required_normalized": "0.00900000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 482,
- "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
- "block_index": 310481,
- "block_hash": "db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a",
- "block_time": 310481000,
+ "tx_index": 503,
+ "tx_hash": "9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1",
+ "block_index": 310502,
+ "block_hash": "b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67",
+ "block_time": 310502000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
"fee": 6375,
- "data": "0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f",
+ "data": "5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c",
"supported": true,
+ "utxos_info": "c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "enhanced_send",
- "message_type_id": 2,
+ "message_type": "unknown",
+ "message_type_id": 1515340105,
"message_data": {
- "asset": "XCP",
- "quantity": 100000000,
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "memo": "68656c6c6f",
- "asset_info": {
- "divisible": true,
- "asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
- },
- "quantity_normalized": "1.00000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 111,
- "tx_hash": "f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7",
- "block_index": 310110,
- "block_hash": "cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382",
- "block_time": 310110000,
+ "tx_index": 502,
+ "tx_hash": "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67",
+ "block_index": 310501,
+ "block_hash": "9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba",
+ "block_time": 310501000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- "btc_amount": 5430,
- "fee": 7650,
- "data": "00000000000000a25be34b660000000005f5e100",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 5575,
+ "data": "5b46524545464149524d494e7c30",
"supported": true,
+ "utxos_info": "fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "send",
- "message_type_id": 0,
+ "message_type": "unknown",
+ "message_type_id": 1531335237,
"message_data": {
- "asset": "DIVISIBLE",
- "quantity": 100000000,
- "asset_info": {
- "asset_longname": null,
- "description": "Divisible asset",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "divisible": true,
- "locked": false
- },
- "quantity_normalized": "1.00000000"
+ "error": "Unknown message type"
}
},
- "btc_amount_normalized": "0.00005430"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 103,
- "tx_hash": "16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae",
- "block_index": 310102,
- "block_hash": "11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99",
- "block_time": 310102000,
+ "tx_index": 501,
+ "tx_hash": "13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe",
+ "block_index": 310500,
+ "block_hash": "54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b",
+ "block_time": 310500000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "0000001e52bb33023ff0000000000000004c4b4009556e69742054657374",
+ "fee": 6300,
+ "data": "5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c",
"supported": true,
+ "utxos_info": "63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "broadcast",
- "message_type_id": 30,
+ "message_type": "unknown",
+ "message_type_id": 1515209033,
"message_data": {
- "timestamp": 1388000002,
- "value": 1.0,
- "fee_fraction_int": 5000000,
- "text": "Unit Test",
- "status": "valid",
- "fee_fraction_int_normalized": "0.05000000"
+ "error": "Unknown message type"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 20,
- "tx_hash": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1",
- "block_index": 310019,
- "block_hash": "114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294",
- "block_time": 310019000,
+ "tx_index": 500,
+ "tx_hash": "a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce",
+ "block_index": 310499,
+ "block_hash": "1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764",
+ "block_time": 310499000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "btc_amount": 5430,
- "fee": 7650,
- "data": "00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 6300,
+ "data": "5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c",
"supported": true,
+ "utxos_info": "3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "bet",
- "message_type_id": 40,
+ "message_type": "unknown",
+ "message_type_id": 1514558021,
"message_data": {
- "bet_type": 1,
- "deadline": 1388000001,
- "wager_quantity": 9,
- "counterwager_quantity": 9,
- "target_value": 0.0,
- "leverage": 5040,
- "expiration": 100,
- "status": "open"
+ "error": "Unknown message type"
}
},
- "btc_amount_normalized": "0.00005430"
+ "btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 18,
- "tx_hash": "d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af",
- "block_index": 310017,
- "block_hash": "8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3",
- "block_time": 310017000,
+ "tx_index": 499,
+ "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
+ "block_index": 310498,
+ "block_hash": "b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e",
+ "block_time": 310498000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "0000001e52bb33003ff0000000000000004c4b4009556e69742054657374",
+ "fee": 6550,
+ "data": "0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74",
"supported": true,
+ "utxos_info": "0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1",
"confirmed": true,
"unpacked_data": {
- "message_type": "broadcast",
- "message_type_id": 30,
+ "message_type": "issuance",
+ "message_type_id": 21,
"message_data": {
- "timestamp": 1388000000,
- "value": 1.0,
- "fee_fraction_int": 5000000,
- "text": "Unit Test",
- "status": "valid",
- "fee_fraction_int_normalized": "0.05000000"
+ "asset_id": null,
+ "asset": null,
+ "subasset_longname": null,
+ "quantity": null,
+ "divisible": null,
+ "lock": null,
+ "reset": null,
+ "callable": null,
+ "call_date": null,
+ "call_price": null,
+ "description": null,
+ "status": "invalid: could not unpack"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 17,
- "tx_hash": "bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39",
- "block_index": 310016,
- "block_hash": "99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9",
- "block_time": 310016000,
+ "tx_index": 498,
+ "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
+ "block_index": 310497,
+ "block_hash": "f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e",
+ "block_time": 310497000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"destination": null,
"btc_amount": 0,
- "fee": 6800,
- "data": "000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479",
+ "fee": 6300,
+ "data": "00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574",
"supported": true,
+ "utxos_info": "fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1",
"confirmed": true,
"unpacked_data": {
"message_type": "issuance",
"message_type_id": 20,
"message_data": {
- "asset_id": 211518,
- "asset": "MAXI",
+ "asset_id": 178522493,
+ "asset": "PARENT",
"subasset_longname": null,
- "quantity": 9223372036854775807,
+ "quantity": 100000000,
"divisible": true,
"lock": null,
"reset": null,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "Maximum quantity",
+ "description": "Parent asset",
"status": "valid",
- "quantity_normalized": "92233720000.00000000"
+ "quantity_normalized": "1.00000000"
}
},
"btc_amount_normalized": "0.00000000"
},
{
- "tx_index": 16,
- "tx_hash": "e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c",
- "block_index": 310015,
- "block_hash": "4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922",
- "block_time": 310015000,
+ "tx_index": 492,
+ "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
+ "block_index": 310491,
+ "block_hash": "811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16",
+ "block_time": 310491000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "btc_amount": 1000,
- "fee": 7650,
- "data": "000000000006cad8dc7f0b66000000000000000a",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 6800,
+ "data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0",
"supported": true,
+ "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0",
"confirmed": true,
"unpacked_data": {
- "message_type": "send",
- "message_type_id": 0,
+ "message_type": "order",
+ "message_type_id": 10,
"message_data": {
- "asset": "NODIVISIBLE",
- "quantity": 10,
- "asset_info": {
+ "give_asset": "XCP",
+ "give_quantity": 100000000,
+ "get_asset": "BTC",
+ "get_quantity": 800000,
+ "expiration": 2000,
+ "fee_required": 900000,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
"asset_longname": null,
- "description": "No divisible asset",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "divisible": false,
- "locked": false
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
},
- "quantity_normalized": "10"
+ "give_quantity_normalized": "1.00000000",
+ "get_quantity_normalized": "0.00800000",
+ "fee_required_normalized": "0.00900000"
}
},
- "btc_amount_normalized": "0.00001000"
+ "btc_amount_normalized": "0.00000000"
}
],
- "next_cursor": 15,
- "result_count": 25
+ "next_cursor": 482,
+ "result_count": 32
},
"http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/dividends?verbose=true": {
"result": [],
@@ -3451,23 +3952,23 @@
{
"tx_index": 492,
"tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
- "block_index": 310492,
+ "block_index": 310513,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"give_asset": "XCP",
"give_quantity": 100000000,
- "give_remaining": 0,
+ "give_remaining": 100000000,
"get_asset": "BTC",
"get_quantity": 800000,
- "get_remaining": 0,
+ "get_remaining": 800000,
"expiration": 2000,
"expire_index": 312491,
"fee_required": 900000,
- "fee_required_remaining": 892800,
+ "fee_required_remaining": 900000,
"fee_provided": 6800,
"fee_provided_remaining": 6800,
"status": "open",
"confirmed": true,
- "block_time": 310492000,
+ "block_time": 310513000,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -3484,11 +3985,11 @@
},
"give_quantity_normalized": "1.00000000",
"get_quantity_normalized": "0.00800000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0.00000000",
+ "get_remaining_normalized": "0.00800000",
+ "give_remaining_normalized": "1.00000000",
"fee_provided_normalized": "0.00006800",
"fee_required_normalized": "0.00900000",
- "fee_required_remaining_normalized": "0.00892800",
+ "fee_required_remaining_normalized": "0.00900000",
"fee_provided_remaining_normalized": "0.00006800"
},
{
@@ -3667,8 +4168,142 @@
"next_cursor": null,
"result_count": 5
},
+ "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/fairmints?verbose=true": {
+ "result": [
+ {
+ "tx_hash": "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67",
+ "tx_index": 502,
+ "block_index": 310501,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "fairminter_tx_hash": "a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce",
+ "asset": "FREEFAIRMIN",
+ "earn_quantity": 10,
+ "paid_quantity": 0,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 310501000,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ }
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/fairmints/NODIVISIBLE?verbose=true": {
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
+ },
"http://localhost:10009/v2/assets?verbose=true": {
"result": [
+ {
+ "asset": "TESTDISP",
+ "asset_id": "154062662379",
+ "asset_longname": null,
+ "issuer": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "owner": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "divisible": false,
+ "locked": false,
+ "supply": 1000,
+ "description": "Test dispensers asset",
+ "first_issuance_block_index": 310509,
+ "last_issuance_block_index": 310509,
+ "confirmed": true,
+ "first_issuance_block_time": 310509000,
+ "last_issuance_block_time": 310509000,
+ "supply_normalized": "1000"
+ },
+ {
+ "asset": "A160361285792733729",
+ "asset_id": "160361285792733729",
+ "asset_longname": "",
+ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "owner": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "divisible": true,
+ "locked": true,
+ "supply": 50,
+ "description": "softcap description",
+ "first_issuance_block_index": 310504,
+ "last_issuance_block_index": 310506,
+ "confirmed": true,
+ "first_issuance_block_time": 310504000,
+ "last_issuance_block_time": 310506000,
+ "supply_normalized": "0.00000050"
+ },
+ {
+ "asset": "QAIDFAIRMIN",
+ "asset_id": "2260369790942965",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 20,
+ "description": "",
+ "first_issuance_block_index": 310503,
+ "last_issuance_block_index": 310503,
+ "confirmed": true,
+ "first_issuance_block_time": 310503000,
+ "last_issuance_block_time": 310503000,
+ "supply_normalized": "0.00000020"
+ },
+ {
+ "asset": "RAIDFAIRMIN",
+ "asset_id": "2401536886596341",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 20,
+ "description": "",
+ "first_issuance_block_index": 310502,
+ "last_issuance_block_index": 310502,
+ "confirmed": true,
+ "first_issuance_block_time": 310502000,
+ "last_issuance_block_time": 310502000,
+ "supply_normalized": "0.00000020"
+ },
+ {
+ "asset": "PAIDFAIRMIN",
+ "asset_id": "2119202695289589",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 0,
+ "description": "",
+ "first_issuance_block_index": 310500,
+ "last_issuance_block_index": 310500,
+ "confirmed": true,
+ "first_issuance_block_time": 310500000,
+ "last_issuance_block_time": 310500000,
+ "supply_normalized": "0.00000000"
+ },
+ {
+ "asset": "FREEFAIRMIN",
+ "asset_id": "799006024850293",
+ "asset_longname": "",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "owner": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false,
+ "supply": 10,
+ "description": "",
+ "first_issuance_block_index": 310499,
+ "last_issuance_block_index": 310501,
+ "confirmed": true,
+ "first_issuance_block_time": 310499000,
+ "last_issuance_block_time": 310501000,
+ "supply_normalized": "0.00000010"
+ },
{
"asset": "A95428956661682277",
"asset_id": "95428956661682277",
@@ -3847,16 +4482,16 @@
"owner": null,
"divisible": true,
"locked": true,
- "supply": 1208063695840,
+ "supply": 1207563695800,
"description": "The Counterparty protocol native currency",
"first_issuance_block_index": 278319,
"last_issuance_block_index": 283810,
"confirmed": true,
- "supply_normalized": "12080.63700000"
+ "supply_normalized": "12075.63700000"
}
],
"next_cursor": null,
- "result_count": 11
+ "result_count": 17
},
"http://localhost:10009/v2/assets/NODIVISIBLE?verbose=true": {
"result": {
@@ -3880,9 +4515,11 @@
"http://localhost:10009/v2/assets/NODIVISIBLE/balances?verbose=true": {
"result": [
{
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "utxo": null,
+ "utxo_address": null,
"asset": "NODIVISIBLE",
- "quantity": 10,
+ "quantity": 985,
"asset_info": {
"asset_longname": null,
"description": "No divisible asset",
@@ -3890,12 +4527,14 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "10"
+ "quantity_normalized": "985"
},
{
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "utxo": null,
+ "utxo_address": null,
"asset": "NODIVISIBLE",
- "quantity": 985,
+ "quantity": 5,
"asset_info": {
"asset_longname": null,
"description": "No divisible asset",
@@ -3903,12 +4542,14 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "985"
+ "quantity_normalized": "5"
},
{
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "utxo": null,
+ "utxo_address": null,
"asset": "NODIVISIBLE",
- "quantity": 5,
+ "quantity": 10,
"asset_info": {
"asset_longname": null,
"description": "No divisible asset",
@@ -3916,7 +4557,7 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "5"
+ "quantity_normalized": "10"
}
],
"next_cursor": null,
@@ -3927,6 +4568,8 @@
"address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "NODIVISIBLE",
"quantity": 985,
+ "utxo": null,
+ "utxo_address": null,
"asset_info": {
"asset_longname": null,
"description": "No divisible asset",
@@ -3957,6 +4600,8 @@
"calling_function": "send",
"event": "e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c",
"tx_index": 16,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310015000,
"asset_info": {
@@ -3976,6 +4621,8 @@
"calling_function": "send",
"event": "1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a",
"tx_index": 15,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310014000,
"asset_info": {
@@ -3995,6 +4642,8 @@
"calling_function": "issuance",
"event": "7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584",
"tx_index": 3,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310002000,
"asset_info": {
@@ -4020,6 +4669,8 @@
"action": "send",
"event": "e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c",
"tx_index": 16,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310015000,
"asset_info": {
@@ -4039,6 +4690,8 @@
"action": "send",
"event": "1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a",
"tx_index": 15,
+ "utxo": null,
+ "utxo_address": null,
"confirmed": true,
"block_time": 310014000,
"asset_info": {
@@ -4081,6 +4734,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310002000,
"quantity_normalized": "1000",
@@ -4103,6 +4759,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310015000,
"asset_info": {
@@ -4112,7 +4769,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "10"
+ "quantity_normalized": "10",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 15,
@@ -4125,6 +4783,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310014000,
"asset_info": {
@@ -4134,7 +4793,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "5"
+ "quantity_normalized": "5",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
@@ -4251,19 +4911,29 @@
"next_cursor": null,
"result_count": 0
},
+ "http://localhost:10009/v2/assets/NODIVISIBLE/fairmints?verbose=true": {
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
+ },
+ "http://localhost:10009/v2/assets/NODIVISIBLE/fairmints/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc?verbose=true": {
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
+ },
"http://localhost:10009/v2/orders?verbose=true": {
"result": [
{
"tx_index": 493,
"tx_hash": "1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
- "block_index": 310492,
+ "block_index": 310513,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"give_asset": "BTC",
"give_quantity": 800000,
- "give_remaining": 0,
+ "give_remaining": 800000,
"get_asset": "XCP",
"get_quantity": 100000000,
- "get_remaining": 0,
+ "get_remaining": 100000000,
"expiration": 2000,
"expire_index": 312492,
"fee_required": 0,
@@ -4272,7 +4942,7 @@
"fee_provided_remaining": 992800,
"status": "open",
"confirmed": true,
- "block_time": 310492000,
+ "block_time": 310513000,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4289,8 +4959,8 @@
},
"give_quantity_normalized": "0.00800000",
"get_quantity_normalized": "1.00000000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0.00000000",
+ "get_remaining_normalized": "1.00000000",
+ "give_remaining_normalized": "0.00800000",
"fee_provided_normalized": "0.01000000",
"fee_required_normalized": "0.00000000",
"fee_required_remaining_normalized": "0.00000000",
@@ -4299,23 +4969,23 @@
{
"tx_index": 492,
"tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
- "block_index": 310492,
+ "block_index": 310513,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"give_asset": "XCP",
"give_quantity": 100000000,
- "give_remaining": 0,
+ "give_remaining": 100000000,
"get_asset": "BTC",
"get_quantity": 800000,
- "get_remaining": 0,
+ "get_remaining": 800000,
"expiration": 2000,
"expire_index": 312491,
"fee_required": 900000,
- "fee_required_remaining": 892800,
+ "fee_required_remaining": 900000,
"fee_provided": 6800,
"fee_provided_remaining": 6800,
"status": "open",
"confirmed": true,
- "block_time": 310492000,
+ "block_time": 310513000,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4332,11 +5002,11 @@
},
"give_quantity_normalized": "1.00000000",
"get_quantity_normalized": "0.00800000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0.00000000",
+ "get_remaining_normalized": "0.00800000",
+ "give_remaining_normalized": "1.00000000",
"fee_provided_normalized": "0.00006800",
"fee_required_normalized": "0.00900000",
- "fee_required_remaining_normalized": "0.00892800",
+ "fee_required_remaining_normalized": "0.00900000",
"fee_provided_remaining_normalized": "0.00006800"
},
{
@@ -4519,23 +5189,23 @@
"result": {
"tx_index": 492,
"tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
- "block_index": 310492,
+ "block_index": 310513,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"give_asset": "XCP",
"give_quantity": 100000000,
- "give_remaining": 0,
+ "give_remaining": 100000000,
"get_asset": "BTC",
"get_quantity": 800000,
- "get_remaining": 0,
+ "get_remaining": 800000,
"expiration": 2000,
"expire_index": 312491,
"fee_required": 900000,
- "fee_required_remaining": 892800,
+ "fee_required_remaining": 900000,
"fee_provided": 6800,
"fee_provided_remaining": 6800,
"status": "open",
"confirmed": true,
- "block_time": 310492000,
+ "block_time": 310513000,
"give_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4552,11 +5222,11 @@
},
"give_quantity_normalized": "1.00000000",
"get_quantity_normalized": "0.00800000",
- "get_remaining_normalized": "0.00000000",
- "give_remaining_normalized": "0.00000000",
+ "get_remaining_normalized": "0.00800000",
+ "give_remaining_normalized": "1.00000000",
"fee_provided_normalized": "0.00006800",
"fee_required_normalized": "0.00900000",
- "fee_required_remaining_normalized": "0.00892800",
+ "fee_required_remaining_normalized": "0.00900000",
"fee_provided_remaining_normalized": "0.00006800"
}
},
@@ -4576,14 +5246,14 @@
"backward_quantity": 800000,
"tx0_block_index": 310491,
"tx1_block_index": 310492,
- "block_index": 310492,
+ "block_index": 310513,
"tx0_expiration": 2000,
"tx1_expiration": 2000,
"match_expire_index": 310512,
"fee_paid": 7200,
- "status": "pending",
+ "status": "expired",
"confirmed": true,
- "block_time": 310492000,
+ "block_time": 310513000,
"forward_asset_info": {
"divisible": true,
"asset_longname": null,
@@ -4621,30 +5291,54 @@
"next_cursor": null,
"result_count": 0
},
- "http://localhost:10009/v2/bets?verbose=true": {
+ "http://localhost:10009/v2/order_matches?verbose=true": {
"result": [
{
- "tx_index": 488,
- "tx_hash": "41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef",
- "block_index": 310487,
- "source": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
- "feed_address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
- "bet_type": 1,
- "deadline": 1388000001,
- "wager_quantity": 9,
- "wager_remaining": 9,
- "counterwager_quantity": 9,
- "counterwager_remaining": 9,
- "target_value": 0.0,
- "leverage": 5040,
- "expiration": 100,
- "expire_index": 310587,
- "fee_fraction_int": 5000000,
- "status": "open",
+ "id": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
+ "tx0_index": 492,
+ "tx0_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx1_index": 493,
+ "tx1_hash": "1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
+ "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "forward_asset": "XCP",
+ "forward_quantity": 100000000,
+ "backward_asset": "BTC",
+ "backward_quantity": 800000,
+ "tx0_block_index": 310491,
+ "tx1_block_index": 310492,
+ "block_index": 310513,
+ "tx0_expiration": 2000,
+ "tx1_expiration": 2000,
+ "match_expire_index": 310512,
+ "fee_paid": 7200,
+ "status": "expired",
"confirmed": true,
- "block_time": 310487000,
- "fee_fraction_int_normalized": "0.05000000"
- },
+ "block_time": 310513000,
+ "forward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "backward_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "forward_quantity_normalized": "1.00000000",
+ "backward_quantity_normalized": "0.00800000",
+ "fee_paid_normalized": "0.00007200"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "http://localhost:10009/v2/bets?verbose=true": {
+ "result": [
{
"tx_index": 113,
"tx_hash": "d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048",
@@ -4691,7 +5385,7 @@
}
],
"next_cursor": null,
- "result_count": 3
+ "result_count": 2
},
"http://localhost:10009/v2/bets/2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1?verbose=true": {
"result": {
@@ -4853,6 +5547,43 @@
},
"http://localhost:10009/v2/dispensers?verbose=true": {
"result": [
+ {
+ "tx_index": 511,
+ "tx_hash": "af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e",
+ "block_index": 310510,
+ "source": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "asset": "TESTDISP",
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "satoshirate": 100,
+ "status": 0,
+ "give_remaining": 100,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "dispense_count": 0,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 100,
+ "block_time": 310510000,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Test dispensers asset",
+ "issuer": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "divisible": false,
+ "locked": false
+ },
+ "give_quantity_normalized": "100",
+ "give_remaining_normalized": "100",
+ "escrow_quantity_normalized": "100",
+ "satoshirate_normalized": "0.00000100",
+ "satoshi_price_normalized": "0.00000100"
+ },
{
"tx_index": 108,
"tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
@@ -4892,7 +5623,7 @@
}
],
"next_cursor": null,
- "result_count": 1
+ "result_count": 2
},
"http://localhost:10009/v2/dispensers/9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec?verbose=true": {
"result": {
@@ -4946,85 +5677,85 @@
"http://localhost:10009/v2/events?limit=5&verbose=true": {
"result": [
{
- "event_index": 1239,
+ "event_index": 1739,
"event": "BLOCK_PARSED",
"params": {
- "block_index": 310500,
- "ledger_hash": "5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d",
- "messages_hash": "4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96",
+ "block_index": 310703,
+ "ledger_hash": "cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a",
+ "messages_hash": "82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d",
"transaction_count": 0,
- "txlist_hash": "35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1",
- "block_time": 310500000
+ "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786",
+ "block_time": 310703000
},
"tx_hash": null,
- "block_index": 310500,
- "block_time": 310500000
+ "block_index": 310703,
+ "block_time": 310703000
},
{
- "event_index": 1238,
+ "event_index": 1738,
"event": "NEW_BLOCK",
"params": {
- "block_hash": "54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b",
- "block_index": 310500,
- "block_time": 310500000,
+ "block_hash": "b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218",
+ "block_index": 310703,
+ "block_time": 310703000,
"difficulty": null,
"ledger_hash": null,
"previous_block_hash": null,
"txlist_hash": null
},
"tx_hash": null,
- "block_index": 310500,
- "block_time": 310500000
+ "block_index": 310703,
+ "block_time": 310703000
},
{
- "event_index": 1237,
+ "event_index": 1737,
"event": "BLOCK_PARSED",
"params": {
- "block_index": 310499,
- "ledger_hash": "b9fcbdafddd46fdda061f6e9f8744b426b6ca37e32b315df1098cbc7899ae9b9",
- "messages_hash": "dc4258fd460745fe443598c0119627362b7bceea1892f32243221551f45db0c9",
+ "block_index": 310702,
+ "ledger_hash": "7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe",
+ "messages_hash": "9e09c7b47df3a09f541b40931ccce3b512ca113a6d4dd5e6d3505e29bfea8e31",
"transaction_count": 0,
- "txlist_hash": "032166892f568bb97f4f69ef5bdf49cc1b15cc9f8c7f6c1f3e1f9d54816ad7e5",
- "block_time": 310499000
+ "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c",
+ "block_time": 310702000
},
"tx_hash": null,
- "block_index": 310499,
- "block_time": 310499000
+ "block_index": 310702,
+ "block_time": 310702000
},
{
- "event_index": 1236,
+ "event_index": 1736,
"event": "NEW_BLOCK",
"params": {
- "block_hash": "1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764",
- "block_index": 310499,
- "block_time": 310499000,
+ "block_hash": "69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8",
+ "block_index": 310702,
+ "block_time": 310702000,
"difficulty": null,
"ledger_hash": null,
"previous_block_hash": null,
"txlist_hash": null
},
"tx_hash": null,
- "block_index": 310499,
- "block_time": 310499000
+ "block_index": 310702,
+ "block_time": 310702000
},
{
- "event_index": 1235,
+ "event_index": 1735,
"event": "BLOCK_PARSED",
"params": {
- "block_index": 310498,
- "ledger_hash": "5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414",
- "messages_hash": "31fb849548f5054c3f49f5ba1fc015a6169db27f00e90ea2baa6fe453e2744a5",
- "transaction_count": 1,
- "txlist_hash": "b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7",
- "block_time": 310498000
+ "block_index": 310701,
+ "ledger_hash": "562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d",
+ "messages_hash": "a12df3e7bce37d8f4a9c4c0a2a3f367fb071142acff947cecc23173b4925fb53",
+ "transaction_count": 0,
+ "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f",
+ "block_time": 310701000
},
"tx_hash": null,
- "block_index": 310498,
- "block_time": 310498000
+ "block_index": 310701,
+ "block_time": 310701000
}
],
- "next_cursor": 1234,
- "result_count": 1240
+ "next_cursor": 1734,
+ "result_count": 1740
},
"http://localhost:10009/v2/events/10?limit=5&verbose=true": {
"result": {
@@ -5046,7 +5777,7 @@
"result": [
{
"event": "TRANSACTION_PARSED",
- "event_count": 44
+ "event_count": 56
},
{
"event": "SEND",
@@ -5054,155 +5785,165 @@
},
{
"event": "ORDER_UPDATE",
- "event_count": 2
+ "event_count": 4
},
{
- "event": "ORDER_MATCH",
+ "event": "ORDER_MATCH_UPDATE",
"event_count": 1
},
{
- "event": "OPEN_ORDER",
- "event_count": 6
+ "event": "ORDER_MATCH_EXPIRATION",
+ "event_count": 1
}
],
- "next_cursor": "OPEN_DISPENSER",
- "result_count": 22
+ "next_cursor": "ORDER_MATCH",
+ "result_count": 31
},
"http://localhost:10009/v2/events/CREDIT?limit=5&verbose=true": {
"result": [
{
- "event_index": 1233,
+ "event_index": 1507,
"event": "CREDIT",
"params": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "A95428956661682277",
- "block_index": 310498,
- "calling_function": "issuance",
- "event": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "quantity": 100000000,
- "tx_index": 499,
- "block_time": 310498000,
+ "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
+ "asset": "XCP",
+ "block_index": 310588,
+ "calling_function": "recredit wager remaining",
+ "event": "41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef",
+ "quantity": 9,
+ "tx_index": 0,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 310588000,
"asset_info": {
- "asset_longname": "PARENT.already.issued",
- "description": "Child of parent",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"divisible": true,
- "locked": false
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "0.00000009"
},
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
- "block_index": 310498,
- "block_time": 310498000
+ "tx_hash": null,
+ "block_index": 310588,
+ "block_time": 310588000
},
{
- "event_index": 1225,
+ "event_index": 1338,
"event": "CREDIT",
"params": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "PARENT",
- "block_index": 310497,
+ "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "asset": "TESTDISP",
+ "block_index": 310509,
"calling_function": "issuance",
- "event": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
- "quantity": 100000000,
- "tx_index": 498,
- "block_time": 310497000,
+ "event": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1",
+ "quantity": 1000,
+ "tx_index": 510,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 310509000,
"asset_info": {
"asset_longname": null,
- "description": "Parent asset",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "divisible": true,
+ "description": "Test dispensers asset",
+ "issuer": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "divisible": false,
"locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1000"
},
- "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
- "block_index": 310497,
- "block_time": 310497000
+ "tx_hash": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1",
+ "block_index": 310509,
+ "block_time": 310509000
},
{
- "event_index": 1216,
+ "event_index": 1328,
"event": "CREDIT",
"params": {
- "address": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "asset": "XCP",
- "block_index": 310496,
- "calling_function": "send",
- "event": "a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba",
- "quantity": 92945878046,
- "tx_index": 497,
- "block_time": 310496000,
+ "address": null,
+ "asset": "DIVISIBLE",
+ "block_index": 310508,
+ "calling_function": "attach to utxo",
+ "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "quantity": 1,
+ "tx_index": 509,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310508000,
"asset_info": {
- "divisible": true,
"asset_longname": null,
- "description": "The Counterparty protocol native currency",
- "locked": true,
- "issuer": null
+ "description": "Divisible asset",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
},
- "quantity_normalized": "929.45878000"
+ "quantity_normalized": "0.00000001"
},
- "tx_hash": "a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba",
- "block_index": 310496,
- "block_time": 310496000
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "block_time": 310508000
},
{
- "event_index": 1209,
+ "event_index": 1318,
"event": "CREDIT",
"params": {
- "address": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "asset": "DIVIDEND",
- "block_index": 310495,
- "calling_function": "send",
- "event": "02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e",
- "quantity": 10,
- "tx_index": 496,
- "block_time": 310495000,
+ "address": null,
+ "asset": "XCP",
+ "block_index": 310507,
+ "calling_function": "attach to utxo",
+ "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "quantity": 100,
+ "tx_index": 508,
+ "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310507000,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
"divisible": true,
- "locked": false
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
},
- "quantity_normalized": "0.00000010"
+ "quantity_normalized": "0.00000100"
},
- "tx_hash": "02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e",
- "block_index": 310495,
- "block_time": 310495000
+ "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "block_index": 310507,
+ "block_time": 310507000
},
{
- "event_index": 1203,
+ "event_index": 1308,
"event": "CREDIT",
"params": {
- "address": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "asset": "DIVIDEND",
- "block_index": 310494,
- "calling_function": "issuance",
- "event": "321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503",
- "quantity": 100,
- "tx_index": 495,
- "block_time": 310494000,
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "A160361285792733729",
+ "block_index": 310506,
+ "calling_function": "premint",
+ "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9",
+ "quantity": 20,
+ "tx_index": 0,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 310506000,
"asset_info": {
- "asset_longname": null,
- "description": "",
- "issuer": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "asset_longname": "",
+ "description": "softcap description",
+ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"divisible": true,
- "locked": false
+ "locked": true
},
- "quantity_normalized": "0.00000100"
+ "quantity_normalized": "0.00000020"
},
- "tx_hash": "321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503",
- "block_index": 310494,
- "block_time": 310494000
+ "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18",
+ "block_index": 310506,
+ "block_time": 310506000
}
],
- "next_cursor": 1195,
- "result_count": 34
+ "next_cursor": 1307,
+ "result_count": 53
},
"http://localhost:10009/v2/events/CREDIT/count?limit=5&verbose=true": {
"result": {
"event": "CREDIT",
- "event_count": 34
+ "event_count": 53
}
},
"http://localhost:10009/v2/dispenses?verbose=true": {
@@ -5212,6 +5953,54 @@
},
"http://localhost:10009/v2/sends?verbose=true": {
"result": [
+ {
+ "tx_index": 509,
+ "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e",
+ "block_index": 310508,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 10,
+ "confirmed": true,
+ "block_time": 310508000,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Divisible asset",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000001",
+ "fee_paid_normalized": "0.00000010"
+ },
+ {
+ "tx_index": 508,
+ "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883",
+ "block_index": 310507,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "asset": "XCP",
+ "quantity": 100,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 10,
+ "confirmed": true,
+ "block_time": 310507000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000100",
+ "fee_paid_normalized": "0.00000010"
+ },
{
"tx_index": 497,
"tx_hash": "a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba",
@@ -5223,6 +6012,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310496000,
"asset_info": {
@@ -5232,7 +6022,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "929.45878000"
+ "quantity_normalized": "929.45878000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 496,
@@ -5245,6 +6036,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310495000,
"asset_info": {
@@ -5254,7 +6046,8 @@
"divisible": true,
"locked": false
},
- "quantity_normalized": "0.00000010"
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 483,
@@ -5267,6 +6060,7 @@
"status": "valid",
"msg_index": 0,
"memo": "fade0001",
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310482000,
"asset_info": {
@@ -5276,7 +6070,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 482,
@@ -5289,6 +6084,7 @@
"status": "valid",
"msg_index": 0,
"memo": "68656c6c6f",
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310481000,
"asset_info": {
@@ -5298,7 +6094,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 111,
@@ -5311,6 +6108,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310110000,
"asset_info": {
@@ -5320,7 +6118,8 @@
"divisible": true,
"locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 16,
@@ -5333,6 +6132,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310015000,
"asset_info": {
@@ -5342,7 +6142,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "10"
+ "quantity_normalized": "10",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 15,
@@ -5355,6 +6156,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310014000,
"asset_info": {
@@ -5364,7 +6166,8 @@
"divisible": false,
"locked": false
},
- "quantity_normalized": "5"
+ "quantity_normalized": "5",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 14,
@@ -5377,6 +6180,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310013000,
"asset_info": {
@@ -5386,7 +6190,8 @@
"divisible": true,
"locked": false
},
- "quantity_normalized": "10.00000000"
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 13,
@@ -5399,6 +6204,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310012000,
"asset_info": {
@@ -5408,7 +6214,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "3.00000000"
+ "quantity_normalized": "3.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 9,
@@ -5421,6 +6228,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310008000,
"asset_info": {
@@ -5430,7 +6238,8 @@
"locked": true,
"issuer": null
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
},
{
"tx_index": 8,
@@ -5443,6 +6252,7 @@
"status": "valid",
"msg_index": 0,
"memo": null,
+ "fee_paid": 0,
"confirmed": true,
"block_time": 310007000,
"asset_info": {
@@ -5452,109 +6262,374 @@
"divisible": true,
"locked": false
},
- "quantity_normalized": "1.00000000"
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00000000"
}
],
"next_cursor": null,
- "result_count": 11
+ "result_count": 13
},
"http://localhost:10009/v2/issuances?verbose=true": {
"result": [
{
- "tx_index": 499,
- "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
+ "tx_index": 510,
+ "tx_hash": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1",
"msg_index": 0,
- "block_index": 310498,
- "asset": "A95428956661682277",
- "quantity": 100000000,
- "divisible": true,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_index": 310509,
+ "asset": "TESTDISP",
+ "quantity": 1000,
+ "divisible": false,
+ "source": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "issuer": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "Child of parent",
- "fee_paid": 25000000,
+ "description": "Test dispensers asset",
+ "fee_paid": 50000000,
"status": "valid",
- "asset_longname": "PARENT.already.issued",
+ "asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
- "block_time": 310498000,
- "quantity_normalized": "1.00000000",
- "fee_paid_normalized": "0.25000000"
+ "block_time": 310509000,
+ "quantity_normalized": "1000",
+ "fee_paid_normalized": "0.50000000"
},
{
- "tx_index": 498,
- "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
+ "tx_index": 507,
+ "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18",
"msg_index": 0,
- "block_index": 310497,
- "asset": "PARENT",
- "quantity": 100000000,
+ "block_index": 310506,
+ "asset": "A160361285792733729",
+ "quantity": 20,
"divisible": true,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "Parent asset",
- "fee_paid": 50000000,
+ "description": "softcap description",
+ "fee_paid": 0,
"status": "valid",
- "asset_longname": null,
- "locked": false,
+ "asset_longname": "",
+ "locked": true,
"reset": false,
+ "description_locked": true,
+ "fair_minting": false,
+ "asset_events": "fairmint",
"confirmed": true,
- "block_time": 310497000,
- "quantity_normalized": "1.00000000",
- "fee_paid_normalized": "0.50000000"
+ "block_time": 310506000,
+ "quantity_normalized": "0.00000020",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 495,
- "tx_hash": "321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503",
+ "tx_index": 506,
+ "tx_hash": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8",
"msg_index": 0,
- "block_index": 310494,
- "asset": "DIVIDEND",
- "quantity": 100,
+ "block_index": 310505,
+ "asset": "A160361285792733729",
+ "quantity": 10,
"divisible": true,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "issuer": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "",
- "fee_paid": 50000000,
+ "description": "softcap description",
+ "fee_paid": 0,
"status": "valid",
- "asset_longname": null,
+ "asset_longname": "",
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "fairmint",
"confirmed": true,
- "block_time": 310494000,
- "quantity_normalized": "0.00000100",
- "fee_paid_normalized": "0.50000000"
+ "block_time": 310505000,
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
},
{
- "tx_index": 116,
- "tx_hash": "4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb",
+ "tx_index": 505,
+ "tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9",
"msg_index": 0,
- "block_index": 310115,
- "asset": "LOCKEDPREV",
- "quantity": 0,
+ "block_index": 310504,
+ "asset": "A160361285792733729",
+ "quantity": 20,
"divisible": true,
- "source": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
- "issuer": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"transfer": false,
"callable": false,
"call_date": 0,
"call_price": 0.0,
- "description": "changed",
+ "description": "softcap description",
+ "fee_paid": 0,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310504000,
+ "quantity_normalized": "0.00000020",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 504,
+ "tx_hash": "c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7",
+ "msg_index": 0,
+ "block_index": 310503,
+ "asset": "QAIDFAIRMIN",
+ "quantity": 20,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310503000,
+ "quantity_normalized": "0.00000020",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 503,
+ "tx_hash": "9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1",
+ "msg_index": 0,
+ "block_index": 310502,
+ "asset": "RAIDFAIRMIN",
+ "quantity": 20,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310502000,
+ "quantity_normalized": "0.00000020",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 502,
+ "tx_hash": "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67",
+ "msg_index": 0,
+ "block_index": 310501,
+ "asset": "FREEFAIRMIN",
+ "quantity": 10,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 0,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "fairmint",
+ "confirmed": true,
+ "block_time": 310501000,
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 501,
+ "tx_hash": "13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe",
+ "msg_index": 0,
+ "block_index": 310500,
+ "asset": "PAIDFAIRMIN",
+ "quantity": 0,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310500000,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 500,
+ "tx_hash": "a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce",
+ "msg_index": 0,
+ "block_index": 310499,
+ "asset": "FREEFAIRMIN",
+ "quantity": 0,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": "",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": true,
+ "asset_events": "open_fairminter",
+ "confirmed": true,
+ "block_time": 310499000,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 499,
+ "tx_hash": "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf",
+ "msg_index": 0,
+ "block_index": 310498,
+ "asset": "A95428956661682277",
+ "quantity": 100000000,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "Child of parent",
+ "fee_paid": 25000000,
+ "status": "valid",
+ "asset_longname": "PARENT.already.issued",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 310498000,
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.25000000"
+ },
+ {
+ "tx_index": 498,
+ "tx_hash": "076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f",
+ "msg_index": 0,
+ "block_index": 310497,
+ "asset": "PARENT",
+ "quantity": 100000000,
+ "divisible": true,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "Parent asset",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": null,
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 310497000,
+ "quantity_normalized": "1.00000000",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 495,
+ "tx_hash": "321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503",
+ "msg_index": 0,
+ "block_index": 310494,
+ "asset": "DIVIDEND",
+ "quantity": 100,
+ "divisible": true,
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "issuer": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": null,
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 310494000,
+ "quantity_normalized": "0.00000100",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 116,
+ "tx_hash": "4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb",
+ "msg_index": 0,
+ "block_index": 310115,
+ "asset": "LOCKEDPREV",
+ "quantity": 0,
+ "divisible": true,
+ "source": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ "issuer": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "changed",
"fee_paid": 0,
"status": "valid",
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "reissuance",
"confirmed": true,
"block_time": 310115000,
"quantity_normalized": "0.00000000",
@@ -5580,6 +6655,9 @@
"asset_longname": null,
"locked": true,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "lock_quantity reissuance",
"confirmed": true,
"block_time": 310114000,
"quantity_normalized": "0.00000000",
@@ -5605,6 +6683,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310113000,
"quantity_normalized": "0.00001000",
@@ -5630,6 +6711,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310109000,
"quantity_normalized": "1000",
@@ -5655,6 +6739,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310016000,
"quantity_normalized": "92233720000.00000000",
@@ -5680,6 +6767,9 @@
"asset_longname": null,
"locked": true,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "lock_quantity reissuance",
"confirmed": true,
"block_time": 310005000,
"quantity_normalized": "0.00000000",
@@ -5705,6 +6795,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310004000,
"quantity_normalized": "0.00001000",
@@ -5730,6 +6823,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310003000,
"quantity_normalized": "0.00001000",
@@ -5755,6 +6851,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310002000,
"quantity_normalized": "1000",
@@ -5780,6 +6879,9 @@
"asset_longname": null,
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310001000,
"quantity_normalized": "1000.00000000",
@@ -5787,7 +6889,7 @@
}
],
"next_cursor": null,
- "result_count": 13
+ "result_count": 22
},
"http://localhost:10009/v2/issuances/0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf?verbose=true": {
"result": {
@@ -5810,6 +6912,9 @@
"asset_longname": "PARENT.already.issued",
"locked": false,
"reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
"confirmed": true,
"block_time": 310498000,
"quantity_normalized": "1.00000000",
@@ -5966,5 +7071,9023 @@
"block_time": 310490000,
"fee_fraction_int_normalized": "0.00000000"
}
+ },
+ "http://localhost:10009/v2/routes?verbose=true": {
+ "result": {
+ "/v2/blocks": {
+ "function": "get_blocks",
+ "description": "Returns the list of the last ten blocks",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The index of the most recent block to return (e.g. $LAST_BLOCK_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 10,
+ "required": false,
+ "type": "int",
+ "description": "The number of blocks to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks/last": {
+ "function": "get_last_block",
+ "description": "Return the information of the last block",
+ "args": [
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks/": {
+ "function": "get_block_by_height",
+ "description": "Return the information of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_BLOCK_INDEX)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks/": {
+ "function": "get_block_by_hash",
+ "description": "Return the information of a block",
+ "args": [
+ {
+ "name": "block_hash",
+ "required": true,
+ "type": "str",
+ "description": "The index of the block to return (e.g. $LAST_BLOCK_HASH)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//transactions": {
+ "function": "get_transactions_by_block",
+ "description": "Returns the transactions of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_BLOCK_INDEX)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last transaction index to return (e.g. $LAST_TX_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 10,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of transactions to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//events": {
+ "function": "get_events_by_block",
+ "description": "Returns the events of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_EVENT_BLOCK)"
+ },
+ {
+ "name": "event_name",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of events to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//events/counts": {
+ "function": "get_event_counts_by_block",
+ "description": "Returns the event counts of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_BLOCK_INDEX)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//events/": {
+ "function": "get_events_by_block_and_event",
+ "description": "Returns the events of a block filtered by event",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_EVENT_BLOCK)"
+ },
+ {
+ "name": "event",
+ "required": true,
+ "type": "str",
+ "description": "The event to filter by (e.g. CREDIT)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//credits": {
+ "function": "get_credits_by_block",
+ "description": "Returns the credits of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_CREDIT_BLOCK)"
+ },
+ {
+ "name": "action",
+ "default": null,
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ null,
+ "Closed: Max dispenses reached",
+ "bet settled: for equal",
+ "bet settled: for notequal",
+ "bet settled: liquidated for bear",
+ "btcpay",
+ "burn",
+ "cancel order",
+ "close dispenser",
+ "dispense",
+ "dispenser close",
+ "dividend",
+ "feed fee",
+ "filled",
+ "issuance",
+ "mpma send",
+ "open dispenser empty addr",
+ "order cancelled",
+ "order expired",
+ "order match",
+ "recredit backward quantity",
+ "recredit forward quantity",
+ "recredit wager",
+ "recredit wager remaining",
+ "reset issuance",
+ "send",
+ "sweep",
+ "wins"
+ ],
+ "description": "The action to filter by"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last credit index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of credits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//debits": {
+ "function": "get_debits_by_block",
+ "description": "Returns the debits of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_DEBIT_BLOCK)"
+ },
+ {
+ "name": "action",
+ "default": null,
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ null,
+ "bet",
+ "destroy",
+ "dividend",
+ "dividend fee",
+ "issuance fee",
+ "mpma send",
+ "open RPS",
+ "open dispenser",
+ "open dispenser empty addr",
+ "open order",
+ "refill dispenser",
+ "reopen RPS after matching expiration",
+ "reset destroy",
+ "send",
+ "sweep",
+ "sweep fee"
+ ],
+ "description": "The action to filter by"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the debits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of debits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//expirations": {
+ "function": "get_expirations",
+ "description": "Returns the expirations of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_ORDER_EXPIRATION_BLOCK)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the expirations to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of expirations to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//cancels": {
+ "function": "get_cancels",
+ "description": "Returns the cancels of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_CANCEL_BLOCK)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the cancels to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of cancels to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//destructions": {
+ "function": "get_destructions",
+ "description": "Returns the destructions of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_DESTRUCTION_BLOCK)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the destructions to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of destructions to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//issuances": {
+ "function": "get_issuances_by_block",
+ "description": "Returns the issuances of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_ISSUANCE_BLOCK)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the issuances to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of issuances to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//sends": {
+ "function": "get_sends_by_block",
+ "description": "Returns the sends, include Enhanced and MPMA sends, of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_SEND_BLOCK)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the debits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of debits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//dispenses": {
+ "function": "get_dispenses_by_block",
+ "description": "Returns the dispenses of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_DISPENSE_BLOCK)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/blocks//sweeps": {
+ "function": "get_sweeps_by_block",
+ "description": "Returns the sweeps of a block",
+ "args": [
+ {
+ "name": "block_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the block to return (e.g. $LAST_SWEEP_BLOCK)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the sweeps to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of sweeps to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions": {
+ "function": "get_transactions",
+ "description": "Returns the list of the last ten transactions",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The index of the most recent transactions to return (e.g. $LAST_TX_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 10,
+ "required": false,
+ "type": "int",
+ "description": "The number of transactions to return (e.g. 2)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions/info": {
+ "function": "info",
+ "description": "Returns Counterparty information from a raw transaction in hex format.",
+ "args": [
+ {
+ "name": "rawtransaction",
+ "required": true,
+ "type": "str",
+ "description": "Raw transaction in hex format (e.g. $RAW_TRANSACTION_1)"
+ },
+ {
+ "name": "block_index",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "Block index mandatory for transactions before block 335000"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions/unpack": {
+ "function": "unpack",
+ "description": "Unpacks Counterparty data in hex format and returns the message type and data.",
+ "args": [
+ {
+ "name": "datahex",
+ "required": true,
+ "type": "str",
+ "description": "Data in hex format (e.g. 020000000001016a65c1624e53f4d33ce02e726a6606faed60cc014d5b1a578ba3e09b4b3f8f890100000000ffffffff020000000000000000176a150d55e8b6118808b7b663b365473f142274028b8af60245092701000000160014a3df8a5a83d4e2827b59b43f5ce6ce5d2e52093f0247304402204b7a2859cbce34e725a1132fec2dd4b075503dadff0a0c407ae7c22a7712fe4d0220563ceb2ceebdf649343bb24819fc808639cce7781305b4588ffbe4a20390d2780121020ace9adf60fe4ec05dab922ccdc5727cbf664cafc7cdb845de534855266314c800000000)"
+ },
+ {
+ "name": "block_index",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "Block index of the transaction containing this data"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions/": {
+ "function": "get_transaction_by_tx_index",
+ "description": "Returns a transaction by its index.",
+ "args": [
+ {
+ "name": "tx_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the transaction (e.g. $LAST_TX_INDEX)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions/": {
+ "function": "get_transaction_by_hash",
+ "description": "Returns a transaction by its hash.",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction (e.g. $LAST_TX_HASH)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions//events": {
+ "function": "get_events_by_transaction_index",
+ "description": "Returns the events of a transaction",
+ "args": [
+ {
+ "name": "tx_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the transaction to return (e.g. $LAST_EVENT_TX_INDEX)"
+ },
+ {
+ "name": "event_name",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of events to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions//events": {
+ "function": "get_events_by_transaction_hash",
+ "description": "Returns the events of a transaction",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_EVENT_TX_HASH)"
+ },
+ {
+ "name": "event_name",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of events to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions//sends": {
+ "function": "get_sends_by_transaction_hash",
+ "description": "Returns the sends, include Enhanced and MPMA sends, of a block",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_SEND_TX_HASH)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the debits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of debits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions//dispenses": {
+ "function": "get_dispenses_by_transaction_hash",
+ "description": "Returns the dispenses of a block",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_DISPENSE_TX_HASH)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions//events/": {
+ "function": "get_events_by_transaction_index_and_event",
+ "description": "Returns the events of a transaction",
+ "args": [
+ {
+ "name": "tx_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the transaction to return (e.g. $LAST_EVENT_TX_INDEX)"
+ },
+ {
+ "name": "event",
+ "required": true,
+ "type": "str",
+ "description": "The event to filter by (e.g. CREDIT)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/transactions//events/": {
+ "function": "get_events_by_transaction_hash_and_event",
+ "description": "Returns the events of a transaction",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_EVENT_TX_HASH)"
+ },
+ {
+ "name": "event",
+ "required": true,
+ "type": "str",
+ "description": "The event to filter by (e.g. CREDIT)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses/balances": {
+ "function": "get_balances_by_addresses",
+ "description": "Returns the balances of several addresses",
+ "args": [
+ {
+ "name": "addresses",
+ "required": true,
+ "type": "str",
+ "description": "Comma separated list of addresses (e.g. $ADDRESS_1,$ADDRESS_2)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the balances to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of balances to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "sort",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The sort order of the balances to return (overrides the `cursor` parameter) (e.g. quantity:desc)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses/transactions": {
+ "function": "get_transactions_by_addresses",
+ "description": "Returns the transactions of a list of addresses",
+ "args": [
+ {
+ "name": "addresses",
+ "required": true,
+ "type": "str",
+ "description": "Comma separated list of addresses to return (e.g. $ADDRESS_1,$ADDRESS_2)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last transaction index to return (e.g. $LAST_TX_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of transactions to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses/events": {
+ "function": "get_events_by_addresses",
+ "description": "Returns the events of a list of addresses",
+ "args": [
+ {
+ "name": "addresses",
+ "required": true,
+ "type": "str",
+ "description": "Comma separated list of addresses to return (e.g. $ADDRESS_1,$ADDRESS_2)"
+ },
+ {
+ "name": "event_name",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of events to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses/mempool": {
+ "function": "get_mempool_events_by_addresses",
+ "description": "Returns the mempool events of a list of addresses",
+ "args": [
+ {
+ "name": "addresses",
+ "required": true,
+ "type": "str",
+ "description": "Comma separated list of addresses to return (e.g. $ADDRESS_3,$ADDRESS_4)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//balances": {
+ "function": "get_address_balances",
+ "description": "Returns the balances of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the balances to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of balances to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "sort",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The sort order of the balances to return (overrides the `cursor` parameter) (e.g. quantity:desc)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//balances/": {
+ "function": "get_balance_by_address_and_asset",
+ "description": "Returns the balance of an address and asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//credits": {
+ "function": "get_credits_by_address",
+ "description": "Returns the credits of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "action",
+ "default": null,
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ null,
+ "Closed: Max dispenses reached",
+ "bet settled: for equal",
+ "bet settled: for notequal",
+ "bet settled: liquidated for bear",
+ "btcpay",
+ "burn",
+ "cancel order",
+ "close dispenser",
+ "dispense",
+ "dispenser close",
+ "dividend",
+ "feed fee",
+ "filled",
+ "issuance",
+ "mpma send",
+ "open dispenser empty addr",
+ "order cancelled",
+ "order expired",
+ "order match",
+ "recredit backward quantity",
+ "recredit forward quantity",
+ "recredit wager",
+ "recredit wager remaining",
+ "reset issuance",
+ "send",
+ "sweep",
+ "wins"
+ ],
+ "description": "The action to filter by"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the credits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of credits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//debits": {
+ "function": "get_debits_by_address",
+ "description": "Returns the debits of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "action",
+ "default": null,
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ null,
+ "bet",
+ "destroy",
+ "dividend",
+ "dividend fee",
+ "issuance fee",
+ "mpma send",
+ "open RPS",
+ "open dispenser",
+ "open dispenser empty addr",
+ "open order",
+ "refill dispenser",
+ "reopen RPS after matching expiration",
+ "reset destroy",
+ "send",
+ "sweep",
+ "sweep fee"
+ ],
+ "description": "The action to filter by"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the debits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of debits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//bets": {
+ "function": "get_bet_by_feed",
+ "description": "Returns the bets of a feed",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address of the feed (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "status",
+ "default": "open",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "cancelled",
+ "dropped",
+ "expired",
+ "filled",
+ "open"
+ ],
+ "description": "The status of the bet (e.g. filled)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the bets to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of bets to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//broadcasts": {
+ "function": "get_broadcasts_by_source",
+ "description": "Returns the broadcasts of a source",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the broadcasts to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of broadcasts to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//burns": {
+ "function": "get_burns_by_address",
+ "description": "Returns the burns of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the burns to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of burns to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//sends": {
+ "function": "get_sends_by_address",
+ "description": "Returns the sends, include Enhanced and MPMA sends, of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the sends to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of sends to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//receives": {
+ "function": "get_receive_by_address",
+ "description": "Returns the receives of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_5)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the sends to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of sends to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//sends/": {
+ "function": "get_sends_by_address_and_asset",
+ "description": "Returns the sends, include Enhanced and MPMA sends, of an address and asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. $ASSET_5)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the sends to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of sends to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//receives/": {
+ "function": "get_receive_by_address_and_asset",
+ "description": "Returns the receives of an address and asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_5)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. $ASSET_5)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the sends to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of sends to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//dispensers": {
+ "function": "get_dispensers_by_address",
+ "description": "Returns the dispensers of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "open",
+ "closed",
+ "closing",
+ "open_empty_address"
+ ],
+ "description": "The status of the dispensers to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispensers to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispensers to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//dispensers/": {
+ "function": "get_dispenser_by_address_and_asset",
+ "description": "Returns the dispenser of an address and an asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//dispenses/sends": {
+ "function": "get_dispenses_by_source",
+ "description": "Returns the dispenses of a source",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//dispenses/receives": {
+ "function": "get_dispenses_by_destination",
+ "description": "Returns the dispenses of a destination",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//dispenses/sends/": {
+ "function": "get_dispenses_by_source_and_asset",
+ "description": "Returns the dispenses of an address and an asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//dispenses/receives/": {
+ "function": "get_dispenses_by_destination_and_asset",
+ "description": "Returns the dispenses of an address and an asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//sweeps": {
+ "function": "get_sweeps_by_address",
+ "description": "Returns the sweeps of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_3)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the sweeps to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of sweeps to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//issuances": {
+ "function": "get_issuances_by_address",
+ "description": "Returns the issuances of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the issuances to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of issuances to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//assets": {
+ "function": "get_valid_assets_by_issuer",
+ "description": "Returns the valid assets of an issuer",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The issuer to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "named",
+ "default": null,
+ "required": false,
+ "type": "bool",
+ "description": "Whether to return only named assets (e.g. true)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the assets to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of assets to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//transactions": {
+ "function": "get_transactions_by_address",
+ "description": "Returns the transactions of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last transaction index to return (e.g. $LAST_TX_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 10,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of transactions to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//dividends": {
+ "function": "get_dividends_distributed_by_address",
+ "description": "Returns the dividends distributed by an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the assets to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of assets to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//orders": {
+ "function": "get_orders_by_address",
+ "description": "Returns the orders of an address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "open",
+ "expired",
+ "filled",
+ "cancelled"
+ ],
+ "description": "The status of the orders to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the orders to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of orders to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//fairminters": {
+ "function": "get_fairminters_by_address",
+ "description": "Returns the fairminter by its source",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The source of the fairminter to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//fairmints": {
+ "function": "get_fairmints_by_address",
+ "description": "Returns the mints by address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address of the mints to return (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//fairmints/": {
+ "function": "get_fairmints_by_address_and_asset",
+ "description": "Returns the mints by address and asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address of the mints to return (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset of the mints to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/bet": {
+ "function": "compose_bet",
+ "description": "Composes a transaction to issue a bet against a feed.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will make the bet (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "feed_address",
+ "required": true,
+ "type": "str",
+ "description": "The address that hosts the feed to be bet on (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "bet_type",
+ "required": true,
+ "type": "int",
+ "description": "Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual (e.g. 2)"
+ },
+ {
+ "name": "deadline",
+ "required": true,
+ "type": "int",
+ "description": "The time at which the bet should be decided/settled, in Unix time (seconds since epoch) (e.g. 3000000000)"
+ },
+ {
+ "name": "wager_quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantities of XCP to wager (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "counterwager_quantity",
+ "required": true,
+ "type": "int",
+ "description": "The minimum quantities of XCP to be wagered against, for the bets to match (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "expiration",
+ "required": true,
+ "type": "int",
+ "description": "The number of blocks after which the bet expires if it remains unmatched (e.g. 100)"
+ },
+ {
+ "name": "leverage",
+ "default": 5040,
+ "required": false,
+ "type": "int",
+ "description": "Leverage, as a fraction of 5040"
+ },
+ {
+ "name": "target_value",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "Target value for Equal/NotEqual bet (e.g. 1000)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/broadcast": {
+ "function": "compose_broadcast",
+ "description": "Composes a transaction to broadcast textual and numerical information to the network.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "timestamp",
+ "required": true,
+ "type": "int",
+ "description": "The timestamp of the broadcast, in Unix time (e.g. 4003903985)"
+ },
+ {
+ "name": "value",
+ "required": true,
+ "type": "float",
+ "description": "Numerical value of the broadcast (e.g. 100)"
+ },
+ {
+ "name": "fee_fraction",
+ "required": true,
+ "type": "float",
+ "description": "How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) (e.g. 0.05)"
+ },
+ {
+ "name": "text",
+ "required": true,
+ "type": "str",
+ "description": "The textual part of the broadcast (e.g. \"Hello, world!\")"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/btcpay": {
+ "function": "compose_btcpay",
+ "description": "Composes a transaction to pay for a BTC order match.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be sending the payment (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "order_match_id",
+ "required": true,
+ "type": "str",
+ "description": "The ID of the order match to pay for (e.g. $LAST_ORDER_MATCH_ID)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/burn": {
+ "function": "compose_burn",
+ "description": "Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available).",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address with the BTC to burn (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) (e.g. 1000)"
+ },
+ {
+ "name": "overburn",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Whether to allow the burn to exceed 1 BTC for the address"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/cancel": {
+ "function": "compose_cancel",
+ "description": "Composes a transaction to cancel an open order or bet.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that placed the order/bet to be cancelled (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "offer_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the order/bet to be cancelled (e.g. $LAST_ORDER_TX_HASH)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/destroy": {
+ "function": "compose_destroy",
+ "description": "Composes a transaction to destroy a quantity of an asset.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be sending the asset to be destroyed (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to be destroyed (e.g. XCP)"
+ },
+ {
+ "name": "quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset to be destroyed (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "tag",
+ "required": true,
+ "type": "str",
+ "description": "A tag for the destruction (e.g. \"bugs!\")"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/dispenser": {
+ "function": "compose_dispenser",
+ "description": "Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) (e.g. $ADDRESS_7)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset or subasset to dispense (e.g. XCP)"
+ },
+ {
+ "name": "give_quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset to dispense (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "escrow_quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "mainchainrate",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the main chain asset (BTC) per dispensed portion (in satoshis, hence integer) (e.g. 100)"
+ },
+ {
+ "name": "status",
+ "required": true,
+ "type": "int",
+ "description": "The state of the dispenser. 0 for open, 1 for open using open_address, 10 for closed (e.g. 0)"
+ },
+ {
+ "name": "open_address",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The address that you would like to open the dispenser on; MUST be equal to `address` from block 900000 onwards"
+ },
+ {
+ "name": "oracle_address",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The address that you would like to use as a price oracle for this dispenser"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/dividend": {
+ "function": "compose_dividend",
+ "description": "Composes a transaction to issue a dividend to holders of a given asset.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "quantity_per_unit",
+ "required": true,
+ "type": "int",
+ "description": "The amount of dividend_asset rewarded (in satoshis, hence integer) (e.g. 1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset or subasset that the dividends are being rewarded on (e.g. $ASSET_1)"
+ },
+ {
+ "name": "dividend_asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset or subasset that the dividends are paid in (e.g. XCP)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/issuance": {
+ "function": "compose_issuance",
+ "description": "Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be issuing or transfering the asset (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The assets to issue or transfer. This can also be a subasset longname for new subasset issuances (e.g. XCPTEST)"
+ },
+ {
+ "name": "quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "transfer_destination",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The address to receive the asset (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "divisible",
+ "default": true,
+ "required": false,
+ "type": "bool",
+ "description": "Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued)"
+ },
+ {
+ "name": "lock",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Whether this issuance should lock supply of this asset forever"
+ },
+ {
+ "name": "reset",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Wether this issuance should reset any existing supply"
+ },
+ {
+ "name": "description",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "A textual description for the asset"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/mpma": {
+ "function": "compose_mpma",
+ "description": "Composes a transaction to send multiple payments to multiple addresses.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "assets",
+ "required": true,
+ "type": "str",
+ "description": "comma-separated list of assets to send (e.g. XCP,$ASSET_5)"
+ },
+ {
+ "name": "destinations",
+ "required": true,
+ "type": "str",
+ "description": "comma-separated list of addresses to send to (e.g. $ADDRESS_1,$ADDRESS_2)"
+ },
+ {
+ "name": "quantities",
+ "required": true,
+ "type": "str",
+ "description": "comma-separated list of quantities to send (in satoshis, hence integer) (e.g. 1,2)"
+ },
+ {
+ "name": "memo",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The Memo associated with this transaction (e.g. \"Hello, world!\")"
+ },
+ {
+ "name": "memo_is_hex",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Whether the memo field is a hexadecimal string (e.g. False)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/order": {
+ "function": "compose_order",
+ "description": "Composes a transaction to place an order on the distributed exchange.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "give_asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset that will be given in the trade (e.g. XCP)"
+ },
+ {
+ "name": "give_quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset that will be given (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "get_asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset that will be received in the trade (e.g. $ASSET_1)"
+ },
+ {
+ "name": "get_quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset that will be received (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "expiration",
+ "required": true,
+ "type": "int",
+ "description": "The number of blocks for which the order should be valid (e.g. 100)"
+ },
+ {
+ "name": "fee_required",
+ "required": true,
+ "type": "int",
+ "description": "The miners\u2019 fee required to be paid by orders for them to match this one; in BTC; required only if buying BTC (may be zero, though) (e.g. 100)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/send": {
+ "function": "compose_send",
+ "description": "Composes a transaction to send a quantity of an asset to another address.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be sending (must have the necessary quantity of the specified asset) (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "destination",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be receiving the asset (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset or subasset to send (e.g. XCP)"
+ },
+ {
+ "name": "quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset to send (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "memo",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The Memo associated with this transaction"
+ },
+ {
+ "name": "memo_is_hex",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Whether the memo field is a hexadecimal string"
+ },
+ {
+ "name": "use_enhanced_send",
+ "default": true,
+ "required": false,
+ "type": "bool",
+ "description": "If this is false, the construct a legacy transaction sending bitcoin dust"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/sweep": {
+ "function": "compose_sweep",
+ "description": "Composes a transaction to Sends all assets and/or transfer ownerships to a destination address.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be sending (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "destination",
+ "required": true,
+ "type": "str",
+ "description": "The address to receive the assets and/or ownerships (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "flags",
+ "required": true,
+ "type": "int",
+ "description": "An OR mask of flags indicating how the sweep should be processed. Possible flags are:\n- FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred.\n- FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred.\n- FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form.\n(e.g. 7)"
+ },
+ {
+ "name": "memo",
+ "required": true,
+ "type": "str",
+ "description": "The Memo associated with this transaction in hex format (e.g. FFFF)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/dispense": {
+ "function": "compose_dispense",
+ "description": "Composes a transaction to send BTC to a dispenser.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be sending (must have the necessary quantity of BTC) (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "dispenser",
+ "required": true,
+ "type": "str",
+ "description": "The dispenser that will be receiving the asset (e.g. $ADDRESS_4)"
+ },
+ {
+ "name": "quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of BTC to send (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/fairminter": {
+ "function": "compose_fairminter",
+ "description": "Composes a transaction to issue a new asset using the FairMinter protocol.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be issuing the asset (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to issue (e.g. MYASSET)"
+ },
+ {
+ "name": "asset_parent",
+ "default": "",
+ "required": false,
+ "type": "str",
+ "description": "The parent asset of the asset to issue"
+ },
+ {
+ "name": "price",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "The price in XCP of the asset to issue (e.g. 10)"
+ },
+ {
+ "name": "quantity_by_price",
+ "default": 1,
+ "required": false,
+ "type": "int",
+ "description": "The quantity of asset to mint per `price` paid"
+ },
+ {
+ "name": "max_mint_per_tx",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "Amount minted if price is equal to 0; otherwise, maximum amount of asset that can be minted in a single transaction; if 0, there is no limit"
+ },
+ {
+ "name": "hard_cap",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "The maximum amount of asset that can be minted; if 0 there is no limit"
+ },
+ {
+ "name": "premint_quantity",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "Amount of asset to be minted when the sale starts, if 0, no premint; preminted assets are sent to the source of the transaction"
+ },
+ {
+ "name": "start_block",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "The block at which the sale starts"
+ },
+ {
+ "name": "end_block",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "The block at which the sale ends"
+ },
+ {
+ "name": "soft_cap",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "Minimum amount of asset to be minted, if None, no minimum; if the soft cap is not reached by the soft_cap_deadline_block, the sale is canceled, asset is revoked from all minters and all payments are refunded"
+ },
+ {
+ "name": "soft_cap_deadline_block",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "The block at which the soft cap must be reached"
+ },
+ {
+ "name": "minted_asset_commission",
+ "default": 0.0,
+ "required": false,
+ "type": "float",
+ "description": "Commission to be paid in minted asset, a fraction of 1 (i.e., 0.05 is five percent); the commission is deducted from the asset received by the minter and sent to the Fair Minter owner"
+ },
+ {
+ "name": "burn_payment",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "If True, the payment asset is burned, otherwise it is sent to the source"
+ },
+ {
+ "name": "lock_description",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "If True, the description of the asset is locked"
+ },
+ {
+ "name": "lock_quantity",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "If True, the quantity of the asset cannot be changed after the minting"
+ },
+ {
+ "name": "divisible",
+ "default": true,
+ "required": false,
+ "type": "bool",
+ "description": "If True, the asset is divisible"
+ },
+ {
+ "name": "description",
+ "default": "",
+ "required": false,
+ "type": "str",
+ "description": "The description of the asset"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/fairmint": {
+ "function": "compose_fairmint",
+ "description": "Composes a transaction to mint a quantity of an asset using the FairMinter protocol.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address that will be minting the asset (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to mint (e.g. $ASSET_3)"
+ },
+ {
+ "name": "quantity",
+ "default": 0,
+ "required": false,
+ "type": "int",
+ "description": "The quantity of the asset to mint (in satoshis, hence integer) (e.g. 1)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/addresses//compose/attach": {
+ "function": "compose_attach",
+ "description": "Composes a transaction to attach assets from an address to UTXO.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address from which the assets are attached (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset or subasset to attach (e.g. XCP)"
+ },
+ {
+ "name": "quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset to attach (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "destination",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The utxo to attach the assets to (e.g. $UTXO_1_ADDRESS_1)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/utxos//compose/detach": {
+ "function": "compose_detach",
+ "description": "Composes a transaction to detach assets from UTXO to an address.",
+ "args": [
+ {
+ "name": "utxo",
+ "required": true,
+ "type": "str",
+ "description": "The utxo from which the assets are detached (e.g. $UTXO_WITH_BALANCE)"
+ },
+ {
+ "name": "destination",
+ "required": true,
+ "type": "str",
+ "description": "The address to detach the assets to (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset or subasset to detach (e.g. XCP)"
+ },
+ {
+ "name": "quantity",
+ "required": true,
+ "type": "int",
+ "description": "The quantity of the asset to detach (in satoshis, hence integer) (e.g. 1000)"
+ },
+ {
+ "name": "encoding",
+ "type": "str",
+ "default": "auto",
+ "description": "The encoding method to use",
+ "required": false
+ },
+ {
+ "name": "fee_per_kb",
+ "type": "int",
+ "default": null,
+ "description": "The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis)",
+ "required": false
+ },
+ {
+ "name": "regular_dust_size",
+ "type": "int",
+ "default": 546,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each non-(bare) multisig output.",
+ "required": false
+ },
+ {
+ "name": "multisig_dust_size",
+ "type": "int",
+ "default": 1000,
+ "description": "Specify (in satoshis) to override the (dust) amount of BTC used for each (bare) multisig output",
+ "required": false
+ },
+ {
+ "name": "pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The hexadecimal public key of the source address (or a list of the keys, if multi-sig). Required when using encoding parameter values of multisig or pubkeyhash.",
+ "required": false
+ },
+ {
+ "name": "allow_unconfirmed_inputs",
+ "type": "bool",
+ "default": false,
+ "description": "Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs",
+ "required": false
+ },
+ {
+ "name": "fee",
+ "type": "int",
+ "default": null,
+ "description": "If you'd like to specify a custom miners' fee, specify it here (in satoshis). Leave as default for the server to automatically choose",
+ "required": false
+ },
+ {
+ "name": "fee_provided",
+ "type": "int",
+ "default": 0,
+ "description": "If you would like to specify a maximum fee (up to and including which may be used as the transaction fee), specify it here (in satoshis). This differs from fee in that this is an upper bound value, which fee is an exact value",
+ "required": false
+ },
+ {
+ "name": "unspent_tx_hash",
+ "type": "str",
+ "default": null,
+ "description": "When compiling the UTXOs to use as inputs for the transaction being created, only consider unspent outputs from this specific transaction hash. Defaults to null to consider all UTXOs for the address. Do not use this parameter if you are specifying custom_inputs",
+ "required": false
+ },
+ {
+ "name": "dust_return_pubkey",
+ "type": "str",
+ "default": null,
+ "description": "The dust return pubkey is used in multi-sig data outputs (as the only real pubkey) to make those the outputs spendable. By default, this pubkey is taken from the pubkey used in the first transaction input. However, it can be overridden here (and is required to be specified if a P2SH input is used and multisig is used as the data output encoding.) If specified, specify the public key (in hex format) where dust will be returned to so that it can be reclaimed. Only valid/useful when used with transactions that utilize multisig data encoding. Note that if this value is set to false, this instructs counterparty-server to use the default dust return pubkey configured at the node level. If this default is not set at the node level, the call will generate an exception",
+ "required": false
+ },
+ {
+ "name": "disable_utxo_locks",
+ "type": "bool",
+ "default": false,
+ "description": "By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs",
+ "required": false
+ },
+ {
+ "name": "extended_tx_info",
+ "type": "bool",
+ "default": false,
+ "description": "When this is not specified or false, the create_ calls return only a hex-encoded string. If this is true, the create_ calls return a data object with the following keys: tx_hex, btc_in, btc_out, btc_change, and btc_fee",
+ "required": false
+ },
+ {
+ "name": "p2sh_pretx_txid",
+ "type": "str",
+ "default": null,
+ "description": "The previous transaction txid for a two part P2SH message. This txid must be taken from the signed transaction",
+ "required": false
+ },
+ {
+ "name": "segwit",
+ "type": "bool",
+ "default": false,
+ "description": "Use segwit",
+ "required": false
+ },
+ {
+ "name": "confirmation_target",
+ "type": "int",
+ "default": 3,
+ "description": "The number of blocks to target for confirmation",
+ "required": false
+ },
+ {
+ "name": "return_psbt",
+ "type": "bool",
+ "default": false,
+ "description": "Construct a PSBT instead of a raw transaction hex",
+ "required": false
+ },
+ {
+ "name": "exclude_utxos",
+ "type": "str",
+ "default": "",
+ "description": "A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created",
+ "required": false
+ },
+ {
+ "name": "return_only_data",
+ "type": "bool",
+ "default": false,
+ "description": "Return only the data part of the transaction",
+ "required": false
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/utxos//compose/movetoutxo": {
+ "function": "compose_movetoutxo",
+ "description": "Composes a transaction to move assets from UTXO to another UTXO.",
+ "args": [
+ {
+ "name": "utxo",
+ "required": true,
+ "type": "str",
+ "description": "The utxo from which the assets are moved"
+ },
+ {
+ "name": "destination",
+ "required": true,
+ "type": "str",
+ "description": "The address to move the assets to"
+ },
+ {
+ "name": "more_utxos",
+ "default": "",
+ "required": false,
+ "type": "str",
+ "description": "The additional utxos to fund the transaction"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets": {
+ "function": "get_valid_assets",
+ "description": "Returns the valid assets",
+ "args": [
+ {
+ "name": "named",
+ "default": null,
+ "required": false,
+ "type": "bool",
+ "description": "Whether to return only named assets (e.g. true)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the assets to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of assets to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets/": {
+ "function": "get_asset",
+ "description": "Returns an asset by its name",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The name of the asset to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//balances": {
+ "function": "get_asset_balances",
+ "description": "Returns the asset balances",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the balances to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of balances to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "sort",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The sort order of the balances to return (overrides the `cursor` parameter) (e.g. quantity:desc)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//balances/": {
+ "function": "get_balance_by_address_and_asset",
+ "description": "Returns the balance of an address and asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//orders": {
+ "function": "get_orders_by_asset",
+ "description": "Returns the orders of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "open",
+ "expired",
+ "filled",
+ "cancelled"
+ ],
+ "description": "The status of the orders to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the orders to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of orders to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//matches": {
+ "function": "get_order_matches_by_asset",
+ "description": "Returns the orders of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "pending",
+ "completed",
+ "expired"
+ ],
+ "description": "The status of the order matches to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the order matches to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of order matches to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//credits": {
+ "function": "get_credits_by_asset",
+ "description": "Returns the credits of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "action",
+ "default": null,
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ null,
+ "Closed: Max dispenses reached",
+ "bet settled: for equal",
+ "bet settled: for notequal",
+ "bet settled: liquidated for bear",
+ "btcpay",
+ "burn",
+ "cancel order",
+ "close dispenser",
+ "dispense",
+ "dispenser close",
+ "dividend",
+ "feed fee",
+ "filled",
+ "issuance",
+ "mpma send",
+ "open dispenser empty addr",
+ "order cancelled",
+ "order expired",
+ "order match",
+ "recredit backward quantity",
+ "recredit forward quantity",
+ "recredit wager",
+ "recredit wager remaining",
+ "reset issuance",
+ "send",
+ "sweep",
+ "wins"
+ ],
+ "description": "The action to filter by"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the credits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of credits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//debits": {
+ "function": "get_debits_by_asset",
+ "description": "Returns the debits of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "action",
+ "default": null,
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ null,
+ "bet",
+ "destroy",
+ "dividend",
+ "dividend fee",
+ "issuance fee",
+ "mpma send",
+ "open RPS",
+ "open dispenser",
+ "open dispenser empty addr",
+ "open order",
+ "refill dispenser",
+ "reopen RPS after matching expiration",
+ "reset destroy",
+ "send",
+ "sweep",
+ "sweep fee"
+ ],
+ "description": "The action to filter by"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the debits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of debits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//dividends": {
+ "function": "get_dividends_by_asset",
+ "description": "Returns the dividends of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. $ASSET_5)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dividend to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dividend to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//issuances": {
+ "function": "get_issuances_by_asset",
+ "description": "Returns the issuances of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the issuances to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of issuances to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//sends": {
+ "function": "get_sends_by_asset",
+ "description": "Returns the sends, include Enhanced and MPMA sends, of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the debits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of debits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//dispensers": {
+ "function": "get_dispensers_by_asset",
+ "description": "Returns the dispensers of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "open",
+ "closed",
+ "closing",
+ "open_empty_address"
+ ],
+ "description": "The status of the dispensers to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispensers to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispensers to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//dispensers/": {
+ "function": "get_dispenser_by_address_and_asset",
+ "description": "Returns the dispenser of an address and an asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to return (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//holders": {
+ "function": "get_asset_holders",
+ "description": "Returns the holders of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the holder to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of holders to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//dispenses": {
+ "function": "get_dispenses_by_asset",
+ "description": "Returns the dispenses of an asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset to return (e.g. XCP)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//subassets": {
+ "function": "get_subassets_by_asset",
+ "description": "Returns asset subassets",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The name of the asset to return (e.g. $ASSET_7)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the assets to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of assets to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//fairminters": {
+ "function": "get_fairminters_by_asset",
+ "description": "Returns the fairminter by its asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset of the fairminter to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//fairmints": {
+ "function": "get_fairmints_by_asset",
+ "description": "Returns the mints by asset",
+ "args": [
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset of the mints to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/assets//fairmints/": {
+ "function": "get_fairmints_by_address_and_asset",
+ "description": "Returns the mints by address and asset",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address of the mints to return (e.g. $ADDRESS_2)"
+ },
+ {
+ "name": "asset",
+ "required": true,
+ "type": "str",
+ "description": "The asset of the mints to return (e.g. $ASSET_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/orders": {
+ "function": "get_orders",
+ "description": "Returns all the orders",
+ "args": [
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "open",
+ "expired",
+ "filled",
+ "cancelled"
+ ],
+ "description": "The status of the orders to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the orders to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of orders to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/orders/": {
+ "function": "get_order",
+ "description": "Returns the information of an order",
+ "args": [
+ {
+ "name": "order_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction that created the order (e.g. $LAST_ORDER_TX_HASH)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/orders//matches": {
+ "function": "get_order_matches_by_order",
+ "description": "Returns the order matches of an order",
+ "args": [
+ {
+ "name": "order_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction that created the order (e.g. $ORDER_WITH_MATCH_HASH)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "pending",
+ "completed",
+ "expired"
+ ],
+ "description": "The status of the order matches to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the order matches to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of order matches to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/orders//btcpays": {
+ "function": "get_btcpays_by_order",
+ "description": "Returns the BTC pays of an order",
+ "args": [
+ {
+ "name": "order_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction that created the order (e.g. $ORDER_WITH_BTCPAY_HASH)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the resolutions to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of resolutions to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/orders//": {
+ "function": "get_orders_by_two_assets",
+ "description": "Returns the orders to exchange two assets",
+ "args": [
+ {
+ "name": "asset1",
+ "required": true,
+ "type": "str",
+ "description": "The first asset to return (e.g. BTC)"
+ },
+ {
+ "name": "asset2",
+ "required": true,
+ "type": "str",
+ "description": "The second asset to return (e.g. XCP)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "open",
+ "expired",
+ "filled",
+ "cancelled"
+ ],
+ "description": "The status of the orders to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the orders to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of orders to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/orders///matches": {
+ "function": "get_order_matches_by_two_assets",
+ "description": "Returns the orders to exchange two assets",
+ "args": [
+ {
+ "name": "asset1",
+ "required": true,
+ "type": "str",
+ "description": "The first asset to return (e.g. BTC)"
+ },
+ {
+ "name": "asset2",
+ "required": true,
+ "type": "str",
+ "description": "The second asset to return (e.g. XCP)"
+ },
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "pending",
+ "completed",
+ "expired"
+ ],
+ "description": "The status of the order matches to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the order matches to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of order matches to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/order_matches": {
+ "function": "get_all_order_matches",
+ "description": "Returns all the order matches",
+ "args": [
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "pending",
+ "completed",
+ "expired"
+ ],
+ "description": "The status of the order matches to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the order matches to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of order matches to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bets": {
+ "function": "get_bets",
+ "description": "Returns the bets of a feed",
+ "args": [
+ {
+ "name": "status",
+ "default": "open",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "cancelled",
+ "dropped",
+ "expired",
+ "filled",
+ "open"
+ ],
+ "description": "The status of the bet (e.g. filled)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the bets to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of bets to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bets/": {
+ "function": "get_bet",
+ "description": "Returns the information of a bet",
+ "args": [
+ {
+ "name": "bet_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction that created the bet (e.g. 5d097b4729cb74d927b4458d365beb811a26fcee7f8712f049ecbe780eb496ed)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bets//matches": {
+ "function": "get_bet_matches_by_bet",
+ "description": "Returns the bet matches of a bet",
+ "args": [
+ {
+ "name": "bet_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction that created the bet (e.g. 5d097b4729cb74d927b4458d365beb811a26fcee7f8712f049ecbe780eb496ed)"
+ },
+ {
+ "name": "status",
+ "default": "pending",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "dropped",
+ "expired",
+ "pending",
+ "settled: for equal",
+ "settled: for notequal",
+ "settled: liquidated for bear"
+ ],
+ "description": "The status of the bet matches (e.g. expired)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the bet matches to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of bet matches to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bets//resolutions": {
+ "function": "get_resolutions_by_bet",
+ "description": "Returns the resolutions of a bet",
+ "args": [
+ {
+ "name": "bet_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction that created the bet (e.g. 36bbbb7dbd85054dac140a8ad8204eda2ee859545528bd2a9da69ad77c277ace)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the resolutions to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of resolutions to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/burns": {
+ "function": "get_all_burns",
+ "description": "Returns the burns",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the burns to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of burns to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/dispensers": {
+ "function": "get_dispensers",
+ "description": "Returns all dispensers",
+ "args": [
+ {
+ "name": "status",
+ "default": "all",
+ "required": false,
+ "type": "enum[str]",
+ "members": [
+ "all",
+ "open",
+ "closed",
+ "closing",
+ "open_empty_address"
+ ],
+ "description": "The status of the dispensers to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispensers to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispensers to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/dispensers/": {
+ "function": "get_dispenser_info_by_hash",
+ "description": "Returns the dispenser information by tx_hash",
+ "args": [
+ {
+ "name": "dispenser_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the dispenser to return (e.g. $DISPENSER_TX_HASH_1)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/dispensers//dispenses": {
+ "function": "get_dispenses_by_dispenser",
+ "description": "Returns the dispenses of a dispenser",
+ "args": [
+ {
+ "name": "dispenser_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the dispenser to return (e.g. $DISPENSER_TX_HASH_1)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/dividends": {
+ "function": "get_dividends",
+ "description": "Returns all the dividends",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dividend to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dividend to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/dividends/": {
+ "function": "get_dividend",
+ "description": "Returns a dividend by its hash",
+ "args": [
+ {
+ "name": "dividend_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the dividend to return (e.g. $LAST_DIVIDEND_TX_HASH)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/dividends//credits": {
+ "function": "get_dividend_disribution",
+ "description": "Returns a dividend distribution by its hash",
+ "args": [
+ {
+ "name": "dividend_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the dividend distribution to return (e.g. $LAST_DIVIDEND_TX_HASH)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the credit to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of credit to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/events": {
+ "function": "get_all_events",
+ "description": "Returns all events",
+ "args": [
+ {
+ "name": "event_name",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of events to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/events/": {
+ "function": "get_event_by_index",
+ "description": "Returns the event of an index",
+ "args": [
+ {
+ "name": "event_index",
+ "required": true,
+ "type": "int",
+ "description": "The index of the event to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/events/counts": {
+ "function": "get_all_events_counts",
+ "description": "Returns the event counts of all blocks",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/events/": {
+ "function": "get_events_by_name",
+ "description": "Returns the events filtered by event name",
+ "args": [
+ {
+ "name": "event",
+ "required": true,
+ "type": "str",
+ "description": "The event to return (e.g. CREDIT)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return (e.g. $LAST_EVENT_INDEX)"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/events//count": {
+ "function": "get_event_count",
+ "description": "Returns the number of events",
+ "args": [
+ {
+ "name": "event",
+ "required": true,
+ "type": "str",
+ "description": "The name of the event to return (e.g. CREDIT)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/dispenses": {
+ "function": "get_dispenses",
+ "description": "Returns all the dispenses",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the dispenses to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of dispenses to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/sends": {
+ "function": "get_sends",
+ "description": "Returns all the sends include Enhanced and MPMA sends",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the debits to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of debits to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/issuances": {
+ "function": "get_issuances",
+ "description": "Returns all the issuances",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the issuances to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of issuances to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/issuances/": {
+ "function": "get_issuance_by_transaction_hash",
+ "description": "Returns the issuances of a block",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_ISSUANCE_TX_HASH)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/sweeps": {
+ "function": "get_sweeps",
+ "description": "Returns all sweeps",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the sweeps to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of sweeps to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/sweeps/": {
+ "function": "get_sweep_by_transaction_hash",
+ "description": "Returns the sweeps of a transaction",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_SWEEP_TX_HASH)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/broadcasts": {
+ "function": "get_valid_broadcasts",
+ "description": "Returns all valid broadcasts",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the broadcasts to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of broadcasts to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/broadcasts/": {
+ "function": "get_broadcast_by_transaction_hash",
+ "description": "Returns the broadcast of a transaction",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_BROADCAST_TX_HASH)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/fairminters": {
+ "function": "get_all_fairminters",
+ "description": "Returns all fairminters",
+ "args": [
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last index of the fairminter to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of fairminter to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/fairminters/": {
+ "function": "get_fairminter",
+ "description": "Returns the fairminter by its hash",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/fairminters//mints": {
+ "function": "get_fairmints_by_fairminter",
+ "description": "Returns the mints by fairminter",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/addresses/utxos": {
+ "function": "get_unspent_txouts_by_addresses",
+ "description": "Returns a list of unspent outputs for a list of addresses",
+ "args": [
+ {
+ "name": "addresses",
+ "required": true,
+ "type": "str",
+ "description": "The addresses to search for (e.g. $ADDRESS_7,$ADDRESS_8)"
+ },
+ {
+ "name": "unconfirmed",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Include unconfirmed transactions"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/addresses//transactions": {
+ "function": "get_transactions_by_address",
+ "description": "Returns all transactions involving a given address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to search for (e.g. $ADDRESS_3)"
+ },
+ {
+ "name": "unconfirmed",
+ "default": true,
+ "required": false,
+ "type": "bool",
+ "description": "Include unconfirmed transactions (e.g. True)"
+ },
+ {
+ "name": "only_tx_hashes",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Return only the tx hashes (e.g. True)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/addresses//transactions/oldest": {
+ "function": "get_oldest_transaction_by_address",
+ "description": "Get the oldest transaction for an address.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to search for. (e.g. $ADDRESS_9)"
+ },
+ {
+ "name": "block_index",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The block index to search from."
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/addresses//utxos": {
+ "function": "get_unspent_txouts",
+ "description": "Returns a list of unspent outputs for a specific address",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "The address to search for (e.g. $ADDRESS_7)"
+ },
+ {
+ "name": "unconfirmed",
+ "default": false,
+ "required": false,
+ "type": "bool",
+ "description": "Include unconfirmed transactions"
+ },
+ {
+ "name": "unspent_tx_hash",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Filter by unspent_tx_hash"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/addresses//pubkey": {
+ "function": "pubkeyhash_to_pubkey",
+ "description": "Get pubkey for an address.",
+ "args": [
+ {
+ "name": "address",
+ "required": true,
+ "type": "str",
+ "description": "Address to get pubkey for. (e.g. $ADDRESS_1)"
+ },
+ {
+ "name": "provided_pubkeys",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of provided pubkeys."
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/transactions/": {
+ "function": "get_transaction",
+ "description": "Get a transaction from the blockchain",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The transaction hash (e.g. $LAST_TX_HASH)"
+ },
+ {
+ "name": "format",
+ "default": "json",
+ "required": false,
+ "type": "str",
+ "description": "Whether to return JSON output or raw hex (e.g. hex)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/estimatesmartfee": {
+ "function": "fee_per_kb",
+ "description": "Get the fee per kilobyte for a transaction to be confirmed in `conf_target` blocks.",
+ "args": [
+ {
+ "name": "conf_target",
+ "default": 3,
+ "required": false,
+ "type": "int",
+ "description": "Confirmation target in blocks (1 - 1008) (e.g. 2)"
+ },
+ {
+ "name": "mode",
+ "default": "CONSERVATIVE",
+ "required": false,
+ "type": "str",
+ "description": "The fee estimate mode. (e.g. CONSERVATIVE)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/transactions": {
+ "function": "sendrawtransaction",
+ "description": "Proxy to `sendrawtransaction` RPC call.",
+ "args": [
+ {
+ "name": "signedhex",
+ "required": true,
+ "type": "str",
+ "description": "The signed transaction hex."
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/bitcoin/getmempoolinfo": {
+ "function": "get_mempool_info",
+ "description": "Get the current mempool info.",
+ "args": [
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/mempool/events": {
+ "function": "get_all_mempool_events",
+ "description": "Returns all mempool events",
+ "args": [
+ {
+ "name": "event_name",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of events to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/mempool/events/": {
+ "function": "get_mempool_events_by_name",
+ "description": "Returns the mempool events filtered by event name",
+ "args": [
+ {
+ "name": "event",
+ "required": true,
+ "type": "str",
+ "description": "The event to return (e.g. CREDIT)"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/mempool/transactions//events": {
+ "function": "get_mempool_events_by_tx_hash",
+ "description": "Returns the mempool events filtered by transaction hash",
+ "args": [
+ {
+ "name": "tx_hash",
+ "required": true,
+ "type": "str",
+ "description": "The hash of the transaction to return (e.g. $LAST_MEMPOOL_TX_HASH)"
+ },
+ {
+ "name": "event_name",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "Comma separated list of events to return"
+ },
+ {
+ "name": "cursor",
+ "default": null,
+ "required": false,
+ "type": "str",
+ "description": "The last event index to return"
+ },
+ {
+ "name": "limit",
+ "default": 100,
+ "required": false,
+ "type": "int",
+ "description": "The maximum number of events to return (e.g. 5)"
+ },
+ {
+ "name": "offset",
+ "default": null,
+ "required": false,
+ "type": "int",
+ "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/routes": {
+ "function": "get_routes",
+ "description": "Return the API routes.",
+ "args": [
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/v2/healthz": {
+ "function": "check_server_health",
+ "description": "Health check route.",
+ "args": [
+ {
+ "name": "check_type",
+ "default": "light",
+ "required": false,
+ "type": "str",
+ "description": "Type of health check to perform. Options are 'light' and 'heavy' (e.g. light)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/healthz": {
+ "function": "check_server_health",
+ "description": "Health check route.",
+ "args": [
+ {
+ "name": "check_type",
+ "default": "light",
+ "required": false,
+ "type": "str",
+ "description": "Type of health check to perform. Options are 'light' and 'heavy' (e.g. light)"
+ },
+ {
+ "name": "verbose",
+ "type": "bool",
+ "default": "false",
+ "description": "Include asset and dispenser info and normalized quantities in the response.",
+ "required": false
+ },
+ {
+ "name": "show_unconfirmed",
+ "type": "bool",
+ "default": "false",
+ "description": "Include results from Mempool.",
+ "required": false
+ }
+ ]
+ },
+ "/": {
+ "function": "redirect_to_rpc_v1",
+ "description": "Redirect to the RPC API v1.",
+ "args": []
+ },
+ "/v1/": {
+ "function": "redirect_to_rpc_v1",
+ "description": "Redirect to the RPC API v1.",
+ "args": []
+ },
+ "/api/": {
+ "function": "redirect_to_rpc_v1",
+ "description": "Redirect to the RPC API v1.",
+ "args": []
+ },
+ "/rpc/": {
+ "function": "redirect_to_rpc_v1",
+ "description": "Redirect to the RPC API v1.",
+ "args": []
+ }
+ }
}
}
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/__init__.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py
new file mode 100644
index 0000000000..461af4cc47
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py
@@ -0,0 +1,424 @@
+from counterpartycore.lib import config, exceptions
+
+from ..params import (
+ ADDR,
+)
+from ..params import DEFAULT_PARAMS as DP
+
+DISPENSER_VECTOR = {
+ "dispenser": {
+ "validate": [
+ {
+ "in": (ADDR[0], config.XCP, 100, 100, 100, 0, None, DP["burn_start"], None),
+ "out": (1, None),
+ },
+ {
+ "in": (ADDR[0], config.XCP, 200, 100, 100, 0, None, DP["burn_start"], None),
+ "out": (None, ["escrow_quantity must be greater or equal than give_quantity"]),
+ },
+ {
+ "in": (ADDR[0], config.BTC, 100, 100, 100, 0, None, DP["burn_start"], None),
+ "out": (None, [f"cannot dispense {config.BTC}"]),
+ },
+ {
+ "in": (ADDR[0], config.XCP, 100, 100, 100, 5, None, DP["burn_start"], None),
+ "out": (None, ["invalid status 5"]),
+ },
+ {
+ "in": (ADDR[0], "PARENT", 100, 1000000000, 100, 0, None, DP["burn_start"], None),
+ "out": (
+ None,
+ ["address doesn't has enough balance of PARENT (100000000 < 1000000000)"],
+ ),
+ },
+ {
+ "in": (ADDR[5], config.XCP, 100, 100, 120, 0, None, DP["burn_start"], None),
+ "out": (
+ None,
+ [
+ f"address has a dispenser already opened for asset {config.XCP} with a different mainchainrate"
+ ],
+ ),
+ },
+ {
+ "in": (ADDR[5], config.XCP, 120, 120, 100, 0, None, DP["burn_start"], None),
+ "out": (
+ None,
+ [
+ f"address has a dispenser already opened for asset {config.XCP} with a different give_quantity"
+ ],
+ ),
+ },
+ {
+ "in": (ADDR[0], "PARENT", 0, 0, 0, 10, None, DP["burn_start"], None),
+ "out": (None, ["address doesnt has an open dispenser for asset PARENT"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ config.XCP,
+ config.MAX_INT + 1,
+ 100,
+ 100,
+ 0,
+ None,
+ DP["burn_start"],
+ None,
+ ),
+ "out": (
+ None,
+ [
+ "escrow_quantity must be greater or equal than give_quantity",
+ "integer overflow",
+ ],
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ config.XCP,
+ 100,
+ config.MAX_INT + 1,
+ 100,
+ 0,
+ None,
+ DP["burn_start"],
+ None,
+ ),
+ "out": (
+ None,
+ [
+ "address doesn't has enough balance of XCP (91674999880 < 9223372036854775808)",
+ "integer overflow",
+ ],
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ config.XCP,
+ 100,
+ 100,
+ config.MAX_INT + 1,
+ 0,
+ None,
+ DP["burn_start"],
+ None,
+ ),
+ "out": (None, ["integer overflow"]),
+ },
+ {
+ "in": (ADDR[0], config.XCP, 100, 100, 100, 0, ADDR[5], DP["burn_start"], None),
+ "out": (None, ["dispenser must be created by source"]),
+ },
+ ],
+ "compose": [
+ {
+ "in": (ADDR[0], config.XCP, 100, 100, 100, 0),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00",
+ ),
+ },
+ {
+ "in": (ADDR[5], config.XCP, 0, 0, 0, 10),
+ "out": (
+ ADDR[5],
+ [],
+ b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n",
+ ),
+ },
+ {
+ "in": (ADDR[0], "PARENT", 100, 10000, 2345, 0),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x0c\x00\x00\x00\x00\n\xa4\t}\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00'\x10\x00\x00\x00\x00\x00\x00\t)\x00",
+ ),
+ },
+ {
+ "in": (ADDR[0], config.XCP, config.MAX_INT + 1, 100, 100, 0),
+ "error": (
+ exceptions.ComposeError,
+ [
+ "escrow_quantity must be greater or equal than give_quantity",
+ "integer overflow",
+ ],
+ ),
+ },
+ {
+ "in": (ADDR[0], "PARENT", 100, 10000, 2345, 0, ADDR[5]),
+ "error": (
+ exceptions.ComposeError,
+ ["dispenser must be created by source"],
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "mock_protocol_changes": {"dispensers": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[0],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 17630,
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[0],
+ "data": b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00",
+ },
+ ),
+ "records": [
+ {
+ "table": "dispensers",
+ "values": {
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_index": DP["default_block_index"],
+ "source": ADDR[0],
+ "asset": config.XCP,
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "satoshirate": 100,
+ "status": 0,
+ "give_remaining": 100,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open dispenser",
+ "address": ADDR[0],
+ "asset": config.XCP,
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100,
+ },
+ },
+ ],
+ },
+ {
+ "mock_protocol_changes": {"dispensers": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[5],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 17630,
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[5],
+ "data": b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n",
+ },
+ ),
+ "records": [
+ {
+ "table": "dispensers",
+ "values": { # Some values here correspond to the original TX that opened the dispenser
+ "tx_index": 108,
+ "tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
+ "block_index": DP["default_block_index"],
+ "source": ADDR[5],
+ "asset": config.XCP,
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "satoshirate": 100,
+ "status": 10,
+ "give_remaining": 0,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "calling_function": "close dispenser",
+ "address": ADDR[5],
+ "asset": config.XCP,
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100,
+ },
+ },
+ ],
+ },
+ {
+ "mock_protocol_changes": {"dispensers": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[5],
+ "supported": 1,
+ "block_index": 2344638,
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 0,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ # compose(ADDR[0], config.XCP, 100, 100, config.MAX_INT + 1, 0)
+ # generated with overflow checking commented out
+ "data": b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x80\x00\x00\x00\x00\x00\x00\x00\x00",
+ },
+ ),
+ #'error': ("Warning", "Not storing [dispenser] tx [db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d]: invalid: address has a dispenser already opened for asset XCP with a different mainchainrate; integer overflow")
+ "out": None,
+ },
+ {
+ "mock_protocol_changes": {"dispensers": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[0],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 17630,
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[0],
+ # source != open_address
+ "data": b"\x00\x00\x00\x0c\x00\x00\x00\x00\n\xa4\t}\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\t)\x00",
+ },
+ ),
+ "out": None,
+ },
+ ],
+ "is_dispensable": [
+ {"mock_protocol_changes": {"dispensers": True}, "in": (ADDR[5], 200), "out": True},
+ {"mock_protocol_changes": {"dispensers": True}, "in": (ADDR[0], 200), "out": False},
+ ],
+ },
+ "dispense": {
+ "compose": [
+ {
+ "in": (ADDR[0], ADDR[5], 10),
+ "out": (
+ ADDR[0],
+ [(ADDR[5], 10)],
+ b"\r\x00",
+ ),
+ },
+ {
+ "in": (ADDR[0], ADDR[5], 10000),
+ "error": (
+ exceptions.ComposeError,
+ [
+ "dispenser doesn't have enough asset to give",
+ "dispenser doesn't have enough asset to give",
+ ],
+ ),
+ },
+ {
+ "in": (ADDR[0], ADDR[2], 10),
+ "error": (
+ exceptions.ComposeError,
+ ["address doesn't have any open dispenser"],
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "mock_protocol_changes": {"dispensers": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[0],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 100,
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[5],
+ "data": b"",
+ },
+ ),
+ "records": [
+ {
+ "table": "dispensers",
+ "values": { # Some values here correspond to the original TX that opened the dispenser
+ "tx_index": 108,
+ "tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
+ "block_index": DP["default_block_index"],
+ "source": ADDR[5],
+ "asset": config.XCP,
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "satoshirate": 100,
+ "status": 10,
+ "give_remaining": 0,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "calling_function": "dispense",
+ "address": ADDR[0],
+ "asset": config.XCP,
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100,
+ },
+ },
+ ],
+ },
+ {
+ "mock_protocol_changes": {
+ "dispensers": True
+ }, # Same test as above, but with excess BTC, should give out the same amount of XCP
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[0],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 300,
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[5],
+ "data": b"",
+ },
+ ),
+ "records": [
+ {
+ "table": "dispensers",
+ "values": { # Some values here correspond to the original TX that opened the dispenser
+ "tx_index": 108,
+ "tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
+ "block_index": DP["default_block_index"],
+ "source": ADDR[5],
+ "asset": config.XCP,
+ "give_quantity": 100,
+ "escrow_quantity": 100,
+ "satoshirate": 100,
+ "status": 10,
+ "give_remaining": 0,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "calling_function": "dispense",
+ "address": ADDR[0],
+ "asset": config.XCP,
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100,
+ },
+ },
+ ],
+ },
+ ],
+ },
+}
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairmint.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairmint.py
new file mode 100644
index 0000000000..a725e3e4f6
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairmint.py
@@ -0,0 +1,199 @@
+from counterpartycore.lib import exceptions
+
+from ..params import (
+ ADDR,
+)
+from ..params import DEFAULT_PARAMS as DP
+
+# source
+# asset
+# quantity,
+
+FAIRMINT_VECTOR = {
+ "fairmint": {
+ "validate": [
+ {
+ "in": (
+ ADDR[1], # source
+ "FREEFAIRMIN", # asset
+ 0, # quantity
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "PAIDFAIRMIN", # asset
+ 0, # quantity
+ ),
+ "out": (["Quantity must be greater than 0"]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "RAIDFAIRMIN", # asset
+ 11, # quantity
+ ),
+ "out": (["Quantity exceeds maximum allowed per transaction"]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "QAIDFAIRMIN", # asset
+ 35, # quantity
+ ),
+ "out": (["asset supply quantity exceeds hard cap"]),
+ },
+ ],
+ "compose": [
+ {
+ "in": (
+ ADDR[1], # source
+ "FREEFAIRMIN", # asset
+ 0, # quantity
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [],
+ b"[FREEFAIRMIN|0",
+ ),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "QAIDFAIRMIN", # asset
+ 35, # quantity
+ ),
+ "error": (exceptions.ComposeError, ["asset supply quantity exceeds hard cap"]),
+ },
+ ],
+ "unpack": [
+ {"in": (b"FREEFAIRMIN|0", False), "out": ("FREEFAIRMIN", 0)},
+ {"in": (b"FREEFAIRMIN|0", True), "out": {"asset": "FREEFAIRMIN", "quantity": 0}},
+ ],
+ "parse": [
+ {
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"[FREEFAIRMIN|0",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "fairmints",
+ "values": {
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "fairminter_tx_hash": "a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce",
+ "asset": "FREEFAIRMIN",
+ "earn_quantity": 10,
+ "paid_quantity": 0,
+ "commission": 0,
+ "status": "valid",
+ },
+ },
+ {
+ "table": "issuances",
+ "values": {
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "asset": "FREEFAIRMIN",
+ "quantity": 10,
+ "divisible": True,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": False,
+ "callable": False,
+ "call_date": 0,
+ "call_price": 0,
+ "description": "",
+ "fee_paid": 0,
+ "locked": False,
+ "reset": False,
+ "status": "valid",
+ "asset_longname": "",
+ "fair_minting": True,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "FREEFAIRMIN",
+ "quantity": 10,
+ "calling_function": "fairmint",
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"[QAIDFAIRMIN|10",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "fairmints",
+ "values": {
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "fairminter_tx_hash": "c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7",
+ "asset": "QAIDFAIRMIN",
+ "earn_quantity": 5,
+ "paid_quantity": 100,
+ "commission": 5,
+ "status": "valid",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "QAIDFAIRMIN",
+ "quantity": 10,
+ "calling_function": "escrowed fairmint",
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "XCP",
+ "quantity": 100,
+ "calling_function": "escrowed fairmint",
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ },
+ },
+ ],
+ },
+ ],
+ }
+}
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairminter.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairminter.py
new file mode 100644
index 0000000000..f14ac8feed
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairminter.py
@@ -0,0 +1,499 @@
+from decimal import Decimal
+
+from ..params import (
+ ADDR,
+)
+from ..params import DEFAULT_PARAMS as DP
+
+# source
+# asset
+# asset_parent,
+# price=0,
+# quantity_by_price=1,
+# max_mint_per_tx,
+# hard_cap=0,
+# premint_quantity=0,
+# start_block=0,
+# end_block=0,
+# soft_cap=0,
+# soft_cap_deadline_block=0,
+# minted_asset_commission=0.0,
+# burn_payment=False,
+# lock_description=False,
+# lock_quantity=True,
+# divisible=True,
+# description="",
+
+FAIRMINTER_VECTOR = {
+ "fairminter": {
+ "validate": [
+ {
+ "in": (
+ ADDR[1], # source
+ "FAIRMINTED", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "FAIRMINTED", # asset
+ "", # asset_parent,
+ 1000, # price=0,
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "FAIRMINTED1", # asset
+ ),
+ "out": (
+ [
+ "Invalid asset name: ('invalid character:', '1')",
+ "Price or max_mint_per_tx must be > 0.",
+ ]
+ ),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "A1603612687792733727", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "A1603612687", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": (["Invalid asset name: numeric asset name not in range"]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "FAIRMINTED", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ -10, # max_mint_per_tx,
+ ),
+ "out": (["`max_mint_per_tx` must be >= 0."]),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "FAIRMINTED", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ -10, # max_mint_per_tx,
+ 40, # hard_cap=0,
+ 50, # premint_quantity=0,
+ 50, # start_block=0,
+ 49, # end_block=0,
+ 55, # soft_cap=0,
+ 0, # soft_cap_deadline_block=0,
+ 500, # minted_asset_commission=0.0,
+ 0, # burn_payment=False,
+ ),
+ "out": (
+ [
+ "`max_mint_per_tx` must be >= 0.",
+ "`burn_payment` must be a boolean.",
+ "minted_asset_commission must be a float",
+ "Premint quantity must be < hard cap.",
+ "Start block must be <= end block.",
+ "Soft cap must be < hard cap.",
+ "Soft cap deadline block must be specified if soft cap is specified.",
+ ]
+ ),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "LOCKEDPREV", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": (
+ [
+ "Asset `LOCKEDPREV` is locked.",
+ "Asset `LOCKEDPREV` is not issued by `mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns`.",
+ ]
+ ),
+ },
+ {
+ "in": (
+ ADDR[0], # source
+ "DIVISIBLE", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[0], # source
+ "DIVISIBLE", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ DP["quantity"] * 900, # hard_cap=0,
+ ),
+ "out": (["Hard cap of asset `DIVISIBLE` is already reached."]),
+ },
+ {
+ "in": (
+ ADDR[0], # source
+ "SUBASSET", # asset
+ "DIVISIBLE", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[0], # source
+ "SUBASSET", # asset
+ "NOASSET", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": (["Asset parent does not exist"]),
+ },
+ {
+ "in": (
+ ADDR[0], # source
+ "FREEFAIRMIN", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": (["Fair minter already opened for `FREEFAIRMIN`."]),
+ },
+ ],
+ "compose": [
+ {
+ "in": (
+ ADDR[1], # source
+ "FAIRMINTED", # asset
+ "", # asset_parent,
+ 0, # price=0,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [],
+ b"ZFAIRMINTED||0|1|10|0|0|0|0|0|0|0|0|0|0|1|",
+ ),
+ },
+ {
+ "in": (
+ ADDR[1], # source
+ "FAIRMINTED", # asset
+ "", # asset_parent,
+ 0, # price,
+ 1, # quantity_by_price,
+ 10, # max_mint_per_tx,
+ 1000, # hard_cap,
+ 100, # premint_quantity,
+ 800000, # start_block,
+ 900000, # end_block,
+ 50, # soft_cap,
+ 850000, # soft_cap_deadline_block,
+ 0.1, # minted_asset_commission,
+ False, # burn_payment,
+ False, # lock_description,
+ True, # lock_quantity,
+ True, # divisible,
+ "une asset super top", # description,
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [],
+ b"ZFAIRMINTED||0|1|10|1000|100|800000|900000|50|850000|10000000|0|0|1|1|une asset super top",
+ ),
+ },
+ ],
+ "unpack": [
+ {
+ "in": (
+ b"FAIRMINTED||0|1|10|1000|100|800000|900000|50|850000|10000000|0|0|1|1|une asset super top",
+ True,
+ ),
+ "out": (
+ {
+ "asset": "FAIRMINTED",
+ "asset_parent": "",
+ "price": 0,
+ "quantity_by_price": 1,
+ "max_mint_per_tx": 10,
+ "hard_cap": 1000,
+ "premint_quantity": 100,
+ "start_block": 800000,
+ "end_block": 900000,
+ "soft_cap": 50,
+ "soft_cap_deadline_block": 850000,
+ "minted_asset_commission": Decimal("0.1"),
+ "burn_payment": False,
+ "lock_description": False,
+ "lock_quantity": True,
+ "divisible": True,
+ "description": "une asset super top",
+ }
+ ),
+ },
+ {
+ "in": (
+ b"FAIRMINTED||0|1|10|1000|100|800000|900000|50|850000|10000000|0|0|1|1|une asset super top",
+ False,
+ ),
+ "out": (
+ "FAIRMINTED",
+ "",
+ 0,
+ 1,
+ 10,
+ 1000,
+ 100,
+ 800000,
+ 900000,
+ 50,
+ 850000,
+ Decimal("0.1"),
+ False,
+ False,
+ True,
+ True,
+ "une asset super top",
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "comment": "Fairminter with start block and soft cap",
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"ZFAIRMINTED||0|1|10|1000|100|800000|900000|50|850000|10000000|0|0|1|1|une asset super top",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "fairminters",
+ "values": {
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "asset": "FAIRMINTED",
+ "asset_parent": "",
+ "price": 0,
+ "quantity_by_price": 1,
+ "max_mint_per_tx": 10,
+ "hard_cap": 1000,
+ "premint_quantity": 100,
+ "start_block": 800000,
+ "end_block": 900000,
+ "soft_cap": 50,
+ "soft_cap_deadline_block": 850000,
+ "minted_asset_commission_int": 10000000,
+ "burn_payment": False,
+ "lock_description": False,
+ "lock_quantity": True,
+ "divisible": True,
+ "description": "une asset super top",
+ "status": "pending",
+ },
+ },
+ {
+ "table": "issuances",
+ "values": {
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "asset": "FAIRMINTED",
+ "quantity": 100,
+ "divisible": True,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "transfer": False,
+ "callable": False,
+ "call_date": 0,
+ "call_price": 0,
+ "description": "une asset super top",
+ "fee_paid": 50000000,
+ "locked": False,
+ "reset": False,
+ "status": "valid",
+ "asset_longname": "",
+ "fair_minting": True,
+ },
+ },
+ {
+ "table": "assets",
+ "values": {
+ "asset_id": "27217170918239",
+ "asset_name": "FAIRMINTED",
+ "block_index": DP["default_block_index"],
+ "asset_longname": None,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "FAIRMINTED",
+ "quantity": 100,
+ "calling_function": "escrowed premint",
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ },
+ },
+ ],
+ },
+ {
+ "comment": "Fairminter without start block and with soft cap",
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"ZFAIRMINTED||0|1|10|1000|100|0|900000|50|850000|10000000|0|0|1|1|une asset super top",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "fairminters",
+ "values": {
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "asset": "FAIRMINTED",
+ "asset_parent": "",
+ "price": 0,
+ "quantity_by_price": 1,
+ "max_mint_per_tx": 10,
+ "hard_cap": 1000,
+ "premint_quantity": 100,
+ "start_block": 0,
+ "end_block": 900000,
+ "soft_cap": 50,
+ "soft_cap_deadline_block": 850000,
+ "minted_asset_commission_int": 10000000,
+ "burn_payment": False,
+ "lock_description": False,
+ "lock_quantity": True,
+ "divisible": True,
+ "description": "une asset super top",
+ "status": "open",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "FAIRMINTED",
+ "quantity": 100,
+ "calling_function": "escrowed premint",
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ },
+ },
+ ],
+ },
+ {
+ "comment": "Fairminter without start block and without soft cap",
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"ZFAIRMINTED||0|1|10|1000|100|0|900000|0|0|10000000|0|0|1|1|une asset super top",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "fairminters",
+ "values": {
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "FAIRMINTED",
+ "asset_parent": "",
+ "price": 0,
+ "quantity_by_price": 1,
+ "max_mint_per_tx": 10,
+ "hard_cap": 1000,
+ "premint_quantity": 100,
+ "start_block": 0,
+ "end_block": 900000,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "minted_asset_commission_int": 10000000,
+ "burn_payment": False,
+ "lock_description": False,
+ "lock_quantity": True,
+ "divisible": True,
+ "description": "une asset super top",
+ "status": "open",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "FAIRMINTED",
+ "quantity": 100,
+ "calling_function": "premint",
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ },
+ },
+ ],
+ },
+ ],
+ }
+}
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py
new file mode 100644
index 0000000000..4ded97b6e8
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/gas.py
@@ -0,0 +1,31 @@
+GAS_VECTOR = {
+ "gas": {
+ "get_transaction_count_for_last_period": [
+ {
+ "in": (100, 154), # utxo.ID, 310507 // 2016
+ "out": 2,
+ }
+ ],
+ "increment_counter": [
+ {
+ "in": (100, 310507), # utxo.ID, 310507
+ "records": [
+ {
+ "table": "transaction_count",
+ "values": {
+ "block_index": 310507,
+ "transaction_id": 100,
+ "count": 3,
+ },
+ }
+ ],
+ }
+ ],
+ "get_average_transactions": [
+ {
+ "in": (100, 310507), # utxo.ID, 310507
+ "out": 0,
+ }
+ ],
+ }
+}
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py
new file mode 100644
index 0000000000..8c81eee804
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py
@@ -0,0 +1,517 @@
+from fractions import Fraction
+
+from counterpartycore.lib import exceptions
+from counterpartycore.lib.ledger import CreditError, DebitError
+from counterpartycore.lib.util import QuantityError
+
+from ..params import (
+ ADDR,
+)
+from ..params import DEFAULT_PARAMS as DP
+
+LEDGER_VECTOR = {
+ "ledger": {
+ "generate_asset_id": [
+ {"in": ("BTC", DP["default_block_index"]), "out": 0},
+ {"in": ("XCP", DP["default_block_index"]), "out": 1},
+ {"in": ("BCD", 308000), "error": (exceptions.AssetNameError, "too short")},
+ {
+ "in": ("ABCD", 308000),
+ "error": (exceptions.AssetNameError, "non‐numeric asset name starts with ‘A’"),
+ },
+ {
+ "in": (f"A{26 ** 12}", 308000),
+ "error": (exceptions.AssetNameError, "numeric asset name not in range"),
+ },
+ {
+ "in": (f"A{2 ** 64}", 308000),
+ "error": (exceptions.AssetNameError, "numeric asset name not in range"),
+ },
+ {"in": (f"A{26 ** 12 + 1}", 308000), "out": 26**12 + 1},
+ {"in": (f"A{2 ** 64 - 1}", 308000), "out": 2**64 - 1},
+ {
+ "in": ("LONGASSETNAMES", 308000),
+ "error": (exceptions.AssetNameError, "long asset names must be numeric"),
+ },
+ {
+ "in": ("BCDE_F", 308000),
+ "error": (exceptions.AssetNameError, "invalid character:"),
+ },
+ {"in": ("BAAA", 308000), "out": 26**3},
+ {"in": ("ZZZZZZZZZZZZ", 308000), "out": 26**12 - 1},
+ ],
+ "generate_asset_name": [
+ {"in": (0, DP["default_block_index"]), "out": "BTC"},
+ {"in": (1, DP["default_block_index"]), "out": "XCP"},
+ {"in": (26**12 - 1, 308000), "out": "ZZZZZZZZZZZZ"},
+ {"in": (26**3, 308000), "out": "BAAA"},
+ {"in": (2**64 - 1, 308000), "out": f"A{2 ** 64 - 1}"},
+ {"in": (26**12 + 1, 308000), "out": f"A{26 ** 12 + 1}"},
+ {"in": (26**3 - 1, 308000), "error": (exceptions.AssetIDError, "too low")},
+ {"in": (2**64, 308000), "error": (exceptions.AssetIDError, "too high")},
+ ],
+ "price": [{"in": (1, 10), "out": Fraction(1, 10)}],
+ "last_message": [
+ {
+ "in": (),
+ "out": {
+ "message_index": 1739,
+ "block_index": 310703,
+ "command": "parse",
+ "category": "blocks",
+ "bindings": '{"block_index":310703,"ledger_hash":"cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a","messages_hash":"82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',
+ "timestamp": 0,
+ "event": "BLOCK_PARSED",
+ "tx_hash": None,
+ "event_hash": "084f990c96dfcbc724458e54154757258c4b0ecc17255ab42a9c0db2dd4939de",
+ },
+ }
+ ],
+ "get_asset_id": [
+ {"in": ("XCP", DP["default_block_index"]), "out": 1},
+ {"in": ("BTC", DP["default_block_index"]), "out": 0},
+ {
+ "in": ("foobar", DP["default_block_index"]),
+ "error": (exceptions.AssetError, "No such asset: foobar"),
+ },
+ ],
+ "resolve_subasset_longname": [
+ {"in": ("XCP",), "out": "XCP"},
+ {"in": ("PARENT",), "out": "PARENT"},
+ {"in": ("PARENT.nonexistent.subasset",), "out": "PARENT.nonexistent.subasset"},
+ {"in": ("PARENT.ILEGAL^^^",), "out": "PARENT.ILEGAL^^^"},
+ {"in": ("PARENT.already.issued",), "out": f"A{26 ** 12 + 101}"},
+ ],
+ "debit": [
+ {"in": (ADDR[0], "XCP", 1, 0), "out": None},
+ {
+ "in": (ADDR[0], "BTC", DP["quantity"], 0),
+ "error": (DebitError, "Cannot debit bitcoins."),
+ },
+ {
+ "in": (ADDR[0], "BTC", -1 * DP["quantity"], 0),
+ "error": (DebitError, "Negative quantity."),
+ },
+ {
+ "in": (ADDR[0], "BTC", 1.1 * DP["quantity"], 0),
+ "error": (DebitError, "Quantity must be an integer."),
+ },
+ {"in": (ADDR[0], "XCP", 2**40, 0), "error": (DebitError, "Insufficient funds.")},
+ ],
+ "credit": [
+ {"in": (ADDR[0], "XCP", 1, 0), "out": None},
+ {
+ "in": (ADDR[0], "BTC", DP["quantity"], 0),
+ "error": (CreditError, "Cannot debit bitcoins."),
+ },
+ {
+ "in": (ADDR[0], "BTC", -1 * DP["quantity"], 0),
+ "error": (CreditError, "Negative quantity."),
+ },
+ {
+ "in": (ADDR[0], "BTC", 1.1 * DP["quantity"], 0),
+ "error": (CreditError, "Quantity must be an integer."),
+ },
+ ],
+ "is_divisible": [
+ {"in": ("XCP",), "out": True},
+ {"in": ("BTC",), "out": True},
+ {"in": ("DIVISIBLE",), "out": True},
+ {"in": ("NODIVISIBLE",), "out": False},
+ {"in": ("foobar",), "error": (exceptions.AssetError, "No such asset: foobar")},
+ ],
+ "value_in": [
+ {
+ "in": (
+ 1.1,
+ "leverage",
+ ),
+ "out": 1,
+ },
+ {
+ "in": (
+ 1 / 10,
+ "fraction",
+ ),
+ "out": 0.1,
+ },
+ {
+ "in": (
+ 1,
+ "NODIVISIBLE",
+ ),
+ "out": 1,
+ },
+ {
+ "in": (
+ 1.111111111111,
+ "DIVISIBLE",
+ ),
+ "error": (
+ QuantityError,
+ "Divisible assets have only eight decimal places of precision.",
+ ),
+ },
+ {
+ "in": (
+ 1.1,
+ "NODIVISIBLE",
+ ),
+ "error": (QuantityError, "Fractional quantities of indivisible assets."),
+ },
+ ],
+ "value_out": [
+ {
+ "in": (
+ 1.1,
+ "leverage",
+ ),
+ "out": "1.1",
+ },
+ {
+ "in": (
+ 1 / 10,
+ "fraction",
+ ),
+ "out": "10.0%",
+ },
+ {
+ "in": (
+ 1,
+ "NODIVISIBLE",
+ ),
+ "out": 1,
+ },
+ {
+ "in": (
+ 1.1,
+ "NODIVISIBLE",
+ ),
+ "error": (QuantityError, "Fractional quantities of indivisible assets."),
+ },
+ ],
+ "xcp_created": [{"in": (), "out": 604506847920}],
+ "xcp_destroyed": [{"in": (), "out": 725000020}],
+ "xcp_supply": [
+ {
+ "in": (),
+ "out": 603781847900,
+ }
+ ],
+ "creations": [
+ {
+ "in": (),
+ "out": {
+ "XCP": 604506847920,
+ "CALLABLE": 1000,
+ "DIVIDEND": 100,
+ "DIVISIBLE": 100000000000,
+ "FREEFAIRMIN": 10,
+ "LOCKED": 1000,
+ "LOCKEDPREV": 1000,
+ "MAXI": 9223372036854775807,
+ "NODIVISIBLE": 1000,
+ "PAIDFAIRMIN": 0,
+ "PAYTOSCRIPT": 1000,
+ "A95428956661682277": 100000000,
+ "PARENT": 100000000,
+ "QAIDFAIRMIN": 20,
+ "RAIDFAIRMIN": 20,
+ "TESTDISP": 1000,
+ "A160361285792733729": 50,
+ },
+ }
+ ],
+ "destructions": [{"in": (), "out": {"XCP": 725000020}}],
+ "asset_supply": [
+ {
+ "in": ("DIVISIBLE",),
+ "out": 100000000000,
+ }
+ ],
+ "supplies": [
+ {
+ "in": (),
+ "out": {
+ "XCP": 603781847900,
+ "A95428956661682277": 100000000,
+ "CALLABLE": 1000,
+ "DIVIDEND": 100,
+ "DIVISIBLE": 100000000000,
+ "FREEFAIRMIN": 10,
+ "LOCKED": 1000,
+ "LOCKEDPREV": 1000,
+ "MAXI": 9223372036854775807,
+ "NODIVISIBLE": 1000,
+ "PAIDFAIRMIN": 0,
+ "PARENT": 100000000,
+ "PAYTOSCRIPT": 1000,
+ "QAIDFAIRMIN": 20,
+ "RAIDFAIRMIN": 20,
+ "A160361285792733729": 50,
+ "TESTDISP": 1000,
+ },
+ }
+ ],
+ "get_balance": [
+ {"in": (ADDR[0], "XCP"), "out": 91674999880},
+ {"in": (ADDR[0], "foobar"), "out": 0},
+ ],
+ "get_asset_name": [
+ {"in": (1, DP["default_block_index"]), "out": "XCP"},
+ {"in": (0, DP["default_block_index"]), "out": "BTC"},
+ {"in": (453, DP["default_block_index"]), "out": 0},
+ ],
+ "holders": [
+ {
+ "in": ("XCP",),
+ "out": [
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "address_quantity": 91674999880,
+ "escrow": None,
+ },
+ {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "address_quantity": 99999990,
+ "escrow": None,
+ },
+ {
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "address_quantity": 300000000,
+ "escrow": None,
+ },
+ {
+ "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
+ "address_quantity": 92999138821,
+ "escrow": None,
+ },
+ {
+ "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "address_quantity": 92949130360,
+ "escrow": None,
+ },
+ {
+ "address": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ "address_quantity": 92949122099,
+ "escrow": None,
+ },
+ {
+ "address": "mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK",
+ "address_quantity": 14999857,
+ "escrow": None,
+ },
+ {
+ "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ "address_quantity": 46449548498,
+ "escrow": None,
+ },
+ {
+ "address": "tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx",
+ "address_quantity": 92999030129,
+ "escrow": None,
+ },
+ {
+ "address": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "address_quantity": 0,
+ "escrow": None,
+ },
+ {
+ "address": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "address_quantity": 92945878046,
+ "escrow": None,
+ },
+ {
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "address_quantity": 0,
+ "escrow": None,
+ },
+ {
+ "address": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "address_quantity": 100,
+ "escrow": None,
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "address_quantity": 100000000,
+ "escrow": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "address_quantity": 100000000,
+ "escrow": "21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b",
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "address_quantity": 100000000,
+ "escrow": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a",
+ },
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "address_quantity": 100000000,
+ "escrow": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
+ },
+ {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "address_quantity": 10,
+ "escrow": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ },
+ {
+ "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ "address_quantity": 10,
+ "escrow": "d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048",
+ },
+ {
+ "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
+ "address_quantity": 100,
+ "escrow": None,
+ },
+ ],
+ },
+ {
+ "in": ("DIVISIBLE",),
+ "out": [
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "address_quantity": 98799999999,
+ "escrow": None,
+ },
+ {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "address_quantity": 100000000,
+ "escrow": None,
+ },
+ {
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "address_quantity": 1000000000,
+ "escrow": None,
+ },
+ {
+ "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ "address_quantity": 100000000,
+ "escrow": None,
+ },
+ {
+ "address": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "address_quantity": 1,
+ "escrow": None,
+ },
+ ],
+ },
+ ],
+ "last_db_index": [{"in": (), "out": DP["default_block_index"] - 1}],
+ "get_credits_by_asset": [
+ {
+ "in": ("A160361285792733729",),
+ "out": [
+ {
+ "block_index": 310504,
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "A160361285792733729",
+ "quantity": 20,
+ "calling_function": "escrowed premint",
+ "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9",
+ "tx_index": 505,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "block_index": 310505,
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "A160361285792733729",
+ "quantity": 10,
+ "calling_function": "escrowed fairmint",
+ "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8",
+ "tx_index": 506,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "block_index": 310506,
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "A160361285792733729",
+ "quantity": 20,
+ "calling_function": "escrowed fairmint",
+ "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18",
+ "tx_index": 507,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "block_index": 310506,
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "A160361285792733729",
+ "quantity": 7,
+ "calling_function": "unescrowed fairmint",
+ "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8",
+ "tx_index": 506,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "block_index": 310506,
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "A160361285792733729",
+ "quantity": 3,
+ "calling_function": "fairmint commission",
+ "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8",
+ "tx_index": 506,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "block_index": 310506,
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "A160361285792733729",
+ "quantity": 14,
+ "calling_function": "unescrowed fairmint",
+ "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18",
+ "tx_index": 507,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "block_index": 310506,
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "A160361285792733729",
+ "quantity": 6,
+ "calling_function": "fairmint commission",
+ "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18",
+ "tx_index": 507,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ {
+ "block_index": 310506,
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "A160361285792733729",
+ "quantity": 20,
+ "calling_function": "premint",
+ "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9",
+ "tx_index": 0,
+ "utxo": None,
+ "utxo_address": None,
+ },
+ ],
+ }
+ ],
+ "get_debits_by_asset": [
+ {
+ "in": ("A160361285792733729",),
+ "out": [
+ {
+ "block_index": 310506,
+ "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "asset": "A160361285792733729",
+ "quantity": 50,
+ "action": "unescrowed fairmint",
+ "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9",
+ "tx_index": 0,
+ "utxo": None,
+ "utxo_address": None,
+ }
+ ],
+ }
+ ],
+ },
+}
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/send.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/send.py
new file mode 100644
index 0000000000..a3b84b8980
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/send.py
@@ -0,0 +1,626 @@
+import binascii
+
+from counterpartycore.lib import exceptions
+
+from ..params import (
+ ADDR,
+ MULTISIGADDR,
+ P2SH_ADDR,
+ P2WPKH_ADDR,
+)
+from ..params import DEFAULT_PARAMS as DP
+
+SEND_VECTOR = {
+ "send": {
+ "validate": [
+ {"in": (ADDR[0], ADDR[1], "XCP", DP["quantity"], 1), "out": ([])},
+ {"in": (ADDR[0], P2SH_ADDR[0], "XCP", DP["quantity"], 1), "out": ([])},
+ {"in": (P2SH_ADDR[0], ADDR[1], "XCP", DP["quantity"], 1), "out": ([])},
+ {
+ "in": (ADDR[0], ADDR[1], "BTC", DP["quantity"], 1),
+ "out": (["cannot send bitcoins"]),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3, 1),
+ "out": (["quantity must be in satoshis"]),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", -1 * DP["quantity"], 1),
+ "out": (["negative quantity"]),
+ },
+ {"in": (ADDR[0], MULTISIGADDR[0], "XCP", DP["quantity"], 1), "out": ([])},
+ {"in": (ADDR[0], ADDR[1], "MAXI", 2**63 - 1, 1), "out": ([])},
+ {"in": (ADDR[0], ADDR[1], "MAXI", 2**63, 1), "out": (["integer overflow"])},
+ {
+ "in": (ADDR[0], ADDR[6], "XCP", DP["quantity"], 1),
+ "out": (["destination requires memo"]),
+ },
+ ],
+ "compose": [
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", DP["small"]),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ },
+ {
+ "in": (P2SH_ADDR[0], ADDR[1], "XCP", DP["small"]),
+ "out": (
+ P2SH_ADDR[0],
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ },
+ {
+ "in": (ADDR[0], P2SH_ADDR[0], "XCP", DP["small"]),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [(P2SH_ADDR[0], None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] * 10000000),
+ "error": (exceptions.ComposeError, "insufficient funds"),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3),
+ "error": (exceptions.ComposeError, "quantity must be an int (in satoshi)"),
+ },
+ {
+ "in": (ADDR[0], MULTISIGADDR[0], "XCP", DP["quantity"]),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ },
+ {
+ "in": (MULTISIGADDR[0], ADDR[0], "XCP", DP["quantity"]),
+ "out": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ },
+ {
+ "in": (MULTISIGADDR[0], MULTISIGADDR[1], "XCP", DP["quantity"]),
+ "out": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [
+ (
+ "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "MAXI", 2**63 - 1),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff",
+ ),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "MAXI", 2**63 + 1),
+ "error": (exceptions.ComposeError, "insufficient funds"),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "BTC", DP["quantity"]),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 100000000)],
+ None,
+ ),
+ },
+ {
+ "in": (ADDR[0], P2SH_ADDR[0], "BTC", DP["quantity"]),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy", 100000000)],
+ None,
+ ),
+ },
+ {
+ "comment": "resolve subasset to numeric asset",
+ "in": (ADDR[0], ADDR[1], "PARENT.already.issued", 100000000),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ binascii.unhexlify("0000000001530821671b10650000000005f5e100"),
+ ),
+ },
+ {
+ "comment": "send to a REQUIRE_MEMO address, without memo",
+ "in": (ADDR[0], ADDR[6], "XCP", 100000000),
+ "error": (exceptions.ComposeError, ["destination requires memo"]),
+ },
+ {
+ "comment": "send to a REQUIRE_MEMO address, with memo text, before enhanced_send activation",
+ "in": (
+ {
+ "source": ADDR[0],
+ "destination": ADDR[6],
+ "asset": "XCP",
+ "quantity": 100000000,
+ "memo": "12345",
+ "use_enhanced_send": True,
+ }
+ ),
+ "error": (exceptions.ComposeError, "enhanced sends are not enabled"),
+ },
+ {
+ "comment": "send from a standard P2PKH address to a P2WPKH address",
+ "mock_protocol_changes": {"enhanced_sends": True, "segwit_support": True},
+ "in": (
+ {
+ "source": ADDR[0],
+ "destination": P2WPKH_ADDR[0],
+ "asset": "XCP",
+ "quantity": 100000,
+ "memo": "segwit",
+ "use_enhanced_send": True,
+ }
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x86\xa0\x80u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6segwit",
+ ),
+ },
+ {
+ "comment": "send to multiple addresses, before mpma_sends activation",
+ "mock_protocol_changes": {
+ "enhanced_sends": True,
+ "options_require_memo": True,
+ "mpma_sends": False,
+ },
+ "in": (
+ {
+ "source": ADDR[0],
+ "destination": [ADDR[1], ADDR[2]],
+ "asset": ["XCP", "XCP"],
+ "quantity": [100000000, 100000000],
+ "memo": "12345",
+ "use_enhanced_send": True,
+ }
+ ),
+ "error": (exceptions.ComposeError, "mpma sends are not enabled"),
+ },
+ ],
+ "parse": [
+ {
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ "tx_index": DP["default_tx_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "quantity": 100000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "block_index": DP["default_block_index"],
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x0b\xeb\xc2\x00",
+ "block_time": 155409000,
+ "fee": 10000,
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "quantity": 0,
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "in": (
+ {
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00X\xb1\x14\x00",
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_hash": "736ecc18f9f41b3ccf67dded1252969e4929404d6ad657b2039b937a7785cf3e",
+ "supported": 1,
+ "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "btc_amount": 5430,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "quantity": 0,
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "status": "valid",
+ "tx_hash": "736ecc18f9f41b3ccf67dded1252969e4929404d6ad657b2039b937a7785cf3e",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "in": (
+ {
+ "block_index": DP["default_block_index"],
+ "btc_amount": 7800,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\x00\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x01\xf4",
+ "block_hash": DP["default_block_hash"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "supported": 1,
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "quantity": 500,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 500,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 500,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "btc_amount": 7800,
+ "block_hash": DP["default_block_hash"],
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "destination": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "supported": 1,
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "quantity": 100000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "supported": 1,
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 7800,
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "quantity": 100000000,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "destination": "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "supported": 1,
+ "block_time": 155409000,
+ "fee": 10000,
+ "block_index": DP["default_block_index"],
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "btc_amount": 7800,
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ "tx_index": DP["default_tx_index"],
+ "block_hash": DP["default_block_hash"],
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "quantity": 100000000,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "block_index": DP["default_block_index"],
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "btc_amount": 7800,
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "supported": 1,
+ "block_hash": DP["default_block_hash"],
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "MAXI",
+ "block_index": DP["default_block_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "quantity": 9223372036854775807,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "MAXI",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "quantity": 9223372036854775807,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "MAXI",
+ "block_index": DP["default_block_index"],
+ "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "quantity": 9223372036854775807,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "Reject a send without memo to a REQUIRE_MEMO address",
+ "mock_protocol_changes": {"options_require_memo": True},
+ "in": (
+ {
+ "block_index": DP["default_block_index"],
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "btc_amount": 7800,
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ "source": ADDR[0],
+ "destination": ADDR[6],
+ "supported": 1,
+ "block_hash": DP["default_block_hash"],
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[6],
+ "quantity": 50000000,
+ "source": ADDR[0],
+ "status": "invalid: destination requires memo",
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ ],
+ },
+}
diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py
new file mode 100644
index 0000000000..9b915093ef
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py
@@ -0,0 +1,364 @@
+from counterpartycore.lib import config, exceptions
+
+from ..params import (
+ ADDR,
+ DP,
+)
+
+UTXO_1 = "344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1"
+UTXO_2 = "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1"
+UTXO_3 = "1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1:1"
+
+UTXO_VECTOR = {
+ "utxo": {
+ "validate": [
+ {
+ "in": (
+ ADDR[0],
+ UTXO_1,
+ "XCP",
+ 100,
+ ),
+ "out": [],
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", 100),
+ "out": ["If source is an address, destination must be a UTXO"],
+ },
+ {
+ "in": (UTXO_1, UTXO_1, "XCP", 100),
+ "out": [
+ "If source is a UTXO, destination must be an address",
+ "insufficient funds for transfer and fee",
+ ],
+ },
+ {
+ "in": (ADDR[0], UTXO_1, "XCP", 0),
+ "out": ["quantity must be greater than zero"],
+ },
+ {
+ "in": (ADDR[0], UTXO_1, "XCP", 99999999999999),
+ "out": ["insufficient funds for transfer and fee"],
+ },
+ {
+ "in": (
+ ADDR[0],
+ UTXO_1,
+ "BTC",
+ 100,
+ ),
+ "out": ["cannot send bitcoins", "insufficient funds for transfer"],
+ },
+ {
+ "in": (
+ ADDR[0],
+ UTXO_1,
+ "XCP",
+ config.MAX_INT + 1,
+ ),
+ "out": ["integer overflow", "insufficient funds for transfer and fee"],
+ },
+ {
+ "in": (
+ ADDR[0],
+ UTXO_1,
+ "XCP",
+ "100",
+ ),
+ "out": ["quantity must be in satoshis"],
+ },
+ ],
+ "compose": [
+ {
+ "in": (
+ ADDR[0],
+ UTXO_1,
+ "XCP",
+ 100,
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"dmn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc|344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1|XCP|100",
+ ),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", 100),
+ "error": (
+ exceptions.ComposeError,
+ ["If source is an address, destination must be a UTXO"],
+ ),
+ },
+ {
+ "in": (
+ UTXO_2,
+ ADDR[1],
+ "XCP",
+ 100,
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100",
+ ),
+ },
+ ],
+ "unpack": [
+ {
+ "in": (
+ b"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc|344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1|XCP|100",
+ ),
+ "out": (
+ ADDR[0],
+ "344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1",
+ "XCP",
+ 100,
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"dmn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc|344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1|XCP|100",
+ "source": ADDR[0],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": ADDR[0],
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "debits",
+ "values": {
+ "address": ADDR[0],
+ "asset": "XCP",
+ "quantity": 100,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "tx_index": DP["default_tx_index"],
+ "action": "attach to utxo",
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "address": ADDR[0],
+ "asset": "XCP",
+ "quantity": 10,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "tx_index": DP["default_tx_index"],
+ "action": "attach to utxo fee",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "utxo": UTXO_1,
+ "address": None,
+ "asset": "XCP",
+ "quantity": 100,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "tx_index": DP["default_tx_index"],
+ "calling_function": "attach to utxo",
+ },
+ },
+ {
+ "table": "sends",
+ "values": {
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "status": "valid",
+ "source": ADDR[0],
+ "destination": UTXO_1,
+ "asset": "XCP",
+ "quantity": 100,
+ "fee_paid": 10,
+ },
+ },
+ {
+ "table": "messages",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "command": "insert",
+ "category": "sends",
+ "bindings": '{"asset":"XCP","block_index":310704,"destination":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}',
+ "event": "ATTACH_TO_UTXO",
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100",
+ "source": ADDR[0],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": ADDR[0],
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "debits",
+ "values": {
+ "utxo": UTXO_2,
+ "asset": "XCP",
+ "quantity": 100,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "tx_index": DP["default_tx_index"],
+ "action": "detach from utxo",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "utxo": None,
+ "address": ADDR[1],
+ "asset": "XCP",
+ "quantity": 100,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "tx_index": DP["default_tx_index"],
+ "calling_function": "detach from utxo",
+ },
+ },
+ {
+ "table": "sends",
+ "values": {
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "status": "valid",
+ "source": UTXO_2,
+ "destination": ADDR[1],
+ "asset": "XCP",
+ "quantity": 100,
+ "fee_paid": 0,
+ },
+ },
+ {
+ "table": "messages",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "command": "insert",
+ "category": "sends",
+ "bindings": '{"asset":"XCP","block_index":310704,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee_paid":0,"msg_index":0,"quantity":100,"source":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","status":"valid","tx_hash":"72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f","tx_index":705}',
+ "event": "DETACH_FROM_UTXO",
+ },
+ },
+ ],
+ },
+ ],
+ "move_assets": [
+ {
+ "in": (
+ {
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "utxos_info": f"{UTXO_2} {UTXO_3}",
+ },
+ ),
+ "records": [
+ {
+ "table": "debits",
+ "values": {
+ "utxo": UTXO_2,
+ "address": None,
+ "asset": "XCP",
+ "quantity": 100,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"] - 1,
+ "tx_index": DP["default_tx_index"],
+ "action": "utxo move",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "utxo": UTXO_3,
+ "address": None,
+ "asset": "XCP",
+ "quantity": 100,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"] - 1,
+ "tx_index": DP["default_tx_index"],
+ "calling_function": "utxo move",
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "utxo": UTXO_2,
+ "address": None,
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"] - 1,
+ "tx_index": DP["default_tx_index"],
+ "action": "utxo move",
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "utxo": UTXO_3,
+ "address": None,
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "event": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"] - 1,
+ "tx_index": DP["default_tx_index"],
+ "calling_function": "utxo move",
+ },
+ },
+ {
+ "table": "sends",
+ "values": {
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "status": "valid",
+ "source": UTXO_2,
+ "destination": UTXO_3,
+ "asset": "XCP",
+ "quantity": 100,
+ "fee_paid": 0,
+ },
+ },
+ {
+ "table": "sends",
+ "values": {
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "block_index": DP["default_block_index"],
+ "status": "valid",
+ "source": UTXO_2,
+ "destination": UTXO_3,
+ "asset": "DIVISIBLE",
+ "quantity": 1,
+ "fee_paid": 0,
+ },
+ },
+ ],
+ }
+ ],
+ }
+}
diff --git a/counterparty-core/counterpartycore/test/fixtures/params.py b/counterparty-core/counterpartycore/test/fixtures/params.py
index b81cd32ad4..3dc73080d7 100644
--- a/counterparty-core/counterpartycore/test/fixtures/params.py
+++ b/counterparty-core/counterpartycore/test/fixtures/params.py
@@ -68,7 +68,8 @@
"burn_end": 4017708,
"burn_quantity": int(0.62 * UNIT),
"burn_verysmall_quantity": int(0.0001 * UNIT),
- "default_block_index": 310000 + 501,
+ "default_block_index": 310000 + 704,
+ "default_tx_index": 705,
"default_block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
"regular_dust_size": 5430, # This was the default value used in a lot of tests historically
}
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios.py b/counterparty-core/counterpartycore/test/fixtures/scenarios.py
index d04f4ed995..8069d32262 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios.py
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios.py
@@ -233,11 +233,124 @@
),
{"encoding": "opreturn"},
],
- ["create_next_block", 500],
+ [
+ "fairminter",
+ (ADDR[0], "FREEFAIRMIN", "", 0, 1, 10),
+ {"encoding": "opreturn"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "fairminter",
+ (ADDR[0], "PAIDFAIRMIN", "", 10, 1, 0),
+ {"encoding": "opreturn"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "fairmint",
+ (ADDR[0], "FREEFAIRMIN", 0),
+ {"encoding": "opreturn"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "fairminter",
+ (
+ ADDR[0], # source
+ "RAIDFAIRMIN", # asset
+ "", # asset_parent
+ 10, # price
+ 1, # quantity_by_price
+ 10, # max_mint_per_tx
+ 30, # hard_cap
+ 20, # premint_quantity
+ ),
+ {"encoding": "opreturn"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "fairminter",
+ (
+ ADDR[0], # source
+ "QAIDFAIRMIN", # asset
+ "", # asset_parent,
+ 10, # price=0,
+ 1, # quantity_by_price
+ 0, # max_mint_per_tx,
+ 50, # hard_cap=0,
+ 20, # premint_quantity=0,
+ 0, # start_block=0,
+ 0, # end_block=0,
+ 20, # soft_cap=0,
+ 400000, # soft_cap_deadline_block=0,
+ 0.5, # minted_asset_commission=0.0,
+ ),
+ {"encoding": "opreturn"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "fairminter",
+ (
+ ADDR[1], # source
+ "A160361285792733729", # asset
+ "", # asset_parent,
+ 10, # price=0,
+ 1, # quantity_by_price
+ 0, # max_mint_per_tx,
+ 50, # hard_cap=0,
+ 20, # premint_quantity=0,
+ 0, # start_block=0,
+ 0, # end_block=0,
+ 20, # soft_cap=0,
+ 310520, # soft_cap_deadline_block=0,
+ 0.3, # minted_asset_commission=0.0,
+ False, # burn_payment=False,
+ True, # lock_description=False,
+ True, # lock_quantity
+ True, # divisible
+ "softcap description",
+ ),
+ {"encoding": "multisig"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "fairmint",
+ (ADDR[1], "A160361285792733729", 10),
+ {"encoding": "opreturn"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "fairmint",
+ (ADDR[1], "A160361285792733729", 20),
+ {"encoding": "opreturn"},
+ {"short_tx_type_id": True, "fairminter": True},
+ ],
+ [
+ "utxo",
+ (ADDR[0], "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", "XCP", 100),
+ {"encoding": "multisig"},
+ {"short_tx_type_id": True, "utxo_support": True},
+ ],
+ [
+ "utxo",
+ (
+ ADDR[0],
+ "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1",
+ "DIVISIBLE",
+ 1,
+ ),
+ {"encoding": "multisig"},
+ {"short_tx_type_id": True, "utxo_support": True},
+ ],
+ [
+ "issuance",
+ (ADDR[5], "TESTDISP", 1000, None, False, None, None, "Test dispensers asset"),
+ {"encoding": "multisig"},
+ ],
+ ["dispenser", (ADDR[5], "TESTDISP", 100, 100, 100, 0), {"encoding": "opreturn"}],
+ ["create_next_block", 703],
]
PARSEBLOCKS_FIXTURE = UNITTEST_FIXTURE + [
- ["create_next_block", 501, False] # parse_block=False so we can unittest blocks.parse_block
+ ["create_next_block", 704, False] # parse_block=False so we can unittest blocks.parse_block
]
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql
index 07a2f5ec48..b78342ec48 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.sql
@@ -19,108 +19,108 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'98ccdf7cd2fb29a8a01cbed5f133b70b6966c6c56354dad00baacedd0673c87e','faf6476a908c85f6e26ca5d182688d6da3f326296602d5ad3aa5979cb8bc110b','b364e4b262b19375281c08af25e2ce24e68e5ec3fb881f680c318fc258e9b02b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'fd43dc5efe2ee796ef7d24f8d478a67aa58bf85f538ef4b9a49b983a315deb26','544f7958bf7661b78699c708ba1097da0dbb044acee3d1d8aa9a32d6b659a14d','508f3f345fea51bf28a58de66ce187d1de1f66b1aaf1f2752e6bdbb459d253ac',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'dbae4fff32545b4f3c104fb5a051dcaeacecd27401c84c09f93923b8bc30eab5','ee37e75a4eba165ed448b7cf96d188d7f738aca4d90a781c7f473974e12564d5','433747661a40185a36239da6ba39d8d3fe35bfb8080a674d6d46e74f7c71fe9a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'fd0ae9793d9513540246b94ad116fc0531e8e07b2c014752e175a12e2a7a82d4','107902b17490957ebc0d2cb5dba1f5e667e3a393acfd8b3adde9f6b17aaad5c4','01a5158be117031c2249b66ea64def6a7fa907cc99484335d67fadf9b747f3e2',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'bd894777a85b731155a0d6362766b4220c03db4f3e5fbf030d6c2529cb5f3537','65e6a7c64c8439a60fb066d96d5165e6e40974bd1b98812ac6a4172fb1db1511','ffab6b5c0592a131d2ee25f07a31b86d9a35a48ca313bcf129ddeddb84b6b04c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'264c98f1d460f78e52def545d25482fd76549a5309d04841bc27b335f06470a2','9ede5548f7cb273af825360a6285fe9a51e9625c9084b2dde7bec013dec24f0e','92d9412fe93d5ea10d281e838ab44f67f61078ca1df6e621b48d9e50a01e18e7',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'a1f2aa5a0b8d030c2fc4e1243c3173319ecf68d232262ea3dc8bfdd03a3f923a','afa257be6b0f57581b8f1b932b3c8473ff5c89e4bd6c3d3e3dd6a8c3cd9b09d3','5259477ce9e5a469ba99387b432342722700d86f80912613aa648460421d5261',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'8709aa2d5064ea2b7ab51a887d21f5fddcb7046753cd883317b533ed121f8504','40941bb90c086bd2716de8afc1fba5eb75721143a86a606ef99ee3312de95614','0b9ffff66cfe4698c16889013800547e79cdad7d3f84eff57e14828a3dbe8a52',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'c1c516176fe38b69b31e3668b5ef20805bd90d3112c77f5652f838af8e7f604a','9b186632fe722ba57daaa01573568c3d3405f7fcb0a729005a6338266a4debfa','7fdd558da169a125a365a206d1606ef1594ce7dc3c8102d9de55a0a08f8036a8',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'ae8ee9e681f0ac96de96babc1c80e5188b3e0cb91074a0dfd8511ee7d0ae64c8','39f4f154cbeae9a65b43ac831b2d5ad0e6f6575b909b979bd4bd97dadbab4cdd','262ab7169bddff900a7be3663dc902396e4e58f34c0112f1293a2b2040856f03',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'0451ffa5d7ffb0e588e58ac7eacf77f6b3e17f1d27c1039f03d7716b16fb234f','0cea2e2e06c6423d1c5ba19f6128fbe8fe6d6c3688316c9c35dd31cf03d38c97','a363f1f103b4d39b9056e391559737a36c56439c6b3a12854f306dca0e1ed067',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'dfaae3f28c2f75e4bcc49034ff2a191b5a41b88035c5d266181617c8c65ad5d3','0134329cfdaf63e5946b9b5a94b73f59b9a870d4569ca07c0cce078bf13714a5','c6c72bb6b85bbf0d1fa5e18500990cdf69c7b7b1d315d8639f6c6afabcd31a26',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'c711e8cf2d9bbed01724a7b22cbd4900a4fd0a126bb7ecbd7c97ca15a6276553','9a3fb4fb846c9ffff3a50a0a31f3ac3900ba7048a60dd69c6e14752734358f1c','7e2be8d32d548626652064d9d37f0942b4a78667630e49c3e8e739d10478fb75',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'3dfa5822de8a4c674f1517b17e50d2ef63ccbb1fc4ae96fe5e1dc05cd353aa4b','6228a449b24d607b8fe1aea60a0292874cfe515a9440bee2829f6e61efa0b2a6','065ed4ebeb7d71c4d6c81c65e46f8682fc8eabaa8c08b0a8298fa93140a6585f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'49fcaed957776bc62c9f1feac30dad8c0574596d312f9efee7a453e00bf64866','700cf4c54e23c0cfb4d8b02bc6cb1ca509637dd95312629625aa92d32d5548d2','912195d824c04576868edda92286e9720896de5c90b6477ee927e78553c23283',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'4e4abd3e8ab2658a7ac673e3a178ceac76fee41cf48bb6ed007d241c079979bf','288c9c0f37cb0c2e9db66d4b88b165391a67f06016ac84c485e9b9158ee51f2d','b0cc104a22aa13139de9b6ddd2f363738160a44272d0c5f60e9568b4cd718f23',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'17a28cca0777254af26544edfefcad8810e847e5d173fded9a7813719cf1162f','1bf7e0a4aa8356584087591a8c8e8b28185a6ebfe1a15a85f01165a04ff57913','de03065dfd7c73a58301d2ad9411a1f7a4eb42123adaba0ac82f4b26412ab29d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1fb58120e9eb78908fda6265cad12b4a5770701e9a271bd5c4bc94059bd3bab5','62678a570c40b5a12469e442b3a54f1416d9113de2db501f37ed533f345e71c1','22b69c233a30db17deaf78087019583ae1097211b856b9235b11e341b0420b03',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'304243c1b11644e04d325d7100e4c757c07b874f0349e60163a5a544e84e951f','a174e4813aa967f5466148f27f4f8511ed9404295bf613e112c08b72eb3229ad','277c84ad2141397b5cd35cac07e45452ecdd845668f7684bb1c1679f4ef6a50b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'fc9905ee4863b3cf29a3e558ee690a24ed978a4fd79c464bdde30a34cfff19fe','c551c2094651cd0e06e0cd9d513fec771b69f4bb89c3034f201c89f703cf8a23','0928aaa2af960f1750455c96196f5f331bce38c09b7cc315f40aacfc8b363c3b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'e433feac4a09ad727bd3764b10a568acf5c659745a695e9d7e8790514f6bc98e','087d41720991e4b6bb72c6141334a65c9a289454dd8fd57edc33a09db467d086','859eb68b2ff99d0621c4d634d717d985688b8e0ca83b84e330446a25ccbd5fe1',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'622f92da40eae0b1b57218b32ad18daf7d79c9e0202fed4a288d75b8fdcd19d2','caa77e83354d56437795411f9625dff332c0dd39d059a0ad7381fe1f37e38999','9e323ccc0a72f968a5886d5bd8cd26c990602bd87d0e65e8cbd64343c4b02bfe',NULL,NULL,1);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'b7aa8d9ebc37d52d8dcce2cc17431d6edf5a183b73ac85bb3d91276592215cfd','df23960a57099b0b64572553e56794b1eff3004e684ee2b31187b585aeb03587','a9bfc8463d636a888c8ae61b3fc13d2d32768fa1920b980cb5ea967b4863e6ec',NULL,NULL,1);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'501c058860063ca599f3b946d465b3bbd84fd483a2a80527e456e3de32b48a19','c680a6d4f839ba4f9420a99f0512e51fc1db0b661ed027332f440c6089eb615a','82ecd86662e345e85c8e68ef7a8dbad744af2415bd71756cdd5824ac35b9655e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'222986ec44fae1a6196d64dec24b79872970823f17bf0459d3b247bdef316675','f40aab7ef7167a17e35279423d9c14d49a9ebc05691fa658b09add1373216959','2d94009516ad0a6a7696d3c90c4a18b18970ed29702a91684120939b7f7e424f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'bcd88006b9cb98445a74c656d424435e82eeaef95dd9c54e394b42808dc9cb8b','0e3736813d3c0e789cd9474449abcf83118b5559cbc2f4dfd4d3ee51b5847a57','07d351ee43763fbb80ea1d600cb501b6f8b0105cf3d3d277b9a9714527a81235',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'3de7bf2043ac2e68bc9eaf8d1c12195a4f2400bc78c8deed0d487af11edf401e','c3572580398fcd71e5a1fef6e10217a99dec1aa605d61830ebb64ea65b7907ae','3b432d9f048634678497de80535eced0de2db802c86b3ecd6f7e3052285f2819',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'6c2a67783cf36e8987dc1805f87532ee1b94f79fb00952d8ee4cf3daaf655f85','b8b9d102d56df94d4fcea6f8aeb92d3cb859d3281c9fac7407842b7f05313737','139682b87ae2b72b9fbd62ca0d3788ab4bf20239f6e27e0142e7b4d810b3138d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'659c73390e2e7eccc07d690fb438181c604787208bc45f466e57721fa1e21a64','55eafa176bc145ec7b98497c8a156226c68bd3b921cbdd06a890b2bd660ca050','281c45bea9359ef175c8e8b50167fe72be91b589dd7e589d51280d15ffefb8dc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'87449e7ff7316e49012934d83c1f5b733cedf39680299a9582eb216e260e0c02','c2fc809ff3ef6b74b10b1439fe15c275c6fd925e92dea73cf9d603948aba0d8f','39af1ee82e4334b2b0596abf86dc82603d9b2c8a5d046c5db281ecf34b303a30',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'6c4a7f749d0308edf5c88b3ea4de3b1d497ba3bc06435594d77686318b744b0f','45db1d0cde22349299df8245e7ed24d308e1b1cb227098178606650f20832aaa','eaf3156993560de86b2de78af58593d00da00db7fd7bab33a7f7cc56d49944f6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'ecc04b1b2c7803ca17dc2a32adebd0960de2c04c8dbfec9cd88771dd883c885a','981653075dd609f44e0a5673dac2b63824b84e26080ec226547892c67dd7cc33','0806bca89167cf716795644fc4577dc88f73a1ab2420109a4a7fb504dade4e65',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'01e769c5b990db44a9e534bc6c759567eb4283e0ea252578dd525923c7fde02c','81778134948c3577216eeeb6db7fe9687545d855dc3b5f6bdf6053a7edf3eaf3','49cd53ea397947d31318ad902433661e23e78cac31fd544f67ee87f7cf5a5e47',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'2df6b8dca0ffa8d6d55997605188637c2b86300e4dd7ebe3f1f275690169fd46','650b0875a0fb44a0ad1b04edf1a0eb1b50b5ecc423c6ecdd37b5aa60b5e85663','03e1ca09ca2ad95c3d8625cdbdcefd20d69f2442d56a49c570d85c74935e232a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'7f0dc7c1527a7d11831d272f0295eacabcb96fa3599f5a716bd29ba1bb6b7577','e9d6c050b077d8e6902999bf64a0f1bf420c881b8a32c511ae81b0359e83a542','40b21162c2bdec9408ffa79df90b098be7f3adfcbcd8f6bc6e6064d0b3a571ac',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'5e0cdf1764ed94672c29144f9c1bd9c3e70784f17c9dd1c9e4ce703a99bb3599','e755b5d80c9995dfa5763b080b9bdd349fd7b5bd940a661836ad418202b77384','aaaa2778599705d04a371a7488537f432426d15e6f3b3230f0d86f8fa7f266a0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'96da34a5a66b89aa3e8857b4a4edca51a56a0cbbfe600d8153077875624a153e','cbc0139fb09af6a6c63e07847a37f15767a1f7b01d6305cf40179de841c4f093','a68c4c24471575ea622ce59af306b947b521f01abeaa347a8e33eb651cf91a25',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'d481358c19b4220aa9a3d135fd0651fada6df8d0f27b9ec954ac07950e876c0c','0493eb6bbab5ced7f25c6f5a3b32e4e2da321a5c761855ef64b5e050ddcfe431','7aa07b58643d61192acc195054c76aa198bc0615a8d1015efd485e6078c84797',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'4e9fcc454ee53b3617c792eb6577c2eefa6eee6aa4a2925538cb1976d48817c9','64b95af50bbee190166820a564e858e5c86769c04b22a68c2bed5adee0f7292f','d06d2f843297dda75791f6d438a0c22a679fa705606c8a82f71c3a316e24bfdd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'795c5652d9679942a02060edfb497b072009695d9a72fb144fa3591dba65a2ce','9927f1558918a59509f668789e75198eb432fd63e0a7ffb46160d002c0932188','975d014fa7da9eb851641c145a0f55fde983a0d8670ed0008dbed98bde05f8b7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'e569e6e8083818e594e92b3356833e8dd54fcfcf5ed25af0d09e36e24b9dd441','969f7176f1a56d43e0d1b4da9cbac17cb1a934be64c12b3784ef33b584513271','8f1a984f0da070ff524c9fc9517efd3567d25bacc25f29ba32d03d06a7c43c36',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'2247fcc633175a91921d226f412e56822379c79ca799117c39ecaaca0a702192','29cb8f1b29affa41416aca0265599863f6b739538f13bc6672f6b3c17e411045','373d191cad758b4644384ebfbef2cf1e49c038716f6672447b5d36e69bad7d88',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'0246c3a2a70b33a038ccdb816f6b0922a50d08310f360cbd5db4df58e97fc4dd','d1ca4c9abe26de83d9a0170461c87f2c219926f8dcb0c48793d74a0cbf01a43a','3758f623adbf54b2e0471b990dd67c65bebbf41d86e3277bda367bcc0a98a8cc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'cbe39e9d1a132cdc568f893bbc3d4f55d27bacf7af31f027ebea1b4bed9f0009','452b2e3ff4075f702cddcb4b8fd9006c756dda7a3527d635f637a200fd621c91','a209a4e543642de2708ff915d0c0e3e966b378dd48feef2430a7d55ac8ff238c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'1202b05e118f0940ce270d9002d010076115a0197d889fee2d971a77709899bc','527114d86a06f44f12e1f789f095227f9710b47e95251cdbd6f4c03309eae61d','863dbb043614eab0029f0ebafb1eb4b12902fde830dd1c05722c01ba3923403c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'0bc49f765419c0b5b4911cccf03b0d9959aabacda266480b98245de0c0d35fc5','ed6954fc7aadd8f80684cc67580b9cc16f9a402296ac91c021de0148a1ccb4a8','023de4e9ae06942b0e09ae12622949346a414f2a4f3d882786f5bb261639d701',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'e42bf9806d0ff3a0663756f7955b30735747d14fcb0915c89884baa12795163d','2e62ee5d03044d0b6086419a6d2fed78b7db3bee75a2bc158bbc04a8f5c34908','b9e8dd64f4addd93fcdc8ea8424e96947da4cbadd60abe13f0f53a6d65a39426',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'b19b5e14741284b4ca06b736120e903363651460a6efb3ede1aca3a4f3c00df1','bd40f4de40c172e5b5997091f4a069ea54d25504421e6225ef3d9ee360fbca6c','36c01e15c47bcc42b22cf98ddcecdad49522ac234a205d5abff4939ee8478dbf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'e870de901ba86d65d0e2053251ffb32cc7dffb55fcc2efbc006a2b9137314a39','d89730ea689c2912f38a2d2dc86caf6dc35a3e183c4d394129f21368f5c1d371','4de4097a707a21573097f67e72cc9f52b502e0a488b2c17934c60ff9aec3ca64',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'44cf354cdc8552ed37e5911340397d3531d0ba45100feae27377130d4ddef359','1100866c04ae89913abf573ee61b3a7b56ec8fb7526c7d9c9938d61a187586ab','fefb42b3c87927779046cd4ee3e6956ae79798cf47d9fdcbda09d59f99139479',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'7d72f11f48ac99553e1b2c52a7ff5645fbe05728a10a002727b9270dbb32daed','1d95ff7cb416f1915ba7db0099ba9591b97c6bc673cb43296cc82655627eb1ad','ed89674f1bdb8bff262936bdd369f9b33ada1cce1466ea08a7f3bd9fbfc06cd5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'35a965dc90686fc4eb20450da81ca8db9125e25c2cdd7146fd61d98841d80c24','9d15589506565edb31f7627a37c1f6a6bca01d584b0dc815e8603689f07a80db','a1c291e9a5685784681f9f1a9021d1cd88249d7039460ba4a1ef3a61bc6f1e2f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'8604d503e7194ee1c8ebe1143019207b2aad163655107a3d23d018ef26cef550','40053c62babd7f69b9822b6d4223732008d45250146216762da4e13b1b9d3a3b','5554df4e98fed870e873dd4b78c7e5fcf9a2066e573c6a05f48200e435ab1cb7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'ecdb64ffc44490eeb12199d2da5c1189c07f4102f5b91494cbe4ec68fe6bb6d4','7d74527f370a78a8dca189b60657f9fd15c27ba5f875344546bb8d6e5b54c8c5','408d7c4d46c15335764ec5518c65dbbcbf1a389b3a106332fc8ede93eec63ea9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'b96b0d51d6327284f5922b65e5d023afd2b2e44c9e11f435afbe2a71df4e6eb2','70b8a2eccd5c79e1c270abfdf683dc4423ff315a62486db9e5972a12daaf60ea','cfe641f06ebaae19e0167a07956bfc6af2b8022e00f50d59d079ae6a94344aa4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'c5be3fc23a9c41b7b78cc7df4ed13d1d35fdd7edab77c998cef5a5a5fe2a7d33','0072c2fbc0915dcc39103950d4a48feba19eac28bde001d3dfe0f9ddc25e5152','f398b87ef1257c5cd5f6a09fb7f51a4cbe1687066f25433446f94847cbb8a899',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'faa7cf6128f229fe3d408797c77ef2972eb28d16542b32ec87c5fd42d2495018','46c53b0ab86b04c06e8302726aeed5922fb5b3d940102422c53bdf4bafe285e4','ef875ddfb4443cd94d86deac01673964c5f3d1ed4b3afaa0d131445562ce64f8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'135af680c59a3d707ff3e6b67fbbb0aaaf0a97724d36ba584087658ae8c0db19','8b3fe70c1d1b8fa1a247810dfbc2667ca0307860c112002e47107fe4836b8138','98310bdd2da785732bfa6de62ba2f2fbd5d103f4204ff7d1b43fed584907693d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'496b559ef740feabe42d55356bc770bab7b927d79260c22848b7f47d51918f11','ddbb4db386fab0fbbb7edee7c7c45676f994d6feb088f50b0f3edaddcc809e47','5fe661842a118ac1eeb5382d6bb92d8039390ee68fcf9cce1441839dcc558c9a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'608eb77e572aa596c9e14c6e4cb1dc1993bcbcfe735cf0453124c2801192ecc9','b8d3a5abf9edc13434594de8ec0cdf3b760f6917798eab89ff2a6a4f0bda06d9','00ed7b98e21c3dc58d1ee6c41389fbf40e86522758fed197cf39ef3a7274dbc9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'bc5c375d1237425486c9f46bd749fba20b5635bcaf3e2d9178b35ddfbb700f14','1766568459fde2e95dbe4a1c1b73a37b6f8443dc1ec36cb44a38fadd95d8f807','4d91b8cb3b7b5363ac2e84f7f3d2f5e52207ef68bae865e09bf9fc89aa42d60a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'c6d48d72746c0e18fa0f1b0b16f663869be2c4684a9d98b634e691ea495f4d81','9f6619aae8ab667b4291ec14e89386177dec7f3465def984144d2991d10476ab','d47acf46ad59983e01b9e681527ed2068076ab781880c571426aa808fe36c424',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'8deffdb1602f1aa2d0d1956d2297ba30ac78901ea27eb223ad8bf7ca83b18110','278612a215aec2522b38d2ddd268f051906a858996b526fa53c48743b1f33c2e','8b051844cfce3c15973994e593d4cd84023384ef7d6e4b0c0fe4d2242f68ec6b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'34859861f240c6553ffbf63fff9bc884f231276ec6173964d5fc6641a6d79b16','a884effb413598885693dd0eed419a3a2a35db95fe4d6582e580bc141f28377c','dcba300d4efc36a2324491e29a6b0001868b33ab1be391102cef110552178e78',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'fa185f9b97a1666ce3b966dc09b8a7870ba55896a54a54f54d3420708d5a8ae0','070c320cd53cca3d81560367d437e1f4cb2afb10ab6339e2f1cfb0a2dd6d6063','d18f5fc35609a49d75347c92c7c9a483e35d9c4192503782bafe4478043ba4c2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'9f75da9f944d59b1841d690b2994ead7fb0ee3d679ddbdb0b692e49238f66603','fb310206b118e11d48becbd11a695199fd7cc3553dd8b2a7c29c6a927f5bafb7','18be484e57b9cf23147d188a114137c5948a5b53cd19d657dd973dd265ecd564',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'4740587d203632d1b4061343436e25e12941f0f80be03c3ab390a1c08b842b59','041e6429d7ad46da6e1a2547daf274a0df952ac4f9b43eaadfeafa6e005141d6','3443a7b0bee87c7ced9d66afce89399e945d14d182019f4dbc2c014c59abe58f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'d6eecb0ca22f29b50e52cd5dec8f408250a7b1ddc61bfa9bf6cc6ef0a85a6ffc','f8e9baf27b01e99db390d6ee2e06b8ac7d92951c331d8240fdf0dd711ad75979','169a650e89d34830da0f077b7efebb0a64f43b59d725abf94e3c84ac8b6da6a8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'1508605d4796eb2d8b0553b307827f570b5020f4cacf773926b6c8f2c1b003c8','fe7a135af64a7668cee07a66fa146b6a7a54fc78b96eb7c62d0bbd8b8ec4a820','e0b7f166b6b82211e67aec109d3181bee7c6b48dd68f610b57e9a6c0089ce0c8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'ea7afbe0817cfef5a5a940bf88b057d01d092182dd5d0c7fd156b6750fdf4cb2','561526733017c46e8f7476f6f7f0a1c317a372adf6ccbe2a34e4d8b0fee1a694','50be0edf30243d3f05b2d04582b092f02a3bf48cc36592364f244f1406a7d42e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'f805d8bd0b724ffeb9e466367e8524bcbcf2c0fe0525b8ff2707af2013824a2c','4c10a876e31ee15289cd2d82d8771bd9aaffd0e335c6de15f8d5316e6e7ee81a','99c95d813c0af76a0ba787330b43f1b3eef9c9c12956c734057f5d6af3f173af',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'305123423486d17e97e8370399b9079a35977465e4cf8c5b33d50bd7004b463b','660d6afeecb2375668200669bac5cf258dbd18b0f61213eb01d29e133a45917c','600a392fef1ffc97b4862a0eabf83f8bca0be5eacbe68f1a72daa1c9ee52960e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'b04fcd2cf46165fa31626b476aa06f9ad8c8cd1d5aa1cfdc014e0d55fa7e0761','0791350dc66254e276bfea1651fdda43705668f461f5451fd91fb7e084b26aa2','cd91c870d87762425a917c044f5f2f1e3f03abcd3f574f6b738fcf83786a0c09',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'209f05567343042c8a9172138cc14e28a2e53f9addf16c7affa469fbea9728ae','4885e82f77b273e102f9019b8451e08910a7d98daf19366a0a2b9db779352c0f','42f0c487366bef15ee290608623baa2021b3106933ea6c19c13c889175f25052',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'fc18c0dcd6011c4147575f09bdc6e1eb0e6ae7d3144339859054df458651618a','49cbefb674e3da718d86151b10bb37755e158a2bdca642a542897361f15fde66','7cda3663089c12d62dcf16687d67e6c815f59ee61d49b6c7fbf1acef8ff8ad5a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'f304dbebd02e4536b1754502e6f51e058ed309fdf95a2db8329dd7e5635824ad','b5e7c72a91d779334162c8fcb6282c7e5baeb43ef83d8f8c0eeb4dd0579f0916','19e396d72aff42647cd89d62de2fc077cd5bef0a338dc80d2b23ebd2d3156de5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'f39c071315c869425bdbcf05ff84130a0860f5f47b4f851cea970f58a6edc9f8','e399bd32bd2988f29b4fb003686b343bd72ae59297412480a359bd56ded23ca5','4045738813eb927f7543bde1971329d6f09a7fde63e8d1392a1600c226474aad',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'20624d783cd8e82044df58c05e6171a744505df43623d9c2a828c1331f505ca8','c587d5426925227ed7d0ef11834b5bb1291fcf0ea3f0bcac864e4356187b6a10','94b7908b589b1c80ea4dd88f05ffe997d078ad2c78b8cad6265626b6d5317132',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'41ae6610121587bd8171a02da3c50645e8e6d3642aef2c560d46f12707506b66','c8331e225af242d83e283889e6234d601ecb507373f4b7de891b8508d1b7b1b6','365f46087a06fe2306b2c30b88bc3f6779f93b82a0d9496e2674f48e4665cf85',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'bbc2068f2a4b47c86198a5cb7242e26f385077126c7a3294eca6607485b1170b','42ee671f6b45a8e36b4e57dc7edaa2501b075eb75bcfce535435ee4c0cdf2e66','10181469a6450a20a15d45b37942f7dc0ed689640e6555c0ea58b587ec3cbcb2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'fc4350d187ec74fa6dfbbca7f6c51849b78356f853c6c713d10ae4a39ee4f7e2','f35b5543ac99e33a4ea6fb61b688d06a2b5b9cc79776df32c24e848b5dad80c0','e753c18bbf377d74cfe933f4e53a00faf32d066f750c6170e31fae4597c446c0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'3cadb90f0285d3e3bb107caa2165e88d855cfa057fcff1fccfb278a8f64c9b1c','3ff813ab5112e5adf9f50936955db90036ed0e2ba309022002c69e81473d7c04','bdb06802e00a851facaccffd4e7e0469e99171891e68338fa5c108a59c09e184',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'f3390bff59484b5ce0d84f5034fc88f4d862334ef3c0d7addaa9be7f0e67006f','3d843f898e46d0ec4c4cf79709ec7326a0e45d44361a2c9fe45e546bd5f1e630','91548b15232ca3271660eaed9e543d6027ad088d34286d8abdfe4184b3fb91db',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'0354bf318eaec5c79b4a7835c76c89f373ab0e413f9fe4ebdea442f57763a971','6405368df02c1207da46178c106ac287c7c90e5b87a98154aa938f6ef5a570d1','290b3b825f0ac859bbd2db052280d1f45898734f0f89b8fccf96672f6730217f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'e22b7a64e15ded24f6c54a5f627354dd2c3ed8175c2f4cd31aa5a6789d7b67e4','6f58e857b2891d43f22bb4b44d296ff18f3078de01cf90aeed104283d66342a2','b4f9a9c17f2c4a6bb4fd1a99d9d3ade15eee4ca747d8c5f1132c777d2cf8e04a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'7b8a6f62709cf4d20820031f43d968ea46d73d8cee4ad40f414da60b9be4e676','51c8a62f3e4c43e6eea75410efb977c8ddd2ad8e64c0d6ce6f63a4e5eb153400','89b34eb4cd1d69d9c578c7d6181985d828e55b6b926bf562c3117dd8b39971bd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'ae82ee2f7f1e075937b5b8eef065f8643a7bef0428e00689ee773558905eef19','7358e41e9a61f87d68cc6851768346daea2e100ab896e86c0047e47228e6cc29','845f79869780ce25161caef376dca496190611dbaf591d4b1617202eb1ec6035',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'ced371f1349e81cc2f179f064e4b9b202650a0f79e9b4513666ace29f0e8b3cb','0e8cd750f8ad91d5b14d2b05b7c03621367036703bed1654555b94592ff41e11','89835847f0386b5a4a4e4f748f643a22b6bef41b1bbd51c9ee6fa3f3526f0899',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'6c343897092c5dfcd32ee96dc8b96f38fedd31fa58cf5757a3e15a254942cd59','c38a183db86650f155005a8828155aaf2fc6d92aa89066d7f0843a123800d771','18faa2da192eaf7d4e7e3ee72a09c146966ce3bae7e2dfe4148d09ec26f6a4fb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'abc7afdaefa89bf58bc4c28401740657eca24c902ba551f55becb6a1c8992675','609b4f777892b43541593da80d09aa2c3928f2f73600009615196a7f89ca8123','0ed9475500a23bd1df5d9cc2675c3dbe28b137f251b9ce51aeb0e268cc5e1186',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'4c8ca9b4eeae7adfec822b20665e7bd6fecb51d4f30cc2c826f18402d8401a9b','fba4f7514306c49b3045912791cc21a26527a23e58dcb1c8adc5563e5c6e901d','1192140c5046ed35037f88bc7dd4fe2a013a2c02a98b861e47b48eb19d80c7c0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'fe7fd2b60c3216d79dfe4e6d38880f6d3b9fde747b619f2c477108825235663d','3a62ce0eeff09c242b3a7c3a8da6dd20bf06c1c2fbf224f73646791557ce3d4c','51f6f931459ba6a532c7c74d462deb1b0a54da7e011486c6af3056b2e65f195b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'420b8ff3c159f7e89df2274682e7ef798a0c0233149365114bfd934c38806098','9c866b1985d2ff084264e192e5defce4af96b7aca461a46f58c659008113909a','49487109a4081406fc52526bbedfe3a2f93e749a4685b1633ead6342bf3dd7a0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'f4fac6a570b4f6332a628a3f8e27f5f081689fb4255363cff1cd8bd0244eecea','271c5484d7a74166a1b83e9dc6f56cc391d5b01829c9b594deb087e58a22b762','6e9c8dcec7ecbd5d027c038f873ae53e2cc970f49fdd98b3a786fe3c113c38ee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'adea7b4cacc06ba1f7dc260f30039943936f5baeecf5a8a452d4cbcaa994a70d','7d8deca0e4f444c015cdf98c74255215af14198d17619640186c6486bb3a6be6','c8e0c6e52ed6e0dc0d9b2a7cecaa8b53aa2e36e847c0fb20c0c8ef6029700aa6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'a2290c6a24befab16b4d9ed768c3129d582edbafdf8a2326c7ed50397e5db674','8bab183d2c7670f060de1a64663fe4ec602cc9df957a4d1ccd4b2c5e4876e5ab','142676e0c4985556d710f23cd93b06f98864f2322b458ff58c0ae3e3dff4e5c5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'b3c321ea2fb119cbaacfb39f219be47cb346cdd40d895980afd34b4157a3b7ec','6997f2cf50cb2331a8d5cea3f97b32b41a9c40b6006041939b21008016e013c8','b2ff4518567b1d1defaebb078146815cc39ab11dc19d392a5d20d299867aa6da',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'456a1bd4d6b30f24e798a9c1f975af109db030b0bca19db6b29788f938ce6c4d','bd930dddbfc97b06fba95a33417533bd58fd5e95326d8677d2939790850a67de','11771c3c0ce2f3d5e74539f731ce50c4f34cc01f80b3c32c6136080272e8b448',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'f48d6574488a24155420ae76aa7dcecfe73f6a262a2434a96eb2e93f6bbf02b6','bf2e65b5a1da6ac499a4ebcde81b607f6516de77ed2a10ff363ddb05dd8e288d','4ba3a4a60a0c079e27df1ae65619cee9ef2aedc4ab595b55871fd36c6dca22c6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'e936debeb5d219215ba24e56ed34edb435131877c2947c0801824155fdc70c05','d18b9514ed9fda087d3c98eca75ea68388964396143b925cc58ce2e2d5c1c5da','ce9c5786ef39b2358c92af86f3ab6a58251b47487128de33ea86a2d817d74d8d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'2b033a615b9eb693ed59daca9bc047f61a3519bec5c2b64f968cf717c75afe79','1c39371c274124af6085dcf02fcdfda68d36d261bb47d7763ea3f09b70d0f62b','00c15802e74c7874cd843b0412cc13a263fce9d4cf4f05dbf222ae1558676140',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'6a41dd11d8b611f6fde79e06a4f65d20fc15419f8336646130c02e9f7d87eff4','e2c84c519b3d759f8efb016894a981411328df6f0a778835c95ed4116fef01f5','9c5d561b9fd34987179149f2720b511024f0a434b35cb960b4185e80596c7697',NULL,NULL,0);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'98ccdf7cd2fb29a8a01cbed5f133b70b6966c6c56354dad00baacedd0673c87e','faf6476a908c85f6e26ca5d182688d6da3f326296602d5ad3aa5979cb8bc110b','3623f3bfc1f4e94f32f08ab286c2b7bcda0a00a9d2e20286c71b6462d1858017',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'fd43dc5efe2ee796ef7d24f8d478a67aa58bf85f538ef4b9a49b983a315deb26','544f7958bf7661b78699c708ba1097da0dbb044acee3d1d8aa9a32d6b659a14d','7adab00de2e4ae3ea53c6f69479f45e8122028482f28afdb7b4e06d560186724',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'dbae4fff32545b4f3c104fb5a051dcaeacecd27401c84c09f93923b8bc30eab5','ee37e75a4eba165ed448b7cf96d188d7f738aca4d90a781c7f473974e12564d5','184c4a04b4b41417c3995c7f512bde9e419b1bb221dde6bd19a9935f46e0d18c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'fd0ae9793d9513540246b94ad116fc0531e8e07b2c014752e175a12e2a7a82d4','107902b17490957ebc0d2cb5dba1f5e667e3a393acfd8b3adde9f6b17aaad5c4','f768da98a5a77e142433acd535b10e26a9da322d25054520228c915eae831956',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'bd894777a85b731155a0d6362766b4220c03db4f3e5fbf030d6c2529cb5f3537','65e6a7c64c8439a60fb066d96d5165e6e40974bd1b98812ac6a4172fb1db1511','a61a244934ba99ed701f2bc7f70549c3f463473ff7b7e097b90f4d30042a7b60',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'264c98f1d460f78e52def545d25482fd76549a5309d04841bc27b335f06470a2','9ede5548f7cb273af825360a6285fe9a51e9625c9084b2dde7bec013dec24f0e','87bc39c1cfdda6f4eeff9c7fc32d4a8b4305f00668a85c222e90b44f81e23ff8',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'a1f2aa5a0b8d030c2fc4e1243c3173319ecf68d232262ea3dc8bfdd03a3f923a','afa257be6b0f57581b8f1b932b3c8473ff5c89e4bd6c3d3e3dd6a8c3cd9b09d3','603c141c657a3f0a15800fdea87d0e1497648d77437307fdd4ae2255c73b31eb',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'8709aa2d5064ea2b7ab51a887d21f5fddcb7046753cd883317b533ed121f8504','40941bb90c086bd2716de8afc1fba5eb75721143a86a606ef99ee3312de95614','b11d3ced5f6094afb447433f41e2ff7c84248037dc4d580843eecedc322f98dd',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'c1c516176fe38b69b31e3668b5ef20805bd90d3112c77f5652f838af8e7f604a','9b186632fe722ba57daaa01573568c3d3405f7fcb0a729005a6338266a4debfa','c374e2c17c37b2a752eb46bf7e89942db70f82275e00eb60c16ee2585c95323c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'ae8ee9e681f0ac96de96babc1c80e5188b3e0cb91074a0dfd8511ee7d0ae64c8','39f4f154cbeae9a65b43ac831b2d5ad0e6f6575b909b979bd4bd97dadbab4cdd','123c52af3a6913f75c4eb3926681e4e673b95f29ce1a49390b9f863fe35ee3e8',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'0451ffa5d7ffb0e588e58ac7eacf77f6b3e17f1d27c1039f03d7716b16fb234f','0cea2e2e06c6423d1c5ba19f6128fbe8fe6d6c3688316c9c35dd31cf03d38c97','819db9250eccd28e19c3e5fabb4e5ce05c747906a5e3935353d3625c593534e6',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'dfaae3f28c2f75e4bcc49034ff2a191b5a41b88035c5d266181617c8c65ad5d3','0134329cfdaf63e5946b9b5a94b73f59b9a870d4569ca07c0cce078bf13714a5','e54842926c5bf902bda438e0e7985012ba1063f75c1a75803574fcfdb9c93136',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'c711e8cf2d9bbed01724a7b22cbd4900a4fd0a126bb7ecbd7c97ca15a6276553','9a3fb4fb846c9ffff3a50a0a31f3ac3900ba7048a60dd69c6e14752734358f1c','3eb36f130e73e8480c96d0084166149091d704c7995e6031ecd44e372a09e70b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'3dfa5822de8a4c674f1517b17e50d2ef63ccbb1fc4ae96fe5e1dc05cd353aa4b','6228a449b24d607b8fe1aea60a0292874cfe515a9440bee2829f6e61efa0b2a6','a176fee03dc5ad3f9024fcf4096858f84c7d6989649769a39a075275eda4e2bd',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'49fcaed957776bc62c9f1feac30dad8c0574596d312f9efee7a453e00bf64866','700cf4c54e23c0cfb4d8b02bc6cb1ca509637dd95312629625aa92d32d5548d2','9d29d6b1dacb4ef04cc3877b1b6f32661d98822e7f536a2eb49d5a904bc406a2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'4e4abd3e8ab2658a7ac673e3a178ceac76fee41cf48bb6ed007d241c079979bf','288c9c0f37cb0c2e9db66d4b88b165391a67f06016ac84c485e9b9158ee51f2d','517a465489b9c047177ae9ffcfe6de613b58012f0e051d3580d9d94ec5a7d300',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'17a28cca0777254af26544edfefcad8810e847e5d173fded9a7813719cf1162f','1bf7e0a4aa8356584087591a8c8e8b28185a6ebfe1a15a85f01165a04ff57913','ac2733ba22418b1d94bd24152389dfa9f9d0c98c792431c2e2c2e46b140077a4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1fb58120e9eb78908fda6265cad12b4a5770701e9a271bd5c4bc94059bd3bab5','62678a570c40b5a12469e442b3a54f1416d9113de2db501f37ed533f345e71c1','f108562c7553e868c5f317d4e0a3dffd891923199060910adedfef4ed7e2f0a6',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'304243c1b11644e04d325d7100e4c757c07b874f0349e60163a5a544e84e951f','a174e4813aa967f5466148f27f4f8511ed9404295bf613e112c08b72eb3229ad','94fae4523b535b7b5416e63ef3c189395241a7bde35453caaae5cb251f5eca6f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'fc9905ee4863b3cf29a3e558ee690a24ed978a4fd79c464bdde30a34cfff19fe','c551c2094651cd0e06e0cd9d513fec771b69f4bb89c3034f201c89f703cf8a23','8eb8bcd2974acaa109119827a6a2f148b54acd7ef046a1eabcd3c711a135e697',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'e433feac4a09ad727bd3764b10a568acf5c659745a695e9d7e8790514f6bc98e','087d41720991e4b6bb72c6141334a65c9a289454dd8fd57edc33a09db467d086','32980f68eeed329ada0bac46146a50e54193ca57a310e72605eb5830e6305b62',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'622f92da40eae0b1b57218b32ad18daf7d79c9e0202fed4a288d75b8fdcd19d2','caa77e83354d56437795411f9625dff332c0dd39d059a0ad7381fe1f37e38999','812e86666b3011b817077578811956e488887b458836cfcd3ab72f3a27e86247',NULL,NULL,1);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'b7aa8d9ebc37d52d8dcce2cc17431d6edf5a183b73ac85bb3d91276592215cfd','df23960a57099b0b64572553e56794b1eff3004e684ee2b31187b585aeb03587','35ded8ed45aa6e5a1ebeef71ddbc2c89f1777d3af7bb6a858f2783026b40b918',NULL,NULL,1);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'501c058860063ca599f3b946d465b3bbd84fd483a2a80527e456e3de32b48a19','c680a6d4f839ba4f9420a99f0512e51fc1db0b661ed027332f440c6089eb615a','0aedb6ced2e21c0fd8b956947641a38405e45f6bd468c3cfc77d7e563a0e33ac',NULL,NULL,1);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'222986ec44fae1a6196d64dec24b79872970823f17bf0459d3b247bdef316675','f40aab7ef7167a17e35279423d9c14d49a9ebc05691fa658b09add1373216959','cca1a26027d71afe0475a387ce5b360a9b2037b97d9b41b68530bc0a2ebe1698',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'bcd88006b9cb98445a74c656d424435e82eeaef95dd9c54e394b42808dc9cb8b','0e3736813d3c0e789cd9474449abcf83118b5559cbc2f4dfd4d3ee51b5847a57','1d2ec6d87f978d6e9cb57997842da8ad6a81c31f6b32381a7cb1db192ccf7557',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'3de7bf2043ac2e68bc9eaf8d1c12195a4f2400bc78c8deed0d487af11edf401e','c3572580398fcd71e5a1fef6e10217a99dec1aa605d61830ebb64ea65b7907ae','cbbc9e3eefaf01335537486aad05af2d831cfde7302b18e0501fb167ba6ad8ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'6c2a67783cf36e8987dc1805f87532ee1b94f79fb00952d8ee4cf3daaf655f85','b8b9d102d56df94d4fcea6f8aeb92d3cb859d3281c9fac7407842b7f05313737','fbd0cf72c242de4ebddfc748841cf443d3ea0a48e50e115ba15eb73c4cc24633',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'659c73390e2e7eccc07d690fb438181c604787208bc45f466e57721fa1e21a64','55eafa176bc145ec7b98497c8a156226c68bd3b921cbdd06a890b2bd660ca050','02bb87deaf0eee77ebc1483a4bb2f4a52ef153f48c863dd5ecd452029e006a3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'87449e7ff7316e49012934d83c1f5b733cedf39680299a9582eb216e260e0c02','c2fc809ff3ef6b74b10b1439fe15c275c6fd925e92dea73cf9d603948aba0d8f','6f4b3e66997c5dd39782d00a208c90f348a8e7b5359eb1bba2157e99d6c99583',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'6c4a7f749d0308edf5c88b3ea4de3b1d497ba3bc06435594d77686318b744b0f','45db1d0cde22349299df8245e7ed24d308e1b1cb227098178606650f20832aaa','ec79840ea2d6673cdcb440ad7c13918c79973134258eb4333a6aa2f97db4d48d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'ecc04b1b2c7803ca17dc2a32adebd0960de2c04c8dbfec9cd88771dd883c885a','981653075dd609f44e0a5673dac2b63824b84e26080ec226547892c67dd7cc33','fbf06dd0ef5601ee0a9415ea8c86a7425a0dbde4fdbc4b03f68bee68fdba6385',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'01e769c5b990db44a9e534bc6c759567eb4283e0ea252578dd525923c7fde02c','81778134948c3577216eeeb6db7fe9687545d855dc3b5f6bdf6053a7edf3eaf3','4e4109b78a7524857ade4154ef083fd830254b00f074536cecdcb5c77683910a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'2df6b8dca0ffa8d6d55997605188637c2b86300e4dd7ebe3f1f275690169fd46','650b0875a0fb44a0ad1b04edf1a0eb1b50b5ecc423c6ecdd37b5aa60b5e85663','5bcc58ce2dcbc4377575d50360c40ab7663d8a25c93f6323b4248f2ad30f4593',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'7f0dc7c1527a7d11831d272f0295eacabcb96fa3599f5a716bd29ba1bb6b7577','e9d6c050b077d8e6902999bf64a0f1bf420c881b8a32c511ae81b0359e83a542','00c999794ecd07f8241cae22b5059ecea0a0511e962f7e5bd9f5a0e938e71060',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'5e0cdf1764ed94672c29144f9c1bd9c3e70784f17c9dd1c9e4ce703a99bb3599','e755b5d80c9995dfa5763b080b9bdd349fd7b5bd940a661836ad418202b77384','96d95db5bae3211ebd78a303c54631150fb8b17474b13ef47722a2012271fd35',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'96da34a5a66b89aa3e8857b4a4edca51a56a0cbbfe600d8153077875624a153e','cbc0139fb09af6a6c63e07847a37f15767a1f7b01d6305cf40179de841c4f093','826b6cfe13526a704ea2b67c098e2e2c613997d43ad0fb01bf351207be2d0eed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'d481358c19b4220aa9a3d135fd0651fada6df8d0f27b9ec954ac07950e876c0c','0493eb6bbab5ced7f25c6f5a3b32e4e2da321a5c761855ef64b5e050ddcfe431','dc9ee8c5c08597627d45cda195771ce77564ae3dc2e305ff659d0f813c65b3d7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'4e9fcc454ee53b3617c792eb6577c2eefa6eee6aa4a2925538cb1976d48817c9','64b95af50bbee190166820a564e858e5c86769c04b22a68c2bed5adee0f7292f','b2fe0dd8d0aeb004a8b6e7b4f924c40f9d78b8b443ec56885c03fe9faca3fb2f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'795c5652d9679942a02060edfb497b072009695d9a72fb144fa3591dba65a2ce','9927f1558918a59509f668789e75198eb432fd63e0a7ffb46160d002c0932188','a3a3930122c43db8e3d8a1d6d29909e89d1263ff72064061a32398d2880c814c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'e569e6e8083818e594e92b3356833e8dd54fcfcf5ed25af0d09e36e24b9dd441','969f7176f1a56d43e0d1b4da9cbac17cb1a934be64c12b3784ef33b584513271','2c670e1a75b7b79ba8380bd0aeebbd8566efb67b8de497cf760f047433430048',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'2247fcc633175a91921d226f412e56822379c79ca799117c39ecaaca0a702192','29cb8f1b29affa41416aca0265599863f6b739538f13bc6672f6b3c17e411045','3acbc91852fb2d7256eb8de8d6f79f2131ddb81d57dad850badeac4be11b199e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'0246c3a2a70b33a038ccdb816f6b0922a50d08310f360cbd5db4df58e97fc4dd','d1ca4c9abe26de83d9a0170461c87f2c219926f8dcb0c48793d74a0cbf01a43a','a974d7e9f5e4257985c069ca2c5517eca6f3386df46f27e39152c8540ff21e79',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'cbe39e9d1a132cdc568f893bbc3d4f55d27bacf7af31f027ebea1b4bed9f0009','452b2e3ff4075f702cddcb4b8fd9006c756dda7a3527d635f637a200fd621c91','a684213ea28406c1a4757fb316ae5e6234cf739e47c6f27764e433046c84cca5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'1202b05e118f0940ce270d9002d010076115a0197d889fee2d971a77709899bc','527114d86a06f44f12e1f789f095227f9710b47e95251cdbd6f4c03309eae61d','2b208323abfec338b83a4b1bb3433f4c955f0bd4eaa57218f9af2b31a4a06629',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'0bc49f765419c0b5b4911cccf03b0d9959aabacda266480b98245de0c0d35fc5','ed6954fc7aadd8f80684cc67580b9cc16f9a402296ac91c021de0148a1ccb4a8','49eb99327ac63bdebc3cfaf095f3234b4fb156d19870849f03ba340dbb6b5007',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'e42bf9806d0ff3a0663756f7955b30735747d14fcb0915c89884baa12795163d','2e62ee5d03044d0b6086419a6d2fed78b7db3bee75a2bc158bbc04a8f5c34908','c3fc8aa905a4170a3b72329c94f70bcaff5c4d7e7ad7a5930acb71ed33616c08',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'b19b5e14741284b4ca06b736120e903363651460a6efb3ede1aca3a4f3c00df1','bd40f4de40c172e5b5997091f4a069ea54d25504421e6225ef3d9ee360fbca6c','b38346e10ea8e6a9dbbec76960270ef45bd5a4e15ea60c19fdd460381b00a5ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'e870de901ba86d65d0e2053251ffb32cc7dffb55fcc2efbc006a2b9137314a39','d89730ea689c2912f38a2d2dc86caf6dc35a3e183c4d394129f21368f5c1d371','b4710ee09fdd9da9af163b58135750f9e8f935c13ae14d2ac586700afda54583',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'44cf354cdc8552ed37e5911340397d3531d0ba45100feae27377130d4ddef359','1100866c04ae89913abf573ee61b3a7b56ec8fb7526c7d9c9938d61a187586ab','c4cce9982e0630076d314f14323ff672dd88eb78f267c6414631569b8068b108',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'7d72f11f48ac99553e1b2c52a7ff5645fbe05728a10a002727b9270dbb32daed','1d95ff7cb416f1915ba7db0099ba9591b97c6bc673cb43296cc82655627eb1ad','6f23296f3978004cfecf1ce6c5d6dc6b7cbf7a49ed906db6bd0c5f2b398d76b3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'35a965dc90686fc4eb20450da81ca8db9125e25c2cdd7146fd61d98841d80c24','9d15589506565edb31f7627a37c1f6a6bca01d584b0dc815e8603689f07a80db','b340a1dd8a098a9e7ed91c80907755974731a783e82cdf17c94e54ea3ebc2c5c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'8604d503e7194ee1c8ebe1143019207b2aad163655107a3d23d018ef26cef550','40053c62babd7f69b9822b6d4223732008d45250146216762da4e13b1b9d3a3b','d298e055fcbf1c292ac8abd5db069687241c42e48f88bc41749e2b0059a799ae',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'ecdb64ffc44490eeb12199d2da5c1189c07f4102f5b91494cbe4ec68fe6bb6d4','7d74527f370a78a8dca189b60657f9fd15c27ba5f875344546bb8d6e5b54c8c5','cbe1263aa14674b1e013a819e96aa0841d37340696319b6c5345b7457729900b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'b96b0d51d6327284f5922b65e5d023afd2b2e44c9e11f435afbe2a71df4e6eb2','70b8a2eccd5c79e1c270abfdf683dc4423ff315a62486db9e5972a12daaf60ea','3b1440f9878f569483df07219d00d8a3fbbafda48b57d0f746cdf079706f7b0b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'c5be3fc23a9c41b7b78cc7df4ed13d1d35fdd7edab77c998cef5a5a5fe2a7d33','0072c2fbc0915dcc39103950d4a48feba19eac28bde001d3dfe0f9ddc25e5152','e798e99bcf56938955588f18886328e21c4c766200d5c2355d49739ec608bfdb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'faa7cf6128f229fe3d408797c77ef2972eb28d16542b32ec87c5fd42d2495018','46c53b0ab86b04c06e8302726aeed5922fb5b3d940102422c53bdf4bafe285e4','10c3e5aac0859c4d983d73918ef98e51be19de2c8e15c1807918612d103ca56e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'135af680c59a3d707ff3e6b67fbbb0aaaf0a97724d36ba584087658ae8c0db19','8b3fe70c1d1b8fa1a247810dfbc2667ca0307860c112002e47107fe4836b8138','6d712601d49493415dd87e5c616c1d4412a4e81eeccb853fe9c39090d15977f6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'496b559ef740feabe42d55356bc770bab7b927d79260c22848b7f47d51918f11','ddbb4db386fab0fbbb7edee7c7c45676f994d6feb088f50b0f3edaddcc809e47','cc6379176fd308de5dce183196f5d17717a9818316bbb7e6d561b3b8b41e73eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'608eb77e572aa596c9e14c6e4cb1dc1993bcbcfe735cf0453124c2801192ecc9','b8d3a5abf9edc13434594de8ec0cdf3b760f6917798eab89ff2a6a4f0bda06d9','992672b958fa15bfb30aebcf5de672462e86b97f417b4d003f4b50e2fc129254',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'bc5c375d1237425486c9f46bd749fba20b5635bcaf3e2d9178b35ddfbb700f14','1766568459fde2e95dbe4a1c1b73a37b6f8443dc1ec36cb44a38fadd95d8f807','f40c4ac0397d5d9184635b04654691600c0461e51a50960294e78ae1e40d5cc1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'c6d48d72746c0e18fa0f1b0b16f663869be2c4684a9d98b634e691ea495f4d81','9f6619aae8ab667b4291ec14e89386177dec7f3465def984144d2991d10476ab','a0a9900f5eaa5e5b2cca8199a35f69f3d2795cc39afcc61b90203b1433d501ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'8deffdb1602f1aa2d0d1956d2297ba30ac78901ea27eb223ad8bf7ca83b18110','278612a215aec2522b38d2ddd268f051906a858996b526fa53c48743b1f33c2e','8a5bfb59affc8af010b8bf4f040ae20b7bae73e516ecf05d0fafa195daa084c8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'34859861f240c6553ffbf63fff9bc884f231276ec6173964d5fc6641a6d79b16','a884effb413598885693dd0eed419a3a2a35db95fe4d6582e580bc141f28377c','c451afc5cf0e2a783cebef04699a908d781d8c3cb2d6e625b6f260bd2d46b4c9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'fa185f9b97a1666ce3b966dc09b8a7870ba55896a54a54f54d3420708d5a8ae0','070c320cd53cca3d81560367d437e1f4cb2afb10ab6339e2f1cfb0a2dd6d6063','5fa4c517214da3706d54d030b7abc2b36dae8d0306e618b1a17a6649cad5d53a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'9f75da9f944d59b1841d690b2994ead7fb0ee3d679ddbdb0b692e49238f66603','fb310206b118e11d48becbd11a695199fd7cc3553dd8b2a7c29c6a927f5bafb7','785359363b3be4224e996ad6fab4033aa3a46982d6af1219186b0dc9d7719cb9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'4740587d203632d1b4061343436e25e12941f0f80be03c3ab390a1c08b842b59','041e6429d7ad46da6e1a2547daf274a0df952ac4f9b43eaadfeafa6e005141d6','ee5f54f7b13996f803b277ede2800b1ef7ad1353230e7cf629af6063c2a9d459',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'d6eecb0ca22f29b50e52cd5dec8f408250a7b1ddc61bfa9bf6cc6ef0a85a6ffc','f8e9baf27b01e99db390d6ee2e06b8ac7d92951c331d8240fdf0dd711ad75979','712a4ac75c02f80b3a7deec1b31679674cf124c265662e1bbfacde128bda60ba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'1508605d4796eb2d8b0553b307827f570b5020f4cacf773926b6c8f2c1b003c8','fe7a135af64a7668cee07a66fa146b6a7a54fc78b96eb7c62d0bbd8b8ec4a820','680b4d5e8538a0309a993ad5da4d9ecea6788da6db7a3d9172cd9a45e9ed4c97',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'ea7afbe0817cfef5a5a940bf88b057d01d092182dd5d0c7fd156b6750fdf4cb2','561526733017c46e8f7476f6f7f0a1c317a372adf6ccbe2a34e4d8b0fee1a694','8d7ff05ed2187f5021a153a52a59612d32071becf1965d5b2e9b3ca71a9e4b16',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'f805d8bd0b724ffeb9e466367e8524bcbcf2c0fe0525b8ff2707af2013824a2c','4c10a876e31ee15289cd2d82d8771bd9aaffd0e335c6de15f8d5316e6e7ee81a','edf3f3e335cd8de5ebc1252b433f916cd783c0ae8bab1ebb749ee73b1e381c73',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'305123423486d17e97e8370399b9079a35977465e4cf8c5b33d50bd7004b463b','660d6afeecb2375668200669bac5cf258dbd18b0f61213eb01d29e133a45917c','87fd8b8ea520ee6c3fecffd8606489e2b199e9e91246da44f4e75930a4464bd5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'b04fcd2cf46165fa31626b476aa06f9ad8c8cd1d5aa1cfdc014e0d55fa7e0761','0791350dc66254e276bfea1651fdda43705668f461f5451fd91fb7e084b26aa2','9418303a68e008a80383c06c23368324c7cc5787bc5d08d217868e211e916281',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'209f05567343042c8a9172138cc14e28a2e53f9addf16c7affa469fbea9728ae','4885e82f77b273e102f9019b8451e08910a7d98daf19366a0a2b9db779352c0f','f3b9175e84f2b6b2aa0a147f78a4e389e568ebf2b63178657d2c95a981d60931',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'fc18c0dcd6011c4147575f09bdc6e1eb0e6ae7d3144339859054df458651618a','49cbefb674e3da718d86151b10bb37755e158a2bdca642a542897361f15fde66','3feadbb908b8cb77891fa69748ca080e489f66d97ec81cea73c1a86f0e2248ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'f304dbebd02e4536b1754502e6f51e058ed309fdf95a2db8329dd7e5635824ad','b5e7c72a91d779334162c8fcb6282c7e5baeb43ef83d8f8c0eeb4dd0579f0916','d0244be0ab4e6efb3e403f002293a2ed71cc15ff77bf6f200b7f029b88cad496',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'f39c071315c869425bdbcf05ff84130a0860f5f47b4f851cea970f58a6edc9f8','e399bd32bd2988f29b4fb003686b343bd72ae59297412480a359bd56ded23ca5','34b3ec6753c34f4937e97f5a04f43213896a30e19b36440972cafb4b702740ba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'20624d783cd8e82044df58c05e6171a744505df43623d9c2a828c1331f505ca8','c587d5426925227ed7d0ef11834b5bb1291fcf0ea3f0bcac864e4356187b6a10','6ea716b87bd2592e644fa6594bd361829b64fa5ca5f23458ee308099ab7ef43b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'41ae6610121587bd8171a02da3c50645e8e6d3642aef2c560d46f12707506b66','c8331e225af242d83e283889e6234d601ecb507373f4b7de891b8508d1b7b1b6','1034ffb8353aa40feefaed3e4e51f763629a717dd9a1ac5e3718b90d1b3f2034',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'bbc2068f2a4b47c86198a5cb7242e26f385077126c7a3294eca6607485b1170b','42ee671f6b45a8e36b4e57dc7edaa2501b075eb75bcfce535435ee4c0cdf2e66','7f6823b59fd9c02e0eb65bdcd8226a8558c6954f6e93aad320dce9993ba6e89b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'fc4350d187ec74fa6dfbbca7f6c51849b78356f853c6c713d10ae4a39ee4f7e2','f35b5543ac99e33a4ea6fb61b688d06a2b5b9cc79776df32c24e848b5dad80c0','84c1c9a613c664afdcd6cd6b6e04620001d19927030f4657455e7b4acd1946cb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'3cadb90f0285d3e3bb107caa2165e88d855cfa057fcff1fccfb278a8f64c9b1c','3ff813ab5112e5adf9f50936955db90036ed0e2ba309022002c69e81473d7c04','3d972a6d152a0d114fbf19ba2e32e75c9eeb0c7a2c97cf0b46e820282492697d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'f3390bff59484b5ce0d84f5034fc88f4d862334ef3c0d7addaa9be7f0e67006f','3d843f898e46d0ec4c4cf79709ec7326a0e45d44361a2c9fe45e546bd5f1e630','93583ecf2d5b685549d14463aa49e3ddd73a41dff346251de7a46fdf1b068121',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'0354bf318eaec5c79b4a7835c76c89f373ab0e413f9fe4ebdea442f57763a971','6405368df02c1207da46178c106ac287c7c90e5b87a98154aa938f6ef5a570d1','15c52c46bccc02aa469d18804664067ca31efbf52410420c70e118c8acd4e8cd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'e22b7a64e15ded24f6c54a5f627354dd2c3ed8175c2f4cd31aa5a6789d7b67e4','6f58e857b2891d43f22bb4b44d296ff18f3078de01cf90aeed104283d66342a2','2e7144e7eddae7503bb820f1e0986abf84f0ac422875d0be8745e2c76de30d84',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'7b8a6f62709cf4d20820031f43d968ea46d73d8cee4ad40f414da60b9be4e676','51c8a62f3e4c43e6eea75410efb977c8ddd2ad8e64c0d6ce6f63a4e5eb153400','27fd01aca700483aff404a765c264893f6b04930f267a6b568aaf9ed4d79914f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'ae82ee2f7f1e075937b5b8eef065f8643a7bef0428e00689ee773558905eef19','7358e41e9a61f87d68cc6851768346daea2e100ab896e86c0047e47228e6cc29','cf781bd75c601887732bef2d4ccb7af9533c633840d7e07fa61b12a801d01b15',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'ced371f1349e81cc2f179f064e4b9b202650a0f79e9b4513666ace29f0e8b3cb','0e8cd750f8ad91d5b14d2b05b7c03621367036703bed1654555b94592ff41e11','a2632b8aefefe77592f4b0f21f5e1f7d5c22aa0d27ad1eba7a0e007f408b1ab5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'6c343897092c5dfcd32ee96dc8b96f38fedd31fa58cf5757a3e15a254942cd59','c38a183db86650f155005a8828155aaf2fc6d92aa89066d7f0843a123800d771','4f61d8f4df04b07c87f5fb89edc76e6ca3e61f7841f68fe83e9dc901048e24f2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'abc7afdaefa89bf58bc4c28401740657eca24c902ba551f55becb6a1c8992675','609b4f777892b43541593da80d09aa2c3928f2f73600009615196a7f89ca8123','b5fc9a8df6e5fc6059ba0b233ce9f42c84d81c6943f517783b337ed62249b0a8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'4c8ca9b4eeae7adfec822b20665e7bd6fecb51d4f30cc2c826f18402d8401a9b','fba4f7514306c49b3045912791cc21a26527a23e58dcb1c8adc5563e5c6e901d','08c4a2e687bc145dfa0ebc1393b741db9480e10bdbefe691234fb7a59a71e130',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'fe7fd2b60c3216d79dfe4e6d38880f6d3b9fde747b619f2c477108825235663d','3a62ce0eeff09c242b3a7c3a8da6dd20bf06c1c2fbf224f73646791557ce3d4c','c4bb515a775ac317062c2f49543333113dc5312cb34f9f82b0b17e2ee9b29974',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'420b8ff3c159f7e89df2274682e7ef798a0c0233149365114bfd934c38806098','9c866b1985d2ff084264e192e5defce4af96b7aca461a46f58c659008113909a','3a1e7b03b5ae6c616c14fb6b16d6381ed592158a8e7248031b9491971662410b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'f4fac6a570b4f6332a628a3f8e27f5f081689fb4255363cff1cd8bd0244eecea','271c5484d7a74166a1b83e9dc6f56cc391d5b01829c9b594deb087e58a22b762','95c5f1db0fad6fdbfd0f0cd5e45075ed31f4d19e8c518caf7143d1f2fd5e299f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'adea7b4cacc06ba1f7dc260f30039943936f5baeecf5a8a452d4cbcaa994a70d','7d8deca0e4f444c015cdf98c74255215af14198d17619640186c6486bb3a6be6','b86421b4257e7fcb195e2883c64749dd2fe62a1bc7652f45d58276a5875fd79f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'a2290c6a24befab16b4d9ed768c3129d582edbafdf8a2326c7ed50397e5db674','8bab183d2c7670f060de1a64663fe4ec602cc9df957a4d1ccd4b2c5e4876e5ab','1501c9cd912df3f923076b23691b0f1f7a285a955b07c431e3b2b116fcc06790',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'b3c321ea2fb119cbaacfb39f219be47cb346cdd40d895980afd34b4157a3b7ec','6997f2cf50cb2331a8d5cea3f97b32b41a9c40b6006041939b21008016e013c8','7fcaf4cb70e6d4f7b8569deac9055dce68cf7d699f9ca2cf07ffe4b2384269dd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'456a1bd4d6b30f24e798a9c1f975af109db030b0bca19db6b29788f938ce6c4d','bd930dddbfc97b06fba95a33417533bd58fd5e95326d8677d2939790850a67de','958fa8271a5ef9bfc5869c7a3d94e93d745c6f9584328ee33b53421d3e4cb1e0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'f48d6574488a24155420ae76aa7dcecfe73f6a262a2434a96eb2e93f6bbf02b6','bf2e65b5a1da6ac499a4ebcde81b607f6516de77ed2a10ff363ddb05dd8e288d','bd2c68dd138d914e4e7e656065f597bd8a47b8948a5422c14e22d12b184f5106',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'e936debeb5d219215ba24e56ed34edb435131877c2947c0801824155fdc70c05','d18b9514ed9fda087d3c98eca75ea68388964396143b925cc58ce2e2d5c1c5da','4ef98bdb706e0f1bbdeb65b74e48b4cca5d4300144a5b2efbf9932079edb6090',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'2b033a615b9eb693ed59daca9bc047f61a3519bec5c2b64f968cf717c75afe79','1c39371c274124af6085dcf02fcdfda68d36d261bb47d7763ea3f09b70d0f62b','76a2a01c2a99f07db906c049b2499ff01d372ebc367960e685a6a21dc4009cad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'6a41dd11d8b611f6fde79e06a4f65d20fc15419f8336646130c02e9f7d87eff4','e2c84c519b3d759f8efb016894a981411328df6f0a778835c95ed4116fef01f5','a3d2dc1289f5cd52adfa75e7f081e22c9358e7509f9932e897ee6a062f3485fe',NULL,NULL,0);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -149,32 +149,33 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1);
-INSERT INTO transactions VALUES(3,'332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1);
-INSERT INTO transactions VALUES(4,'f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1);
-INSERT INTO transactions VALUES(5,'ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B332B030DA57B9565324DF01414778B1EAFBEE6C52343FEA80774EE1725484367F093B6C00E1BBE85106DB6874B1AB4E3F4378D0BF0BCFFBD8B51835285DFBF3F',1);
-INSERT INTO transactions VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1);
-INSERT INTO transactions VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1);
-INSERT INTO transactions VALUES(8,'f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1);
-INSERT INTO transactions VALUES(9,'c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1);
-INSERT INTO transactions VALUES(10,'7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1);
-INSERT INTO transactions VALUES(11,'c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1);
-INSERT INTO transactions VALUES(12,'a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1);
-INSERT INTO transactions VALUES(13,'74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(14,'6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(15,'2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(16,'65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(17,'94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(18,'a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(19,'f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(20,'dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(21,'457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(22,'6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1);
-INSERT INTO transactions VALUES(23,'c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,14675,X'',1);
-INSERT INTO transactions VALUES(24,'c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1);
+INSERT INTO transactions VALUES(1,'9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'12f21e3a989f7b28ece1e24d018126bf0b8d6344be24196d8362a1f218fd59c8:0');
+INSERT INTO transactions VALUES(2,'58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1,'bc2524f34d7824f1530f9f53b1aeabdbf38a72ccc39783d41de0a7f80cacc16d:0');
+INSERT INTO transactions VALUES(3,'332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'3cd583567fd9fe4e8162cf71bc098e44cbcb8fe41ede6954df217cbe1e84691f:0');
+INSERT INTO transactions VALUES(4,'f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'467d3d8a2e5651aba5af185af6ea44c52be3e315a2dd885d7ea2efb4d4cdea8b:0');
+INSERT INTO transactions VALUES(5,'ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B332B030DA57B9565324DF01414778B1EAFBEE6C52343FEA80774EE1725484367F093B6C00E1BBE85106DB6874B1AB4E3F4378D0BF0BCFFBD8B51835285DFBF3F',1,'bc49563c96e9ef2df2cbee4ff2c07be675eaf382fef1e249244bb8e712652577:0');
+INSERT INTO transactions VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'d00ab6be126b638ef170c4ae70f5688538168d0b1ced4133fe99c21ca166cd76:0');
+INSERT INTO transactions VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'682a11acb7553de4c3f0f55a61eb033d432adc2ed310a9b1ded49a5630497bdb:0');
+INSERT INTO transactions VALUES(8,'f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1,'d8757243c0f0522e40e5dfa29c2958f3e2ec842b4da0761cdc1612063ab36599:0');
+INSERT INTO transactions VALUES(9,'c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1,'0a016813237e5169e6aa6cb199572ca6479c5245a3d48bd0842de4aac8a528c9:0');
+INSERT INTO transactions VALUES(10,'7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'b62286ce041e346cac7982d5a815df56a1b55778f1575f08e24c0654400c0534:0');
+INSERT INTO transactions VALUES(11,'c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'78390d392d84db9734cda0f6cb43b9eb49b0568e9473650ab9756c21c4b992b4:0');
+INSERT INTO transactions VALUES(12,'a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'d80f8093a99a0c63350f3ed29af416454993efbade598a2e4de4873dc27180bd:0');
+INSERT INTO transactions VALUES(13,'74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'0081e95041304df8c910d143341190089eb619caefeb02e8d1b803199aeb8c4b:0');
+INSERT INTO transactions VALUES(14,'6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'763fba63964d344185ec530a4b2e18cd83641a7bb280d7dfc1881772d74a9a0c:0');
+INSERT INTO transactions VALUES(15,'2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'1c955d683a1186672eb27bc0364c7b7c373341b2a40c8bb906cd39ec9bed60a1:0');
+INSERT INTO transactions VALUES(16,'65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'c3eb3463857a8defa936fdb1a10580216ebcacd843ae6a59d0328cea5b2f1f83:0');
+INSERT INTO transactions VALUES(17,'94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'6e87b9e2c5817b3fb2d8884f48f50697733404a54dd2651b5f45b4da35545833:0');
+INSERT INTO transactions VALUES(18,'a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'0fe94e9ce6026767f7c6fb2159bb0caafb1396c8d666233718d5b549ac1c9d8b:0');
+INSERT INTO transactions VALUES(19,'f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'1bd34a2e5fa7dc79e1f1bff6fcc0532e1c8ee5714ffe51d4db117b1ff4849270:0');
+INSERT INTO transactions VALUES(20,'dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'d42e76bd859bf8b182e6e798cbb571f766fc69aa64d9b71c15d5c04f7fe8d0fa:0');
+INSERT INTO transactions VALUES(21,'457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'35f2a884080b8d753095b1de08c0fc7e4959da011dcb0118dd3a856d75a89d2f:0');
+INSERT INTO transactions VALUES(22,'6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'b26d7ac6c4f02ba75486ccd6031f7b5b78891da999ad5a28082b77c8188af830:0');
+INSERT INTO transactions VALUES(23,'c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,14675,X'',1,'a97707e3dc3ad8d51d385701161d1020fd8f459b3668a9b0cf6d57a09416a3c9:0');
+INSERT INTO transactions VALUES(24,'c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1,'c9eecc8059afd7607bf284bcc3322c5c34639e4707a8737c2a98526911c99390:0');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -222,51 +223,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -278,6 +279,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -296,51 +301,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -352,6 +357,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -373,34 +382,34 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,'burn','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30',1);
-INSERT INTO credits VALUES(310001,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',2);
-INSERT INTO credits VALUES(310004,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',100000000,'btcpay','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8',5);
-INSERT INTO credits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,'issuance','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',6);
-INSERT INTO credits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,'issuance','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',7);
-INSERT INTO credits VALUES(310007,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',8);
-INSERT INTO credits VALUES(310008,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',9);
-INSERT INTO credits VALUES(310009,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',10);
-INSERT INTO credits VALUES(310010,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',11);
-INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',4250000,'filled','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',14);
-INSERT INTO credits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',5000000,'cancel order','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',0);
-INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',16);
-INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',16);
-INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',18);
-INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',18);
-INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',59137500,'bet settled: liquidated for bear','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',19);
-INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',3112500,'feed fee','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',19);
-INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',159300000,'bet settled','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',20);
-INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',315700000,'bet settled','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',20);
-INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'feed fee','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',20);
-INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',1330000000,'bet settled: for notequal','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',21);
-INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',70000000,'feed fee','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',21);
-INSERT INTO credits VALUES(310022,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',56999887262,'burn','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda',23);
-INSERT INTO credits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',8500000,'recredit wager remaining','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',0);
-INSERT INTO credits VALUES(310023,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',24);
-INSERT INTO credits VALUES(310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'cancel order','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',0);
+INSERT INTO credits VALUES(310000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,'burn','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',2,NULL,NULL);
+INSERT INTO credits VALUES(310004,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',100000000,'btcpay','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8',5,NULL,NULL);
+INSERT INTO credits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,'issuance','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',6,NULL,NULL);
+INSERT INTO credits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,'issuance','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',7,NULL,NULL);
+INSERT INTO credits VALUES(310007,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',9,NULL,NULL);
+INSERT INTO credits VALUES(310009,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',10,NULL,NULL);
+INSERT INTO credits VALUES(310010,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',11,NULL,NULL);
+INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',4250000,'filled','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',5000000,'cancel order','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',0,NULL,NULL);
+INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',16,NULL,NULL);
+INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',16,NULL,NULL);
+INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',18,NULL,NULL);
+INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',18,NULL,NULL);
+INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',59137500,'bet settled: liquidated for bear','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',19,NULL,NULL);
+INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',3112500,'feed fee','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4',19,NULL,NULL);
+INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',159300000,'bet settled','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',315700000,'bet settled','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'feed fee','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600',20,NULL,NULL);
+INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',1330000000,'bet settled: for notequal','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',70000000,'feed fee','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e',21,NULL,NULL);
+INSERT INTO credits VALUES(310022,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',56999887262,'burn','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda',23,NULL,NULL);
+INSERT INTO credits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',8500000,'recredit wager remaining','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',0,NULL,NULL);
+INSERT INTO credits VALUES(310023,'1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',24,NULL,NULL);
+INSERT INTO credits VALUES(310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'cancel order','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -418,6 +427,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -435,26 +448,26 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',2);
-INSERT INTO debits VALUES(310003,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',105000000,'open order','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',4);
-INSERT INTO debits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',6);
-INSERT INTO debits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',7);
-INSERT INTO debits VALUES(310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',8);
-INSERT INTO debits VALUES(310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',9);
-INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',10);
-INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',10);
-INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',11);
-INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',11);
-INSERT INTO debits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'bet','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',13);
-INSERT INTO debits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'bet','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',14);
-INSERT INTO debits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',150000000,'bet','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3',15);
-INSERT INTO debits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',350000000,'bet','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',16);
-INSERT INTO debits VALUES(310016,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',750000000,'bet','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4',17);
-INSERT INTO debits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',650000000,'bet','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',18);
-INSERT INTO debits VALUES(310021,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'open order','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',22);
-INSERT INTO debits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',24);
+INSERT INTO debits VALUES(310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',2,NULL,NULL);
+INSERT INTO debits VALUES(310003,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',105000000,'open order','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f',4,NULL,NULL);
+INSERT INTO debits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',10,NULL,NULL);
+INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',11,NULL,NULL);
+INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'bet','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'bet','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',150000000,'bet','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',350000000,'bet','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',750000000,'bet','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4',17,NULL,NULL);
+INSERT INTO debits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',650000000,'bet','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e',18,NULL,NULL);
+INSERT INTO debits VALUES(310021,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'open order','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee',22,NULL,NULL);
+INSERT INTO debits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',24,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -472,6 +485,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -496,352 +513,352 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1}',0,'NEW_TRANSACTION',NULL,'c86e192ea15e2629ec89a0c692ea39010519d2549145f9acc06a956afb2ac326');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","quantity":93000000000,"tx_index":1}',0,'CREDIT','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','3c8c2a7f6eedf294d209f58d85bd18e3e70b31e78d50156b7c2e0cd599ac0aa4');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1}',0,'BURN','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','5fbaefc75f10feb5ad5ccf3a7389ea3dc7bc2a2ed6dcc0bf83d55fb04d9d048d');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"98ccdf7cd2fb29a8a01cbed5f133b70b6966c6c56354dad00baacedd0673c87e","messages_hash":"b364e4b262b19375281c08af25e2ce24e68e5ec3fb881f680c318fc258e9b02b","transaction_count":1,"txlist_hash":"faf6476a908c85f6e26ca5d182688d6da3f326296602d5ad3aa5979cb8bc110b"}',0,'BLOCK_PARSED',NULL,'4ccea3585db6ac463680e2567149e2e5a644a408a7e590b8b871c8ac52b9beaa');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4f1f92d7349585a7ed4b5e54523044a3d335f2748cdd310a640d17d5b9a3494');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'NEW_TRANSACTION',NULL,'c7cc9a141c64f50bf164270f32d6a169ac0b467ebd7aa67c496dd55e402651e0');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2}',0,'DEBIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','264044628fde8f6f4a60a44f1cac07432bf05ef5864686e7c998e34ce553bf67');
-INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2}',0,'CREDIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','c2c5ab12c0a9c940da487275e7aac107a022450d2c624fd30cfc351a923511fc');
-INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'SEND','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','0f5e3602312aad4704048a01ef65cd6d05b3d6ea76e2dfb2789ca6baed10017b');
-INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'TRANSACTION_PARSED','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','57acafe7556b5aa680953f1866432304c1bf1584502016aefe6523ec59bd966d');
-INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"fd43dc5efe2ee796ef7d24f8d478a67aa58bf85f538ef4b9a49b983a315deb26","messages_hash":"508f3f345fea51bf28a58de66ce187d1de1f66b1aaf1f2752e6bdbb459d253ac","transaction_count":1,"txlist_hash":"544f7958bf7661b78699c708ba1097da0dbb044acee3d1d8aa9a32d6b659a14d"}',0,'BLOCK_PARSED',NULL,'e9269b56676b1362d7666cd19e37754e1bae32fe7d178984acdb69fb10d7f56e');
-INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b5bf4e20b344d1b743a99dd0a1a63554ad157d7b36fa8fa82148a62d31a5ea1');
-INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'NEW_TRANSACTION',NULL,'3706a0000289f811b1d1058788248070549168116c35724b60b0b510f14153cc');
-INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'OPEN_ORDER','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','b85048770b33dcc700208badf90d5968f5b46bc04cf0a1d69833bdc409573e3c');
-INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'TRANSACTION_PARSED','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','8f375727a9a955099ce7167d8f292490da047f886263bd29844490a5f212ae33');
-INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"dbae4fff32545b4f3c104fb5a051dcaeacecd27401c84c09f93923b8bc30eab5","messages_hash":"433747661a40185a36239da6ba39d8d3fe35bfb8080a674d6d46e74f7c71fe9a","transaction_count":1,"txlist_hash":"ee37e75a4eba165ed448b7cf96d188d7f738aca4d90a781c7f473974e12564d5"}',0,'BLOCK_PARSED',NULL,'a11b6f137e0553d16e22d335eaa76cda998731377aeea6d24093063db68243ae');
-INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'870aab37beacf4db91170c6b3bf6f8a3408ade566bdca0407bad5a20a969e944');
-INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'NEW_TRANSACTION',NULL,'19903334b96008eaa206283f9781ae19346b020b146982e1963be33543cc69ec');
-INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":105000000,"tx_index":4}',0,'DEBIT','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','4cc848bc89a66c96b51aba77cb55b432c536db77dad542b999565ef530644e9f');
-INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'OPEN_ORDER','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','083ba71a9f6c9be55d056368bfe9babf9337c6b9c1522e99ec82ef559be54269');
-INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','f62788feb5076d452507a2315ac288d63379d7f454b75839ed4a801c2d187fd4');
-INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','837cbd02e0c25a7e514e07d58fae5667f9b0bdf30a372c1cf4306f33520c6796');
-INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx1_index":4}',0,'ORDER_MATCH','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','109b014aaf169f9c10bc421c4b2d4719e58e348a91e4eff4599f365cd3a8b477');
-INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'TRANSACTION_PARSED','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','03d19a4766c4d0fcc726ba799427eb41a79ce54e1dde33f898ad21f41cdf5b92');
-INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"fd0ae9793d9513540246b94ad116fc0531e8e07b2c014752e175a12e2a7a82d4","messages_hash":"01a5158be117031c2249b66ea64def6a7fa907cc99484335d67fadf9b747f3e2","transaction_count":1,"txlist_hash":"107902b17490957ebc0d2cb5dba1f5e667e3a393acfd8b3adde9f6b17aaad5c4"}',0,'BLOCK_PARSED',NULL,'bb93328ab531b7b555d486108bb19ba67616ef69634bf95eebf39a5d09fd0c49');
-INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6c243a24e0f80ff06932fb1ccd69278e8cb0f61f141c670891c32dcc6e914c8');
-INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'NEW_TRANSACTION',NULL,'6b5d62f27b29cf954c49e756540261d837acbdd9279a3fe002ab406d854bb534');
-INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","quantity":100000000,"tx_index":5}',0,'CREDIT','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','5e533c7f27b7a38d6a522ff7edfd98638eb28bc896d845f0610ba0bc9aaab4d6');
-INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","status":"completed"}',0,'ORDER_MATCH_UPDATE','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','20879f2aa2ef9c03e699225b6dd3eef16caf1ac691c277fe2890fe2b0cfd5f1a');
-INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'BTC_PAY','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','cac23eac67b86c802e62b8b5fb8229a5d383c79b841bab6a369a5183a7071127');
-INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'TRANSACTION_PARSED','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','c01b77e94afed140a8981012c3e1be2a5e070b522e786e42b9ff05df0f61928e');
-INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bd894777a85b731155a0d6362766b4220c03db4f3e5fbf030d6c2529cb5f3537","messages_hash":"ffab6b5c0592a131d2ee25f07a31b86d9a35a48ca313bcf129ddeddb84b6b04c","transaction_count":1,"txlist_hash":"65e6a7c64c8439a60fb066d96d5165e6e40974bd1b98812ac6a4172fb1db1511"}',0,'BLOCK_PARSED',NULL,'73e51ba7987d909a463aa7677f0a15af3bc9e8528c9e93031e32f6e0e6a60154');
-INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c015115e4a2b9f213419c6c5c26dba647650bfdce31b4a5acd8d58ec9ac1cec');
-INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'NEW_TRANSACTION',NULL,'bdf4739eed2295543e62ecaaacd4bb57393c1c9f1a61dc72fc04ea66e3926c3c');
-INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":50000000,"tx_index":6}',0,'DEBIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','ec300ea5a2ef5f830fda4c5e94be0680a968ea324efba8199faff1eef810c4a4');
-INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','2f5a71e7b0cc8a832a210d99c5dc8a06a0ff11ee9350fc7221134e5a7c1df7a6');
-INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'ASSET_ISSUANCE','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','c0b45fac41c9a10bfe6f225f6b01501004cefcb438fa95e77b304c9045ee69f6');
-INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":1000000000,"tx_index":6}',0,'CREDIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','590b29df4c9bd69435a4a6a191d8ac7cd71de3e35cc9f4dc1467093f7ba2f5a7');
-INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'TRANSACTION_PARSED','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','f95928ba8fbe72f7e24604446580279b03587d04a966bf6e5c849a46bf3f02ce');
-INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"264c98f1d460f78e52def545d25482fd76549a5309d04841bc27b335f06470a2","messages_hash":"92d9412fe93d5ea10d281e838ab44f67f61078ca1df6e621b48d9e50a01e18e7","transaction_count":1,"txlist_hash":"9ede5548f7cb273af825360a6285fe9a51e9625c9084b2dde7bec013dec24f0e"}',0,'BLOCK_PARSED',NULL,'0e5a154d96a94fd36d1fcf7ad918aff687939614c517a00c14dce6d58e24c767');
-INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c83793ade2a6428353a904a1481a2068da304ba5e023cce24a116f12fa704e56');
-INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'NEW_TRANSACTION',NULL,'37caaa98437a7c3de178edfd1e17a5a388c89c10d91f55877444964b29bbab18');
-INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":50000000,"tx_index":7}',0,'DEBIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','79ddb8fbb96d01d9f517049c7d0bb1a710144231827b99c1060541ba936ecf20');
-INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','497e6eb0d1f4399bff1059c98e3efcf54ed903f3187dc01e0b58ace397eb18be');
-INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'ASSET_ISSUANCE','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','a4728bc9e2d5b5c0c69b09c8d2d3efeb50fd71354bc17b7d1e349a790694370a');
-INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":100000,"tx_index":7}',0,'CREDIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','aa60e13eb589cbe38b45cab9c46e1cb806b178e1a63e76abd9572f9fcadd9233');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'TRANSACTION_PARSED','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','618d46d7991a36c3167d327116ca8607889e44534f6ab3eea2e9a3c060e78be4');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"a1f2aa5a0b8d030c2fc4e1243c3173319ecf68d232262ea3dc8bfdd03a3f923a","messages_hash":"5259477ce9e5a469ba99387b432342722700d86f80912613aa648460421d5261","transaction_count":1,"txlist_hash":"afa257be6b0f57581b8f1b932b3c8473ff5c89e4bd6c3d3e3dd6a8c3cd9b09d3"}',0,'BLOCK_PARSED',NULL,'e548ca2a3e4c70f6cd733da8aeedd94e5546fe42e60263c534f3742b1eafb103');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c60f8ffbcf73ae44d11d2f852e664376d437b7fa663dc8c0d91771c4b602c57');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'NEW_TRANSACTION',NULL,'afd50bfc7df6000d051bbb98587dcb70b49b63312f56f0c3d7297ddc906f712e');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8}',0,'DEBIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','25cde353370aa5bd65e3c3776fe6209cda05bf33e2359e10723f01b0ffecbf90');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8}',0,'CREDIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','1dc879e73291c2a725d193749a2a5620a06a90930a2dc9b2900eb222e7350cae');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'SEND','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','6ea2f015a5c6cf771b01ff704a77089d98507c4ae107e36489404f733dcb7d99');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'TRANSACTION_PARSED','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','8914a054906e7474e7771c842e23d659c2b1a1dc3791f2f872315827d19ad5e8');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"8709aa2d5064ea2b7ab51a887d21f5fddcb7046753cd883317b533ed121f8504","messages_hash":"0b9ffff66cfe4698c16889013800547e79cdad7d3f84eff57e14828a3dbe8a52","transaction_count":1,"txlist_hash":"40941bb90c086bd2716de8afc1fba5eb75721143a86a606ef99ee3312de95614"}',0,'BLOCK_PARSED',NULL,'50fae471dcd1fee5cebd3d2a8236e7cc36fc1f129d0e21344b2cf3c539d8c85f');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6655f78936cffb8b8580ce9a400cb6b26b39211788b47670c54292b567b7a790');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'NEW_TRANSACTION',NULL,'f6b1e2e9b906b1ff55672eb17c278d6a1b955ccd004b0a8f961f546e2d9e60ea');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9}',0,'DEBIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','c8179c530800cf478d0458b3f1c9e750d7784730bbbbe9d59e1409c5ab44247b');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9}',0,'CREDIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','9c474dd221d06e4f3053e4fbef754b5ba111c70a0724d0b94fed7d2f31cb2a8d');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'SEND','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','f61f07699bb0dfa66d8a8faaed9666de4141e55f11563debe394542144446994');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'TRANSACTION_PARSED','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','fa009024c6fff73002310a22f39281aa906a70584b85baf42161fd4e8c60920c');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"c1c516176fe38b69b31e3668b5ef20805bd90d3112c77f5652f838af8e7f604a","messages_hash":"7fdd558da169a125a365a206d1606ef1594ce7dc3c8102d9de55a0a08f8036a8","transaction_count":1,"txlist_hash":"9b186632fe722ba57daaa01573568c3d3405f7fcb0a729005a6338266a4debfa"}',0,'BLOCK_PARSED',NULL,'7c2ebffb3394a8f522fefc99fe197318385bcfbea9e0c80139d8f7b07f44af86');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'945abf75007c0fb502c8ab6180c5106ea96461d0699717e70d2b74c4030a972a');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'NEW_TRANSACTION',NULL,'ce0f97295a9d31d98d4640616050997604278c13cf828bb6b68e5b34cb9d6fac');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','6044ced675dca469fa0495b78945f44f5c6a0080dbdfa37bcd3b34d0459e03ed');
-INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":20000,"tx_index":10}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','4dc64dea12a990c7a50870a4a904ffef6faaa8eb927e576846a448897348df17');
-INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10}',0,'CREDIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','fea0b450244f11fabe2c09679dc37cb43dd140323eb4f5b2f1a1a2d1365c7acd');
-INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'ASSET_DIVIDEND','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','3c60bcd167a29d31dda69d1fdca3c0a75a5054851bc4be7e92f732c2c77ac4b0');
-INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'TRANSACTION_PARSED','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','7a7b284a5296f73e3f83faefd16e08819580965dc223a0b752e7e64cbdd222c9');
-INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ae8ee9e681f0ac96de96babc1c80e5188b3e0cb91074a0dfd8511ee7d0ae64c8","messages_hash":"262ab7169bddff900a7be3663dc902396e4e58f34c0112f1293a2b2040856f03","transaction_count":1,"txlist_hash":"39f4f154cbeae9a65b43ac831b2d5ad0e6f6575b909b979bd4bd97dadbab4cdd"}',0,'BLOCK_PARSED',NULL,'589b861eae254c806ff1640907f831fe482eab1de6cb01727a0f5ce74a509afe');
-INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2639f62c99d85fa0fd6f8841832701e209438f47d12d712a9b5031cd39641d55');
-INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'NEW_TRANSACTION',NULL,'1a5ffb7afc271c6871c180500ecbb147ba767596c1af7e80febf40ecfb7fb78e');
-INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','dfe2d7f058ea3de09fd1c08a5942083bb9d42ffbe66344e687991da8f58f9a6a');
-INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":20000,"tx_index":11}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','0295b49a527234ed676894e4c2d86213ef90b6a288b679952afa8039c6d5b431');
-INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11}',0,'CREDIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','652ee2f58caad63e14dbc9069c557e9aeaf8c54520966ba3ae85b71495183d19');
-INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'ASSET_DIVIDEND','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','fd7347d3b60fec6db7abfc9712db35bc5577d2e399cf607d9c9f49e8be01eeef');
-INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'TRANSACTION_PARSED','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','a56262590fe469f026a33980c5a98e9c5cc18db30b23cfc1c6a0782628e8b646');
-INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"0451ffa5d7ffb0e588e58ac7eacf77f6b3e17f1d27c1039f03d7716b16fb234f","messages_hash":"a363f1f103b4d39b9056e391559737a36c56439c6b3a12854f306dca0e1ed067","transaction_count":1,"txlist_hash":"0cea2e2e06c6423d1c5ba19f6128fbe8fe6d6c3688316c9c35dd31cf03d38c97"}',0,'BLOCK_PARSED',NULL,'d7a963936c7f79b64f4c6c92069c74404776bf6f0ec8a1d4eaad0ddfb1295913');
-INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e37b803d3364c4dcb2073aceca2b20bc297ef98b71297a978f75354ad5769915');
-INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12}',0,'NEW_TRANSACTION',NULL,'498efeed24f5988463668c77cfa1fe71deb28b9076b2711d16bbc04e918e02f2');
-INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12,"value":100.0}',0,'BROADCAST','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','49e49f167c077f3742b329eb516f1fd357ff50db84a232dadc3ad201ad9ca0c5');
-INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12}',0,'TRANSACTION_PARSED','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','f14f085254a257b2e2b8e8435a9b0519a2bbe946e7a571a3924bf7c181b426aa');
-INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"dfaae3f28c2f75e4bcc49034ff2a191b5a41b88035c5d266181617c8c65ad5d3","messages_hash":"c6c72bb6b85bbf0d1fa5e18500990cdf69c7b7b1d315d8639f6c6afabcd31a26","transaction_count":1,"txlist_hash":"0134329cfdaf63e5946b9b5a94b73f59b9a870d4569ca07c0cce078bf13714a5"}',0,'BLOCK_PARSED',NULL,'624394e5ebe397e7d8f2f6772ec1a6312d02cf362ce62805b3224f438ae1207f');
-INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'559aa11c56f5bddb7a0078054c221b94d5e29fa36390bdea495e0b7dd4b44395');
-INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13}',0,'NEW_TRANSACTION',NULL,'e5ed2535443b7d62dcbb0e8877b7ee6fcc6f6ff4a218136ab6b9619487b9040b');
-INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":50000000,"tx_index":13}',0,'DEBIT','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','25495f7f60fd90091e185af046978d2e2304876f8860631973cc83d368b1e2c5');
-INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','5b498e95e9a2f9015f780f117e6e2f9abea008efbb5641d87f9efd62595a3614');
-INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13}',0,'TRANSACTION_PARSED','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','66c642e22603ba75e6891b28af35965ccb511833bacb210c4848f7ba82251426');
-INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"c711e8cf2d9bbed01724a7b22cbd4900a4fd0a126bb7ecbd7c97ca15a6276553","messages_hash":"7e2be8d32d548626652064d9d37f0942b4a78667630e49c3e8e739d10478fb75","transaction_count":1,"txlist_hash":"9a3fb4fb846c9ffff3a50a0a31f3ac3900ba7048a60dd69c6e14752734358f1c"}',0,'BLOCK_PARSED',NULL,'39108bd9cb362cb8a4709de8548f9387985bbac3a2bcdb9d04186a80f21f3ddf');
-INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f2904b149f5db06ca3796d3c99991f68a57c88af0a4ec6461d54babb54b9ca6');
-INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14}',0,'NEW_TRANSACTION',NULL,'083268bb40308534e5b034558ff04401ebe3447b024f2ae40e2df5dfa2468f7c');
-INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE',NULL,'dd7b0cfbaa7a3133face36a283f1e7b8879d3c433f7d9ff858bafbfd2ea8f910');
-INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'20d807fcbb97c254bff774e6e8ac3f9c41330380ae1433c0ccc61fb2c55d9e41');
-INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":25000000,"tx_index":14}',0,'DEBIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','07afb36b1a49a3f1bc4a99bd470e9c2d9b1fb53884136cbfd358ab7630d92001');
-INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','ef99a27387d49122181df61e7dd2f8bb4844144f190b512547d7051a90911bf1');
-INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","wager_remaining":8500000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','df153ec4221b4b73ec96637fb6e48b6199ca672f5a6e31917d3b90235968d9e0');
-INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":4250000,"tx_index":14}',0,'CREDIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','8e604a0cc3418df997ed2fbf9be523b51298118edca1d81d15a44c1eba263440');
-INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","wager_remaining":4250000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','7dbec440b1b0ade831d2e098006b7f4acd991a49474b975b0199efb2996c1062');
-INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx1_index":14}',0,'BET_MATCH','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','7b0b702847f288b8b5e6e0a9281824b1a69bc42df5d066da68b4b7e0ee9adbf7');
-INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14}',0,'TRANSACTION_PARSED','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','991d021e7435fe20de91d68a4acd76c1f277305c8d561e569bf81593cd186a8e');
-INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"3dfa5822de8a4c674f1517b17e50d2ef63ccbb1fc4ae96fe5e1dc05cd353aa4b","messages_hash":"065ed4ebeb7d71c4d6c81c65e46f8682fc8eabaa8c08b0a8298fa93140a6585f","transaction_count":1,"txlist_hash":"6228a449b24d607b8fe1aea60a0292874cfe515a9440bee2829f6e61efa0b2a6"}',0,'BLOCK_PARSED',NULL,'cf73a4285e72246b8a547958be46a0314d55b8e3bb86e8da355d8f66fa168fb5');
-INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26e6c0a60ed43e474c9df30305d97a1ebf571e70f520de3934c77204abdc4b78');
-INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15}',0,'NEW_TRANSACTION',NULL,'6ce7ba3cc6165a80f509cd8875f441e67c0a8833a71c647dc31a5d37afd2e2cc');
-INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE',NULL,'8e890a29a19ad4a88548adb45be017d4e3775d128a0e9fc81c11a66e4b195d5e');
-INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":5000000,"tx_index":0}',0,'CREDIT',NULL,'9034c11553cb970b024830720a8d0f646e6158b993311e8439322d616a057f01');
-INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'5c54b2d9e963a6a79b9ce2a710f8840e85c2b71eda8c34f6c06b54c11f8bb03a');
-INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","quantity":150000000,"tx_index":15}',0,'DEBIT','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','48a2bff623b2b93f07def67cdf35f11cc65844f33bac512d1168a73ce875167c');
-INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','ccdea722cf497d7478bbbf92c49db29564ca8c1a88af42410b578213f8734355');
-INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15}',0,'TRANSACTION_PARSED','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','e51156d51baa53d3f7f81846448d20940fb34b04180af909121dd352d07d1ad2');
-INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"49fcaed957776bc62c9f1feac30dad8c0574596d312f9efee7a453e00bf64866","messages_hash":"912195d824c04576868edda92286e9720896de5c90b6477ee927e78553c23283","transaction_count":1,"txlist_hash":"700cf4c54e23c0cfb4d8b02bc6cb1ca509637dd95312629625aa92d32d5548d2"}',0,'BLOCK_PARSED',NULL,'17910527af0015c3a240b1897b5d93fc903185e80297b695978ded5f5e0f264a');
-INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fced7af0201c42463d77b6ea48f85f17e850c3e484d931ef5aebfab6f5c2142');
-INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16}',0,'NEW_TRANSACTION',NULL,'d189185af10c52c21a9ce1d5d9750dac8656aa6191ed56cbcf700595b45e47af');
-INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":350000000,"tx_index":16}',0,'DEBIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','82d9043f4b46db5248f7061d75765e81899b77386d717d644ef59d9cc4806f27');
-INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','f060bc5e423a8314ec5bde2d6f07908595ce8b16472766a3e87890636edcd44b');
-INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','e74ee6dcf6eb1215b6a38353c1688ee9dde1458b75d951d3b26dacdf67ed05fb');
-INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','4c91ec5d4509a825b1974b873af8c0d46f5110b1d0ee6879ff3ae507c26bbb95');
-INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','fbf9178d5b37bb864392f5e47b0fae0abb7df8cb5010774309b1db7370707c10');
-INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','a00eeb89884a705e485587f039211916cfb6f0c634421f114d5b56909beccce5');
-INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx1_index":16}',0,'BET_MATCH','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','f6cf6673616d562989d9a673d540b983d2fc6ab8b2e273137fe5b45e696271cd');
-INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16}',0,'TRANSACTION_PARSED','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','9b7f4b0ff805eefe6c6f6b4c25dd1492119ba62b4339e6f19f067e5a3c1823e7');
-INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"4e4abd3e8ab2658a7ac673e3a178ceac76fee41cf48bb6ed007d241c079979bf","messages_hash":"b0cc104a22aa13139de9b6ddd2f363738160a44272d0c5f60e9568b4cd718f23","transaction_count":1,"txlist_hash":"288c9c0f37cb0c2e9db66d4b88b165391a67f06016ac84c485e9b9158ee51f2d"}',0,'BLOCK_PARSED',NULL,'5ece24b9d6047f524aaafef208447262070a468ac1af95c0be42c8b52ad6c402');
-INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93f72c9049883134eaa2bbdaf79347eea0e0bd87b7cb8d52cbcc7ea4268b839e');
-INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17}',0,'NEW_TRANSACTION',NULL,'665d52a846dbbbfc3a908aaf3eb46a1d3354adf530dd1fb406e9bcb254dde22d');
-INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","quantity":750000000,"tx_index":17}',0,'DEBIT','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','aff3a50138c3c9241d723808ed698e8da8dee7d524d4b5ca6ef10f13e2f300e5');
-INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','90700d5b5f7c48592a5f3d5aefebf78ab9d8c0b6ec7115a2caf941b6496cfc6c');
-INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17}',0,'TRANSACTION_PARSED','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','6f0656d1b90633d488ae6c790d70ae1603380cd5858ab2079cf6ee25216b59cf');
-INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"17a28cca0777254af26544edfefcad8810e847e5d173fded9a7813719cf1162f","messages_hash":"de03065dfd7c73a58301d2ad9411a1f7a4eb42123adaba0ac82f4b26412ab29d","transaction_count":1,"txlist_hash":"1bf7e0a4aa8356584087591a8c8e8b28185a6ebfe1a15a85f01165a04ff57913"}',0,'BLOCK_PARSED',NULL,'4f3fc42200c44194c0b0d0e769f814b8efbc399aa4db3f9cdf6e872fe615dace');
-INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21027d6bdb87078019ec1cfe1c519367c9877d333c9ac0d555215dd0fd825244');
-INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18}',0,'NEW_TRANSACTION',NULL,'1847c5787464740efd181702b2a7cd06c71418fc65381f583d3fc0080e9457d9');
-INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":650000000,"tx_index":18}',0,'DEBIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','607679c3e50b453c4d6230c8bec708c99e2bdc91476eb4bbfaae7f543cc848f7');
-INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','b07d26cba687f88be3a4a1aec9d6c92e5d43e2230e546624af25bd92e8c23b11');
-INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','947a3f09f3ad57672510532759d3b5ef686d72e117ceba72c4efd9c5a436e9c5');
-INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','a63e81bf528edcc240f37aeca457286d4935dc7b15032e4e88aeed5f268fe588');
-INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','2a5be6341390ea78adf20d3418976d2b5240e128018fa4d193fa53cdcde03a9a');
-INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','e95794c767ce1341df23efd0b20a8df217ec486bd8d6028a0b7120d04a236784');
-INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx1_index":18}',0,'BET_MATCH','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','096426e06c32897f2c8b42fd9294fadc8307f22dbbdef4611de4856a07658351');
-INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18}',0,'TRANSACTION_PARSED','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','400aa8d723f5ffece92ca484d69713346f9cc0cb9e03d74549d79b9745540fd9');
-INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"1fb58120e9eb78908fda6265cad12b4a5770701e9a271bd5c4bc94059bd3bab5","messages_hash":"22b69c233a30db17deaf78087019583ae1097211b856b9235b11e341b0420b03","transaction_count":1,"txlist_hash":"62678a570c40b5a12469e442b3a54f1416d9113de2db501f37ed533f345e71c1"}',0,'BLOCK_PARSED',NULL,'6519c8009fe2757cca76df9776509a4966dc6148032a394ebcec3ed9b84d9615');
-INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7edc11228c209a3c163093a4fe7b96c77ddb9c882e9323f3f6128ab230e880f3');
-INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19}',0,'NEW_TRANSACTION',NULL,'ea36770739537622342322ff4435a6171175773722cca3f8ce2a0afe89d9e462');
-INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19,"value":99.86166}',0,'BROADCAST','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','e7a43a99a95741e84c17654522bac273638c06998b8e97986e322be44eeedcd6');
-INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":59137500,"tx_index":19}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','e8ea829e713718c23c7c614896bf9ddd8f7ccbbec667cc77072220d88419d17a');
-INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":3112500,"tx_index":19}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','ab69f213eb2bf33c2a30a4f9157af53a5d1f14457693ae997e07d9afd0e0afb7');
-INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','1740cddc5cbb0584e80d50a25028abb6968b02d9c4bf90fec063805411ee8834');
-INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','5104be7c3f55e7f0c391955f2167a8e0e72de982d8b8d2391969adac0429dd1b');
-INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19}',0,'TRANSACTION_PARSED','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','3adba8f0eb54b1fdea037bc8381599b188df366f64a0f6a58af7ab8b20525a98');
-INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"304243c1b11644e04d325d7100e4c757c07b874f0349e60163a5a544e84e951f","messages_hash":"277c84ad2141397b5cd35cac07e45452ecdd845668f7684bb1c1679f4ef6a50b","transaction_count":1,"txlist_hash":"a174e4813aa967f5466148f27f4f8511ed9404295bf613e112c08b72eb3229ad"}',0,'BLOCK_PARSED',NULL,'d2c41bd9ebb4f09c39abaceb7fdac874a3d43cd4c2783e3396d2fb6280ebb7ca');
-INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfbfa9659ad6e00889e7bf5c3990c33c00344b6f746cbad927f7247e31907854');
-INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20}',0,'NEW_TRANSACTION',NULL,'9b578cf801683171e079ed50d4591f037ebbd903bc434abad076a87629351b0f');
-INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20,"value":100.343}',0,'BROADCAST','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','1004e95b480b914ea04ab71037206f79613d1566f7c628a5cebca3c57024b8e5');
-INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":159300000,"tx_index":20}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','d8a56890bf9a3fcd2fe07005a997556ab35fc3a983d37658066b197e42a7982d');
-INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":315700000,"tx_index":20}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','9bd02e43d8546500af05ff4f239a37b8556bbeb0c18481dbd2d4b941895a3934');
-INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":25000000,"tx_index":20}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','bdabbdc48ca1e42a215542dc9b2de74183a220c0360fcfd6928ac8d8f31bb832');
-INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','5a12e55bba5e43d46fd4d1acf07223c65bf8863232d3e1b9e3b32a73f86a29d6');
-INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","status":"settled"}',0,'BET_MATCH_UPDATE','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','89935cd113da4d072f5b52b4531b3b31d85ad291b20c6955311ab3e049aedffd');
-INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20}',0,'TRANSACTION_PARSED','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','bff5a0b911b0b9a7cac45f82dcab812e75f6a10096431e38122c101cededdafb');
-INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"fc9905ee4863b3cf29a3e558ee690a24ed978a4fd79c464bdde30a34cfff19fe","messages_hash":"0928aaa2af960f1750455c96196f5f331bce38c09b7cc315f40aacfc8b363c3b","transaction_count":1,"txlist_hash":"c551c2094651cd0e06e0cd9d513fec771b69f4bb89c3034f201c89f703cf8a23"}',0,'BLOCK_PARSED',NULL,'63ee75c8d593890d08a4fb4d345735d93bff43553ff3bf686d13cfe24c16fb13');
-INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4fae940620a20419e764924497bf5d8cc2ae37ba03e1a03049b120488bdae6e');
-INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21}',0,'NEW_TRANSACTION',NULL,'fd426dd8da3da587eb01ffdb05692504cb7113922a1a60a1fbfa1894ca63d969');
-INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21,"value":2.0}',0,'BROADCAST','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','03bafb81c27bd9f24cdf0a3a1805ceced2b774ef34d10aea1946fb6c505bdf3e');
-INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":1330000000,"tx_index":21}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','a48cebe04aabaca54c2fb5034cb98c315fd00a6b8d216fe1d64d2612f5837867');
-INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":70000000,"tx_index":21}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','1775ffc6dddebd9b8fec9014c7a3b8a44dbd7728c1e5e81eb082d5a59f5884d8');
-INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','893e83aff98d43f4b993847d509d87b8ef7a26e3706b6e7e9f7144275c800e88');
-INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','6e19d5734c27d1a3ce8c07cf0f876f19c060689ed7d31299d10dbb50a7088275');
-INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21}',0,'TRANSACTION_PARSED','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','250ff46e87ee5d306de03d890a137c112506bd4b5a0edeed23f6d501e7e40342');
-INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"e433feac4a09ad727bd3764b10a568acf5c659745a695e9d7e8790514f6bc98e","messages_hash":"859eb68b2ff99d0621c4d634d717d985688b8e0ca83b84e330446a25ccbd5fe1","transaction_count":1,"txlist_hash":"087d41720991e4b6bb72c6141334a65c9a289454dd8fd57edc33a09db467d086"}',0,'BLOCK_PARSED',NULL,'a634501f26939538fb274f89c2c39f03365aadeb0fa56617c44fa20cd11c5f67');
-INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9711988a1f828c65095aa99cab911dd9d6caba68efd7806566472a36a37c2f40');
-INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'NEW_TRANSACTION',NULL,'8bea3f71e2e15ac4634f778ce39c32716778681d726f0574496375da55f43dea');
-INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":22}',0,'DEBIT','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','24f78c2161edc98f7fbcc539f97c06d3d8501a094cf4bcadd5b0caf059b86dce');
-INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'OPEN_ORDER','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','d876ec6e0e800218f4c7246947db63dd8d3bd57bfd74fa0d6d27c8542d6bc26b');
-INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'TRANSACTION_PARSED','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','0c1fc825505fcc46222a6aeef1a5ae03afd6bbd4705c889259e117cd6e798cfe');
-INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"622f92da40eae0b1b57218b32ad18daf7d79c9e0202fed4a288d75b8fdcd19d2","messages_hash":"9e323ccc0a72f968a5886d5bd8cd26c990602bd87d0e65e8cbd64343c4b02bfe","transaction_count":1,"txlist_hash":"caa77e83354d56437795411f9625dff332c0dd39d059a0ad7381fe1f37e38999"}',0,'BLOCK_PARSED',NULL,'110d0be0edab70917f35ed3bc2e3070a90dbe86b1210b5110002ef16d52f09de');
-INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'324a172da659006cb39af6bf32d9556efa467c6e950604d4a65282b608266e12');
-INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":14675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23}',0,'NEW_TRANSACTION',NULL,'d4644b7710d866c38e6367901c0aaf0e668f3b0d6567501d1f54acb05618523b');
-INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","quantity":56999887262,"tx_index":23}',0,'CREDIT','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','b357be509a928b7b20620ab84c84341277cfe2c7e9ec2f3cd6ac1de17d435db2');
-INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23}',0,'BURN','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','fa423fb59604b8aa1fabc870b9509cd3d254e2e8b5958c8ca4cbfc7e41346b1c');
-INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"b7aa8d9ebc37d52d8dcce2cc17431d6edf5a183b73ac85bb3d91276592215cfd","messages_hash":"a9bfc8463d636a888c8ae61b3fc13d2d32768fa1920b980cb5ea967b4863e6ec","transaction_count":1,"txlist_hash":"df23960a57099b0b64572553e56794b1eff3004e684ee2b31187b585aeb03587"}',0,'BLOCK_PARSED',NULL,'bca94292402d21e07550d8b0066bf9b112cd246d1af6f8b53accfba62a428e5b');
-INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b30dec84846345e7715dff34cf451639e11e17b608d24c9eeafbec61a0c46bd6');
-INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'NEW_TRANSACTION',NULL,'7d1a7512767808ee743ae602b6b26be430197b106f4e45b4c2bfef44b9a069b8');
-INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f"}',0,'BET_UPDATE',NULL,'33d33770166288c7c7b1603670cc7aed92a97cc3d0ed7cd417417eca7291eed7');
-INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":8500000,"tx_index":0}',0,'CREDIT',NULL,'b1d6b3babb53babf9281fbee6205915e5348ee57334ddf8ea0aa8bf6470f51fb');
-INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'4b792e52bc9ed41fd24beef19308f558bd002f291c0447aa55eadd67cd95954f');
-INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24}',0,'DEBIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','b0c9d5a401472fb0bbe6c8f26f973d236dcc520e4f5dca63598a7ff7f6b5ce56');
-INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24}',0,'CREDIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','c89a059672bbeaef89ee3b20e611714cbb35eebeb2532a1d0f73184b698025c9');
-INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'SEND','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','d0a012c6eccd2c60fbf10c016e11997efbf4ade0a8b1fabdc8894097617d5e8c');
-INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'TRANSACTION_PARSED','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','2ccc47fd0c6fcd7a8dc8444e39ee31b7354b21d860d7b859dd067038fac172e4');
-INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"501c058860063ca599f3b946d465b3bbd84fd483a2a80527e456e3de32b48a19","messages_hash":"82ecd86662e345e85c8e68ef7a8dbad744af2415bd71756cdd5824ac35b9655e","transaction_count":1,"txlist_hash":"c680a6d4f839ba4f9420a99f0512e51fc1db0b661ed027332f440c6089eb615a"}',0,'BLOCK_PARSED',NULL,'3e1db3657f1904bcaa17ebcb34c06a19c8591c70a8f1213428b4247da37874e2');
-INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18980600068be8b0f53b6110c677142cd32505303bb869073bbf1a9a2b8dc5ad');
-INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"222986ec44fae1a6196d64dec24b79872970823f17bf0459d3b247bdef316675","messages_hash":"2d94009516ad0a6a7696d3c90c4a18b18970ed29702a91684120939b7f7e424f","transaction_count":0,"txlist_hash":"f40aab7ef7167a17e35279423d9c14d49a9ebc05691fa658b09add1373216959"}',0,'BLOCK_PARSED',NULL,'8edab05e83dc65e495e98a56b1e7ca3073583064a2dddc229c4eecf290d34f88');
-INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afd6f5d8d8704f164566f1d72516ee2538542fcd3713366a277af55824966fea');
-INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"bcd88006b9cb98445a74c656d424435e82eeaef95dd9c54e394b42808dc9cb8b","messages_hash":"07d351ee43763fbb80ea1d600cb501b6f8b0105cf3d3d277b9a9714527a81235","transaction_count":0,"txlist_hash":"0e3736813d3c0e789cd9474449abcf83118b5559cbc2f4dfd4d3ee51b5847a57"}',0,'BLOCK_PARSED',NULL,'31fcdb09d52bc4dd619bc98cc29350c1cf6e4f8ae6dc12f503599a06f9d19a55');
-INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3630fa5a259111de1266c6caa18dc15d5c66bf10b6e478a157c3b59ec7352221');
-INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"3de7bf2043ac2e68bc9eaf8d1c12195a4f2400bc78c8deed0d487af11edf401e","messages_hash":"3b432d9f048634678497de80535eced0de2db802c86b3ecd6f7e3052285f2819","transaction_count":0,"txlist_hash":"c3572580398fcd71e5a1fef6e10217a99dec1aa605d61830ebb64ea65b7907ae"}',0,'BLOCK_PARSED',NULL,'e108ce999db97ba89f1ef08e35f3e75eccc8d4d3c66999f0a6da97eef10a4e98');
-INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d8062e68c648c295d849cb480762ef3ca415cdd80af76146cd52d617627b3d6');
-INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"6c2a67783cf36e8987dc1805f87532ee1b94f79fb00952d8ee4cf3daaf655f85","messages_hash":"139682b87ae2b72b9fbd62ca0d3788ab4bf20239f6e27e0142e7b4d810b3138d","transaction_count":0,"txlist_hash":"b8b9d102d56df94d4fcea6f8aeb92d3cb859d3281c9fac7407842b7f05313737"}',0,'BLOCK_PARSED',NULL,'84b35b4a12db94a94fd0674ae0337789bd33003cb5cf58539912db2ac48a7701');
-INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d45f490b35a0f5527bfbb7e766cc78e9f0d870ed096acfe0f7fdcf608e22c4e9');
-INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"659c73390e2e7eccc07d690fb438181c604787208bc45f466e57721fa1e21a64","messages_hash":"281c45bea9359ef175c8e8b50167fe72be91b589dd7e589d51280d15ffefb8dc","transaction_count":0,"txlist_hash":"55eafa176bc145ec7b98497c8a156226c68bd3b921cbdd06a890b2bd660ca050"}',0,'BLOCK_PARSED',NULL,'e8d17622014a3d00c149e221bb7b91e1e8477b9f95fc6a86165e9d108f7692c7');
-INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ba0f4f79da9c7f1564f0a07cd29f714c07a16d3bdaad49185f7c83088723b8d');
-INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"87449e7ff7316e49012934d83c1f5b733cedf39680299a9582eb216e260e0c02","messages_hash":"39af1ee82e4334b2b0596abf86dc82603d9b2c8a5d046c5db281ecf34b303a30","transaction_count":0,"txlist_hash":"c2fc809ff3ef6b74b10b1439fe15c275c6fd925e92dea73cf9d603948aba0d8f"}',0,'BLOCK_PARSED',NULL,'1c243fd9d911e974e6dfe5470efbbe04bb4c401a02345fa833af8b2eed54ea14');
-INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a956dbd678a39fcd1e91112dd2ade9488f240e3bfc5c171a7dfb3a1c44742357');
-INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"6c4a7f749d0308edf5c88b3ea4de3b1d497ba3bc06435594d77686318b744b0f","messages_hash":"eaf3156993560de86b2de78af58593d00da00db7fd7bab33a7f7cc56d49944f6","transaction_count":0,"txlist_hash":"45db1d0cde22349299df8245e7ed24d308e1b1cb227098178606650f20832aaa"}',0,'BLOCK_PARSED',NULL,'2e17f7cca466c53b183eaa76e3397cbf1685d10b3a3429f0443d97f18036ac8e');
-INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a485a44cee82b627a6fab7cc59ed5d8c2a89900fc859bc9e414e2fadd1a6ce1');
-INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"ecc04b1b2c7803ca17dc2a32adebd0960de2c04c8dbfec9cd88771dd883c885a","messages_hash":"0806bca89167cf716795644fc4577dc88f73a1ab2420109a4a7fb504dade4e65","transaction_count":0,"txlist_hash":"981653075dd609f44e0a5673dac2b63824b84e26080ec226547892c67dd7cc33"}',0,'BLOCK_PARSED',NULL,'cca36302fb6b798c5e7af6fa8607e0f7e2d9cfbd18235b307f4facb78bde8026');
-INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5949c81d42392d7122bad992dcac318af33dc6dfca45946a7464b436401158e');
-INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee"}',0,'ORDER_UPDATE',NULL,'2997c6b380db864e1c4f4574da654f13d91041c9c70d6ac197bc98b5ebc5b57d');
-INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":0}',0,'CREDIT',NULL,'a6e87732a965d9187cb3e8d16ce0abd90726cba12c2eb00f202b3849204fa6b1');
-INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'8353da79bbf13054331dadb4700c2cc93cbcd83c380f66fd4e4788099574993e');
-INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"01e769c5b990db44a9e534bc6c759567eb4283e0ea252578dd525923c7fde02c","messages_hash":"49cd53ea397947d31318ad902433661e23e78cac31fd544f67ee87f7cf5a5e47","transaction_count":0,"txlist_hash":"81778134948c3577216eeeb6db7fe9687545d855dc3b5f6bdf6053a7edf3eaf3"}',0,'BLOCK_PARSED',NULL,'a7fc8abf87773f1e8bd23f69bc0edd872973cdcc0739ee9aa9032485cdd16aa1');
-INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc6ad65cd6f04214adbaf408f49d3ffc306277c1c2195e5fed6d6624f455810c');
-INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"2df6b8dca0ffa8d6d55997605188637c2b86300e4dd7ebe3f1f275690169fd46","messages_hash":"03e1ca09ca2ad95c3d8625cdbdcefd20d69f2442d56a49c570d85c74935e232a","transaction_count":0,"txlist_hash":"650b0875a0fb44a0ad1b04edf1a0eb1b50b5ecc423c6ecdd37b5aa60b5e85663"}',0,'BLOCK_PARSED',NULL,'d98e7c999f2bfced2409c0c6be68e5b13ca1ba21740e64d4d2cc2e0702e0e15a');
-INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbf2e1b1b44fe4faf486f12fae054504c8eba8240db5bb16d5571b8fbdd02066');
-INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"7f0dc7c1527a7d11831d272f0295eacabcb96fa3599f5a716bd29ba1bb6b7577","messages_hash":"40b21162c2bdec9408ffa79df90b098be7f3adfcbcd8f6bc6e6064d0b3a571ac","transaction_count":0,"txlist_hash":"e9d6c050b077d8e6902999bf64a0f1bf420c881b8a32c511ae81b0359e83a542"}',0,'BLOCK_PARSED',NULL,'79e17e8c30ec82a97c3a54125576d6a1df235eea842f8dfd598e24f7256f1f67');
-INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f64b99d1d40f1d2a010067eccd1f8b9bf61af907bf1ed3ca42b920c0d37004b');
-INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5e0cdf1764ed94672c29144f9c1bd9c3e70784f17c9dd1c9e4ce703a99bb3599","messages_hash":"aaaa2778599705d04a371a7488537f432426d15e6f3b3230f0d86f8fa7f266a0","transaction_count":0,"txlist_hash":"e755b5d80c9995dfa5763b080b9bdd349fd7b5bd940a661836ad418202b77384"}',0,'BLOCK_PARSED',NULL,'93da020618ee322d6e450daf11d9142c7df9789b4ddc5aa8e5408a7f02a041d2');
-INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bb6751d7b1e676c504e68a19f345792ca97630636f8599560bb9af4985ab13d');
-INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"96da34a5a66b89aa3e8857b4a4edca51a56a0cbbfe600d8153077875624a153e","messages_hash":"a68c4c24471575ea622ce59af306b947b521f01abeaa347a8e33eb651cf91a25","transaction_count":0,"txlist_hash":"cbc0139fb09af6a6c63e07847a37f15767a1f7b01d6305cf40179de841c4f093"}',0,'BLOCK_PARSED',NULL,'1212072206c109584ec7153ad4abbeb468dafa5e2001c04fb5d1167ef5b383f4');
-INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76d3ebc4dcfeb51a19b626df4fa11f2165f188dfca503b18388ebbe3bc1da4ec');
-INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"d481358c19b4220aa9a3d135fd0651fada6df8d0f27b9ec954ac07950e876c0c","messages_hash":"7aa07b58643d61192acc195054c76aa198bc0615a8d1015efd485e6078c84797","transaction_count":0,"txlist_hash":"0493eb6bbab5ced7f25c6f5a3b32e4e2da321a5c761855ef64b5e050ddcfe431"}',0,'BLOCK_PARSED',NULL,'057b82ecde7724ec9f66ba5c2c94dbea1d1fa80583653d5c8259329464fcb5d7');
-INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'995fc12dc3ba56c5c2b5bd33634c691b097f1b20154458569c0a6375011b4246');
-INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"4e9fcc454ee53b3617c792eb6577c2eefa6eee6aa4a2925538cb1976d48817c9","messages_hash":"d06d2f843297dda75791f6d438a0c22a679fa705606c8a82f71c3a316e24bfdd","transaction_count":0,"txlist_hash":"64b95af50bbee190166820a564e858e5c86769c04b22a68c2bed5adee0f7292f"}',0,'BLOCK_PARSED',NULL,'5f223dfe2bffe9bef455cab880f1b274236fe4532eac777da9fef5c41b0cc8be');
-INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10f16754dded812c791b2d9ed62516377884938ff593c1cbf1374d4febaf2e2a');
-INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"795c5652d9679942a02060edfb497b072009695d9a72fb144fa3591dba65a2ce","messages_hash":"975d014fa7da9eb851641c145a0f55fde983a0d8670ed0008dbed98bde05f8b7","transaction_count":0,"txlist_hash":"9927f1558918a59509f668789e75198eb432fd63e0a7ffb46160d002c0932188"}',0,'BLOCK_PARSED',NULL,'fbfdcbd666a83dbb43307fc72882ca450b097ae0d4fac98a8c3ccb37ed2ccafa');
-INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c265d96ac02a15589212926cd6461ce1116695a5a7d8a39d941ed374f51bf3aa');
-INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"e569e6e8083818e594e92b3356833e8dd54fcfcf5ed25af0d09e36e24b9dd441","messages_hash":"8f1a984f0da070ff524c9fc9517efd3567d25bacc25f29ba32d03d06a7c43c36","transaction_count":0,"txlist_hash":"969f7176f1a56d43e0d1b4da9cbac17cb1a934be64c12b3784ef33b584513271"}',0,'BLOCK_PARSED',NULL,'8c975682658deccea6b94ad4b9c5709e61a293b495df9445650c1bf0ff1a9ed4');
-INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6eccb5bb983000bd9e1977303ff83b8a62e67dd565710b587b4b5ed233651ce5');
-INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"2247fcc633175a91921d226f412e56822379c79ca799117c39ecaaca0a702192","messages_hash":"373d191cad758b4644384ebfbef2cf1e49c038716f6672447b5d36e69bad7d88","transaction_count":0,"txlist_hash":"29cb8f1b29affa41416aca0265599863f6b739538f13bc6672f6b3c17e411045"}',0,'BLOCK_PARSED',NULL,'4f4072ed6ea276c3c4b1f3e0f6844db89f526824bc5410740c943959bf546910');
-INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc0afc306b698e28f0fcfcb64d726a4b2fb34964f8fa07847d58fd4fb8ccbbd9');
-INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"0246c3a2a70b33a038ccdb816f6b0922a50d08310f360cbd5db4df58e97fc4dd","messages_hash":"3758f623adbf54b2e0471b990dd67c65bebbf41d86e3277bda367bcc0a98a8cc","transaction_count":0,"txlist_hash":"d1ca4c9abe26de83d9a0170461c87f2c219926f8dcb0c48793d74a0cbf01a43a"}',0,'BLOCK_PARSED',NULL,'7cd7edb1f5063ca5b40fee2ca65e6086e447d7d30787525e8f03df78f5632d33');
-INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2890a2dcb9b2253c9c3bf7f36bd10b33204277e665c17d3e17dd3351c4fa79a2');
-INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"cbe39e9d1a132cdc568f893bbc3d4f55d27bacf7af31f027ebea1b4bed9f0009","messages_hash":"a209a4e543642de2708ff915d0c0e3e966b378dd48feef2430a7d55ac8ff238c","transaction_count":0,"txlist_hash":"452b2e3ff4075f702cddcb4b8fd9006c756dda7a3527d635f637a200fd621c91"}',0,'BLOCK_PARSED',NULL,'cc1e3a1ad644f6f7889321f3759c752183883fe38e1b06854666e75ad10818bb');
-INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d79417732bb6901895a4050c20e964ed97dff6e0f2aa819b78e132a924226117');
-INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"1202b05e118f0940ce270d9002d010076115a0197d889fee2d971a77709899bc","messages_hash":"863dbb043614eab0029f0ebafb1eb4b12902fde830dd1c05722c01ba3923403c","transaction_count":0,"txlist_hash":"527114d86a06f44f12e1f789f095227f9710b47e95251cdbd6f4c03309eae61d"}',0,'BLOCK_PARSED',NULL,'3654658f9702f704fa793d216176db9a516442c37758630028dd0be02ec53aaf');
-INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89414095b9025bc9be32107701658e12238ddbfba494745e68bd8937424d6902');
-INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"0bc49f765419c0b5b4911cccf03b0d9959aabacda266480b98245de0c0d35fc5","messages_hash":"023de4e9ae06942b0e09ae12622949346a414f2a4f3d882786f5bb261639d701","transaction_count":0,"txlist_hash":"ed6954fc7aadd8f80684cc67580b9cc16f9a402296ac91c021de0148a1ccb4a8"}',0,'BLOCK_PARSED',NULL,'aa3a7cc1d9d18ae82779146ca298a71a8d3962951425ea3cb538b156ab834c0c');
-INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e6fff99c0f80835295479833e1d331a39824a7c980f769760bfa90ada4bdd75');
-INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"e42bf9806d0ff3a0663756f7955b30735747d14fcb0915c89884baa12795163d","messages_hash":"b9e8dd64f4addd93fcdc8ea8424e96947da4cbadd60abe13f0f53a6d65a39426","transaction_count":0,"txlist_hash":"2e62ee5d03044d0b6086419a6d2fed78b7db3bee75a2bc158bbc04a8f5c34908"}',0,'BLOCK_PARSED',NULL,'73dad2a08dd0f80b4c8aa92b8afc38720ef4aac2f8b6a6f5478b8bddd89df54c');
-INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'665ffaf5069a46bf12a83bbfd7c2a1805e07218c817e2f031868c1ba7cbf1fd6');
-INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"b19b5e14741284b4ca06b736120e903363651460a6efb3ede1aca3a4f3c00df1","messages_hash":"36c01e15c47bcc42b22cf98ddcecdad49522ac234a205d5abff4939ee8478dbf","transaction_count":0,"txlist_hash":"bd40f4de40c172e5b5997091f4a069ea54d25504421e6225ef3d9ee360fbca6c"}',0,'BLOCK_PARSED',NULL,'35811d14d663b5cec0a6e94bb17b1dc09937a803b23f61529ee7766de009b044');
-INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d89e4dc03e4a975f0af122fd70c3032e0c638e617d7b229d91ae4d2a0482f16');
-INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"e870de901ba86d65d0e2053251ffb32cc7dffb55fcc2efbc006a2b9137314a39","messages_hash":"4de4097a707a21573097f67e72cc9f52b502e0a488b2c17934c60ff9aec3ca64","transaction_count":0,"txlist_hash":"d89730ea689c2912f38a2d2dc86caf6dc35a3e183c4d394129f21368f5c1d371"}',0,'BLOCK_PARSED',NULL,'b44de1cb70272b9a990fb7de7909f93efe4cc9f0b646bfcb3bb5a5a229217d4d');
-INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'597b53dc50fb996c3b44274e94d29d5079e45733ab709f7f6b4589e72f7e2797');
-INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"44cf354cdc8552ed37e5911340397d3531d0ba45100feae27377130d4ddef359","messages_hash":"fefb42b3c87927779046cd4ee3e6956ae79798cf47d9fdcbda09d59f99139479","transaction_count":0,"txlist_hash":"1100866c04ae89913abf573ee61b3a7b56ec8fb7526c7d9c9938d61a187586ab"}',0,'BLOCK_PARSED',NULL,'2362928a45f82a5499f43dafc94750df624524391164dc2b54f675dee59e240a');
-INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b6006425b520b56eddb36c829759adb7daa635bde2d5b324de127608c1824c5');
-INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"7d72f11f48ac99553e1b2c52a7ff5645fbe05728a10a002727b9270dbb32daed","messages_hash":"ed89674f1bdb8bff262936bdd369f9b33ada1cce1466ea08a7f3bd9fbfc06cd5","transaction_count":0,"txlist_hash":"1d95ff7cb416f1915ba7db0099ba9591b97c6bc673cb43296cc82655627eb1ad"}',0,'BLOCK_PARSED',NULL,'8d07dc640e9a83a7fe2a6b6180b06616d9e5b493956be6eb08b10da13333cf0e');
-INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21ae4e38a8f1245b717ebd0859be5194ca508654e0a0a83a5d200e7f8f56232f');
-INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"35a965dc90686fc4eb20450da81ca8db9125e25c2cdd7146fd61d98841d80c24","messages_hash":"a1c291e9a5685784681f9f1a9021d1cd88249d7039460ba4a1ef3a61bc6f1e2f","transaction_count":0,"txlist_hash":"9d15589506565edb31f7627a37c1f6a6bca01d584b0dc815e8603689f07a80db"}',0,'BLOCK_PARSED',NULL,'1d674c5ae00b7338f4f51def4518bb54c1b76467f84750bd976396a3a403db4c');
-INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e667727f026f26bc3f2cb799c83d0dcac075ee24423363f1cb84c30a4a2357f9');
-INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"8604d503e7194ee1c8ebe1143019207b2aad163655107a3d23d018ef26cef550","messages_hash":"5554df4e98fed870e873dd4b78c7e5fcf9a2066e573c6a05f48200e435ab1cb7","transaction_count":0,"txlist_hash":"40053c62babd7f69b9822b6d4223732008d45250146216762da4e13b1b9d3a3b"}',0,'BLOCK_PARSED',NULL,'6cf93a5b5212c2ae180fd7e5538c8a9a46b161991803fe39f4793c0be49afc1f');
-INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f585c33b819351888c43a7dec8580fcb78744002949e6cdea921be98fc15c4e2');
-INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ecdb64ffc44490eeb12199d2da5c1189c07f4102f5b91494cbe4ec68fe6bb6d4","messages_hash":"408d7c4d46c15335764ec5518c65dbbcbf1a389b3a106332fc8ede93eec63ea9","transaction_count":0,"txlist_hash":"7d74527f370a78a8dca189b60657f9fd15c27ba5f875344546bb8d6e5b54c8c5"}',0,'BLOCK_PARSED',NULL,'95d5b590b5c48e5b843a71de7a71a84b720cd345e7316dda2b8379bf16c7abab');
-INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d624216cbdcbbc9b982eb0e9b9701b40997c8b3e68247128ac85d86ed922c20');
-INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"b96b0d51d6327284f5922b65e5d023afd2b2e44c9e11f435afbe2a71df4e6eb2","messages_hash":"cfe641f06ebaae19e0167a07956bfc6af2b8022e00f50d59d079ae6a94344aa4","transaction_count":0,"txlist_hash":"70b8a2eccd5c79e1c270abfdf683dc4423ff315a62486db9e5972a12daaf60ea"}',0,'BLOCK_PARSED',NULL,'084ead5e10f8d6e0846fee4f3cd900e8e9627fe14ad58cc19b5cb257295a7230');
-INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ec75c8861e880891ab5bd11550acbd21017bd9973c674dfe4139940a77d97fa');
-INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"c5be3fc23a9c41b7b78cc7df4ed13d1d35fdd7edab77c998cef5a5a5fe2a7d33","messages_hash":"f398b87ef1257c5cd5f6a09fb7f51a4cbe1687066f25433446f94847cbb8a899","transaction_count":0,"txlist_hash":"0072c2fbc0915dcc39103950d4a48feba19eac28bde001d3dfe0f9ddc25e5152"}',0,'BLOCK_PARSED',NULL,'cf26f3e819322fd67f6c45c262c205514df5c27d7ea73b71cf09657ace0b509c');
-INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27519e3a54042c06eb9ead2f47878ca596e3f6bfada181b2db62f97bc09401c8');
-INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"faa7cf6128f229fe3d408797c77ef2972eb28d16542b32ec87c5fd42d2495018","messages_hash":"ef875ddfb4443cd94d86deac01673964c5f3d1ed4b3afaa0d131445562ce64f8","transaction_count":0,"txlist_hash":"46c53b0ab86b04c06e8302726aeed5922fb5b3d940102422c53bdf4bafe285e4"}',0,'BLOCK_PARSED',NULL,'d7dc06a0916bae0cdadc8503d65deb1254f74f3c3096b43caa4cbb24bd148547');
-INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2998d3f2d5d06a8a47cfcd95b7b292e019dd55d740549cc7760b02c4a6f25b23');
-INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"135af680c59a3d707ff3e6b67fbbb0aaaf0a97724d36ba584087658ae8c0db19","messages_hash":"98310bdd2da785732bfa6de62ba2f2fbd5d103f4204ff7d1b43fed584907693d","transaction_count":0,"txlist_hash":"8b3fe70c1d1b8fa1a247810dfbc2667ca0307860c112002e47107fe4836b8138"}',0,'BLOCK_PARSED',NULL,'ac92142992fd27f2fbb84431d0744c7903e7c707c31f243dc4a2960d563a2b4a');
-INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9005668b8af00cc6b79c5512a42e15847ab41aa53e692fa4120baeb5e0eab58e');
-INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"496b559ef740feabe42d55356bc770bab7b927d79260c22848b7f47d51918f11","messages_hash":"5fe661842a118ac1eeb5382d6bb92d8039390ee68fcf9cce1441839dcc558c9a","transaction_count":0,"txlist_hash":"ddbb4db386fab0fbbb7edee7c7c45676f994d6feb088f50b0f3edaddcc809e47"}',0,'BLOCK_PARSED',NULL,'51b61af19e7aad7eb6f2945042dbcc19c7ea92ce5bb509c622bc20ed0a166a54');
-INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69beaa604dd6037cd0cb34782972185b8baea24d99cd779b3d00d557162b835a');
-INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"608eb77e572aa596c9e14c6e4cb1dc1993bcbcfe735cf0453124c2801192ecc9","messages_hash":"00ed7b98e21c3dc58d1ee6c41389fbf40e86522758fed197cf39ef3a7274dbc9","transaction_count":0,"txlist_hash":"b8d3a5abf9edc13434594de8ec0cdf3b760f6917798eab89ff2a6a4f0bda06d9"}',0,'BLOCK_PARSED',NULL,'60b34642cd09e1eefb03f6600ed2a5012fced0b1040969a816094628485b6c37');
-INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90ae44035a7efbbdc85f505fa4683982fcd7aaf4e67daaa9006d998512a7e8db');
-INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"bc5c375d1237425486c9f46bd749fba20b5635bcaf3e2d9178b35ddfbb700f14","messages_hash":"4d91b8cb3b7b5363ac2e84f7f3d2f5e52207ef68bae865e09bf9fc89aa42d60a","transaction_count":0,"txlist_hash":"1766568459fde2e95dbe4a1c1b73a37b6f8443dc1ec36cb44a38fadd95d8f807"}',0,'BLOCK_PARSED',NULL,'59fa04d325e03a0cf37fc2da95538155b3fe3d7ba23ca6623970d18f8d5fed72');
-INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bb4d5ba29bf3b4c2bd65e46ce7503f2fa6267fc3222e197ebff8c973d9a892e');
-INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"c6d48d72746c0e18fa0f1b0b16f663869be2c4684a9d98b634e691ea495f4d81","messages_hash":"d47acf46ad59983e01b9e681527ed2068076ab781880c571426aa808fe36c424","transaction_count":0,"txlist_hash":"9f6619aae8ab667b4291ec14e89386177dec7f3465def984144d2991d10476ab"}',0,'BLOCK_PARSED',NULL,'f2352c792067db0d455d8217c1fa2bf1ca737b012ea0f3b3cbe1cdcd7a2e0699');
-INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79b769eb1e4a0c91ca8ed3be7473233a5e3a4db3ab4e69541420af6be18200ad');
-INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"8deffdb1602f1aa2d0d1956d2297ba30ac78901ea27eb223ad8bf7ca83b18110","messages_hash":"8b051844cfce3c15973994e593d4cd84023384ef7d6e4b0c0fe4d2242f68ec6b","transaction_count":0,"txlist_hash":"278612a215aec2522b38d2ddd268f051906a858996b526fa53c48743b1f33c2e"}',0,'BLOCK_PARSED',NULL,'c6ef182e7b004e07fc1ac992eb0fd5887aa2acc8a09acacede85ef1a94e02dc2');
-INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cde861379c175704fb38822cf0b4c027cdc70018693f853f76ca41f9f8382df');
-INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"34859861f240c6553ffbf63fff9bc884f231276ec6173964d5fc6641a6d79b16","messages_hash":"dcba300d4efc36a2324491e29a6b0001868b33ab1be391102cef110552178e78","transaction_count":0,"txlist_hash":"a884effb413598885693dd0eed419a3a2a35db95fe4d6582e580bc141f28377c"}',0,'BLOCK_PARSED',NULL,'97a23425dcbfa6c9f1ed84e10c4952c5a1ad0d14d9406afe50c212ab9b191ae8');
-INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'638f4314bd53c8ecfe0f24262bcf99fc27c497fbaae693ca80b1136cdfcac742');
-INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"fa185f9b97a1666ce3b966dc09b8a7870ba55896a54a54f54d3420708d5a8ae0","messages_hash":"d18f5fc35609a49d75347c92c7c9a483e35d9c4192503782bafe4478043ba4c2","transaction_count":0,"txlist_hash":"070c320cd53cca3d81560367d437e1f4cb2afb10ab6339e2f1cfb0a2dd6d6063"}',0,'BLOCK_PARSED',NULL,'b317f52e617bba1028fa760333a0057a26890c60929a9c0628d763eb6c1354ce');
-INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a741b3545858fd545050bd59c62f16fc31d1085fc2dbdc278cc6a3b7046c0c5c');
-INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9f75da9f944d59b1841d690b2994ead7fb0ee3d679ddbdb0b692e49238f66603","messages_hash":"18be484e57b9cf23147d188a114137c5948a5b53cd19d657dd973dd265ecd564","transaction_count":0,"txlist_hash":"fb310206b118e11d48becbd11a695199fd7cc3553dd8b2a7c29c6a927f5bafb7"}',0,'BLOCK_PARSED',NULL,'a64bceca2b16e03be3cb8bde9f9e88260b9a69040b9e15c9d4197ca26409fe1f');
-INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a987eb7df8df31ad38d0fa4ef941cec5947c14c48e7d4308cebf668d7ef9c37d');
-INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"4740587d203632d1b4061343436e25e12941f0f80be03c3ab390a1c08b842b59","messages_hash":"3443a7b0bee87c7ced9d66afce89399e945d14d182019f4dbc2c014c59abe58f","transaction_count":0,"txlist_hash":"041e6429d7ad46da6e1a2547daf274a0df952ac4f9b43eaadfeafa6e005141d6"}',0,'BLOCK_PARSED',NULL,'20852f8a43a82d62bde292f0d7824bfcb12a6a2b57d0fbc777929820d472bccd');
-INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a021c55d027ec1c48182317a38c7907c76208fb74d503f9c2566bbfc435e3f36');
-INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"d6eecb0ca22f29b50e52cd5dec8f408250a7b1ddc61bfa9bf6cc6ef0a85a6ffc","messages_hash":"169a650e89d34830da0f077b7efebb0a64f43b59d725abf94e3c84ac8b6da6a8","transaction_count":0,"txlist_hash":"f8e9baf27b01e99db390d6ee2e06b8ac7d92951c331d8240fdf0dd711ad75979"}',0,'BLOCK_PARSED',NULL,'565f364574ededfde19a090327e1915740f8a4409867e337abd714f06e226457');
-INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7204d95fc67dd587bda4d8825faa3c9ebfa97f3abc7a7b0b6a40c7d5b900333a');
-INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"1508605d4796eb2d8b0553b307827f570b5020f4cacf773926b6c8f2c1b003c8","messages_hash":"e0b7f166b6b82211e67aec109d3181bee7c6b48dd68f610b57e9a6c0089ce0c8","transaction_count":0,"txlist_hash":"fe7a135af64a7668cee07a66fa146b6a7a54fc78b96eb7c62d0bbd8b8ec4a820"}',0,'BLOCK_PARSED',NULL,'8295f2d45f2121af0814235e248578caf08348c4ecc7a5b699d0de06cf261d1f');
-INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b52de24bcff0df7712da2b35d73c0ffa70c79f607ecf305d2a54dd5ed28657');
-INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"ea7afbe0817cfef5a5a940bf88b057d01d092182dd5d0c7fd156b6750fdf4cb2","messages_hash":"50be0edf30243d3f05b2d04582b092f02a3bf48cc36592364f244f1406a7d42e","transaction_count":0,"txlist_hash":"561526733017c46e8f7476f6f7f0a1c317a372adf6ccbe2a34e4d8b0fee1a694"}',0,'BLOCK_PARSED',NULL,'f6afd79075cf98222bd841a39987e617f5ed4570f8e04c4892ebb598b803282b');
-INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67f60685568a72ad8dc57055b1c47b90cd080e132143873c96c7c29c5d185aa2');
-INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"f805d8bd0b724ffeb9e466367e8524bcbcf2c0fe0525b8ff2707af2013824a2c","messages_hash":"99c95d813c0af76a0ba787330b43f1b3eef9c9c12956c734057f5d6af3f173af","transaction_count":0,"txlist_hash":"4c10a876e31ee15289cd2d82d8771bd9aaffd0e335c6de15f8d5316e6e7ee81a"}',0,'BLOCK_PARSED',NULL,'e6a03d64ee584e637396526d98ef0e058d7e0b2e49b04cf1e29bef48d057db42');
-INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ad6df41ea011d2ef1f5b47060259f51f986ceb0dae05dd8ed07f6f4415d1728');
-INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"305123423486d17e97e8370399b9079a35977465e4cf8c5b33d50bd7004b463b","messages_hash":"600a392fef1ffc97b4862a0eabf83f8bca0be5eacbe68f1a72daa1c9ee52960e","transaction_count":0,"txlist_hash":"660d6afeecb2375668200669bac5cf258dbd18b0f61213eb01d29e133a45917c"}',0,'BLOCK_PARSED',NULL,'83ad9ff705695fd804a2decc68652d873dd392c9fbdeaaf0dbf7888945c38a32');
-INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3fbc8372fc4bb40b8f1336a2f614506d9faf56e3191bba430eff009c1baa46a');
-INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"b04fcd2cf46165fa31626b476aa06f9ad8c8cd1d5aa1cfdc014e0d55fa7e0761","messages_hash":"cd91c870d87762425a917c044f5f2f1e3f03abcd3f574f6b738fcf83786a0c09","transaction_count":0,"txlist_hash":"0791350dc66254e276bfea1651fdda43705668f461f5451fd91fb7e084b26aa2"}',0,'BLOCK_PARSED',NULL,'d805f3af19e23325bced3bbd2e0cf77bbf4b302a8ca9a0e4449480584c4779be');
-INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d35a688c72c634beccb78ecfdfe3c5164b1acd60959ba15ad6d34c62b9f1b46');
-INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"209f05567343042c8a9172138cc14e28a2e53f9addf16c7affa469fbea9728ae","messages_hash":"42f0c487366bef15ee290608623baa2021b3106933ea6c19c13c889175f25052","transaction_count":0,"txlist_hash":"4885e82f77b273e102f9019b8451e08910a7d98daf19366a0a2b9db779352c0f"}',0,'BLOCK_PARSED',NULL,'18ec26d84e12845dc60b956d36ef54d2ad2fa594e6c6c31301b307d83f653640');
-INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51c5b4f734ce0a5a8771c505f062c24515518b68306553f7c0bc73ea469df69');
-INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"fc18c0dcd6011c4147575f09bdc6e1eb0e6ae7d3144339859054df458651618a","messages_hash":"7cda3663089c12d62dcf16687d67e6c815f59ee61d49b6c7fbf1acef8ff8ad5a","transaction_count":0,"txlist_hash":"49cbefb674e3da718d86151b10bb37755e158a2bdca642a542897361f15fde66"}',0,'BLOCK_PARSED',NULL,'008661cd41a61a4053a61e1f5a567c712bf8c44c337f4232c5b715f3aa3b10e4');
-INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed877cfa1268201e9e2defc9221479693b88abf0ce460b0a0c12e928d7935b43');
-INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f304dbebd02e4536b1754502e6f51e058ed309fdf95a2db8329dd7e5635824ad","messages_hash":"19e396d72aff42647cd89d62de2fc077cd5bef0a338dc80d2b23ebd2d3156de5","transaction_count":0,"txlist_hash":"b5e7c72a91d779334162c8fcb6282c7e5baeb43ef83d8f8c0eeb4dd0579f0916"}',0,'BLOCK_PARSED',NULL,'e2b98f142a419213409b10aff5ee5eb404930c47d4feb08b2e18a4c9aba6abd7');
-INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b833b6b6783ec4d8d033f1caf4b9983ae8693f272ceaa5560421ddab8f8f2148');
-INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f39c071315c869425bdbcf05ff84130a0860f5f47b4f851cea970f58a6edc9f8","messages_hash":"4045738813eb927f7543bde1971329d6f09a7fde63e8d1392a1600c226474aad","transaction_count":0,"txlist_hash":"e399bd32bd2988f29b4fb003686b343bd72ae59297412480a359bd56ded23ca5"}',0,'BLOCK_PARSED',NULL,'4f93b8bba1efc0ad5c5cd5f46806d3c1d15626499138c3ff2e73a4968e6c7862');
-INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cba983969272b3d54aa52ab96be5f2c21b17517272695446123b6b99b76bac3');
-INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"20624d783cd8e82044df58c05e6171a744505df43623d9c2a828c1331f505ca8","messages_hash":"94b7908b589b1c80ea4dd88f05ffe997d078ad2c78b8cad6265626b6d5317132","transaction_count":0,"txlist_hash":"c587d5426925227ed7d0ef11834b5bb1291fcf0ea3f0bcac864e4356187b6a10"}',0,'BLOCK_PARSED',NULL,'4c171af8b00486b6285a52b29d25e0a487ac93f5a74f6ed6b858d129af48bc5f');
-INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da134803d95a698d9245caf7dceff1235a2a9e1cb6abd651d3da6284fa335720');
-INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"41ae6610121587bd8171a02da3c50645e8e6d3642aef2c560d46f12707506b66","messages_hash":"365f46087a06fe2306b2c30b88bc3f6779f93b82a0d9496e2674f48e4665cf85","transaction_count":0,"txlist_hash":"c8331e225af242d83e283889e6234d601ecb507373f4b7de891b8508d1b7b1b6"}',0,'BLOCK_PARSED',NULL,'2f81b38b0d9188889c912b37de34eab1a1905e177285ef9bbe1ac7568ebc72fc');
-INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d88e66d65586ee42f3cac05978e323978ab71b9b7ac2cc28a9a3142d8b748bf6');
-INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"bbc2068f2a4b47c86198a5cb7242e26f385077126c7a3294eca6607485b1170b","messages_hash":"10181469a6450a20a15d45b37942f7dc0ed689640e6555c0ea58b587ec3cbcb2","transaction_count":0,"txlist_hash":"42ee671f6b45a8e36b4e57dc7edaa2501b075eb75bcfce535435ee4c0cdf2e66"}',0,'BLOCK_PARSED',NULL,'ac27b3730977db9e03bb8de59bb9fc2b182fe8068c913e8177d2b8cccead9934');
-INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b47946ee5e364e4ec83b94ae6338c4ee4afce0ec2859d128d2480afc924b9c');
-INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"fc4350d187ec74fa6dfbbca7f6c51849b78356f853c6c713d10ae4a39ee4f7e2","messages_hash":"e753c18bbf377d74cfe933f4e53a00faf32d066f750c6170e31fae4597c446c0","transaction_count":0,"txlist_hash":"f35b5543ac99e33a4ea6fb61b688d06a2b5b9cc79776df32c24e848b5dad80c0"}',0,'BLOCK_PARSED',NULL,'111537c820d4a97d77c9fde7824b605b59dbe90958b0f442172791c45dfe20ee');
-INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f51089cc8a2f3637294b7a4900e19f08d28cdd8bdc710bdf1d8a026117422eb6');
-INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"3cadb90f0285d3e3bb107caa2165e88d855cfa057fcff1fccfb278a8f64c9b1c","messages_hash":"bdb06802e00a851facaccffd4e7e0469e99171891e68338fa5c108a59c09e184","transaction_count":0,"txlist_hash":"3ff813ab5112e5adf9f50936955db90036ed0e2ba309022002c69e81473d7c04"}',0,'BLOCK_PARSED',NULL,'ae9e9b14c1a4db55daba1cc5c81ead91a62fbe83eb6a3ce031835486f3006808');
-INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf4ed476c2c6b273ded1c9c02094d9179c25ff3d139f94f05e76591325d7c399');
-INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"f3390bff59484b5ce0d84f5034fc88f4d862334ef3c0d7addaa9be7f0e67006f","messages_hash":"91548b15232ca3271660eaed9e543d6027ad088d34286d8abdfe4184b3fb91db","transaction_count":0,"txlist_hash":"3d843f898e46d0ec4c4cf79709ec7326a0e45d44361a2c9fe45e546bd5f1e630"}',0,'BLOCK_PARSED',NULL,'3d5fc2c5b1c272f327397f34793baed1c8c87f93cc60f6769b25f43955460fea');
-INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'796794a91ce728676d5086df750d090b6faf520176fcd0aed8d2e38b6b8fd50e');
-INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0354bf318eaec5c79b4a7835c76c89f373ab0e413f9fe4ebdea442f57763a971","messages_hash":"290b3b825f0ac859bbd2db052280d1f45898734f0f89b8fccf96672f6730217f","transaction_count":0,"txlist_hash":"6405368df02c1207da46178c106ac287c7c90e5b87a98154aa938f6ef5a570d1"}',0,'BLOCK_PARSED',NULL,'dc0b3acc361d608552bae31514dfc2c92280842dffbb683ac83eb4f2d786694f');
-INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daf5bd7367b2b3f06af04177a214a090d1949d4bc12a10a369dc798a6215e637');
-INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"e22b7a64e15ded24f6c54a5f627354dd2c3ed8175c2f4cd31aa5a6789d7b67e4","messages_hash":"b4f9a9c17f2c4a6bb4fd1a99d9d3ade15eee4ca747d8c5f1132c777d2cf8e04a","transaction_count":0,"txlist_hash":"6f58e857b2891d43f22bb4b44d296ff18f3078de01cf90aeed104283d66342a2"}',0,'BLOCK_PARSED',NULL,'f1f9d4fb409c94b822d81b7a4163c1e15884ae7b80d0218f79340bb3b9620ea6');
-INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6a9414112e30f58b5d7095fb90d62a3c9c38aa24bf280deb3aa883628cbe383');
-INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"7b8a6f62709cf4d20820031f43d968ea46d73d8cee4ad40f414da60b9be4e676","messages_hash":"89b34eb4cd1d69d9c578c7d6181985d828e55b6b926bf562c3117dd8b39971bd","transaction_count":0,"txlist_hash":"51c8a62f3e4c43e6eea75410efb977c8ddd2ad8e64c0d6ce6f63a4e5eb153400"}',0,'BLOCK_PARSED',NULL,'1f23261974cbc712fdef6ab31d6f92be176c8ee6e3bdea0ed359105a38054673');
-INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac5461543421e4342165b4be3b23888fc11368a1431841a21819d51ef1e70a0c');
-INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"ae82ee2f7f1e075937b5b8eef065f8643a7bef0428e00689ee773558905eef19","messages_hash":"845f79869780ce25161caef376dca496190611dbaf591d4b1617202eb1ec6035","transaction_count":0,"txlist_hash":"7358e41e9a61f87d68cc6851768346daea2e100ab896e86c0047e47228e6cc29"}',0,'BLOCK_PARSED',NULL,'1f8aabdd6c79409013ac5209e3ec3bca130f0dbd81c6f1058e7dc94c1e7a678b');
-INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'756960c6a82833a671e21ca1dc849aca1e8d03e5e64e53a68ff45f6e8712091d');
-INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ced371f1349e81cc2f179f064e4b9b202650a0f79e9b4513666ace29f0e8b3cb","messages_hash":"89835847f0386b5a4a4e4f748f643a22b6bef41b1bbd51c9ee6fa3f3526f0899","transaction_count":0,"txlist_hash":"0e8cd750f8ad91d5b14d2b05b7c03621367036703bed1654555b94592ff41e11"}',0,'BLOCK_PARSED',NULL,'84e217aec273c5f099f283180f51bd2e7f744cdc4bdda84409b4f4565463a55f');
-INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a80e0c115c1e95d06834c2d4c052c1c84e0c83496339e0895fbc2893985e5f0');
-INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"6c343897092c5dfcd32ee96dc8b96f38fedd31fa58cf5757a3e15a254942cd59","messages_hash":"18faa2da192eaf7d4e7e3ee72a09c146966ce3bae7e2dfe4148d09ec26f6a4fb","transaction_count":0,"txlist_hash":"c38a183db86650f155005a8828155aaf2fc6d92aa89066d7f0843a123800d771"}',0,'BLOCK_PARSED',NULL,'8aa54e4fa8daf9fd2bb2f9a238d9c7eedee861f05f5e6279b1079f479c271858');
-INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49c81d0861facbf5917bb92c8d8a265ffd5cbf9ec87419b630a56c7c252adf85');
-INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"abc7afdaefa89bf58bc4c28401740657eca24c902ba551f55becb6a1c8992675","messages_hash":"0ed9475500a23bd1df5d9cc2675c3dbe28b137f251b9ce51aeb0e268cc5e1186","transaction_count":0,"txlist_hash":"609b4f777892b43541593da80d09aa2c3928f2f73600009615196a7f89ca8123"}',0,'BLOCK_PARSED',NULL,'2ff21aa75834bac888888544c4b531ecc92225fa04c1a59db4106e1d0973cb05');
-INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9345339dc8621e7403596b325b70321df2ed5606243a61eed7037fde24b94e58');
-INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"4c8ca9b4eeae7adfec822b20665e7bd6fecb51d4f30cc2c826f18402d8401a9b","messages_hash":"1192140c5046ed35037f88bc7dd4fe2a013a2c02a98b861e47b48eb19d80c7c0","transaction_count":0,"txlist_hash":"fba4f7514306c49b3045912791cc21a26527a23e58dcb1c8adc5563e5c6e901d"}',0,'BLOCK_PARSED',NULL,'09ab2d34579c7a5168599fa13a12a0842f3fb734951cc9fcd810635a4f34fcc6');
-INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5d322ce35110ccfb46fe67db4f57a6af6cc2d383aee8796b4b0bf2804eee265');
-INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"fe7fd2b60c3216d79dfe4e6d38880f6d3b9fde747b619f2c477108825235663d","messages_hash":"51f6f931459ba6a532c7c74d462deb1b0a54da7e011486c6af3056b2e65f195b","transaction_count":0,"txlist_hash":"3a62ce0eeff09c242b3a7c3a8da6dd20bf06c1c2fbf224f73646791557ce3d4c"}',0,'BLOCK_PARSED',NULL,'e131539924eb61a8a7818e6533b60adea35ff68c1bfba9298ca21dbba58c95d6');
-INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c54224b6b7d4da2a0430ba093f1ae69c2e6280db8a2a7e5108fcb399ef17ed8');
-INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"420b8ff3c159f7e89df2274682e7ef798a0c0233149365114bfd934c38806098","messages_hash":"49487109a4081406fc52526bbedfe3a2f93e749a4685b1633ead6342bf3dd7a0","transaction_count":0,"txlist_hash":"9c866b1985d2ff084264e192e5defce4af96b7aca461a46f58c659008113909a"}',0,'BLOCK_PARSED',NULL,'b7eefb0ae5496ed43be65f158a08d759e590ec4e772e67d5ff6f45ad7c33e7e8');
-INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'327cb2dfcf8f36d2c5b04fdaa063a6eb537b62cbdf5070734c4bc250c258cbf0');
-INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"f4fac6a570b4f6332a628a3f8e27f5f081689fb4255363cff1cd8bd0244eecea","messages_hash":"6e9c8dcec7ecbd5d027c038f873ae53e2cc970f49fdd98b3a786fe3c113c38ee","transaction_count":0,"txlist_hash":"271c5484d7a74166a1b83e9dc6f56cc391d5b01829c9b594deb087e58a22b762"}',0,'BLOCK_PARSED',NULL,'dc14e35c87fa033fe11deb9d4f085ca17321241895cc1f7398763793817dd084');
-INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6515153e4c139b04ca7df581b2dd0fce278f371655525a5d28a3faa161ec0b0c');
-INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"adea7b4cacc06ba1f7dc260f30039943936f5baeecf5a8a452d4cbcaa994a70d","messages_hash":"c8e0c6e52ed6e0dc0d9b2a7cecaa8b53aa2e36e847c0fb20c0c8ef6029700aa6","transaction_count":0,"txlist_hash":"7d8deca0e4f444c015cdf98c74255215af14198d17619640186c6486bb3a6be6"}',0,'BLOCK_PARSED',NULL,'4511043cde20ecb5d7485a9d32d30121926ef18e0a34db35208703f01537675e');
-INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'061cec21f9243a514d62a0145c49b9c44c332df2576f0077cd102925c9c6bf61');
-INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"a2290c6a24befab16b4d9ed768c3129d582edbafdf8a2326c7ed50397e5db674","messages_hash":"142676e0c4985556d710f23cd93b06f98864f2322b458ff58c0ae3e3dff4e5c5","transaction_count":0,"txlist_hash":"8bab183d2c7670f060de1a64663fe4ec602cc9df957a4d1ccd4b2c5e4876e5ab"}',0,'BLOCK_PARSED',NULL,'b4502719eb6b90057fbfe81185e6f3733633f336f9e33b1ef7fae64d32d154ac');
-INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfa58630b82575f5bf70ec3139104b060e1bc9602da5f0c8f82f846a3f7a1493');
-INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b3c321ea2fb119cbaacfb39f219be47cb346cdd40d895980afd34b4157a3b7ec","messages_hash":"b2ff4518567b1d1defaebb078146815cc39ab11dc19d392a5d20d299867aa6da","transaction_count":0,"txlist_hash":"6997f2cf50cb2331a8d5cea3f97b32b41a9c40b6006041939b21008016e013c8"}',0,'BLOCK_PARSED',NULL,'761d0ac70158a0885d0cfb7b0b43a80485e9bff7f2c7a39cc376d788c93cd5b1');
-INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb82437c6f62c5a9a3b9dd829b98f8d41b85e9d856d36ffaad845da5f381f625');
-INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"456a1bd4d6b30f24e798a9c1f975af109db030b0bca19db6b29788f938ce6c4d","messages_hash":"11771c3c0ce2f3d5e74539f731ce50c4f34cc01f80b3c32c6136080272e8b448","transaction_count":0,"txlist_hash":"bd930dddbfc97b06fba95a33417533bd58fd5e95326d8677d2939790850a67de"}',0,'BLOCK_PARSED',NULL,'ea43dc313ce4b8f2125223482ec39e793fff811c13703bf3ae194f13377614bf');
-INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78f6eb14d14b4e5b59417421d932bc33394b85687219340b0847a90929b648ee');
-INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f48d6574488a24155420ae76aa7dcecfe73f6a262a2434a96eb2e93f6bbf02b6","messages_hash":"4ba3a4a60a0c079e27df1ae65619cee9ef2aedc4ab595b55871fd36c6dca22c6","transaction_count":0,"txlist_hash":"bf2e65b5a1da6ac499a4ebcde81b607f6516de77ed2a10ff363ddb05dd8e288d"}',0,'BLOCK_PARSED',NULL,'684ed35033b837837101439e293fd4c2962b757a92cc9c7260ba138135ef2108');
-INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cf864158d2a0ba38a469c9dc6486648778e3ba503bb11a23d188c5ea31a6930');
-INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e936debeb5d219215ba24e56ed34edb435131877c2947c0801824155fdc70c05","messages_hash":"ce9c5786ef39b2358c92af86f3ab6a58251b47487128de33ea86a2d817d74d8d","transaction_count":0,"txlist_hash":"d18b9514ed9fda087d3c98eca75ea68388964396143b925cc58ce2e2d5c1c5da"}',0,'BLOCK_PARSED',NULL,'9e7749b2ede0da2c5d4503abf89d648b27acc6ec3c1e51bf40800093611f3f04');
-INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38b0b11167e3e0848dc02e2dea410402166c676d67f7efe798ae917df4aa2221');
-INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"2b033a615b9eb693ed59daca9bc047f61a3519bec5c2b64f968cf717c75afe79","messages_hash":"00c15802e74c7874cd843b0412cc13a263fce9d4cf4f05dbf222ae1558676140","transaction_count":0,"txlist_hash":"1c39371c274124af6085dcf02fcdfda68d36d261bb47d7763ea3f09b70d0f62b"}',0,'BLOCK_PARSED',NULL,'158fd1e11050cd16ea986a7ab1875ee16dcec90428847c7d4f93d923a404b4c0');
-INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5097d02c47bba9f398fea25594d598350b87f56930c1797fb3d8c40d1f806c78');
-INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6a41dd11d8b611f6fde79e06a4f65d20fc15419f8336646130c02e9f7d87eff4","messages_hash":"9c5d561b9fd34987179149f2720b511024f0a434b35cb960b4185e80596c7697","transaction_count":0,"txlist_hash":"e2c84c519b3d759f8efb016894a981411328df6f0a778835c95ed4116fef01f5"}',0,'BLOCK_PARSED',NULL,'4d6ea9b96bf023c52c91bb393f1c08d45f5f01dbb663da77b88b994d0d3e094b');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1,"utxos_info":"12f21e3a989f7b28ece1e24d018126bf0b8d6344be24196d8362a1f218fd59c8:0"}',0,'NEW_TRANSACTION',NULL,'c4562b0e060729afdaf544c36180b5d83bf238a04b6c3e32322dad6af06a4bad');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','621914c81d39c367ce1938ec783279b313b38d2d340ff306b2408ff617d5354f');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30","tx_index":1}',0,'BURN','9b6b1abb696d8d1b70c5beed046d7cddd23cd95b69ef18946cb18c5b56cfde30','1d9fffc1639bdbb834b0ed9f82652984a255adc495844bb8b8b51832db80e36f');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"98ccdf7cd2fb29a8a01cbed5f133b70b6966c6c56354dad00baacedd0673c87e","messages_hash":"3623f3bfc1f4e94f32f08ab286c2b7bcda0a00a9d2e20286c71b6462d1858017","transaction_count":1,"txlist_hash":"faf6476a908c85f6e26ca5d182688d6da3f326296602d5ad3aa5979cb8bc110b"}',0,'BLOCK_PARSED',NULL,'dea3330a3858963619ea050348fa352380bba5c8d4b0cbc301beee72aaaf0dae');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'349b735e860a46e343d40f6b3b903a15d7e5332c7354ad6cb27da82cce551fcc');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2,"utxos_info":"bc2524f34d7824f1530f9f53b1aeabdbf38a72ccc39783d41de0a7f80cacc16d:0"}',0,'NEW_TRANSACTION',NULL,'fa8e08741aff43ba11ca1a79a396a76d60d1ba1ea35e3eeca9e0d01ce7c2485b');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','a912e9e1a4dedcc8798fdf622671d9792b0ec420dd182059ef598e39f9db1301');
+INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','042996b972d6f04902734f4cfc86e81726596a1ed79bbf64186f31f25330b1e5');
+INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'SEND','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','9faf3cd41308cfc45f28507258096dd8adfe87e1260f0b52d58271550d56f9ec');
+INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c","tx_index":2}',0,'TRANSACTION_PARSED','58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c','864c738c97a389113530433d6f05a0b5a855a9c75347b6a17cc73f6de263f67b');
+INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"fd43dc5efe2ee796ef7d24f8d478a67aa58bf85f538ef4b9a49b983a315deb26","messages_hash":"7adab00de2e4ae3ea53c6f69479f45e8122028482f28afdb7b4e06d560186724","transaction_count":1,"txlist_hash":"544f7958bf7661b78699c708ba1097da0dbb044acee3d1d8aa9a32d6b659a14d"}',0,'BLOCK_PARSED',NULL,'0b9e8bdb46dcc8c1fd0f10c4d12ad52b9087558fd6021fa04dd66a1a7b2b3955');
+INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e996a7f54e67638b2fb6d5591a0af49a6150df70104c040fd59474f466b82929');
+INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3,"utxos_info":"3cd583567fd9fe4e8162cf71bc098e44cbcb8fe41ede6954df217cbe1e84691f:0"}',0,'NEW_TRANSACTION',NULL,'38641f6bfeef01f4c6683bccfc943bb236b717256c78f328772cb7fc75438784');
+INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'OPEN_ORDER','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','9564703046ad958b4a72ff94e700eaad7a3631a4443c4b37e2d6c52bd61793d4');
+INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx_index":3}',0,'TRANSACTION_PARSED','332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367','4bb6f73da77d5b12750f129f6a0c3440e344eb8345408cf56e3ac35e82a10aef');
+INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"dbae4fff32545b4f3c104fb5a051dcaeacecd27401c84c09f93923b8bc30eab5","messages_hash":"184c4a04b4b41417c3995c7f512bde9e419b1bb221dde6bd19a9935f46e0d18c","transaction_count":1,"txlist_hash":"ee37e75a4eba165ed448b7cf96d188d7f738aca4d90a781c7f473974e12564d5"}',0,'BLOCK_PARSED',NULL,'759b1e885caeda18d522def5931171e64d28031e218da7f6150a07878ccb6d26');
+INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8605dc3dcc1400b590802c3707ba518aa2e61f60f1280bddbe2ce7fb1bd83d2');
+INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4,"utxos_info":"467d3d8a2e5651aba5af185af6ea44c52be3e315a2dd885d7ea2efb4d4cdea8b:0"}',0,'NEW_TRANSACTION',NULL,'f37f9932afa1c21f8bf83c1b672d94ae6c60d81eded656f950caecb32dcc5207');
+INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','eb2a87a9b7e818c9bc46315937c1e36d0803d7c435c4dd0b3003da1c068ee97c');
+INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'OPEN_ORDER','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','9efc0752eba0275ff4f837dbbfd5ea1653beb2b2438eff21daeda969cc1aa74a');
+INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','fa03bac3d1da460cc952b6965f220c98e20b557f84a650b74d3e884bafd6df26');
+INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','62b44823ee08edac10bdefc4975b80f0bc2001e7efbcf84a9ce8de4a22eb92a6');
+INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx1_index":4}',0,'ORDER_MATCH','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','ce67467675ff37559054f2112a6146fe8d60a2490eb056bf694f3aacd3ff5ba8');
+INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","tx_index":4}',0,'TRANSACTION_PARSED','f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f','ad23c0af7c91f988ab4459db508a9e6adb41796b702788f35067f563d7c35a8f');
+INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"fd0ae9793d9513540246b94ad116fc0531e8e07b2c014752e175a12e2a7a82d4","messages_hash":"f768da98a5a77e142433acd535b10e26a9da322d25054520228c915eae831956","transaction_count":1,"txlist_hash":"107902b17490957ebc0d2cb5dba1f5e667e3a393acfd8b3adde9f6b17aaad5c4"}',0,'BLOCK_PARSED',NULL,'560dad86625eca2dff473b5c5155eefa898b40cfb7945fa6820cf01c87c79f7c');
+INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c61aa99bd5ae397b58d5b5a25c0f5321619c020ee123946bb98b8fc37084f606');
+INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5,"utxos_info":"bc49563c96e9ef2df2cbee4ff2c07be675eaf382fef1e249244bb8e712652577:0"}',0,'NEW_TRANSACTION',NULL,'582701c606dcff04c9618f1faac9ae63b3c5c5d51a7466004fd70d86c68d9d3d');
+INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','4f145be8c1e5afddc20ad5298c959d4328317da370163e9f1a637107357e28d5');
+INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","status":"completed"}',0,'ORDER_MATCH_UPDATE','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','0b83015d7e0b0ffbf3c8805d6ff6ce6b5492eff7a49f03037e00675964a72808');
+INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367_f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'BTC_PAY','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','0f82d36fdbb43e74951c176167e53bab9867681422a8e37a961fa77207ed9430');
+INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8","tx_index":5}',0,'TRANSACTION_PARSED','ed17dc38233838e15d319a1786825b9e7cdba815554c9d6f4dd527615bce10b8','497ca5a7953f79d81ccaa13a6390fe8c681cc26d5d5355ddd82d1dcdc99830c0');
+INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bd894777a85b731155a0d6362766b4220c03db4f3e5fbf030d6c2529cb5f3537","messages_hash":"a61a244934ba99ed701f2bc7f70549c3f463473ff7b7e097b90f4d30042a7b60","transaction_count":1,"txlist_hash":"65e6a7c64c8439a60fb066d96d5165e6e40974bd1b98812ac6a4172fb1db1511"}',0,'BLOCK_PARSED',NULL,'733d2f81844570c028fe1b9ec84cf2cb63e4d4b1bccf77b064564b891ad4ad49');
+INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a14fc89a2f0c03c286a31d7f2b56ca016855bc65370b6ac4362f33a884e4886');
+INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6,"utxos_info":"d00ab6be126b638ef170c4ae70f5688538168d0b1ced4133fe99c21ca166cd76:0"}',0,'NEW_TRANSACTION',NULL,'c336f0bdadeb2a2c26834074bbed74c0acff8510020a67d2c39ad219173559ba');
+INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','b0964d7fad9ddbb9b3e8584cd7f412adbedc580afb0db97c4734d72f34f72cf8');
+INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','eb14032964146c0d895282d212f94ffa34483b775048353ef06b570e5562b35b');
+INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'ASSET_ISSUANCE','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','3d7e8e6e7b9081ec9e44647512c972c3b07301dc1f2216918afb0819b5c289be');
+INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','c85e6655a2a8a3c2729e02d7d094017947e86cbb26263369240a861b768795a9');
+INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25","tx_index":6}',0,'TRANSACTION_PARSED','cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25','e9bbebb14ba8655cb7265a4b52871571d78160c99ba65656961fa41ceae5edc7');
+INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"264c98f1d460f78e52def545d25482fd76549a5309d04841bc27b335f06470a2","messages_hash":"87bc39c1cfdda6f4eeff9c7fc32d4a8b4305f00668a85c222e90b44f81e23ff8","transaction_count":1,"txlist_hash":"9ede5548f7cb273af825360a6285fe9a51e9625c9084b2dde7bec013dec24f0e"}',0,'BLOCK_PARSED',NULL,'480b1a6c99fe21803e4f43916bc404fbf9381de96e7d75e6d67619d576986ae5');
+INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9717d91f9da741979af5b08db5c20ca30e3a179ab287e91c5566711f203fdd70');
+INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7,"utxos_info":"682a11acb7553de4c3f0f55a61eb033d432adc2ed310a9b1ded49a5630497bdb:0"}',0,'NEW_TRANSACTION',NULL,'813de3e4e7d903407b6ce073f7786676fbf05e81b1f1b29e0f0dae457347c1e8');
+INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','ec22edaed79f3baa44e3f97f1229269d4b845c58e88b29caf5c4090a55a87af9');
+INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','0dccf51d79baf5217e9a4f11893d155724d633de90005898c8ddd8ca02256c0a');
+INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'ASSET_ISSUANCE','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','d24d3088b66587bd28e125df2490d9dc8555ab4f7ed7f66cdba3d030694cfbca');
+INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','ab4c9ff88ba2981c2dda7e9a2ef41fe3c161ec2fd9adb166269402a5249c11ef');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9","tx_index":7}',0,'TRANSACTION_PARSED','ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9','57f5314dc30bda77e5e4b12e2eade12b2703e24233464b4746d52e94c0339e65');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"a1f2aa5a0b8d030c2fc4e1243c3173319ecf68d232262ea3dc8bfdd03a3f923a","messages_hash":"603c141c657a3f0a15800fdea87d0e1497648d77437307fdd4ae2255c73b31eb","transaction_count":1,"txlist_hash":"afa257be6b0f57581b8f1b932b3c8473ff5c89e4bd6c3d3e3dd6a8c3cd9b09d3"}',0,'BLOCK_PARSED',NULL,'3de6daeb2b577301a283cc88aff421d972d3cf22eafdc8b327074127a86a67b9');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afff90c6c803fcdd453e4cca14cd68f9cdfe1fb1e8399ebf53a3febd0cd58d85');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8,"utxos_info":"d8757243c0f0522e40e5dfa29c2958f3e2ec842b4da0761cdc1612063ab36599:0"}',0,'NEW_TRANSACTION',NULL,'e6962ce265500b1f646af6ca9bad6cf6700a313a9f37b4640cc6af943e5b503b');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','3d6e71583ffbbc41b57858bea5fc4e3e919f218e04a853448316cd314c3165ff');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','78e769da30a1b0e54d1bd60240c2060dfde962deef94c80fac3d0c33de845994');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'SEND','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','3db88ed71068e22e8e79c66c949e3ede6a764fd8d07c46cd8434cb7a4ba1f4d0');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c","tx_index":8}',0,'TRANSACTION_PARSED','f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c','c4957177862f7965129d47f26e67764cacc0533563351731d3537bdf27633bea');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"8709aa2d5064ea2b7ab51a887d21f5fddcb7046753cd883317b533ed121f8504","messages_hash":"b11d3ced5f6094afb447433f41e2ff7c84248037dc4d580843eecedc322f98dd","transaction_count":1,"txlist_hash":"40941bb90c086bd2716de8afc1fba5eb75721143a86a606ef99ee3312de95614"}',0,'BLOCK_PARSED',NULL,'6ac84f601e6db3f01c42484f59caca189b464dc7ce0daa1a36f9804820e67f8b');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'031b3b2811ceb660bf0fcd77d51e1b66b731e657391838ef009d16b787fc3e74');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9,"utxos_info":"0a016813237e5169e6aa6cb199572ca6479c5245a3d48bd0842de4aac8a528c9:0"}',0,'NEW_TRANSACTION',NULL,'2e848242044802c8979a8b73c5866e31431bc0fd664b8adef0d15a9d9cca1d34');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','d6484f31fd46b882cfd59ffe0256d8424fe339d69f668b911ba127b40af4fbdf');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','3753fa4bedd92a369b13b6dde046acd1ae64d3fc729f148e60dca0b9c09fbed8');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'SEND','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','4d2432d5baa624b686ba2d45e3535e100c93aa4a60a46cb832e29638105d8976');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394","tx_index":9}',0,'TRANSACTION_PARSED','c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394','9183f47e3b9b5082e3b08418541fed4b7f1a492de23b5770bf35a37ca4cab9d8');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"c1c516176fe38b69b31e3668b5ef20805bd90d3112c77f5652f838af8e7f604a","messages_hash":"c374e2c17c37b2a752eb46bf7e89942db70f82275e00eb60c16ee2585c95323c","transaction_count":1,"txlist_hash":"9b186632fe722ba57daaa01573568c3d3405f7fcb0a729005a6338266a4debfa"}',0,'BLOCK_PARSED',NULL,'ff1f123f261208c6dfc1c1deb4ff3a4dc56c25375b699809d3341e5082f7299f');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ab624e11fa1d903a36fbac562b5b9c3166c7cc5798d23aaa57012e52acf2f32');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10,"utxos_info":"b62286ce041e346cac7982d5a815df56a1b55778f1575f08e24c0654400c0534:0"}',0,'NEW_TRANSACTION',NULL,'e5e12e212421268ea8b85954d68573a4c55773fe948fd7e42f932f8ff268687a');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','c487d6b6cc0876ec7940fd828ad05cab36b0ba1e061476443969deaec3594594');
+INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','a676894c89bb211a0117f33fd658f1b115f1567ec505ba122e002850ecd11dca');
+INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','25633c9954df162ac71901f86bf05ffd895e1e9b092b04f8aed6d87b85bbeba8');
+INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'ASSET_DIVIDEND','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','5f3a8e62dfdc5c09efcb1eac78d63bdfc9364606c7b99e171dd11503e6e4324b');
+INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8","tx_index":10}',0,'TRANSACTION_PARSED','7881c1fe7881a590d09302dde67cfd888a74154888e0c310bd01575f560b8ac8','a7a92524f67c6b481a1742e423990cd24880ccd5c4f98a2f68a00e74343c6ab2');
+INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ae8ee9e681f0ac96de96babc1c80e5188b3e0cb91074a0dfd8511ee7d0ae64c8","messages_hash":"123c52af3a6913f75c4eb3926681e4e673b95f29ce1a49390b9f863fe35ee3e8","transaction_count":1,"txlist_hash":"39f4f154cbeae9a65b43ac831b2d5ad0e6f6575b909b979bd4bd97dadbab4cdd"}',0,'BLOCK_PARSED',NULL,'251dadc98738c6c4561383435c384b392039cc883d4839193a0f0f85abf57998');
+INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f855ebfe07fd61be7de7de164cebc2594c70ff1ac68e4190b908a645cec5e7e');
+INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11,"utxos_info":"78390d392d84db9734cda0f6cb43b9eb49b0568e9473650ab9756c21c4b992b4:0"}',0,'NEW_TRANSACTION',NULL,'bbd74753752c77f69b9cbb394b44e4609a78a1b40e04c875739fcc5f51855c22');
+INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','017a16627a3903ec9ee6bf21f7f87d346722003af7d632bd94052104eff696df');
+INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','0919498602a5f231d61262d55496722064a116c0c4b1fbc93399f634dd753f3f');
+INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','6b5798c41ef66119d6a167962512fd77404a4308e7d299cff6647653acbe09e5');
+INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'ASSET_DIVIDEND','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','d2a14cd5b5627fcb5c3193f734e963e281bccc39e545a43680d7a3075dfbb136');
+INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7","tx_index":11}',0,'TRANSACTION_PARSED','c41898ad625e2236110101070c09e9f28b6fea1ed436ecb78f231f3f99f123f7','7b92428649026299467695a4adf485332ba6b9b293f7dd866eee4ccaee5610ae');
+INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"0451ffa5d7ffb0e588e58ac7eacf77f6b3e17f1d27c1039f03d7716b16fb234f","messages_hash":"819db9250eccd28e19c3e5fabb4e5ce05c747906a5e3935353d3625c593534e6","transaction_count":1,"txlist_hash":"0cea2e2e06c6423d1c5ba19f6128fbe8fe6d6c3688316c9c35dd31cf03d38c97"}',0,'BLOCK_PARSED',NULL,'91b2d7d6912dc52d36d08f431e72e1e691be8aa03ad8685b53d1c4886d1b17af');
+INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2734bec3ed1e59730628a075c6ff58590ba55056aa6a1402115b15769cc8f35a');
+INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12,"utxos_info":"d80f8093a99a0c63350f3ed29af416454993efbade598a2e4de4873dc27180bd:0"}',0,'NEW_TRANSACTION',NULL,'3dfcb368aded39788dff64f48795936ce5914b3d127853125bdab7cb0741e66f');
+INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12,"value":100.0}',0,'BROADCAST','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','c385089e6224b126c4ca5776897b7fa70226b00aec5bbf6ce22a3ada9c6b357c');
+INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d","tx_index":12}',0,'TRANSACTION_PARSED','a21533ad03334823cca2aa8e57c383113a7f93a5810c5df8dd2fa70f6eec416d','83a9e9b63253769463bef06b6348bd3a86a1a7622beeee1fec4f00b8addcfb10');
+INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"dfaae3f28c2f75e4bcc49034ff2a191b5a41b88035c5d266181617c8c65ad5d3","messages_hash":"e54842926c5bf902bda438e0e7985012ba1063f75c1a75803574fcfdb9c93136","transaction_count":1,"txlist_hash":"0134329cfdaf63e5946b9b5a94b73f59b9a870d4569ca07c0cce078bf13714a5"}',0,'BLOCK_PARSED',NULL,'6a4bc61cc3254d29350de7742bb0d1ba9eb5acb54c790c38188f7816bb3fdcdf');
+INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e60bb7593b83bef861907ae413be7a751594fe02b6255145263d8117beabfa1c');
+INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13,"utxos_info":"0081e95041304df8c910d143341190089eb619caefeb02e8d1b803199aeb8c4b:0"}',0,'NEW_TRANSACTION',NULL,'50b47d072398d9620589461d18a0f21ecc243e870ad33c74910a993a3d669637');
+INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','b02653eb29f3ac0d8a1e03998504b0817d3876728a423a2631616681012936a7');
+INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','9c10a58d52785fa4c1189b86006275a7dddcd573696a3e8759c1bbce4773d95a');
+INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx_index":13}',0,'TRANSACTION_PARSED','74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f','53a95fa99c046caa2b9727619bd34262b97361afa87ad2e2f2ddd387bac59fbb');
+INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"c711e8cf2d9bbed01724a7b22cbd4900a4fd0a126bb7ecbd7c97ca15a6276553","messages_hash":"3eb36f130e73e8480c96d0084166149091d704c7995e6031ecd44e372a09e70b","transaction_count":1,"txlist_hash":"9a3fb4fb846c9ffff3a50a0a31f3ac3900ba7048a60dd69c6e14752734358f1c"}',0,'BLOCK_PARSED',NULL,'c82bfb0dcd84f1e8e2c58cc22ef6f40f3bd507f85b5021523e279933da24d265');
+INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fff4c5de6bde2a3e320fa07aede4ac5628cce3e3712932723b7f95dc6027467');
+INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14,"utxos_info":"763fba63964d344185ec530a4b2e18cd83641a7bb280d7dfc1881772d74a9a0c:0"}',0,'NEW_TRANSACTION',NULL,'b0967c7c2940a26486b9c3cad1f7673196c28a2f724e678c6bf78dc8ce88c4bb');
+INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367"}',0,'ORDER_UPDATE',NULL,'b3ff5e8a384438bdb4411374eb0c40935c1c66d937e398436acb22059a6ee510');
+INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"332b030da57b9565324df01414778b1eafbee6c52343fea80774ee1725484367","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'c38c61dffe9f1256651609a46e2bf123280dc5cc70a30af7714fad5279fa7438');
+INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','d4e1f5394c96fc27d32f202a654e5a11cd7bac30fbd321c0fa7b0c06e4cbef2e');
+INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','a5dc08a6b3401068677e889ea9e103ea3e3880e9f2a502597719fc59cd8e8f6f');
+INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","wager_remaining":8500000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','589be4d04083a47ec903c530059689debdc9f9043d2897ee698e17a6049b80ad');
+INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','66032ae4f1f22ef4b2798dbdf9e1ffc078dd3637887a371cb122ecd9ee1ac005');
+INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","wager_remaining":4250000}',0,'BET_UPDATE','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','b29858ff03df16b52a38e699267a1ef64303e7fc7be20bf2f42abb202204699a');
+INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx1_index":14}',0,'BET_MATCH','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','ff101b330f7008e20279e6020f14d80be0f972688fa0da852a07bcec347b472a');
+INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","tx_index":14}',0,'TRANSACTION_PARSED','6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167','69d7146ae7794a3e7111b23725236e98c9f932df6fbf88038797d4838df0c4a0');
+INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"3dfa5822de8a4c674f1517b17e50d2ef63ccbb1fc4ae96fe5e1dc05cd353aa4b","messages_hash":"a176fee03dc5ad3f9024fcf4096858f84c7d6989649769a39a075275eda4e2bd","transaction_count":1,"txlist_hash":"6228a449b24d607b8fe1aea60a0292874cfe515a9440bee2829f6e61efa0b2a6"}',0,'BLOCK_PARSED',NULL,'2aa1f0042533d58fad071e0cddc29a7b502697a939ba5bc214baa8ee8ed85d21');
+INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e3b3b701c3e90a26ce78fb78af5023a53cc8538c6e57a3fa1ece051de4c5242');
+INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15,"utxos_info":"1c955d683a1186672eb27bc0364c7b7c373341b2a40c8bb906cd39ec9bed60a1:0"}',0,'NEW_TRANSACTION',NULL,'b3663a9ef1d8d6243f204d73c56e4dcab07106e61c82ca8c3ea052c3d3f060b2');
+INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f"}',0,'ORDER_UPDATE',NULL,'fb4390be17fb87d8782f01fba988a3fcfb0957a873529ea63ef0f6c3bd2e500e');
+INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'0f80f0228eb278cf40b6f3cba6eec6ceb14b18b278c5e9462021ca026ab2d2b4');
+INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"f093b6c00e1bbe85106db6874b1ab4e3f4378d0bf0bcffbd8b51835285dfbf3f","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'1bc82cb9db0d15b2f41f7a35d99a7cff02ecc39fc376286b39c576843eee933c');
+INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','8509a55fa57f6e4a61eaa91b33184a8dbd714d64367549c35d71e319c6621d70');
+INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','9215601289cdb9d56e9e6ea8bb63f3a437b85f1be74742c45ea79c48b9f9457a');
+INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx_index":15}',0,'TRANSACTION_PARSED','2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3','798a40f1f45732f333bd7644af63dc30233a5eb2b08b58afdf3bc11538783477');
+INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"49fcaed957776bc62c9f1feac30dad8c0574596d312f9efee7a453e00bf64866","messages_hash":"9d29d6b1dacb4ef04cc3877b1b6f32661d98822e7f536a2eb49d5a904bc406a2","transaction_count":1,"txlist_hash":"700cf4c54e23c0cfb4d8b02bc6cb1ca509637dd95312629625aa92d32d5548d2"}',0,'BLOCK_PARSED',NULL,'5fb12aa9fd3bf38a6a769dff75065f4c8e75b186475daba36ffb5515ce0ec168');
+INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'578476cf9e1c71f575cbbdefc3804656273726ebd067128f4bba9c922417d869');
+INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16,"utxos_info":"c3eb3463857a8defa936fdb1a10580216ebcacd843ae6a59d0328cea5b2f1f83:0"}',0,'NEW_TRANSACTION',NULL,'73de1a4795838264ed9cd479de6bce6f7b1b1b61e6b07d7a4da57f67514103df');
+INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','3a65cc8a16827da88724c08fba2662969c180bfca0ec7da77fdae95b5b64e24e');
+INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','563e7a0c41453ec1fdacbfc42b09c89a3f7c7860624c6660cd20d381367876d1');
+INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','3ff48f6b6a4dd5c53500f4a79c51ddb117ec837fbf6e7b33e3073478fe99308e');
+INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','f290ebdf29ac9c69fed485843f262564b6c40c18e0f88fd10b8cdf4fe6d54d26');
+INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','9a6e37c18f6199631c920022cfd593ee2c12477afdcb4198d402d8514cbba7c5');
+INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","wager_remaining":0}',0,'BET_UPDATE','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','e5326f63a0519aac84c9c0ceaeb4e9fd309b900f06fb4f85709cc259819bf336');
+INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx1_index":16}',0,'BET_MATCH','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','959dd5b1c1d7423c144f0fdc2793ad7f00783c00d54bb533a1e537a2176b3d3b');
+INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","tx_index":16}',0,'TRANSACTION_PARSED','65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e','e48aa34c1adeed694b23a023616093a4e54d18993ee9b5564796cc7cb6a097fb');
+INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"4e4abd3e8ab2658a7ac673e3a178ceac76fee41cf48bb6ed007d241c079979bf","messages_hash":"517a465489b9c047177ae9ffcfe6de613b58012f0e051d3580d9d94ec5a7d300","transaction_count":1,"txlist_hash":"288c9c0f37cb0c2e9db66d4b88b165391a67f06016ac84c485e9b9158ee51f2d"}',0,'BLOCK_PARSED',NULL,'ce293debd6582b6dc4bed32d12b23387e00d5b9bef7514a0b4ed8c7d496eb30e');
+INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a597fa1245fc2eae30fa78e846c5054bb8bad2563b4396acf77d05a622ec1883');
+INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17,"utxos_info":"6e87b9e2c5817b3fb2d8884f48f50697733404a54dd2651b5f45b4da35545833:0"}',0,'NEW_TRANSACTION',NULL,'5632572920222cc6a20cf0388b65af96695d485ce4fecf4b88eaf2f594cdaa70');
+INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','71b748aeed5aa082b457702104cd57d6577e7215c1b65e56d7198c7fa8972fd0');
+INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','94a04bd2d038dd81eb7ee259336cd3ee0eadbf55dd1aae26520797437fdc78c5');
+INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx_index":17}',0,'TRANSACTION_PARSED','94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4','c7948660b74b182a92e9a01a9a235d27d3ee59673dccab5acc976d7c487da771');
+INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"17a28cca0777254af26544edfefcad8810e847e5d173fded9a7813719cf1162f","messages_hash":"ac2733ba22418b1d94bd24152389dfa9f9d0c98c792431c2e2c2e46b140077a4","transaction_count":1,"txlist_hash":"1bf7e0a4aa8356584087591a8c8e8b28185a6ebfe1a15a85f01165a04ff57913"}',0,'BLOCK_PARSED',NULL,'142e810e9475c421e9fc620f74f4a2fa0116ef15c8a1ee0f08ce093f99e8b84f');
+INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'795f2c980af941098db214ead00b68ccd7f4e82c4d2712ac8c2dbe86adedad27');
+INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18,"utxos_info":"0fe94e9ce6026767f7c6fb2159bb0caafb1396c8d666233718d5b549ac1c9d8b:0"}',0,'NEW_TRANSACTION',NULL,'6309ad7f41a5777d5a215699a0369df3a298bdfc6e81cb2dafa4b538a5398511');
+INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','8c3ab89632bc67d94e256dd20c900e5807147ac3d6dd7a7f9dc2cb4054f96481');
+INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','dcbd1752e3e55cb7f940aee4b53848abcd85e37d3a4cb0655de12c7ec1ae689b');
+INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','a2459c5de20517c203e30bd50d2c1715dcc0cde2deffff635300b18ccde60a1f');
+INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','02aa643402c9a7266123f46c6b649f791a5eeff0278d7bb7b23806723e02cf41');
+INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','96832f437ab35d6dc8ec976e9b4b55792354c03803820e49b9ef3206506bc1b7');
+INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","wager_remaining":0}',0,'BET_UPDATE','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','29b04a559aa17f3553721db273348255ac3e819052063c88641d842a4bc23b5f');
+INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx1_index":18}',0,'BET_MATCH','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','150a8520c2297d732d00f8a391961d2f6cf3dcceda5ccc206132a8d632b025ab');
+INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","tx_index":18}',0,'TRANSACTION_PARSED','a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e','4681e19c2b54f1560315801f1a3812ca3c00ceb6c3d137e9329bc3bfc02956e2');
+INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"1fb58120e9eb78908fda6265cad12b4a5770701e9a271bd5c4bc94059bd3bab5","messages_hash":"f108562c7553e868c5f317d4e0a3dffd891923199060910adedfef4ed7e2f0a6","transaction_count":1,"txlist_hash":"62678a570c40b5a12469e442b3a54f1416d9113de2db501f37ed533f345e71c1"}',0,'BLOCK_PARSED',NULL,'383dd2a50c1d63edcb4f07f4fc4d75479bbe7d56a90cde6b9cbd6e9b07b07580');
+INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb55a71a711c16783a415376180ca5cdf38254d37b783f578662dd7003038853');
+INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19,"utxos_info":"1bd34a2e5fa7dc79e1f1bff6fcc0532e1c8ee5714ffe51d4db117b1ff4849270:0"}',0,'NEW_TRANSACTION',NULL,'39f05d26e1b265f53051f6d866116635a81ceb58b794feb82deba519fde46c70');
+INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19,"value":99.86166}',0,'BROADCAST','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','5867bda7985322bfbb53ed16b553b6c480711105926540f4490874cedffc8fb4');
+INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','2fa9e55711c5cc0944b5383ea73e2ab21d5f1c41c13847c6c6b5671b7afe9116');
+INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','32587968ef21ff4a247edb67e77f0719ddaea82e3f36a1ec06bc1a478c878901');
+INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','00c2749b7c59b3dc16921e6ab168b9cc818042cc5886ff8d9f411bc6252be5a0');
+INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f_6a5f30666a5f24b6e0e6f31cf06b22ee74d3e692a550297450bdf1d36b1cc167","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','7690272ff21b9ccea99f427fabdd28adbe1687852d6a8f606d4b9aa4f1844344');
+INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4","tx_index":19}',0,'TRANSACTION_PARSED','f020ae6c0b1aadbba4893581678ef87f9d2a925be5e6b08d02440e213f6183b4','c4f8a0f8ac14178545f81571f01eab9ac90e81317694823a7f1792b5d6d47cd7');
+INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"304243c1b11644e04d325d7100e4c757c07b874f0349e60163a5a544e84e951f","messages_hash":"94fae4523b535b7b5416e63ef3c189395241a7bde35453caaae5cb251f5eca6f","transaction_count":1,"txlist_hash":"a174e4813aa967f5466148f27f4f8511ed9404295bf613e112c08b72eb3229ad"}',0,'BLOCK_PARSED',NULL,'2b9154516f53cc99cf8b65ca3d582d23e795d2533084e344565960a20407bfbe');
+INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b317317f62b928b2bc764c85e7352b50d002b21ad193a597782b0d7f954fef5');
+INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20,"utxos_info":"d42e76bd859bf8b182e6e798cbb571f766fc69aa64d9b71c15d5c04f7fe8d0fa:0"}',0,'NEW_TRANSACTION',NULL,'58807e994c5b61f674bb5bced139101c9c72c72af916398bfbbe1e0f86dfc721');
+INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20,"value":100.343}',0,'BROADCAST','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','4e55408b836a95c51ae807f74600b27932f690d5ce928279661fcb0f37e37d67');
+INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','ccf3037360bd08261c70ab1df71440d12f733ed20042395a594b812187636185');
+INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','7a8173cea143c14fcc6ccb1d5d583bfe4146d321231ca52a0dc168a8f0e2861e');
+INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','dc008deed6ff5560d6e16f78f38969058b12afe831ed8d4b8f7fbad74aaceb8e');
+INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','552b0fab91e1ac426b007b6be923a7290430d3362293d6155e9e73dfc52f0cc8');
+INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"2066b9a6b8913412384a0401ef57bfc604e7c5a2c141e23111a8ccc6881b0fb3_65db3ab58b65891a947ab9bdba4723e907678bf3b48397add62802dcc65d1d8e","status":"settled"}',0,'BET_MATCH_UPDATE','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','4a91309d3ea7abd6ee196aaf76651cfb5c8c8b7084e5c5253088b3ebfcaf9712');
+INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600","tx_index":20}',0,'TRANSACTION_PARSED','dccbd8852c8d489d32f87be0c86a631b63ec50202b0109a2be6aa96f27f89600','a341f53650dfdc15086d21659bef38f4fa14de316f600e1420ece250930a3066');
+INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"fc9905ee4863b3cf29a3e558ee690a24ed978a4fd79c464bdde30a34cfff19fe","messages_hash":"8eb8bcd2974acaa109119827a6a2f148b54acd7ef046a1eabcd3c711a135e697","transaction_count":1,"txlist_hash":"c551c2094651cd0e06e0cd9d513fec771b69f4bb89c3034f201c89f703cf8a23"}',0,'BLOCK_PARSED',NULL,'1df639c46353c57678479ab92619e580ede0df4cdb825f1d1ce2d2bd7ec37b77');
+INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d66f8e70a6c3ce90b4e6bfbcd14e53d8f2166f113a4a1a6573f84566bc10f210');
+INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21,"utxos_info":"35f2a884080b8d753095b1de08c0fc7e4959da011dcb0118dd3a856d75a89d2f:0"}',0,'NEW_TRANSACTION',NULL,'387e504c2a7b2cc42f3dcc8b8941f51cf99785e57a96115f34125b8dda25a358');
+INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21,"value":2.0}',0,'BROADCAST','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','71b983027c0c5e75499c0b9fe66dbd2bc18fd7444154c3967f80e5fbb45ff98b');
+INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','6f0263fd1c6d4af42f4bbd132d671fe4517df2b05b86e98ab57056053a339d76');
+INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','1d9bbed6deabdc036947eea733b02fa81232af7f1b58d5ffdf8cdceaf84cfb4d');
+INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','cc2fe291513a8bd7bf422c2d2f015df1c5f5fc6106f9cd6259bc2f817e1914ae');
+INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"94b11df6b519372bfbcf0ec5f3e6465a63e323c7cd7cff83a8abd78596d4bce4_a7daff1ca2874f6b18a8f1a1e70db27f58c6b39a9f106c353223fbccde57098e","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','69c1640f18263115655f8f413ac4919fcf432a23ffea9e1dd856baa0d9b145bd');
+INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e","tx_index":21}',0,'TRANSACTION_PARSED','457f36dccce6664a8e28b00ebf47aa60ba4a41b46642aceef0e2a297429eb64e','091d01302ba24d47a76d6aff934eeab6e95649c9c5c1d83210e4474bdc9d375d');
+INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"e433feac4a09ad727bd3764b10a568acf5c659745a695e9d7e8790514f6bc98e","messages_hash":"32980f68eeed329ada0bac46146a50e54193ca57a310e72605eb5830e6305b62","transaction_count":1,"txlist_hash":"087d41720991e4b6bb72c6141334a65c9a289454dd8fd57edc33a09db467d086"}',0,'BLOCK_PARSED',NULL,'ec751e75df853c3b7b7c41aec199f132bf4ebccdd5732f7937ebeb5cd4f04f0b');
+INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3556d8608c5cfc6ea4ed7b4aa7f9bed1cbfb021ced373daeb2dd6b2c21521c8');
+INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22,"utxos_info":"b26d7ac6c4f02ba75486ccd6031f7b5b78891da999ad5a28082b77c8188af830:0"}',0,'NEW_TRANSACTION',NULL,'efd05c54eebfb922a378e447a4bfc4b8c981af4f7803b38c4547c52c5442d9d1');
+INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','84de809a9cb96cbb1fd0ef4bed9e9eb8c9cd308403f7037eea910d93f9bebed0');
+INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'OPEN_ORDER','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','386288135fe6a38f71c21b37c398a00f56fdb6b26c0f961217246ce601d94177');
+INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","tx_index":22}',0,'TRANSACTION_PARSED','6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee','00c0135f3b38e3f60b40d3163751fbd401554e8dd07f5743fb644fdf6311e610');
+INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"622f92da40eae0b1b57218b32ad18daf7d79c9e0202fed4a288d75b8fdcd19d2","messages_hash":"812e86666b3011b817077578811956e488887b458836cfcd3ab72f3a27e86247","transaction_count":1,"txlist_hash":"caa77e83354d56437795411f9625dff332c0dd39d059a0ad7381fe1f37e38999"}',0,'BLOCK_PARSED',NULL,'b0fbe4c0b7e9897ef85d774a9fd3ee954e44612f827c74275fc86f413182b98d');
+INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14dcae9e947c143d0493cf18d23578db8b7c81f61de1bcfa13de16fe7716eeeb');
+INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":14675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23,"utxos_info":"a97707e3dc3ad8d51d385701161d1020fd8f459b3668a9b0cf6d57a09416a3c9:0"}',0,'NEW_TRANSACTION',NULL,'30cd66b3c0feefaf8210d7ec0a40dceb4d6eb5297452674e6459fc334e7f796c');
+INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','b459bce4cbf54340180f737bce4a62283621ab7147f252e8713df2cf744c921d');
+INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda","tx_index":23}',0,'BURN','c81cd36f1efabd22f1a00923714fd5a5f1ba07852ef1f0763223563e3f55dfda','9a85a733390e6c94a7ffef265e368d4f155a7ef5f4ce6924445e9a25f2bdac77');
+INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"b7aa8d9ebc37d52d8dcce2cc17431d6edf5a183b73ac85bb3d91276592215cfd","messages_hash":"35ded8ed45aa6e5a1ebeef71ddbc2c89f1777d3af7bb6a858f2783026b40b918","transaction_count":1,"txlist_hash":"df23960a57099b0b64572553e56794b1eff3004e684ee2b31187b585aeb03587"}',0,'BLOCK_PARSED',NULL,'2b4b1376475317c75d92533992de3fdcec9f997f46b582db141d91e69d69a82e');
+INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66915c9a97ac6abc55a182c15ddfab4be86b97fada3ce1869004af387d2a9a30');
+INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24,"utxos_info":"c9eecc8059afd7607bf284bcc3322c5c34639e4707a8737c2a98526911c99390:0"}',0,'NEW_TRANSACTION',NULL,'99775e875966e782ef9fc0849cb7384963f6c8e53534092afbd37db87817dc41');
+INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f"}',0,'BET_UPDATE',NULL,'85c9536f82700294bb52b4595c3c3d99be24bf42e37a09bcf8c1918b756f1d95');
+INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'327df7bc1e6df48bd460a3c13e400b9306ef903f9ad2d2b9e6dd96f9db6a1c72');
+INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"74062934f0a97c41851735fef2a7df4d9ad9945424f09a54281e145a5e32492f","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'699db8ef5c0a62eecce4fc620d4bd78082fe0c81a9711b114cb38b5111103a15');
+INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','012e8e79a3c24b0e4e5f43abd5a0a0da2a1202b935f0aabbe899b73e6d2d42fc');
+INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','3a294878aa1a00ed4fe9aa1dc263be1927b76e2d5d065a9a40dee2fedda315dc');
+INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'SEND','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','5a97975af7422ed6d299ac0eca53f0d48d072f608b7bff0422b25e9b8b7305a0');
+INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341","tx_index":24}',0,'TRANSACTION_PARSED','c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341','9cf13cf476363538702fc946e1da2ce78060e8a4c59369faf6c87ce77bacadab');
+INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"501c058860063ca599f3b946d465b3bbd84fd483a2a80527e456e3de32b48a19","messages_hash":"0aedb6ced2e21c0fd8b956947641a38405e45f6bd468c3cfc77d7e563a0e33ac","transaction_count":1,"txlist_hash":"c680a6d4f839ba4f9420a99f0512e51fc1db0b661ed027332f440c6089eb615a"}',0,'BLOCK_PARSED',NULL,'36f87747d8dea278d0541a9d5c62dcfaed41d60587c39cc8811bca7cf49a3c64');
+INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'223f87426b69d9ce85e2980ce3405867ea3aeacecc1bf68e3520683012f15551');
+INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"222986ec44fae1a6196d64dec24b79872970823f17bf0459d3b247bdef316675","messages_hash":"cca1a26027d71afe0475a387ce5b360a9b2037b97d9b41b68530bc0a2ebe1698","transaction_count":0,"txlist_hash":"f40aab7ef7167a17e35279423d9c14d49a9ebc05691fa658b09add1373216959"}',0,'BLOCK_PARSED',NULL,'e8969318f53533fe47782b0398abbb84ef43c18b56487086db13748cfde59306');
+INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b89fd6c4a20ce219586aef5734c46867523301083fc0eacbe863d0713798eaf3');
+INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"bcd88006b9cb98445a74c656d424435e82eeaef95dd9c54e394b42808dc9cb8b","messages_hash":"1d2ec6d87f978d6e9cb57997842da8ad6a81c31f6b32381a7cb1db192ccf7557","transaction_count":0,"txlist_hash":"0e3736813d3c0e789cd9474449abcf83118b5559cbc2f4dfd4d3ee51b5847a57"}',0,'BLOCK_PARSED',NULL,'146256979e392609f8b0c7b7d6be199ed83eec1dd8dd919e0ba2525870065001');
+INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b22c3f15b23bd4de1ff15c0cc70cc5a29a5f9534bfe83c9a453c318edcda36fd');
+INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"3de7bf2043ac2e68bc9eaf8d1c12195a4f2400bc78c8deed0d487af11edf401e","messages_hash":"cbbc9e3eefaf01335537486aad05af2d831cfde7302b18e0501fb167ba6ad8ad","transaction_count":0,"txlist_hash":"c3572580398fcd71e5a1fef6e10217a99dec1aa605d61830ebb64ea65b7907ae"}',0,'BLOCK_PARSED',NULL,'40cf23e319335dc83cfe31d34d9e89dd0514e2533ea7f2c8d4586bed02cd29ec');
+INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49b38bfaa29e6ade49cf3a36f168b9c3a92dcdb16ecbb6cacb00f3f8dca500f5');
+INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"6c2a67783cf36e8987dc1805f87532ee1b94f79fb00952d8ee4cf3daaf655f85","messages_hash":"fbd0cf72c242de4ebddfc748841cf443d3ea0a48e50e115ba15eb73c4cc24633","transaction_count":0,"txlist_hash":"b8b9d102d56df94d4fcea6f8aeb92d3cb859d3281c9fac7407842b7f05313737"}',0,'BLOCK_PARSED',NULL,'7f6747fe257a10078131187a22d569090ea9a73d9805499448bc8c337f7e0990');
+INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff4257725a21dea7a2e8af82f126c03187966f2b93581e58842e7a0ce0998c66');
+INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"659c73390e2e7eccc07d690fb438181c604787208bc45f466e57721fa1e21a64","messages_hash":"02bb87deaf0eee77ebc1483a4bb2f4a52ef153f48c863dd5ecd452029e006a3a","transaction_count":0,"txlist_hash":"55eafa176bc145ec7b98497c8a156226c68bd3b921cbdd06a890b2bd660ca050"}',0,'BLOCK_PARSED',NULL,'e0ec40f6c7f07cbbb029291dd29a57274bc7841011560a5c57e39fa4fca64c81');
+INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b46272773ff9ac95fa93d8062a8eefd13c4071bce7000e7bde91614fdbbf9289');
+INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"87449e7ff7316e49012934d83c1f5b733cedf39680299a9582eb216e260e0c02","messages_hash":"6f4b3e66997c5dd39782d00a208c90f348a8e7b5359eb1bba2157e99d6c99583","transaction_count":0,"txlist_hash":"c2fc809ff3ef6b74b10b1439fe15c275c6fd925e92dea73cf9d603948aba0d8f"}',0,'BLOCK_PARSED',NULL,'113df3f5c5d95693265353d8898a5124cbad203e7ead7747fbc6abad206bb765');
+INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b3e6288440652f497002e9be1aca9846108e655a8dfdc11d248e3ed31b0535c');
+INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"6c4a7f749d0308edf5c88b3ea4de3b1d497ba3bc06435594d77686318b744b0f","messages_hash":"ec79840ea2d6673cdcb440ad7c13918c79973134258eb4333a6aa2f97db4d48d","transaction_count":0,"txlist_hash":"45db1d0cde22349299df8245e7ed24d308e1b1cb227098178606650f20832aaa"}',0,'BLOCK_PARSED',NULL,'b41da87cb3a04aa19eac03cc03a261bb75cbb98e6e97738e69fb1e0456dc8520');
+INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00b788ecd3ce19447f7251527041e11ffe2aa6e3052d97a6e277ec630081c273');
+INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"ecc04b1b2c7803ca17dc2a32adebd0960de2c04c8dbfec9cd88771dd883c885a","messages_hash":"fbf06dd0ef5601ee0a9415ea8c86a7425a0dbde4fdbc4b03f68bee68fdba6385","transaction_count":0,"txlist_hash":"981653075dd609f44e0a5673dac2b63824b84e26080ec226547892c67dd7cc33"}',0,'BLOCK_PARSED',NULL,'828f9cfa2848d8d74311d9c8cb5f17a7949cd2c66342f5161e0d348431759286');
+INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59f4f81dab31f670ab440f0be87977001d3625d299004e03e552f6d3a09f48e');
+INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee"}',0,'ORDER_UPDATE',NULL,'dc7a3cbe56768cd6eaf8c6021b89bed18472a2bfaac0c99839ea53061b091f90');
+INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a379c4cc4da0372996f1a48e89abfc529c4fb50c3f437979ba5e1c5be57515a0');
+INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6cb08a1c0547ab0d0d37b74633c1c8a2fd2372d9fd72eb3abdea298f2b245fee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'e322e85fda53c30fbd4c8ae3a595d6de05e757dbef1c4faee34d151de42802dc');
+INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"01e769c5b990db44a9e534bc6c759567eb4283e0ea252578dd525923c7fde02c","messages_hash":"4e4109b78a7524857ade4154ef083fd830254b00f074536cecdcb5c77683910a","transaction_count":0,"txlist_hash":"81778134948c3577216eeeb6db7fe9687545d855dc3b5f6bdf6053a7edf3eaf3"}',0,'BLOCK_PARSED',NULL,'345f3af0e09fe11d22aa2f64c3081abebc108c2f6c4df453e6f4715ea67a6310');
+INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df0b5798a720868552afaaa8c17b1219bcef0b6c00a8a47de530a5f1a5ac40be');
+INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"2df6b8dca0ffa8d6d55997605188637c2b86300e4dd7ebe3f1f275690169fd46","messages_hash":"5bcc58ce2dcbc4377575d50360c40ab7663d8a25c93f6323b4248f2ad30f4593","transaction_count":0,"txlist_hash":"650b0875a0fb44a0ad1b04edf1a0eb1b50b5ecc423c6ecdd37b5aa60b5e85663"}',0,'BLOCK_PARSED',NULL,'6721def6626e7a1dbda19cce115494c0245d7f0a0d142ef490c4c2d6274c359a');
+INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3090f84dfd548c21c70b58eea7bab227bcd7543b21350944dad3bbc0e1f75c4e');
+INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"7f0dc7c1527a7d11831d272f0295eacabcb96fa3599f5a716bd29ba1bb6b7577","messages_hash":"00c999794ecd07f8241cae22b5059ecea0a0511e962f7e5bd9f5a0e938e71060","transaction_count":0,"txlist_hash":"e9d6c050b077d8e6902999bf64a0f1bf420c881b8a32c511ae81b0359e83a542"}',0,'BLOCK_PARSED',NULL,'7725c6e355a5cc2ee03590f1886accf8047cc72d9c9c2311766229a1d3cb4df2');
+INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35898bfdba08b76595125e5340183caa7410e15c72de1b917b9520ddf3a62d02');
+INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5e0cdf1764ed94672c29144f9c1bd9c3e70784f17c9dd1c9e4ce703a99bb3599","messages_hash":"96d95db5bae3211ebd78a303c54631150fb8b17474b13ef47722a2012271fd35","transaction_count":0,"txlist_hash":"e755b5d80c9995dfa5763b080b9bdd349fd7b5bd940a661836ad418202b77384"}',0,'BLOCK_PARSED',NULL,'4ff0baf91fa521b399fbc0119a1aee34feaffbd105b370ae38ae1e219f13441a');
+INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15dd61ecff5a3a88d2c9ccdbb35f31d7f1de875c3de2b6bea2a74ee8a4d21eb8');
+INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"96da34a5a66b89aa3e8857b4a4edca51a56a0cbbfe600d8153077875624a153e","messages_hash":"826b6cfe13526a704ea2b67c098e2e2c613997d43ad0fb01bf351207be2d0eed","transaction_count":0,"txlist_hash":"cbc0139fb09af6a6c63e07847a37f15767a1f7b01d6305cf40179de841c4f093"}',0,'BLOCK_PARSED',NULL,'e37830f85607a306b43882d410d63800ca89e2bc255c23994397c0267115ab64');
+INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69a2c0cd869fc294a15121710b151ec7ce14b3bbdc0518ece9901762e2a807fb');
+INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"d481358c19b4220aa9a3d135fd0651fada6df8d0f27b9ec954ac07950e876c0c","messages_hash":"dc9ee8c5c08597627d45cda195771ce77564ae3dc2e305ff659d0f813c65b3d7","transaction_count":0,"txlist_hash":"0493eb6bbab5ced7f25c6f5a3b32e4e2da321a5c761855ef64b5e050ddcfe431"}',0,'BLOCK_PARSED',NULL,'5c0b3f36005205bf275c1d3473860ff706b889a80879b66c7c5361c1a2194353');
+INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4400ef0311c88c6f93e1ec6ac4bfe3efa0634615b3016e84a0ff7656fe07b670');
+INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"4e9fcc454ee53b3617c792eb6577c2eefa6eee6aa4a2925538cb1976d48817c9","messages_hash":"b2fe0dd8d0aeb004a8b6e7b4f924c40f9d78b8b443ec56885c03fe9faca3fb2f","transaction_count":0,"txlist_hash":"64b95af50bbee190166820a564e858e5c86769c04b22a68c2bed5adee0f7292f"}',0,'BLOCK_PARSED',NULL,'06b91c2cc8c60628d422c038d3669613acdaeb1142ecd2d5f8655db2f260a912');
+INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e1e86a5ab06dc5ff034eba17fb4b4fcd1bc483f8a34870a24bf1f1613a63e43');
+INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"795c5652d9679942a02060edfb497b072009695d9a72fb144fa3591dba65a2ce","messages_hash":"a3a3930122c43db8e3d8a1d6d29909e89d1263ff72064061a32398d2880c814c","transaction_count":0,"txlist_hash":"9927f1558918a59509f668789e75198eb432fd63e0a7ffb46160d002c0932188"}',0,'BLOCK_PARSED',NULL,'a42471f835db5bf27a43e6df9ad9adf643929de65b4f41eef086f02e135fd70b');
+INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0b46208d4a90efa1616f0a16681554a7cc35da1e7478f43ee9ca494c1f05a2a');
+INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"e569e6e8083818e594e92b3356833e8dd54fcfcf5ed25af0d09e36e24b9dd441","messages_hash":"2c670e1a75b7b79ba8380bd0aeebbd8566efb67b8de497cf760f047433430048","transaction_count":0,"txlist_hash":"969f7176f1a56d43e0d1b4da9cbac17cb1a934be64c12b3784ef33b584513271"}',0,'BLOCK_PARSED',NULL,'7996b2b73af11ae6a0a144e7a60ca267e9844fc3f4bef5551e42b07249f61d68');
+INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41f1024e5e62f52511dfa172cef40e253c4889d080858d257c25aa3420a0cd59');
+INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"2247fcc633175a91921d226f412e56822379c79ca799117c39ecaaca0a702192","messages_hash":"3acbc91852fb2d7256eb8de8d6f79f2131ddb81d57dad850badeac4be11b199e","transaction_count":0,"txlist_hash":"29cb8f1b29affa41416aca0265599863f6b739538f13bc6672f6b3c17e411045"}',0,'BLOCK_PARSED',NULL,'532481d7376e9104bd20c6e6118333013e70d6f39d58f4f26a63151a0ae590fd');
+INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d89a364b0d8e32f5b993bff7edb6121f6b68c07bee621cec080352e5951fc5f8');
+INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"0246c3a2a70b33a038ccdb816f6b0922a50d08310f360cbd5db4df58e97fc4dd","messages_hash":"a974d7e9f5e4257985c069ca2c5517eca6f3386df46f27e39152c8540ff21e79","transaction_count":0,"txlist_hash":"d1ca4c9abe26de83d9a0170461c87f2c219926f8dcb0c48793d74a0cbf01a43a"}',0,'BLOCK_PARSED',NULL,'0aa55a2155fb6e82f1a94465bcb43668de08b2723aa2528e4af13001ca6dd226');
+INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53b66371bd8411a6c0e422b7f73678b2a4d95cbad7a9a7ad8e3c2655656e717d');
+INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"cbe39e9d1a132cdc568f893bbc3d4f55d27bacf7af31f027ebea1b4bed9f0009","messages_hash":"a684213ea28406c1a4757fb316ae5e6234cf739e47c6f27764e433046c84cca5","transaction_count":0,"txlist_hash":"452b2e3ff4075f702cddcb4b8fd9006c756dda7a3527d635f637a200fd621c91"}',0,'BLOCK_PARSED',NULL,'bbe4dcbd61dd1ba0dbd3088d4530039aac8f37e54b899cf0022e144356251d38');
+INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef876dccef855fb3dc88298a6df6807eb3f85ca4ee9b2f64f41b836ee28f603');
+INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"1202b05e118f0940ce270d9002d010076115a0197d889fee2d971a77709899bc","messages_hash":"2b208323abfec338b83a4b1bb3433f4c955f0bd4eaa57218f9af2b31a4a06629","transaction_count":0,"txlist_hash":"527114d86a06f44f12e1f789f095227f9710b47e95251cdbd6f4c03309eae61d"}',0,'BLOCK_PARSED',NULL,'1b3a802c2c5b17d47af9c858189d05e9f70e2eb8ed1dba7c5269f92476a2c84c');
+INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b17c1876f57ec54d77c5403f661e4dd58a6721db47fd768824a01e6082cc7f17');
+INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"0bc49f765419c0b5b4911cccf03b0d9959aabacda266480b98245de0c0d35fc5","messages_hash":"49eb99327ac63bdebc3cfaf095f3234b4fb156d19870849f03ba340dbb6b5007","transaction_count":0,"txlist_hash":"ed6954fc7aadd8f80684cc67580b9cc16f9a402296ac91c021de0148a1ccb4a8"}',0,'BLOCK_PARSED',NULL,'60a5dfdd1f4de624c5bcf5913902c640a5fd7707b097ee0ed24cdad7d4918a9a');
+INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8ddfd579d8705c47a2e9cada24b6e5a13b3c0b8b7013f4ae01e3e8af24d07db');
+INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"e42bf9806d0ff3a0663756f7955b30735747d14fcb0915c89884baa12795163d","messages_hash":"c3fc8aa905a4170a3b72329c94f70bcaff5c4d7e7ad7a5930acb71ed33616c08","transaction_count":0,"txlist_hash":"2e62ee5d03044d0b6086419a6d2fed78b7db3bee75a2bc158bbc04a8f5c34908"}',0,'BLOCK_PARSED',NULL,'b23c7c27883356197bd4854f0a5092285efcd6d9d21c7a09c189f8a6ba0b822a');
+INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37c5e4d7c1769aed657c543750d81bf561378b7f0e93c6aeea3616210f512419');
+INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"b19b5e14741284b4ca06b736120e903363651460a6efb3ede1aca3a4f3c00df1","messages_hash":"b38346e10ea8e6a9dbbec76960270ef45bd5a4e15ea60c19fdd460381b00a5ed","transaction_count":0,"txlist_hash":"bd40f4de40c172e5b5997091f4a069ea54d25504421e6225ef3d9ee360fbca6c"}',0,'BLOCK_PARSED',NULL,'93e1eb57d433ddcb19d24dad1f4635ae03bb9f9d744c8dda87980da2f65357aa');
+INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f11d704d3c8580cb47c07d70d3d5cfac53623d0ac0b5620f2c1218ee37670dc2');
+INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"e870de901ba86d65d0e2053251ffb32cc7dffb55fcc2efbc006a2b9137314a39","messages_hash":"b4710ee09fdd9da9af163b58135750f9e8f935c13ae14d2ac586700afda54583","transaction_count":0,"txlist_hash":"d89730ea689c2912f38a2d2dc86caf6dc35a3e183c4d394129f21368f5c1d371"}',0,'BLOCK_PARSED',NULL,'bb6fa54e7ffdc5cd69f6cba149741142bd98e817c46bb89d63134b4affbbe313');
+INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1e5d119bff30e733a7539a417a539bfc460c24e5a9aabd892aa13655e3a0194');
+INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"44cf354cdc8552ed37e5911340397d3531d0ba45100feae27377130d4ddef359","messages_hash":"c4cce9982e0630076d314f14323ff672dd88eb78f267c6414631569b8068b108","transaction_count":0,"txlist_hash":"1100866c04ae89913abf573ee61b3a7b56ec8fb7526c7d9c9938d61a187586ab"}',0,'BLOCK_PARSED',NULL,'1352750dcd5ba33721c61b56f8799d1127a3a80c528ce99611057bfafac93658');
+INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce3fd243dbcfce2addc0cc4f4eb1d69e714036fa7344e1c3bb8fe8a11a9d58cb');
+INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"7d72f11f48ac99553e1b2c52a7ff5645fbe05728a10a002727b9270dbb32daed","messages_hash":"6f23296f3978004cfecf1ce6c5d6dc6b7cbf7a49ed906db6bd0c5f2b398d76b3","transaction_count":0,"txlist_hash":"1d95ff7cb416f1915ba7db0099ba9591b97c6bc673cb43296cc82655627eb1ad"}',0,'BLOCK_PARSED',NULL,'b7aa0fc901e05a8290a68a6d0830db6c5b7d2763f94c25ab1a8daa38c3b550b0');
+INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7c8a21190da74a3986fd6d7e62879e88a3c392e7138743d4893132dd4f7283a');
+INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"35a965dc90686fc4eb20450da81ca8db9125e25c2cdd7146fd61d98841d80c24","messages_hash":"b340a1dd8a098a9e7ed91c80907755974731a783e82cdf17c94e54ea3ebc2c5c","transaction_count":0,"txlist_hash":"9d15589506565edb31f7627a37c1f6a6bca01d584b0dc815e8603689f07a80db"}',0,'BLOCK_PARSED',NULL,'3f2fc71c147c390c5380aa528ebcc570c89f4b8dcf01548ec8ffddd13d5feb78');
+INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42d06639e8270d16e551b4b64847c09b4767a0eb0b32652228cf40abec0edbcf');
+INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"8604d503e7194ee1c8ebe1143019207b2aad163655107a3d23d018ef26cef550","messages_hash":"d298e055fcbf1c292ac8abd5db069687241c42e48f88bc41749e2b0059a799ae","transaction_count":0,"txlist_hash":"40053c62babd7f69b9822b6d4223732008d45250146216762da4e13b1b9d3a3b"}',0,'BLOCK_PARSED',NULL,'ff01874d864d4f2c7cdade7bff49057280da0e964fe8afcd9608b90ab8c12d4d');
+INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d23948171353883630ecee8a1ad6daadc90073e14278b8688a3d1c8065ef2d6');
+INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ecdb64ffc44490eeb12199d2da5c1189c07f4102f5b91494cbe4ec68fe6bb6d4","messages_hash":"cbe1263aa14674b1e013a819e96aa0841d37340696319b6c5345b7457729900b","transaction_count":0,"txlist_hash":"7d74527f370a78a8dca189b60657f9fd15c27ba5f875344546bb8d6e5b54c8c5"}',0,'BLOCK_PARSED',NULL,'399d644f5f118992b80f9572fcb0915dbc2da8083f34d1a483d77a38e26a32b1');
+INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'056a126d75e8827062c239f6ec938165553b3eeb354938c3477d15f43294f865');
+INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"b96b0d51d6327284f5922b65e5d023afd2b2e44c9e11f435afbe2a71df4e6eb2","messages_hash":"3b1440f9878f569483df07219d00d8a3fbbafda48b57d0f746cdf079706f7b0b","transaction_count":0,"txlist_hash":"70b8a2eccd5c79e1c270abfdf683dc4423ff315a62486db9e5972a12daaf60ea"}',0,'BLOCK_PARSED',NULL,'1a171fbc16105ffe4ce171afcad7f78831312f7326ea7b1447b968017ac11dbc');
+INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1f5d547fd669b7c7fc444a90abf95fab675b45555c4e42b48fb66d004e26596');
+INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"c5be3fc23a9c41b7b78cc7df4ed13d1d35fdd7edab77c998cef5a5a5fe2a7d33","messages_hash":"e798e99bcf56938955588f18886328e21c4c766200d5c2355d49739ec608bfdb","transaction_count":0,"txlist_hash":"0072c2fbc0915dcc39103950d4a48feba19eac28bde001d3dfe0f9ddc25e5152"}',0,'BLOCK_PARSED',NULL,'dd946f494e6718cff20709382eb8bb4db72fe9b50d363bcf159e8527c1d2058e');
+INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c23b0524a1d7dac3a750a75a155d411a9ed256d72e9232734d2e3a7ae43a79f');
+INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"faa7cf6128f229fe3d408797c77ef2972eb28d16542b32ec87c5fd42d2495018","messages_hash":"10c3e5aac0859c4d983d73918ef98e51be19de2c8e15c1807918612d103ca56e","transaction_count":0,"txlist_hash":"46c53b0ab86b04c06e8302726aeed5922fb5b3d940102422c53bdf4bafe285e4"}',0,'BLOCK_PARSED',NULL,'057352414eb3f1c14255097027a61d3b2b2685353fbfb9dfb970864959ffa9f0');
+INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ffb97fac9a56b3e68f4691130ddee816a64f8a587c26ec8042047814dacd588');
+INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"135af680c59a3d707ff3e6b67fbbb0aaaf0a97724d36ba584087658ae8c0db19","messages_hash":"6d712601d49493415dd87e5c616c1d4412a4e81eeccb853fe9c39090d15977f6","transaction_count":0,"txlist_hash":"8b3fe70c1d1b8fa1a247810dfbc2667ca0307860c112002e47107fe4836b8138"}',0,'BLOCK_PARSED',NULL,'e5dc29cf1f33c2774bce68324354e76e83aaf850bfe91209cb05c13fd5058bb3');
+INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee15d448661503c8beabecdaf9d03eb3a992ef3d6d0bf3a0ea0f783a3f939be9');
+INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"496b559ef740feabe42d55356bc770bab7b927d79260c22848b7f47d51918f11","messages_hash":"cc6379176fd308de5dce183196f5d17717a9818316bbb7e6d561b3b8b41e73eb","transaction_count":0,"txlist_hash":"ddbb4db386fab0fbbb7edee7c7c45676f994d6feb088f50b0f3edaddcc809e47"}',0,'BLOCK_PARSED',NULL,'0977363b614c82a1d46e629182f9c630ad00bff20f594ab8f4cabbe72aad85a6');
+INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b956d0e564b31c7bfb0376baac04c9fd9adaa4d42c85fc90b1aec97a5556255d');
+INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"608eb77e572aa596c9e14c6e4cb1dc1993bcbcfe735cf0453124c2801192ecc9","messages_hash":"992672b958fa15bfb30aebcf5de672462e86b97f417b4d003f4b50e2fc129254","transaction_count":0,"txlist_hash":"b8d3a5abf9edc13434594de8ec0cdf3b760f6917798eab89ff2a6a4f0bda06d9"}',0,'BLOCK_PARSED',NULL,'ef54ed7aceaee66bfa9420914a86a5aa305cb3273ef38db6257b1025b97324d8');
+INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76fecf02f36eaff5f05bc95d58d1877b29af5477fbed444165955c7ede3e5efc');
+INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"bc5c375d1237425486c9f46bd749fba20b5635bcaf3e2d9178b35ddfbb700f14","messages_hash":"f40c4ac0397d5d9184635b04654691600c0461e51a50960294e78ae1e40d5cc1","transaction_count":0,"txlist_hash":"1766568459fde2e95dbe4a1c1b73a37b6f8443dc1ec36cb44a38fadd95d8f807"}',0,'BLOCK_PARSED',NULL,'7f5105e0c216f373627414272295e727561faeb0abee089a2729220a953212fa');
+INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93b23c1f32bcb6595dccfb826badd41d08776c7598149de01f8786562806aec6');
+INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"c6d48d72746c0e18fa0f1b0b16f663869be2c4684a9d98b634e691ea495f4d81","messages_hash":"a0a9900f5eaa5e5b2cca8199a35f69f3d2795cc39afcc61b90203b1433d501ee","transaction_count":0,"txlist_hash":"9f6619aae8ab667b4291ec14e89386177dec7f3465def984144d2991d10476ab"}',0,'BLOCK_PARSED',NULL,'3270677be978f1a9fa61021d8bd77249b736093b9d64288c58ccb243b5d948cd');
+INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15542909e9ef472001053483a399734f7c7837be61a8486d83637d3f500f8820');
+INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"8deffdb1602f1aa2d0d1956d2297ba30ac78901ea27eb223ad8bf7ca83b18110","messages_hash":"8a5bfb59affc8af010b8bf4f040ae20b7bae73e516ecf05d0fafa195daa084c8","transaction_count":0,"txlist_hash":"278612a215aec2522b38d2ddd268f051906a858996b526fa53c48743b1f33c2e"}',0,'BLOCK_PARSED',NULL,'a2613f6ce147545f094f75644f2b05e8da1300f7abd5d0be19e150243c45a31a');
+INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9371bd0b756be43e7927438a921044e834e79b8a4c56ef30669ea7a5fe2405d');
+INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"34859861f240c6553ffbf63fff9bc884f231276ec6173964d5fc6641a6d79b16","messages_hash":"c451afc5cf0e2a783cebef04699a908d781d8c3cb2d6e625b6f260bd2d46b4c9","transaction_count":0,"txlist_hash":"a884effb413598885693dd0eed419a3a2a35db95fe4d6582e580bc141f28377c"}',0,'BLOCK_PARSED',NULL,'08a5fffdbdaac585d96ad15fb3661aa96d4d66f41a2fe77097359d2e09f452a4');
+INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0229e23d3578c69caeefb9c619b36b47872fe19508f3ac3ca3d1e946ba5a5a4');
+INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"fa185f9b97a1666ce3b966dc09b8a7870ba55896a54a54f54d3420708d5a8ae0","messages_hash":"5fa4c517214da3706d54d030b7abc2b36dae8d0306e618b1a17a6649cad5d53a","transaction_count":0,"txlist_hash":"070c320cd53cca3d81560367d437e1f4cb2afb10ab6339e2f1cfb0a2dd6d6063"}',0,'BLOCK_PARSED',NULL,'7e689cfc4a23ab01fe7d392e893461d16ff3c60f3f7c53788ecbd426e3d8495f');
+INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8909ead2e11b5a6f8ce31b714b32dca01960c0e60f710a75cc66dfbd4047bcb4');
+INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9f75da9f944d59b1841d690b2994ead7fb0ee3d679ddbdb0b692e49238f66603","messages_hash":"785359363b3be4224e996ad6fab4033aa3a46982d6af1219186b0dc9d7719cb9","transaction_count":0,"txlist_hash":"fb310206b118e11d48becbd11a695199fd7cc3553dd8b2a7c29c6a927f5bafb7"}',0,'BLOCK_PARSED',NULL,'4d1b13cfbcd695c3c16667decd667593a6132f4cc585744e90ca9910550892f3');
+INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24b4e190ac4de667eb528fe6ac515b2187afd7be3ea612de176971f51a0791d0');
+INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"4740587d203632d1b4061343436e25e12941f0f80be03c3ab390a1c08b842b59","messages_hash":"ee5f54f7b13996f803b277ede2800b1ef7ad1353230e7cf629af6063c2a9d459","transaction_count":0,"txlist_hash":"041e6429d7ad46da6e1a2547daf274a0df952ac4f9b43eaadfeafa6e005141d6"}',0,'BLOCK_PARSED',NULL,'b780727b56b0ad87d1ac9118a8b07e6ab2a61caa4bcf85b3294ddd3550d24ebb');
+INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e249a627870f935925165a5ed80abfc626d9addbe7003a4b9ecd3b9ebbed0155');
+INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"d6eecb0ca22f29b50e52cd5dec8f408250a7b1ddc61bfa9bf6cc6ef0a85a6ffc","messages_hash":"712a4ac75c02f80b3a7deec1b31679674cf124c265662e1bbfacde128bda60ba","transaction_count":0,"txlist_hash":"f8e9baf27b01e99db390d6ee2e06b8ac7d92951c331d8240fdf0dd711ad75979"}',0,'BLOCK_PARSED',NULL,'ea5f3d3c1faafb926cd29f6502f8d044e7a2add64fdaeff3e9b9cb50cb6c3c51');
+INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cdf268fdc0172b04ff78544851bfefba184e7c524c03cf95bd45f7bbc06dfb17');
+INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"1508605d4796eb2d8b0553b307827f570b5020f4cacf773926b6c8f2c1b003c8","messages_hash":"680b4d5e8538a0309a993ad5da4d9ecea6788da6db7a3d9172cd9a45e9ed4c97","transaction_count":0,"txlist_hash":"fe7a135af64a7668cee07a66fa146b6a7a54fc78b96eb7c62d0bbd8b8ec4a820"}',0,'BLOCK_PARSED',NULL,'64866f1bc24961a7722541e8323a675238d92b605bb57ee0b5d7cc591d1289af');
+INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69efb98734ca163a51c855ab4451717eb3a281a409f49f05ac69720d6e43e3e2');
+INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"ea7afbe0817cfef5a5a940bf88b057d01d092182dd5d0c7fd156b6750fdf4cb2","messages_hash":"8d7ff05ed2187f5021a153a52a59612d32071becf1965d5b2e9b3ca71a9e4b16","transaction_count":0,"txlist_hash":"561526733017c46e8f7476f6f7f0a1c317a372adf6ccbe2a34e4d8b0fee1a694"}',0,'BLOCK_PARSED',NULL,'6b4b3172e8c7e85902cdd27b69f5aa4551bbc0b3d527d719cfca662576df3e12');
+INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff46002ca668acf34adb6929fc6b407d72cbf9f3ff7581fa26b69f78af9446fc');
+INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"f805d8bd0b724ffeb9e466367e8524bcbcf2c0fe0525b8ff2707af2013824a2c","messages_hash":"edf3f3e335cd8de5ebc1252b433f916cd783c0ae8bab1ebb749ee73b1e381c73","transaction_count":0,"txlist_hash":"4c10a876e31ee15289cd2d82d8771bd9aaffd0e335c6de15f8d5316e6e7ee81a"}',0,'BLOCK_PARSED',NULL,'52566aaacc4390cd75e88b612fa917e6524d5ef47f6f25857c561224a5cf606e');
+INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eed2071444a3bdae0b635baea927ecfee761da4423cfbeba4d357fb4a7efad3c');
+INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"305123423486d17e97e8370399b9079a35977465e4cf8c5b33d50bd7004b463b","messages_hash":"87fd8b8ea520ee6c3fecffd8606489e2b199e9e91246da44f4e75930a4464bd5","transaction_count":0,"txlist_hash":"660d6afeecb2375668200669bac5cf258dbd18b0f61213eb01d29e133a45917c"}',0,'BLOCK_PARSED',NULL,'a47daebdd794fee8b07fa76c114ccbc6a9656b7c6648de0009c1185ad2b12d94');
+INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f69810dddb1e9d91c0d498299d96a69bab31b325e10ad2fa14f51f6a95a47a2');
+INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"b04fcd2cf46165fa31626b476aa06f9ad8c8cd1d5aa1cfdc014e0d55fa7e0761","messages_hash":"9418303a68e008a80383c06c23368324c7cc5787bc5d08d217868e211e916281","transaction_count":0,"txlist_hash":"0791350dc66254e276bfea1651fdda43705668f461f5451fd91fb7e084b26aa2"}',0,'BLOCK_PARSED',NULL,'73803796f85211396077b48a0fafc061cd648c758f8834bee98d830236426afd');
+INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55541f88cb0ad449741ea7b0bfa69395ad1006358183d0b2bd93b8770244193b');
+INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"209f05567343042c8a9172138cc14e28a2e53f9addf16c7affa469fbea9728ae","messages_hash":"f3b9175e84f2b6b2aa0a147f78a4e389e568ebf2b63178657d2c95a981d60931","transaction_count":0,"txlist_hash":"4885e82f77b273e102f9019b8451e08910a7d98daf19366a0a2b9db779352c0f"}',0,'BLOCK_PARSED',NULL,'e178ce0778e9348fb2c762b1b1e8ce903fe157704bf7ed3e841d0bad33c11448');
+INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f51a2393f26921fad17006f8000494e721c8ebbc1785dc5baa163f6304794bb');
+INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"fc18c0dcd6011c4147575f09bdc6e1eb0e6ae7d3144339859054df458651618a","messages_hash":"3feadbb908b8cb77891fa69748ca080e489f66d97ec81cea73c1a86f0e2248ad","transaction_count":0,"txlist_hash":"49cbefb674e3da718d86151b10bb37755e158a2bdca642a542897361f15fde66"}',0,'BLOCK_PARSED',NULL,'a6242a9e0688ee0bba2497dbf412fec487ec1c9a1f695d73ebf01b3a88a44820');
+INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a2d11c70ecfafd678a929cec1a59623a5f65d245bcf800ab9b2e2f8b81ef98');
+INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f304dbebd02e4536b1754502e6f51e058ed309fdf95a2db8329dd7e5635824ad","messages_hash":"d0244be0ab4e6efb3e403f002293a2ed71cc15ff77bf6f200b7f029b88cad496","transaction_count":0,"txlist_hash":"b5e7c72a91d779334162c8fcb6282c7e5baeb43ef83d8f8c0eeb4dd0579f0916"}',0,'BLOCK_PARSED',NULL,'e411c3920f6f58f6c0f38f088887912ae83f79d4108478ba73d10fd0c2602770');
+INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583e05623af009d91ec38f197d9a5a6cea9a85f8cdf3aff17d03eb9b66d3735f');
+INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f39c071315c869425bdbcf05ff84130a0860f5f47b4f851cea970f58a6edc9f8","messages_hash":"34b3ec6753c34f4937e97f5a04f43213896a30e19b36440972cafb4b702740ba","transaction_count":0,"txlist_hash":"e399bd32bd2988f29b4fb003686b343bd72ae59297412480a359bd56ded23ca5"}',0,'BLOCK_PARSED',NULL,'a4f2e96f2b1a0d951aa1057c6b38e6bf83b76e5afdb87810d303b301c97ab0cf');
+INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab2dd8791341ff5f87ca5aef94aa3d09b4a385274f845d4388b7a3b820f72b95');
+INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"20624d783cd8e82044df58c05e6171a744505df43623d9c2a828c1331f505ca8","messages_hash":"6ea716b87bd2592e644fa6594bd361829b64fa5ca5f23458ee308099ab7ef43b","transaction_count":0,"txlist_hash":"c587d5426925227ed7d0ef11834b5bb1291fcf0ea3f0bcac864e4356187b6a10"}',0,'BLOCK_PARSED',NULL,'5639a6237b78e28952cb38c5c04fd3459c1f87af6ef8f4ffb3799444b85d67cd');
+INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4385569db037efc600bd31f9182f831bbc13861886db161019db1c680b487fb5');
+INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"41ae6610121587bd8171a02da3c50645e8e6d3642aef2c560d46f12707506b66","messages_hash":"1034ffb8353aa40feefaed3e4e51f763629a717dd9a1ac5e3718b90d1b3f2034","transaction_count":0,"txlist_hash":"c8331e225af242d83e283889e6234d601ecb507373f4b7de891b8508d1b7b1b6"}',0,'BLOCK_PARSED',NULL,'fde2b28af6b545c1b9973916bc7ec6e7ab0138bd1aeed24085d9546a5cc0eaaa');
+INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e17a46bc8c85b346101d574f556e97c30b62d689250b7e70a84deec72fe9770');
+INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"bbc2068f2a4b47c86198a5cb7242e26f385077126c7a3294eca6607485b1170b","messages_hash":"7f6823b59fd9c02e0eb65bdcd8226a8558c6954f6e93aad320dce9993ba6e89b","transaction_count":0,"txlist_hash":"42ee671f6b45a8e36b4e57dc7edaa2501b075eb75bcfce535435ee4c0cdf2e66"}',0,'BLOCK_PARSED',NULL,'dd229677e74708a65574cec66249bfeab2420793db243e4dc8604e783724afa5');
+INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a60a6370b2b43a56686515bd70a65e2ae04de27fde94e7436a6bfa932bc93e7');
+INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"fc4350d187ec74fa6dfbbca7f6c51849b78356f853c6c713d10ae4a39ee4f7e2","messages_hash":"84c1c9a613c664afdcd6cd6b6e04620001d19927030f4657455e7b4acd1946cb","transaction_count":0,"txlist_hash":"f35b5543ac99e33a4ea6fb61b688d06a2b5b9cc79776df32c24e848b5dad80c0"}',0,'BLOCK_PARSED',NULL,'bac485540ad91dce5a6f35615f4c0621ffc56abeb50371e97f341048a3e27fed');
+INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'066a78be4064166f3680950392f9b24f3fd481a6d4e21d4dcf9912121fc7115e');
+INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"3cadb90f0285d3e3bb107caa2165e88d855cfa057fcff1fccfb278a8f64c9b1c","messages_hash":"3d972a6d152a0d114fbf19ba2e32e75c9eeb0c7a2c97cf0b46e820282492697d","transaction_count":0,"txlist_hash":"3ff813ab5112e5adf9f50936955db90036ed0e2ba309022002c69e81473d7c04"}',0,'BLOCK_PARSED',NULL,'44c0dd204b85a0e466a301d8ecc314fb1a2e0ce25deba70a6c81ce768f43a989');
+INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'939da7500812ad2262d3b625a4b9bae2f376c9fbd2c701a9c33bd29da6deb9a4');
+INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"f3390bff59484b5ce0d84f5034fc88f4d862334ef3c0d7addaa9be7f0e67006f","messages_hash":"93583ecf2d5b685549d14463aa49e3ddd73a41dff346251de7a46fdf1b068121","transaction_count":0,"txlist_hash":"3d843f898e46d0ec4c4cf79709ec7326a0e45d44361a2c9fe45e546bd5f1e630"}',0,'BLOCK_PARSED',NULL,'51ce97d851807a0ac4aebd7eba9b431e12839ea78a402bdfa957a0602cf3c1cd');
+INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6bee7c9ae7466dabaaba5f5eedb2b485d67c84879419c73d881411d3f5c3e44');
+INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0354bf318eaec5c79b4a7835c76c89f373ab0e413f9fe4ebdea442f57763a971","messages_hash":"15c52c46bccc02aa469d18804664067ca31efbf52410420c70e118c8acd4e8cd","transaction_count":0,"txlist_hash":"6405368df02c1207da46178c106ac287c7c90e5b87a98154aa938f6ef5a570d1"}',0,'BLOCK_PARSED',NULL,'26547fe60c8851875edcf3b747a9b30a3b9e1e1687e0f27d3a6d9e396d414184');
+INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8105d643489b559bb488f4922465924e761d7dd2d68f0cf59f312ae4444d0ea9');
+INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"e22b7a64e15ded24f6c54a5f627354dd2c3ed8175c2f4cd31aa5a6789d7b67e4","messages_hash":"2e7144e7eddae7503bb820f1e0986abf84f0ac422875d0be8745e2c76de30d84","transaction_count":0,"txlist_hash":"6f58e857b2891d43f22bb4b44d296ff18f3078de01cf90aeed104283d66342a2"}',0,'BLOCK_PARSED',NULL,'5ea76815aa1c3718a37af2dcc1ea6567e44f1e906816afb0ba2ce6676b0d0502');
+INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a5b8d5e4cc740cd8df21d4b49d95e5b211f05d97e659ef1786f0d0e9b4499af');
+INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"7b8a6f62709cf4d20820031f43d968ea46d73d8cee4ad40f414da60b9be4e676","messages_hash":"27fd01aca700483aff404a765c264893f6b04930f267a6b568aaf9ed4d79914f","transaction_count":0,"txlist_hash":"51c8a62f3e4c43e6eea75410efb977c8ddd2ad8e64c0d6ce6f63a4e5eb153400"}',0,'BLOCK_PARSED',NULL,'6caf9f64f1814699d63191b55dec2690652bebf5a6379c1e1a2f201564a23929');
+INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7459508ede7c561f285fc378a6efd710c7ed0afa26610f309392f8efc38b84c0');
+INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"ae82ee2f7f1e075937b5b8eef065f8643a7bef0428e00689ee773558905eef19","messages_hash":"cf781bd75c601887732bef2d4ccb7af9533c633840d7e07fa61b12a801d01b15","transaction_count":0,"txlist_hash":"7358e41e9a61f87d68cc6851768346daea2e100ab896e86c0047e47228e6cc29"}',0,'BLOCK_PARSED',NULL,'6f2c10073d35cbbac8b90da14be7cf4c9b5d2c48e32fe5eea846eef971d867d8');
+INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bc0303ab223a83a1f66e81d10fb342dc85885e673eed0eeb4b1302ab7b7baa3');
+INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ced371f1349e81cc2f179f064e4b9b202650a0f79e9b4513666ace29f0e8b3cb","messages_hash":"a2632b8aefefe77592f4b0f21f5e1f7d5c22aa0d27ad1eba7a0e007f408b1ab5","transaction_count":0,"txlist_hash":"0e8cd750f8ad91d5b14d2b05b7c03621367036703bed1654555b94592ff41e11"}',0,'BLOCK_PARSED',NULL,'f6594d18e1a8067978300b9cd0447705c5009c31396b6976e3ce54eb21bd8176');
+INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9404bf9ca7f981472aa3e6e5442261e3331dc2befb2082619634d0951bca3d26');
+INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"6c343897092c5dfcd32ee96dc8b96f38fedd31fa58cf5757a3e15a254942cd59","messages_hash":"4f61d8f4df04b07c87f5fb89edc76e6ca3e61f7841f68fe83e9dc901048e24f2","transaction_count":0,"txlist_hash":"c38a183db86650f155005a8828155aaf2fc6d92aa89066d7f0843a123800d771"}',0,'BLOCK_PARSED',NULL,'fdc812ffeda15ab1e9b6cb3d1d7aa5a934d532ba1b46190c6be5b1f393044b12');
+INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12e600239eafd8f663354bc7b46d1975efbb6c60c7ccb925ac4ccb79ef955cdd');
+INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"abc7afdaefa89bf58bc4c28401740657eca24c902ba551f55becb6a1c8992675","messages_hash":"b5fc9a8df6e5fc6059ba0b233ce9f42c84d81c6943f517783b337ed62249b0a8","transaction_count":0,"txlist_hash":"609b4f777892b43541593da80d09aa2c3928f2f73600009615196a7f89ca8123"}',0,'BLOCK_PARSED',NULL,'858a5c0a2482aa49d7ad3f3d51b9b92e9bf8a9be825cefa7b13337af81298e8b');
+INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f2374bf25252d361b89bb9db8cb8fb8750c1e335952f85f33b12cc2e844fcf9');
+INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"4c8ca9b4eeae7adfec822b20665e7bd6fecb51d4f30cc2c826f18402d8401a9b","messages_hash":"08c4a2e687bc145dfa0ebc1393b741db9480e10bdbefe691234fb7a59a71e130","transaction_count":0,"txlist_hash":"fba4f7514306c49b3045912791cc21a26527a23e58dcb1c8adc5563e5c6e901d"}',0,'BLOCK_PARSED',NULL,'0e86e350eeff8a4e7d9ef477356a87b58bd8ad63e7b1975495930270749c6f1c');
+INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'943e49eb637864d7afb09137854ca9db75049d21712078c45f4d95395c0ac453');
+INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"fe7fd2b60c3216d79dfe4e6d38880f6d3b9fde747b619f2c477108825235663d","messages_hash":"c4bb515a775ac317062c2f49543333113dc5312cb34f9f82b0b17e2ee9b29974","transaction_count":0,"txlist_hash":"3a62ce0eeff09c242b3a7c3a8da6dd20bf06c1c2fbf224f73646791557ce3d4c"}',0,'BLOCK_PARSED',NULL,'acdeaa97ef8fb10e5016811c6998dedbaaabec1d971984fa03119e1c7180d2de');
+INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'feee2b0f0515a325d00b9657a244e34dfcec3cfd11c408d4ad746dd2563dd743');
+INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"420b8ff3c159f7e89df2274682e7ef798a0c0233149365114bfd934c38806098","messages_hash":"3a1e7b03b5ae6c616c14fb6b16d6381ed592158a8e7248031b9491971662410b","transaction_count":0,"txlist_hash":"9c866b1985d2ff084264e192e5defce4af96b7aca461a46f58c659008113909a"}',0,'BLOCK_PARSED',NULL,'89b12485785302de7b6725f522cca1ad4f7ae8e2de3c2bfec70106d03f072806');
+INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d59b013aed89936c9e8a3639b26e8b5fbe597d1d7e66f2b9c3347abe4063e2b3');
+INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"f4fac6a570b4f6332a628a3f8e27f5f081689fb4255363cff1cd8bd0244eecea","messages_hash":"95c5f1db0fad6fdbfd0f0cd5e45075ed31f4d19e8c518caf7143d1f2fd5e299f","transaction_count":0,"txlist_hash":"271c5484d7a74166a1b83e9dc6f56cc391d5b01829c9b594deb087e58a22b762"}',0,'BLOCK_PARSED',NULL,'6d90b71e731779a4ee904ab444df244508d54dceeed98a0c0b93d6a8ef0bc085');
+INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bce302c9f413855ec49024beb3d640210d01339d4822e9143d4461fa6036af2');
+INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"adea7b4cacc06ba1f7dc260f30039943936f5baeecf5a8a452d4cbcaa994a70d","messages_hash":"b86421b4257e7fcb195e2883c64749dd2fe62a1bc7652f45d58276a5875fd79f","transaction_count":0,"txlist_hash":"7d8deca0e4f444c015cdf98c74255215af14198d17619640186c6486bb3a6be6"}',0,'BLOCK_PARSED',NULL,'62fd09c27394f75055b98882d7a73f06bfd74835b8f3095da878e04d08710aaa');
+INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25b6d85866db9022e7d57cdd60dd091b87d05e8df4c394c417566450a7f3e4eb');
+INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"a2290c6a24befab16b4d9ed768c3129d582edbafdf8a2326c7ed50397e5db674","messages_hash":"1501c9cd912df3f923076b23691b0f1f7a285a955b07c431e3b2b116fcc06790","transaction_count":0,"txlist_hash":"8bab183d2c7670f060de1a64663fe4ec602cc9df957a4d1ccd4b2c5e4876e5ab"}',0,'BLOCK_PARSED',NULL,'e4d5fbd34b5b63b6ba4d26b1c81a189e24c384fe9617de773005aea641f9d584');
+INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e71e6e7fab52887025472faa99dbebaf739c4929756bc3455ded1d761da272a');
+INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b3c321ea2fb119cbaacfb39f219be47cb346cdd40d895980afd34b4157a3b7ec","messages_hash":"7fcaf4cb70e6d4f7b8569deac9055dce68cf7d699f9ca2cf07ffe4b2384269dd","transaction_count":0,"txlist_hash":"6997f2cf50cb2331a8d5cea3f97b32b41a9c40b6006041939b21008016e013c8"}',0,'BLOCK_PARSED',NULL,'116b6f2813ff5e28626328c7c86b1f73f650b4d0efbfbde656d1114fa3ab1eae');
+INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c53bd1a7e40188370e986431f998a832a61045f0bf1107f8700c3d75e83ff0');
+INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"456a1bd4d6b30f24e798a9c1f975af109db030b0bca19db6b29788f938ce6c4d","messages_hash":"958fa8271a5ef9bfc5869c7a3d94e93d745c6f9584328ee33b53421d3e4cb1e0","transaction_count":0,"txlist_hash":"bd930dddbfc97b06fba95a33417533bd58fd5e95326d8677d2939790850a67de"}',0,'BLOCK_PARSED',NULL,'49e629fc053dfb8bae130416e67b29f75b6a0270efe071b62ebd3cf76bb43ae3');
+INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'313f39b96b9ed3f50236174e911fefed3875c689d8f99942c97d386f45edc9ed');
+INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f48d6574488a24155420ae76aa7dcecfe73f6a262a2434a96eb2e93f6bbf02b6","messages_hash":"bd2c68dd138d914e4e7e656065f597bd8a47b8948a5422c14e22d12b184f5106","transaction_count":0,"txlist_hash":"bf2e65b5a1da6ac499a4ebcde81b607f6516de77ed2a10ff363ddb05dd8e288d"}',0,'BLOCK_PARSED',NULL,'2ffe20409230a7eae6dcfc56014f788ea6591763780eff44d4e6ca94e6eadd76');
+INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97867bb2fa2081d8ad193cad1384d9904db1bc61f0c78132afa3c5f2f5e9f5fe');
+INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e936debeb5d219215ba24e56ed34edb435131877c2947c0801824155fdc70c05","messages_hash":"4ef98bdb706e0f1bbdeb65b74e48b4cca5d4300144a5b2efbf9932079edb6090","transaction_count":0,"txlist_hash":"d18b9514ed9fda087d3c98eca75ea68388964396143b925cc58ce2e2d5c1c5da"}',0,'BLOCK_PARSED',NULL,'bbf3141b8f11bd84f4eff1b517956c6d97c3f0ecf374fc1f1cfb3a5c14aab651');
+INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55f8e9967fbeaf1a719fad03a2e1a163d18a7839ddfc470c16faf798b09efb69');
+INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"2b033a615b9eb693ed59daca9bc047f61a3519bec5c2b64f968cf717c75afe79","messages_hash":"76a2a01c2a99f07db906c049b2499ff01d372ebc367960e685a6a21dc4009cad","transaction_count":0,"txlist_hash":"1c39371c274124af6085dcf02fcdfda68d36d261bb47d7763ea3f09b70d0f62b"}',0,'BLOCK_PARSED',NULL,'5b3ab3f3a8c3980c7cdf3378e21801df0d86801932e7b2b3acea9d869f90195d');
+INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'789b2d205435cdd81af9f0fd8680830246b944e45cfd4e23990b5749394fa76a');
+INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6a41dd11d8b611f6fde79e06a4f65d20fc15419f8336646130c02e9f7d87eff4","messages_hash":"a3d2dc1289f5cd52adfa75e7f081e22c9358e7509f9932e897ee6a062f3485fe","transaction_count":0,"txlist_hash":"e2c84c519b3d759f8efb016894a981411328df6f0a778835c95ed4116fef01f5"}',0,'BLOCK_PARSED',NULL,'6304b0051fe377d0343ad6f4165efceb5e86062cab202596c41e0fd83cb6038f');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -1418,31 +1435,33 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',0,310005,'BBBB',1000000000,1,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(6,'cd2b44cb56dd5aaae1181c42ab8953ebb9d0fb8e177e960ffe55e3500b3aae25',0,310005,'BBBB',1000000000,1,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(7,'ddefdf227fd8cd8df1e77f0b531e98a033d2e5b237fa4331b83c003de54877d9',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -1482,14 +1501,14 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(2,'58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'valid',0,NULL);
-INSERT INTO sends VALUES(8,'f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'valid',0,NULL);
-INSERT INTO sends VALUES(24,'c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'valid',0,NULL);
+INSERT INTO sends VALUES(2,'58e839ec2b1584d3474014093393ce57e5c22d6e686213ee4a7a0abe7bbac33c',310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(8,'f337451a19eac3c2fe66daf7d44d39c41a012d2dfd85de90cc3877bbc2e7d30c',310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'c639e9482b31b487115b4437dd87cff98338003fabf18066bf051e1164aa4394',310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'valid',0,NULL,0);
+INSERT INTO sends VALUES(24,'c576ecde0f86c86725b540c9f5e6ae57a378fe9694260f7859eca55613d9d341',310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'valid',0,NULL,0);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -1689,15 +1708,15 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -1931,3 +1950,121 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql
index d84b09eda6..b9a7a826fa 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.sql
@@ -19,108 +19,108 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'7e1322d444b3395f9d8ce6b1ca6d48e8f0d78e5d72da997fad9520899bdbebe3','702e537dd6e79386a246cbc44fbccf8ea2a4e575c9f1e072189fbbd831308672','d95ba402c3fcafbebe7fd8f621727efe65b9a20355645e4f62ca4f77f9b4f061',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'3e18d8a969bce2d869cb86b28c23823d88e6d8a840a3cda905a003b37222ebb8','bcd62109b750a9b5c3a07fb6e3ba7a5feb2cb56fb554da3b2b4b560a632e3e2e','992c82eb0567345b819a2b96f773b54399af095bd95ded9bdb81f1c9440c6dfd',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'71dfa527236bbaf632db18cf1773c63f7ee3a0076fc6562e46db0c955b346a9f','f7e5b51624875d95cb14e212ee733c94f12f69084eeefa4b77491479ea3ae990','ee6ae96acab5328d1beb240759bfd4593ea203c4a5ab8bbbb893586824ae4816',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'39feff81ad306adcfb9610e6bd8442e35dd6e1924e75a53708c1d2932bda67f6','a857bb0cb63c343a04d6efdf7d69f1de6f89a67dc25ca5b3e9cd9405ef48c416','c3ba35fc4fb0a7a1e9fff19e260c2a36ffc6869477fd4a382b7bc9294aab42a6',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1cee0851ee48eeaa3f71e7a18f9f52fffa28cd3b2e1cbf1f79c0f562618b88c6','32e68b308a1281ef170d188fe7d19a93486667d45d8a6b50a0c39f00d6924cde','db1deda535fb5c25233d6efc2cc930499cde719c4546f817abad5b30d48af9ac',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'89f516c3fbdcd1540125561301db451fb55b1baead9ae8f408156075aed104ad','3a41f3c4d912ee4628975e61c4a04b836de31df5a9aa5fbd7031628d9c4f0eb6','a587bd615ee0752052c4b1ce2df72fa76cf8ba03ae53e561fa1b55674ae3fbd7',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'e9a37cfc1055e8c18d369896a14422cad3c5ac8d9b4d5aff6053d8e31dd56336','4d2d6945b23826371a1cdb4cf2f841cf2b78c891a6b93da8167ed219388edd65','200f90a0b58f1350230916be6521a38bc99cc9fdc9165b36a26141b28ae83954',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'174c7c107c37e0ca2c907b1bc35e086eebbad8eb02493a2f166ff2279ecc013c','dd1e7522ff359cc0ed124a82d3b367ea105127d45ccf563848b531aaf75b8c2d','0727ddaec67766acc71f6b2534a1fe0eb25e8866c10d8bd0c5c742eb6a5f8d8c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1463da3ebe264e703ecc0c708baa98f737b31f51726f85d3ac646f5e301b7c10','3e547d66bace022adbb42aba8172ed287077f306537c9ce69bb11f47ed1b34d1','46eeaba57e4e2bef42a40c71a8bfd0bd81d10357dfe68f3cc0899ceb0da7bd74',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'dfe8c57b4ce4ea12f002d11cfc127f95b7cea7727bcbaf64418b2d584602a250','20b7caf43b34f595139545c800247b16da6e00b0b1162928670c80ffc2cc773f','fe46bead46c77b206699519527766a6528f0b9c5de6b51cbab3ff306a30b20bd',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'f9c936d3bb4c8bbc20e544d9262ffa3906fbaeca5e4b2e3b241f6059868f506e','47442be955776c7e31fba3f14df298b088192577691c17dced8b14b6037e3c50','aa6e782f2298ea91fe4708af37be85c140fbe2b6772a66a9f9acb11d0e2186fe',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'490bfec10bfd72eca7fcbae5887b94ce4739454a82e601dc754e4e9d1030f3c2','8a060a9cc82b497e020ad7af45a62c07110b724282ce0c7ca34ad24584638a3b','c9c5eded352f3952628122af57f3f3d716beac03fc6058fb7601f90617221fd2',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'621d39c103bff9a76ada332f41e3ad54c89676bb6057f624942ddf28b31b5927','4eb1fdd02e0f8ba27b9134ddb7b03b51caf3417e92687c7c1a7b50ce2d52e6ca','26c52cc30b3386eeac9bdd91338ea6460559a0ec72b81314f6de852446b881f3',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'7d31be770d6bb6669bcb0a8a5964e57a758788cbbb942d1d3da1abd25b5dd158','c71d132b3da755134d5305e814129761fdeab1ac933dc320f83570bd5d007002','04ac5c161df427ab528946abd575d82c8579c27637511d1784049e1281c97dfe',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'3aba9622f8de243bcd5e6a5c88fdf04a79a52d95bdc1778d57586b13f30e501c','d7949a992d062d2eb763b2bd406ffab07d7d676e3327f5e38a4a8a4815e97f35','6955a89976cbc97716f4f2a189d22ce159a4110af396e660f85ab6e688c24fea',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'342e5dddd2289d3d6e381fade13e5a5e3ed27615b89bd8e06ea2bab8f8b48be8','5afdd424176b977bd7b0660867d92952a9cec422a6861c62a876a10014807084','710b39597c7c1009e186eb15450bec99878edf95af9935ae8ccb2246b6b6728b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'51b904e6b18ce4d17bdc491457036ff3a4ba70789ae929862844e9456c3b9b01','d74711d3af6b2313835591b58b1ff53bc20bc194922d10a60cb1274ca632e153','068b8aa01882c57eee33d9c970b47032d3977b9a5c3c5f96cbb96f10a7209706',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'03a60654bc84711524cb38171f6573acbe8cc2120787bd09e5ec621b2f53929c','bafeaf2f42cf716cdd586e1aea74504257d170275022dfb2c11863cdc33d3127','795d00da46b3c5f0d16ed694ca58d6aff3cb42c8e2f0d08bfc77964b5b451cde',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'a590602f34163cf8f880c3620f07a8cd27b9aeba8fc80ccb201d88364eaed210','930eaaee66936628f4ac02f6417167100cc7e2335aaae56dac78cf2ea81bb172','dfd585d1c8707912ca3f03923bc4e50cbbbe5a8e4218caecb73df3cb6cb4fd5a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1b340e7abac4c458e6a0c6ff2abd6dadaa2913414f450cf926725b5253210950','ba496b27fd545d9d811d7421c6f9663e68aa9dbe3a7b5aa9d1ee5644cd142b4a','16e098173f2f2fb61b8df304c27cc1069eb397263de2262743a57426e05a8152',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'5a5a31ae9b03a362b44c9e38effadfeac273bd370374ea4816b8402d6b8a8a1a','be94a40c259a5f9e2ad5cb714089c4be18de7bd6d3b403f3a4620f4d889ba4ed','27297409f25155cbbf6c84b665c6d0375c5e964c279c111df35370720b9299ee',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2005a300856ccc74efe80c56927fc13619d5c40ab03ae4ee4fba2050bc2a6b75','afa68f3f9cb6cf8f767075bc9119411e146b6838278d884868a80d9c8e80e26f','dad5bc884bf7ba7bc454bc0864ce114a1faf785f6cf500fc4df296130ac5d56f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'95307de52e23a8433143d79710e7df22ba7205e2651c88a2eda220ebc8e0f289','66f27b0e46d782b3e7eb8207ba442131069820295ea19ba9b1f8be5ae5b1367b','36fe7b2ad4951a9900b5bbf451e10101d5cdd8ff33d4c40eb6e253dee2e8e991',NULL,NULL,1);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'de5a22c228bfc58ceaf428d55f180e951ff877537ef463821ce1206f07ab02f3','eda7d728863433b4e738e2b317d661a68d7f8921ed3fcf56120e0e0df464f161','f8aeac00fb3c7b32c574f4025dd01789ea804d7dd61ab5e84fc8f0536d6fc923',NULL,NULL,1);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'e54da9db6c4911087dcfb2824acfd7429431e3297f6b5836dfa8f95165ac9b08','6d7b69dafc9e895a4a4b75c2e7ee2dcda352e21b82249074bfd0865e04dfe6f6','0cdb6d20ad2c93a414e4a882e78a01188ab03c3b4d20ab23980282d0be6d4ab0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'dac63e0e407785c7a461d839ddd749f020f8a33026cd6ea2acd659567a36c40c','fb8e2f9f37cc8ceb72b92925cdb86f62af821bbae196e5de5083d784436e26ef','3338a508c7799481dd961696b5634afa3f7caafd82114c09f35903a0761be969',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'0397b7da62fb672aadb96fbdfc37f3265ea04c4d401632d5d9018b9b0ad7cd45','35f40cec8ce2dab43b642668fb3baed3654b63a328ef005e41c8772cbf02029a','49b57bea36ede566bc2f0b73007114f2979075d952326fa548ea7589598a8648',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'dbe43e77c383acc66cb46105991ed066ed5309434016081c26ca1a7dd948b6ce','df94b526dfa87413c5d4c11024019c28dd94051780c00b433b28093788b15ce0','c9e442648e4c4070ad2b42eb492b272dedb0fbb261625d7a1400a36c1ab469d0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'ce1021a584895988014f16dd9f7b7b29bbe59ca8a761914f60c9290b5ec6a16f','7d8c18a5d7ec2d6d87ef468e4ed6784e9d41b248bd3d6754bef8f6bd1df9b9f2','d7e783156e45f96a55b90a5d0b0986bf47ef91b509c294a3c8369df38b32828e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'4a066ff12cf6f8dad894e23cfbb4fe6a087893b717b3f0c1ec53764b1e922bf4','0dab776748029f3a094e8c2ad8871c1771263f81cfc6de79ded15ff475239371','ac70e12d6f22150346bb4773fc6439f402a2d5ceb618856bd234d28b475d0917',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'be1cc89117e7cb3fc18eb610103d72f144c31848da4d8001c334aac577f19427','934400af42a6099d1279e8fc2700bfc118bc313da8383d06892521a17663ef73','047e32ff2ff5dfd5356f783809f796f8816c8d5e620d72194126a3277b814783',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'a616b3d81a1ad1db1a9b1491b06ff6bcead9037f75552d14a4c7234b6ff56670','b45534f04aeeee6c2ed877085eac7ebea9f7eacceb2026e5ab8a34ff715bc3be','f84fea3613d29a2ae4189da93688bf73179b5ca9ca98eed91009e003f919a931',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'e7e76fe32ac5c06696c0bda815f29f1e0785a9d48641615f2ef78fa9982d258f','b8261f9bd73b90fef96702a2e83111c3b9305e55efefae86a4078d99ce8c3d0d','2087d0657082953a749135ecbf8ebfc3659f774ce32c3549d0064fd0474bd7a2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'f0d33d2f73f83449c18b9a7bea43857b36effa24eb248283d9356c5280e4992f','bd3133719a6698bda726f9304fa48db5847cc475db79b879d2566da3cc7299d0','fdbb2f907b3d0a7f263f6fa913d39624181ac3bb69d4abfa9f9907eacbff4109',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'434d631a1c3ef7d31d136b4eab8b3044dc2b65886bf43642537cc592db0415a3','eea570d87d2e343bcb9b93764aa9bed952588f4b053d13e87da410b8dee27d7c','c9d7c4ebbd0bf9570081d316d219a200759d9e0c820dbd96ffd08ee0ae2550cc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'5ca42816d9c6aaed19f6d25cd02e842b5d834254f90a169630544c83a129c7e5','c827847c2f94718cd8c3efdf2b30cf9c8753893a76590efae0e30c61ef9a2d4a','e69e7e5d53ad6f4e017b29ae535c181f961c676bf9f868c2712b00a1b23d3485',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'31aecb842ea816f98aead90fed7ad005c010919a2ef2c5d7a8965b71832d3201','5a69c5cc5e4aa7e7d071da7ecf8cff88740a707f70ddec29c57ee52b3da09127','7714fff105a6606c2e60c25256d11266c90d628e9aa6947d2fb2ed9f873835ab',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'7a3167eb2c8a80c7c363ac47200ebc8cb6bd53f57da64465bec14bd86cf2c6c7','8bc588a7a9286c3f5c13bc31c0faf29f155391f14ad89defebe3d0a0b21d049e','6baaa9f3a19f84c31e3ae3be04bfae441a1073cee975d3e6a2dea97b94904808',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'212bc51956081e57aa618360926e186824dce8987948ee7706403451ab417a0a','77861a778f50d5f8314cf4caeb6a78539702ee5b36b882713079b88143d4c6ca','2fed45c6e0eb8befd33dfaae01c3121fbaa17a33fc8db9e7ab32f2a2c8ae970a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'03e72d7551164403b41956638a0fdec8703c29373ea2b15c770717b0ec39fa95','b445575b555d0621a37fc3f9f22c113126ea35507703f8885294cb2a4613a6c7','f85797a2335bfe5bb7fe18328e1e199a2c576284b6cbc402b1089c18e7c19319',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'922aa744aa0c08274d1f47a0f80638c7937ecaaf95555e68ceec09449e60d080','d46179d869f330c786bb81e0c122952d33b264f3af2b4a70627764332cce3fb7','976d3bb7ff94f02bde2563b09209c79d775221e6c6b2031b1c202771b499b773',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'de422fc7f3f11d20b697e0ee57afe101ddeb5e84105153a3bb10f97f9c3f1783','d0cef146e488d50917e659d8c039e7304a41d239d2330947d81e49d3bc7aa723','46b89e475c74e426ff35955880806d687cca7f89f6237980a9b2fb481790947f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'82d7c9a0c9d63c3f93b125a9eabc2a7b5f560eccc5fb578d71ec071f150c8fac','68777d56b0179c05517b00df97200e16079b34c54a270d598c28caa4f39ea43b','6beccf09f1d28e3b1e210b39e233b2550bc5084e26240329d1a51907745a9ddc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'c9232d9cfb183cc9bc09bef78f7c83bac3d9af803e6916c9b14063c4f619d9e6','728975e1d9ed1caeeef47b1b8f1040c3d1ede182cc47282f32f2f464071057b2','bdaa43efd672607af77b4b40f439f6aeaed1085617186e1acd6801bb61f3c0f9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'71c3e7aa2ad71e35b752dd4e48381b4ca845c370e5c340f2a221dde808966a45','56e52a1e4cd4954442f83c421e7b8c653e38cd7725d6b140a47e74f57df2c169','66199cebdbc88c927c1f33af517c8f679cd75a9c1d3179e75230b43ca181e447',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'47230be2ba96e7adb6088b18788b52a65aa48183c2c00095b79999f5ea1af514','e8b8a81eeb5c9a9fa6f19f6d9617c7c8e1d19368725d223ef270b74b09b1a541','e2e6623c734a0f965d3897a10844b64d4edf09be17ea873645a6f11f736e9123',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'2c306c41049fba2e58a07b5d14f930bcaa465b2afa4df24d8a887958555f0c57','3ed01193d67e5b016184cd322ca01829a616ad7f7c98bdc034c642ab5c37938d','a4f142388df842e3f7638bba46fa8451424281206af0a37977a5489d032cb40b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'95a6325dcb8b9f7aef9da35bd20a46addef23aa5c36795beccacf992bee88d28','730fe6316784de4a36e2530b3935fbbd2e1bb9c876c61d0cc436f86a103d6655','0f056aff130424174dc02d66a0359b0ac135228727e1235bcfdc8c8de90ec17c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'8811d6a6b22ff3e0ecf399dd20a28a17ad000e99b17f90e63e02230ed42cf260','a1772d6d909c4fd092a9e511c2f0425480f61c1f2a3d513d973a15e587c47a51','ebe06e76bbe19b578653b19bc7dbeb78c4b133028ed77cd51e7f5f366a53bf94',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'4bffe3d3071cee255f64108bd8b97652f06190cb73caac5bdc4ef61d3ff9ecd6','af66fd2b113c2349077f00be46a1cd5629b2ec39576ae16ec004249438781905','cdddfdb873c4834f4250cda22831636cab7c724f678da6216fd559b80a0e7ff7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'b00d5001e914fde448457f3b373637385114eeb07d79751241f4c1f50cadc050','64149e5936bce967da53b587f07492b64472145ac66f58c1773a4df324ced96d','82992ff8a610ee881b81bd88a5d4a86e5010062bb0faf06cae1eefe2c6769249',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'90dd8fabe43314ac6ab6f5485275a4b1131c232a1e9d92395fc030659873edb8','71f3161707a90feeb8b8e3340f47a9102c344b652ff70760aaa1f7b3bb30a14f','8dd7a3b1ee68d435cf5931e578e166e91e9961350db22909b6af5fefd5c4442f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'923848bdc7906ab89898021e05e201f69305087b12803c459f066f2d681fe9b5','de443d5cc1b054f4cff96f616b234d91b0b5e3712e6d72e64d564c201b7cd757','3698853c8fd4827d29eea3f3c530f1529fa5f17dd33dffaa19be81d9f30511a6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'e5ecdf8c0a2166fa8fe25adea0d374d34131d29a3c901868fec579eb20a5a930','05b8fe3b76416a506aed1b000e3649af38e59adf26cf0d168c5e84112641ea6c','dd245b141ff920a732dda71cbc156cbcd1047a88e56724aa897e88f63a1f0af1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'03cd75c14bbe11800f4d436dce93235787e2521a19b1d5a90796a5de369680d1','d8edec966eae31778588f68b7343dbdb4bf878b30cb430246b04ebebdd9e43b9','17cdd1a908040ea3a4f92093afe9b9bdab12daea6436a6c00994b04481ed082d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'7239560704ca831dfe90791f1cd21ae1f1506275cf6b45933676be9b096d340b','1294057c4f21c98f97d10d96510ce83d0e8d348d138b3caa2c76ef1be47a3c2a','7741ea70459b2a66f6dd9e80dece0be8e2c70d9bf2f4a35a7e25209afc693168',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'3aa4ef8714cbb71c4f0b052dc7ec7795322103ba7b8361db3f33303f564f3815','211d0e47a87100167138974db02ac1299bf1b2a1d7b60606b19cecf2f06df0fd','67c95d8fcaf9ce3998af05392f9a5068937a7f7e2db782fd8398f91d9a8401b9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'fee33c0a466c580887106b4bb7a8c6aeb7a049c94987bae64f695ae400c4a4a1','f851a0d0a25322d5939a5cd2cafc831b6282af5ab81932553cb80ff3825b4a2d','b669486dbace095d0a4d0c2c526e18b2f10e79c415589a782f79734e9b11fef0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'94d58bd9a65a2e13c7ea2373e521952e916b0e1d31d803eced96e5c8903aa625','e959bddf887904cd324ff7bf5fb60380f2c4a7c2b1b4215c63715a59ad297200','e7600207187bfd393eb1cbab52e554db20953b3c0e7677735776cd0c8e6fa1b5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'e9c87b2a652d4ef3d48ac74424f57d06dd85893fd542e0784df067c37396b0df','ec205004b519cbbc750bcae821effee41789b3f643f90148e8db2d9d9f83ed49','1d1f6ff471aa4e5771d0d8f5527a283f946485ffab1ca06addec37f8c3df6039',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'b664a0985edab20768aec36096a7b2faa159cef4af7e779ad421942137ee317a','dec86d178abd72944cda84a3154303e16eaf39e5bd5bd59a80cca27a5ed5887e','1da3366346658554be885ca7896d80736ed13f520e7848030de9ebc9acfdc199',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'5ffa5e1f36c5539b2f5a89a6a60d45ec6372ced770d9b0e0e8dfd61edad84c22','be052ccd372d556b9b28d0d2b6f9dbfc9b32ff173b71d7842fb6008047a67384','b31533d94983095966b5f0ac4d0ba3996f7bf8263ccddd8e42aef7356bec55ae',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'fc6f9f23c3b8954c7989b0e4ce40087b66dceabc7c0e407ac7f4b397fe2a1281','1495ca8eeb434877ce36335268a349709e99811e93f416ccf1f0c98114731824','657e25d6ed0c9c9eb39155ba6f1e9d205a57ab7015d18a13905df2b3657ce3c3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'cc6c3b8cf2c457b2f6afb5b208f968544767be8b86ca53bdab4224619a03121d','93d193df39b7340b932b5abd85a027df086e033ff2b18fd8c9d0d03cd6db392f','3f132fc4d63edafb5eb644dd47aaa2af32fedf3a15c206deedcc1d3dc47549b2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'cc57ac6aec118ebfb03f5113ad1af749522e60ef4ca201d48bd43478cc0a29e4','064c03f24da9de841de9f492487de4077b842d6de92366d3fe7ff37d558998c1','22e4ad71319ebf70101939828e606ddd7381dadd77c8fe5ab718ddba78feded7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'9999be70079c0943f0a00c54236680bafe0c87dd3bb75c982211f751e7ecdcae','f1196c84f3767cea82b4dfb6a5e4be30f3ed3f53e9b9cefdadf81af9f2b2bd49','cbd70e755299ba20e886f6aad7674e4a0784b8507c9a15a64fb1403164d6cc51',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'efb2fcb7b5628bb99994bc1ada157bf80b4516d961497aa011c06da1523801d7','ba6d273c442538389e43b3ad47795d7e61d9b17427d1a1044333f96cafe575c4','7ed9c6fe414c01dddd55faa66d5934f375f8eef87637bfc2c626ba44eb67968f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'fb396fca9af7816f97b22b8bf1b01951e271a75f1a640dfc64955696dc1c0b7d','20ebf686e5c5a50c0df23ee15488559024622039aa4fa47f1b07dc3967bbc760','5537534fb9d0145545b419b9d01d124fb4021e9a7144eee21c74e633fc995daa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'6cbc681ed90e676cc507d07120888bd4c8759873a0b9215f721a0ce707070086','d8c09411f0c7fd43774558fd6cc9884b032cfdcca63a08845b61293ff52ef380','f758fe286e0973f30be7c0d6afaa7c7cc2ffa3f5dbb73dc91ee326cc2d3b0070',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'7cb734eb3e24e92de8915a6bea42b6ef721251c481ac9ec751cdbdc08e110011','4f02ef18a644ac564db930818e845496ab0ea3caa34ff70878f0f9f0ef6641e9','65a2965d49d850b583ec0574c58c5d1a7bbc3e5c789f143b4505aed318ba88af',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'7b57a4d1ce0995a938e174e52a096cc9829a0ddd59f698ed04d8b43371a78126','7716368643d8c6d26932d9efabb6fd6e574c1b13b8f149363ec4b99d9f405435','d65f12404b216e72ad6ae61b04e69c9f4ca01e2f3fdb4f504e0225ac54736ea5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'f46f820a64ced97ccf68a56c048459de0b2855ecd4299e447c4b630913ce1749','71375966f9a524c1df04c5033ebb17e4293053f3ecb8e724a2f093b3373641b6','5ab53570219fc9bb359c607e25599669bb1595309f563491e3f66bfa31d1f984',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'878239189ae0afa759af5e59db8a17fd17c0c9a2c017384fd2d0ca789e738050','4ead629f99d32f3d0ef6c5f7ad1bbffa91608d71b815293128461a9b5850ad15','0552a8f121d1ab0e74a11098bee498faa3e6ca29ed768c5477060ab17ef7909c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'d2d86823f727bc075138653a682373a9c76d21d48b5881968adb66042b501e53','3958da4cebd7670ab3e197b6ff8b5a770dc756dccc1806bdd050513e75e9e33c','1bfdd70a8a1e5b2bd0e98a38a1d8583b65de45bcfb19b22e88c1c240d45d5116',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'9fd098fcc7d71c0c46fc741ea278de92589c44a6efc4980ced53843193553ea8','f5b2e274c8dda92ac634490b28d13b18d7aeb22fd1a5101c805d3f4265422a7c','a453a4c531be98d82b30875224f99b77ed74bb8b5433a46773ed9086c78ad820',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'f1ad21f9b4134bc0225c26fb8969af3565c07997197a7ed9636c01f187f07042','3711ef31e2cc58fe1a9cbcf0a5bfdac9a805f346137b923fd86c65f850b35eae','ee8a0a5a6e43392e0e1a898383cc016e65ea48728faecfd48ac2216769d3ab4d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'9a1f3de6b5a255720973fb0c93ae2bc8fe8936565140b8ae991b9d83f86a0002','8e73f7f52266820ca7f25665628e31afc6a5e3dcbbf51bc1bc8635440ecdf669','813aee3a02a6e3051aee0bcc3f1559a1ef525876773365702d8cfb623b76104a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'ab56d9f59575b2d8ecc4933bbfa1fb0cb81c7a6fe84c1ba81bdee40c3da13164','2720a0a338a84ae1b56086f0d4f1b341eb5e3b46e9290887d7675800c6872081','857718a08a7c24695301eea96ac485c69d7d8528ebd7144526877144727a1930',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'8399d461b5079a145c716f8f6004d2f7870fe93786bd944fa36ef27134c9517c','18ee24262532a6a1e49086f1a8ea0161a5c1ae80ce2230f1b76ce782f6aff39a','cde0bd558daabf0cbede387365e4a018d490754a10047d177cae43a0f4b45d12',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'b6696a1511704128bbd5ec2c80a1d7d8d3bda6b959f1a674537ace152cb7f8bc','e839a4222aad212860b0698214f3d426d065226d1e7983e6620325a583b28abb','e1727b554699bff7dbb8b8e04c1703b9dd8baec7d0adbbe19ed29c13063feacf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'9aea0f996c36a815e4103b86ee7fc9be784d7c72549e54d04d84cf7fb8adfb78','fca6c96a2d6bbe118c5418a3e2b85dced8cfc0da2a8b46fef65f49e81a459efc','417fc14121a6d8f20288b10640991263f4237e0dad8bcd9bfaa3e13bbca4851c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'7571b554c5600796b60982bb6df3517eed517a2a3627f8383b92a073cc4a5872','a168e4a6c3de65e68532d534107bc3033588b2b0d67ae2f5d23b1ffac1a21ca8','8b39440aeec8b1f4a945ab49608e3f9c8d439ccdb5a42d9e60d5ac4e719f8297',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'b2507a73ff4f6998582daac667c457308ba78744e3d1d7533c0232092e3eab1f','379aebcf4d32a0480f5d334f5c04629b6ace33bdc5f138907c338eab7b1d9093','c40fd8a8ad93626d3df0814b83e6e53fc1ac7e1b56d56c64597931b14dd3ad75',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'18566f22ffb9bc5f98712ef3234f8da84f8f3e382007b23c3bb8e6c910043746','b238ccb2ac0b6329a0fc30267fd29e4813bfc786ad871de90c1797c6c72e65bb','3cb151083aad730810ba5c58d41d621145473366f7b8c502a742583e5fdecdb8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'72c44bddd5b54657623692e444bf893ca7b6d8da992c274bcbaa37c6db903825','2736ff0669b8c3cfb5b4ad8f082e23d985cbf0c4ba9990175febf1c02882bdf9','943656932a28a98619d4de3abdd3e84004dc58ede68152286af3ce6209e12afa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'1ddc441adb4b262862caf5b811b2375bd376d9b5d7b8ee251c4337478833cde9','3407db619adaf80236c8319a7e9283c10a43a7b1717d4d89115ac90e8f52b706','d970401c49e0b45d95031cbd740826688efbe7440f776fe4ae5fbd8f5a2d0eae',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'b59447846d380cb8d32639ca13e6e396b68b18483f70b6380296bff65dced3d2','e02f456fb1e9b6de38bb9923f6f68973d592ffa04f65731c66dae734e4fd1d44','e22966531dedb141d7f6e4a5aabfd82382ed9fcfe6caf8991a17fafb7afc5997',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'54a1c32d20665e7ff92ea43451ff2e59a98136ad7da576fa6b2614dda700b707','5177e82a6aa417664930ecdb0495e108b3fb660ff08a608fa540a29b0c4c2650','8cb58a3a69cd2881516a1073e0e6f8c8a6ca7624c1ba03327f39865006054482',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'f0bef715c366843e002c75992b8d50d82a3ea54f144350f158e862eb03cb45dd','84abe1e98b75d07291ef4b9847c336f787fdcc74f9a2570d23cb8ce396c9104a','a61bd68a25b8460c5a8b915a33898526dcd728017a7f651b70b597cfb11bb1d8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'0a4ce98b783b97f81fff9ab73d7a7091087e8511ebb425c81ccf60c3f9edbfd6','ca0f3a6b9b2eafb864eb324359d4ad9dd85361a7c7d2833ba6bfd230d0e60773','e8454aef34c815ad01cd9016c6c3fb983bf301e63273a36fc802d26b929b7969',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'f3b6781eebab3a6928791cf281d4ae7cb4f7fb59c6ae7575eba253e6ec6e447b','283080af19ccbde44c6e268326ddde17fc850d7ca1add3698adb3e606cd984e4','5b1b966a74a430ee625b0e0d381a963a41ea1d427840a109b95929a4c7061f0d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'14261b6b340632c469847700cee16c0163a7f8cad4dac7ad4555efeb5f3235fb','744bcdbcd8d44066eb9528c6fa39109148ea557d3cc3bdb88a818b9f9a9dcb25','d429ca517a7f8c46db00cbb4da11040e4735d0c0aced4f21f1493b44cd679e1f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'3c033a502e1890e8a3c697e354cd1769e4300ce7f62ee7ac47a7201e1ad5de2c','c424d1724a85f76a855b4dc834c8b599f764b5095b0649448a0fa2aef1e41d31','099e7a26e5dca406cf008eae37302e3e0c7c1797c55362c98b4a3743edad2b40',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'acc1dc4b7ec10c0989af833b57640be486035d76f74b57a50b023fb60f418be2','dde73fa3b80a8e2d1cb8aa692dd62ad712549fdceebf4083965cb36f692d45d9','e7704dd7f3358c09a87dff920ee932c695e7f0b530239518d50b20b10470141f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'1443d97efeeb04291e117b152f1e18537035a59c80fabb574577cb3e66e5db59','a52c247beb178317cdd18532927c8281abe3af9914c676cf250084d4b1e96762','acc5a7b3c965552eec18f13d55d796897254c9ae4f6b76b304c53560a5f4cc85',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'1c74208da191b965f52006e577c3f4df30f29b36b1d137ab457bbfe30737285d','693d04e9be7d9de1aee3cfe832c6d913213bbf44b0f04a5b394e1aceb77b7b49','96f02682a3030b2befc1d70760002100282215a301eb5aee1cb07c9162843e0d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'662e1b232c5afeba4df756a31d7b63f7f33dbb4aa752abbea9f0b57f1c7c4295','bce25b4036b54089a064c1fd781923787126977938ff3c206f0a8d76ddf52489','457f56e032453d64457be80fad88d46e8d4325df25b621c6aea936b6b3636669',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'8a1b60657764a35ce95c9e215600f63f0fc8c4933c682ea017553010743c97a2','0d0259b0c4755aba3d725283f1773bdd766a0ae009f2b94be00a5589b61ef8f5','64e00821dde4646cad059921826a3014f892cafa2f978b8baee1ed96e4a00409',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'c2e25d20f3c50a67a4268d9aa3e386c92e5217cf8f106d2affaae19e49b48828','32c25e6b70ffe5ea4582a7fd8bf8c892d4fe0afb247e3aca79686e5b5ce9e430','da90a92d7a7cc0e24781d15093a3fbb9df9720571e36eb5032240ecb805f01ba',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'bd7479caeb388072138c99d19624e495200df1bf02f47caf0ae8a5007fd9dfce','0fdf6d97b6a63f690d30aca13e27aa4cd6bc3ebbf525cfe6f6eee3ce529dfff4','41e980e29574743be776872e4c380ce99c1c84f48f8eeb4ddcfb2cb24207d7e5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'ddb8394df96a37e0127c8894e669072cb195ac953e2a3e922b95bf40804820b6','8cd686429ec5799fb9a78d07d662c5f51431c6d79691a45c109d512d261aa5df','0cbcc6eba05629dc63fb500419ab4e6f81b94820d68d7974328e09ff92a2f40b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'3ed7694459a57281ba8e4159ce156333aae4b596aa3ab5193ea6c1901f2c9667','b6c153092c9e72a0fc5f32febc767803bf50df6886edea271315e382903b8cc1','a2034f57c8adc0bddcddab4aa24ca8732ed7c72a551dd4c8369db54be08e025a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'7e1322d444b3395f9d8ce6b1ca6d48e8f0d78e5d72da997fad9520899bdbebe3','702e537dd6e79386a246cbc44fbccf8ea2a4e575c9f1e072189fbbd831308672','552834a4127080ad2b9d1adb20a5be06521c25bfb26025b5bdfac27ce53002eb',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'3e18d8a969bce2d869cb86b28c23823d88e6d8a840a3cda905a003b37222ebb8','bcd62109b750a9b5c3a07fb6e3ba7a5feb2cb56fb554da3b2b4b560a632e3e2e','c2f806a9a12341f0bf89ecee3d9644f26adc4434014e0113a5524016455bc7dc',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'71dfa527236bbaf632db18cf1773c63f7ee3a0076fc6562e46db0c955b346a9f','f7e5b51624875d95cb14e212ee733c94f12f69084eeefa4b77491479ea3ae990','d856d7db060596d120d2fba33f71d26680355bede7cf11a678e09dd5c903f7a4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'39feff81ad306adcfb9610e6bd8442e35dd6e1924e75a53708c1d2932bda67f6','a857bb0cb63c343a04d6efdf7d69f1de6f89a67dc25ca5b3e9cd9405ef48c416','3ba416078c624d16f08723cb72829d2b5e3ee29dad6cfe5d2d12226f260886bf',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1cee0851ee48eeaa3f71e7a18f9f52fffa28cd3b2e1cbf1f79c0f562618b88c6','32e68b308a1281ef170d188fe7d19a93486667d45d8a6b50a0c39f00d6924cde','76887dad5c1d2e78b4b37a226770643ad4636e012f301b3a5c9c9c2957d74c5b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'89f516c3fbdcd1540125561301db451fb55b1baead9ae8f408156075aed104ad','3a41f3c4d912ee4628975e61c4a04b836de31df5a9aa5fbd7031628d9c4f0eb6','df48153c075eb97228d7c1004cc4fe908d610e2e9f827384356e520c58056e01',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'e9a37cfc1055e8c18d369896a14422cad3c5ac8d9b4d5aff6053d8e31dd56336','4d2d6945b23826371a1cdb4cf2f841cf2b78c891a6b93da8167ed219388edd65','a7e3bf30127962e93c128d1a5864ca96755552f356d1a168abf31fcd4b97be8f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'174c7c107c37e0ca2c907b1bc35e086eebbad8eb02493a2f166ff2279ecc013c','dd1e7522ff359cc0ed124a82d3b367ea105127d45ccf563848b531aaf75b8c2d','953607d722b777c690e11bc7b4be7c8e15bc34a21fdd43d8c8df7c4c021c4d26',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1463da3ebe264e703ecc0c708baa98f737b31f51726f85d3ac646f5e301b7c10','3e547d66bace022adbb42aba8172ed287077f306537c9ce69bb11f47ed1b34d1','f2f508918acbaa10662a53dae0b5acdc6708361ae5dc133aebf758d444d087ce',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'dfe8c57b4ce4ea12f002d11cfc127f95b7cea7727bcbaf64418b2d584602a250','20b7caf43b34f595139545c800247b16da6e00b0b1162928670c80ffc2cc773f','23b93395070934bec727c5d12e4e87b0f13f1d142b939b667d53ca7831262f96',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'f9c936d3bb4c8bbc20e544d9262ffa3906fbaeca5e4b2e3b241f6059868f506e','47442be955776c7e31fba3f14df298b088192577691c17dced8b14b6037e3c50','786f39cfca8921b807a90a0ed8bc82066808bf6f6742f4028933abb6ccc3834f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'490bfec10bfd72eca7fcbae5887b94ce4739454a82e601dc754e4e9d1030f3c2','8a060a9cc82b497e020ad7af45a62c07110b724282ce0c7ca34ad24584638a3b','83622204e7a7c0e1bb7967a740957ab2af05c6ddcf8c528908173cf04d791dbd',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'621d39c103bff9a76ada332f41e3ad54c89676bb6057f624942ddf28b31b5927','4eb1fdd02e0f8ba27b9134ddb7b03b51caf3417e92687c7c1a7b50ce2d52e6ca','73e6f94c305baff4e1c1373581a980e84ab1fda23ab7b4b8ab5b796cb0d276c0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'7d31be770d6bb6669bcb0a8a5964e57a758788cbbb942d1d3da1abd25b5dd158','c71d132b3da755134d5305e814129761fdeab1ac933dc320f83570bd5d007002','702ee302651e4a1683d27ecd09a5b728a1ef43b6a12414b7d724ce9174383615',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'3aba9622f8de243bcd5e6a5c88fdf04a79a52d95bdc1778d57586b13f30e501c','d7949a992d062d2eb763b2bd406ffab07d7d676e3327f5e38a4a8a4815e97f35','fe686a32c0f827d9aab2d14f76a7831683da225ef2f8612ff2b18f7a1776233e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'342e5dddd2289d3d6e381fade13e5a5e3ed27615b89bd8e06ea2bab8f8b48be8','5afdd424176b977bd7b0660867d92952a9cec422a6861c62a876a10014807084','74218ec7fc38341f5b5037c99528bd4055ff9fe959997c9366cebba810218ba2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'51b904e6b18ce4d17bdc491457036ff3a4ba70789ae929862844e9456c3b9b01','d74711d3af6b2313835591b58b1ff53bc20bc194922d10a60cb1274ca632e153','d3a5f13d3fd6ed0b387a72b12de69c309daee0a67edc0e177772f940e17e24a1',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'03a60654bc84711524cb38171f6573acbe8cc2120787bd09e5ec621b2f53929c','bafeaf2f42cf716cdd586e1aea74504257d170275022dfb2c11863cdc33d3127','b201e578ecbd921781c9b8dfafa0871e096042e549be9762d294b5876b40de9a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'a590602f34163cf8f880c3620f07a8cd27b9aeba8fc80ccb201d88364eaed210','930eaaee66936628f4ac02f6417167100cc7e2335aaae56dac78cf2ea81bb172','56f25721852b30fb1a0d7bf5465cd20955455bdb304488100a159e075052045e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1b340e7abac4c458e6a0c6ff2abd6dadaa2913414f450cf926725b5253210950','ba496b27fd545d9d811d7421c6f9663e68aa9dbe3a7b5aa9d1ee5644cd142b4a','5fc07543d231a3ec1569d5c116bcdd5f67ba8e89bc5e886f472595ff5e0ed40b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'5a5a31ae9b03a362b44c9e38effadfeac273bd370374ea4816b8402d6b8a8a1a','be94a40c259a5f9e2ad5cb714089c4be18de7bd6d3b403f3a4620f4d889ba4ed','43a63216cf2d86fafe6abe3656888c9a29ac21d0e21e808b76d7d1afd0edb0a7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2005a300856ccc74efe80c56927fc13619d5c40ab03ae4ee4fba2050bc2a6b75','afa68f3f9cb6cf8f767075bc9119411e146b6838278d884868a80d9c8e80e26f','08bb4ea791ea864610410913a61a2273bb1f197405289e0dd3dd8d572deec241',NULL,NULL,1);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'95307de52e23a8433143d79710e7df22ba7205e2651c88a2eda220ebc8e0f289','66f27b0e46d782b3e7eb8207ba442131069820295ea19ba9b1f8be5ae5b1367b','4068ddcc0045689c3e9645ebc794d2b528065513deb2080edcda01624de8429b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'de5a22c228bfc58ceaf428d55f180e951ff877537ef463821ce1206f07ab02f3','eda7d728863433b4e738e2b317d661a68d7f8921ed3fcf56120e0e0df464f161','ba4728d205413e91313a95fae1eeb6f9499f9681301ec896dd2f54cc00a7f8f4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'e54da9db6c4911087dcfb2824acfd7429431e3297f6b5836dfa8f95165ac9b08','6d7b69dafc9e895a4a4b75c2e7ee2dcda352e21b82249074bfd0865e04dfe6f6','d564f49e3a77a2c556845b2c16222d4b3ba1bbff35b3ed77b48d10981afea914',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'dac63e0e407785c7a461d839ddd749f020f8a33026cd6ea2acd659567a36c40c','fb8e2f9f37cc8ceb72b92925cdb86f62af821bbae196e5de5083d784436e26ef','d1248587b14af743f1d77729b791b2349f2765838aa37d21ba7b654d82f54397',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'0397b7da62fb672aadb96fbdfc37f3265ea04c4d401632d5d9018b9b0ad7cd45','35f40cec8ce2dab43b642668fb3baed3654b63a328ef005e41c8772cbf02029a','a9becd46fc3d51a70f96d07323a5767c23da421ba7abb0d27697da19619b5585',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'dbe43e77c383acc66cb46105991ed066ed5309434016081c26ca1a7dd948b6ce','df94b526dfa87413c5d4c11024019c28dd94051780c00b433b28093788b15ce0','75c7e51b159ba4fe32829b56a4394952baf61276163e6fea9478289f2fba39e2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'ce1021a584895988014f16dd9f7b7b29bbe59ca8a761914f60c9290b5ec6a16f','7d8c18a5d7ec2d6d87ef468e4ed6784e9d41b248bd3d6754bef8f6bd1df9b9f2','be170f0adccfcb6c8ab4790ea15cf54bed3b05fc293b7eac889958ee71b0ddaa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'4a066ff12cf6f8dad894e23cfbb4fe6a087893b717b3f0c1ec53764b1e922bf4','0dab776748029f3a094e8c2ad8871c1771263f81cfc6de79ded15ff475239371','6c9c189470ec33433d6c5791eebdca6cb4703ddb73b2f4fae7899a88a1be07e5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'be1cc89117e7cb3fc18eb610103d72f144c31848da4d8001c334aac577f19427','934400af42a6099d1279e8fc2700bfc118bc313da8383d06892521a17663ef73','73cec7370d89b28ca75d7158c8a0b06eae98c3a5fa31f9e1b57f8504949a38ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'a616b3d81a1ad1db1a9b1491b06ff6bcead9037f75552d14a4c7234b6ff56670','b45534f04aeeee6c2ed877085eac7ebea9f7eacceb2026e5ab8a34ff715bc3be','401372b7a326740d2cc70981c72f81c163ba337296d45cee689937b615add2db',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'e7e76fe32ac5c06696c0bda815f29f1e0785a9d48641615f2ef78fa9982d258f','b8261f9bd73b90fef96702a2e83111c3b9305e55efefae86a4078d99ce8c3d0d','3ffdbf7b756e126259a5a2a189e1718a1488e7f4df769568e0869dad0a015262',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'f0d33d2f73f83449c18b9a7bea43857b36effa24eb248283d9356c5280e4992f','bd3133719a6698bda726f9304fa48db5847cc475db79b879d2566da3cc7299d0','67263d625b0b74ae67bb045b400c9ca95ae58b0e6e0b2df2225dd1f86e34429f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'434d631a1c3ef7d31d136b4eab8b3044dc2b65886bf43642537cc592db0415a3','eea570d87d2e343bcb9b93764aa9bed952588f4b053d13e87da410b8dee27d7c','d64ef53c4c580f5485e1434101824d01cf54c6e89f9949b1b9eafcedcf1437ea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'5ca42816d9c6aaed19f6d25cd02e842b5d834254f90a169630544c83a129c7e5','c827847c2f94718cd8c3efdf2b30cf9c8753893a76590efae0e30c61ef9a2d4a','21564219dc16025f549b73ae0d077e48b341e8a37771558145c731f348f8ca4c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'31aecb842ea816f98aead90fed7ad005c010919a2ef2c5d7a8965b71832d3201','5a69c5cc5e4aa7e7d071da7ecf8cff88740a707f70ddec29c57ee52b3da09127','081773496182dea9591ae087ce76d4597265cc6ea4d8110884c8daa94158181c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'7a3167eb2c8a80c7c363ac47200ebc8cb6bd53f57da64465bec14bd86cf2c6c7','8bc588a7a9286c3f5c13bc31c0faf29f155391f14ad89defebe3d0a0b21d049e','4617a2e4e119e6dfb945a94c1dfedfde0242cc01ae918b7e371be250307b20da',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'212bc51956081e57aa618360926e186824dce8987948ee7706403451ab417a0a','77861a778f50d5f8314cf4caeb6a78539702ee5b36b882713079b88143d4c6ca','48bd217a7207d35c57da214a35f2666509a6bcc492e3c7c77b4ab60bc19bc0a5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'03e72d7551164403b41956638a0fdec8703c29373ea2b15c770717b0ec39fa95','b445575b555d0621a37fc3f9f22c113126ea35507703f8885294cb2a4613a6c7','a791233ec9114fe7c51326f039cec0fff3ed94853ee9a1273a917252be74c617',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'922aa744aa0c08274d1f47a0f80638c7937ecaaf95555e68ceec09449e60d080','d46179d869f330c786bb81e0c122952d33b264f3af2b4a70627764332cce3fb7','3d455ae7d4a5bdca02d48834b93167dae8138051a41d42bfc97faccab6754a86',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'de422fc7f3f11d20b697e0ee57afe101ddeb5e84105153a3bb10f97f9c3f1783','d0cef146e488d50917e659d8c039e7304a41d239d2330947d81e49d3bc7aa723','0f5ddbd4a96f2897519bfbe26c493bb8a36e00b61546ffcf7ebb030a14110285',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'82d7c9a0c9d63c3f93b125a9eabc2a7b5f560eccc5fb578d71ec071f150c8fac','68777d56b0179c05517b00df97200e16079b34c54a270d598c28caa4f39ea43b','dc17ffc07165ea0d0e8094184ad60245bd6c1026c3920bf82273813413804f14',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'c9232d9cfb183cc9bc09bef78f7c83bac3d9af803e6916c9b14063c4f619d9e6','728975e1d9ed1caeeef47b1b8f1040c3d1ede182cc47282f32f2f464071057b2','3b90dbb12b4a05b7aefecc2ba66a520e19a2172b4b684ecbcecff68c6694c314',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'71c3e7aa2ad71e35b752dd4e48381b4ca845c370e5c340f2a221dde808966a45','56e52a1e4cd4954442f83c421e7b8c653e38cd7725d6b140a47e74f57df2c169','8b7febbfb0f18becaf8ee766706aa0a5017d59476c1dc9f14733ba1bc4abe948',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'47230be2ba96e7adb6088b18788b52a65aa48183c2c00095b79999f5ea1af514','e8b8a81eeb5c9a9fa6f19f6d9617c7c8e1d19368725d223ef270b74b09b1a541','49d8af6df66144910832f67fce9b703445a520c1ad7de27ab26b3b32e78b4c98',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'2c306c41049fba2e58a07b5d14f930bcaa465b2afa4df24d8a887958555f0c57','3ed01193d67e5b016184cd322ca01829a616ad7f7c98bdc034c642ab5c37938d','d5b4db40f8afea6020f21bccadaa9c5eccc364bdc70fe21016dc67cab3eca30b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'95a6325dcb8b9f7aef9da35bd20a46addef23aa5c36795beccacf992bee88d28','730fe6316784de4a36e2530b3935fbbd2e1bb9c876c61d0cc436f86a103d6655','3105eaa549b93d754bb978078aeaf1865301aee814095b5cde4a1875558483ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'8811d6a6b22ff3e0ecf399dd20a28a17ad000e99b17f90e63e02230ed42cf260','a1772d6d909c4fd092a9e511c2f0425480f61c1f2a3d513d973a15e587c47a51','adddcf11a97e071694c4494e4c91034bce6cc8a51842eb7ea88f1ae741925bec',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'4bffe3d3071cee255f64108bd8b97652f06190cb73caac5bdc4ef61d3ff9ecd6','af66fd2b113c2349077f00be46a1cd5629b2ec39576ae16ec004249438781905','7ebc90dc37959a4cd4fc4fec9486ac5889338b05e6726beff8895ced7ba47480',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'b00d5001e914fde448457f3b373637385114eeb07d79751241f4c1f50cadc050','64149e5936bce967da53b587f07492b64472145ac66f58c1773a4df324ced96d','9188f5b574d26f34e57ee0929371a1c7379e5b7a82ec522742b559b1eb17834a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'90dd8fabe43314ac6ab6f5485275a4b1131c232a1e9d92395fc030659873edb8','71f3161707a90feeb8b8e3340f47a9102c344b652ff70760aaa1f7b3bb30a14f','8aec4a1e3193643635db369dcdab91b33b72345292833f8dd5f1557381a120c1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'923848bdc7906ab89898021e05e201f69305087b12803c459f066f2d681fe9b5','de443d5cc1b054f4cff96f616b234d91b0b5e3712e6d72e64d564c201b7cd757','25c51426707a0bf04e70dfbfe94bcc1b0c963400d2466ee85f764e88b40c19ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'e5ecdf8c0a2166fa8fe25adea0d374d34131d29a3c901868fec579eb20a5a930','05b8fe3b76416a506aed1b000e3649af38e59adf26cf0d168c5e84112641ea6c','475175769e725711441f8a3646330382689cb2eb827383fe08c8002d98532451',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'03cd75c14bbe11800f4d436dce93235787e2521a19b1d5a90796a5de369680d1','d8edec966eae31778588f68b7343dbdb4bf878b30cb430246b04ebebdd9e43b9','9327fea38511453a28aef4aa71228afabc9277bf0eaf02cdf5df4ce11a8fc3a6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'7239560704ca831dfe90791f1cd21ae1f1506275cf6b45933676be9b096d340b','1294057c4f21c98f97d10d96510ce83d0e8d348d138b3caa2c76ef1be47a3c2a','2ea5884e4241457abfc076bd3c0ceb4ec721c0521820c7138ffde796061d0d22',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'3aa4ef8714cbb71c4f0b052dc7ec7795322103ba7b8361db3f33303f564f3815','211d0e47a87100167138974db02ac1299bf1b2a1d7b60606b19cecf2f06df0fd','35416149d3d326643ca16a87efcad4b38695db8fa6695c6ea23c6d3ad4947866',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'fee33c0a466c580887106b4bb7a8c6aeb7a049c94987bae64f695ae400c4a4a1','f851a0d0a25322d5939a5cd2cafc831b6282af5ab81932553cb80ff3825b4a2d','81f7bbf8c604ed9441531c78867e0fe3b4198283b5e493ae0d20e8cbc5425903',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'94d58bd9a65a2e13c7ea2373e521952e916b0e1d31d803eced96e5c8903aa625','e959bddf887904cd324ff7bf5fb60380f2c4a7c2b1b4215c63715a59ad297200','f48d3c887503182ca1e6a90beec0d252c9ab19691705d61c97e8b17ac7d11745',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'e9c87b2a652d4ef3d48ac74424f57d06dd85893fd542e0784df067c37396b0df','ec205004b519cbbc750bcae821effee41789b3f643f90148e8db2d9d9f83ed49','eebcc49eda3f3aaa2fbd2e50e6533a76536e6ae7bb4d5f483143f1be6fa7bdc9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'b664a0985edab20768aec36096a7b2faa159cef4af7e779ad421942137ee317a','dec86d178abd72944cda84a3154303e16eaf39e5bd5bd59a80cca27a5ed5887e','d3d1e2aca506a79b3013c73e4f9558c2fb2b30137e353695d0ab7abbeb704a0c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'5ffa5e1f36c5539b2f5a89a6a60d45ec6372ced770d9b0e0e8dfd61edad84c22','be052ccd372d556b9b28d0d2b6f9dbfc9b32ff173b71d7842fb6008047a67384','0b75b269953266c7e9c604108ff699a45385b5a0099967aefcbc7b3c8c1f05a8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'fc6f9f23c3b8954c7989b0e4ce40087b66dceabc7c0e407ac7f4b397fe2a1281','1495ca8eeb434877ce36335268a349709e99811e93f416ccf1f0c98114731824','4a0c441e144603acead6249c3f1152ca2e6d5c45f23505a3a0deceba0d55f15c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'cc6c3b8cf2c457b2f6afb5b208f968544767be8b86ca53bdab4224619a03121d','93d193df39b7340b932b5abd85a027df086e033ff2b18fd8c9d0d03cd6db392f','c675a64144e460a13c9ad0191178f53c4723c4f5095d6411c893f0e8fa73e95f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'cc57ac6aec118ebfb03f5113ad1af749522e60ef4ca201d48bd43478cc0a29e4','064c03f24da9de841de9f492487de4077b842d6de92366d3fe7ff37d558998c1','8e65ba6f2cf7d44e6e2f285a16d1e8b81f7e493530f91ec79586dc65d6c050b8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'9999be70079c0943f0a00c54236680bafe0c87dd3bb75c982211f751e7ecdcae','f1196c84f3767cea82b4dfb6a5e4be30f3ed3f53e9b9cefdadf81af9f2b2bd49','0a6c3691e3b8a2b57e2f181238bcf9935dde9f5c245b7820f0b5f433c796ba86',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'efb2fcb7b5628bb99994bc1ada157bf80b4516d961497aa011c06da1523801d7','ba6d273c442538389e43b3ad47795d7e61d9b17427d1a1044333f96cafe575c4','59b0e5946549cce1cf27bbae93e29e8204a5dc29b4100e9decba75f6ae4fc5a8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'fb396fca9af7816f97b22b8bf1b01951e271a75f1a640dfc64955696dc1c0b7d','20ebf686e5c5a50c0df23ee15488559024622039aa4fa47f1b07dc3967bbc760','b323893b6081dbad6766eec90402ee9450feaa111c83af4d20b162368be1afda',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'6cbc681ed90e676cc507d07120888bd4c8759873a0b9215f721a0ce707070086','d8c09411f0c7fd43774558fd6cc9884b032cfdcca63a08845b61293ff52ef380','184d92a010711b1e64bfea7bfab82dfafefecdccd2159bcd83f1456fa169488f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'7cb734eb3e24e92de8915a6bea42b6ef721251c481ac9ec751cdbdc08e110011','4f02ef18a644ac564db930818e845496ab0ea3caa34ff70878f0f9f0ef6641e9','08385957f620d0a52d90b02fd33126cef4bc28ff5f86837fb6d3be7d373888fa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'7b57a4d1ce0995a938e174e52a096cc9829a0ddd59f698ed04d8b43371a78126','7716368643d8c6d26932d9efabb6fd6e574c1b13b8f149363ec4b99d9f405435','bb08ea081f9f395784ff3a7cd7825416edfb81864cec59018260adc70f37097e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'f46f820a64ced97ccf68a56c048459de0b2855ecd4299e447c4b630913ce1749','71375966f9a524c1df04c5033ebb17e4293053f3ecb8e724a2f093b3373641b6','f7a91cceefe49d8855f2df2c50939c1c8fcee740a8a4d5ff418ce7ce6b76e270',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'878239189ae0afa759af5e59db8a17fd17c0c9a2c017384fd2d0ca789e738050','4ead629f99d32f3d0ef6c5f7ad1bbffa91608d71b815293128461a9b5850ad15','b730c18506b801abdae97a502b3b5e5dc8f95c35823a0144ccaa290a9ceb9448',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'d2d86823f727bc075138653a682373a9c76d21d48b5881968adb66042b501e53','3958da4cebd7670ab3e197b6ff8b5a770dc756dccc1806bdd050513e75e9e33c','3096cc3bab8d42731e982f34668a9275eeeae9c9a83b9fe0456561ebd93822cc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'9fd098fcc7d71c0c46fc741ea278de92589c44a6efc4980ced53843193553ea8','f5b2e274c8dda92ac634490b28d13b18d7aeb22fd1a5101c805d3f4265422a7c','3c4a51b4fc3a9c9ef2f01e18d2a12b365ac4d2f0fefae6960d221107c8340f2a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'f1ad21f9b4134bc0225c26fb8969af3565c07997197a7ed9636c01f187f07042','3711ef31e2cc58fe1a9cbcf0a5bfdac9a805f346137b923fd86c65f850b35eae','aa3399ef7fe13c37b8a318f94962d0b1444013d4199c9b7ffc85b2432808d5c4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'9a1f3de6b5a255720973fb0c93ae2bc8fe8936565140b8ae991b9d83f86a0002','8e73f7f52266820ca7f25665628e31afc6a5e3dcbbf51bc1bc8635440ecdf669','be6116864cd2323c91dd504e0c5ba6643a9841aef76d3ae6ac7d415ef3598cdd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'ab56d9f59575b2d8ecc4933bbfa1fb0cb81c7a6fe84c1ba81bdee40c3da13164','2720a0a338a84ae1b56086f0d4f1b341eb5e3b46e9290887d7675800c6872081','49b0ba1f0d345b6e60e4e793b6c9e73e0fdf0bf209c9a3c24b0c24d7769f0a02',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'8399d461b5079a145c716f8f6004d2f7870fe93786bd944fa36ef27134c9517c','18ee24262532a6a1e49086f1a8ea0161a5c1ae80ce2230f1b76ce782f6aff39a','d184a05b0691956c7975c2357fa70ef28764e489afea6e0fb9b9ee30ea223149',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'b6696a1511704128bbd5ec2c80a1d7d8d3bda6b959f1a674537ace152cb7f8bc','e839a4222aad212860b0698214f3d426d065226d1e7983e6620325a583b28abb','71a164247eff544bb5d76c3fdc206aed6f8b32f4b7824b05924347d24f24003d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'9aea0f996c36a815e4103b86ee7fc9be784d7c72549e54d04d84cf7fb8adfb78','fca6c96a2d6bbe118c5418a3e2b85dced8cfc0da2a8b46fef65f49e81a459efc','3931d114fcb35c51b231f2802a92e41f14c36352664c528cce401ae99b71b99c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'7571b554c5600796b60982bb6df3517eed517a2a3627f8383b92a073cc4a5872','a168e4a6c3de65e68532d534107bc3033588b2b0d67ae2f5d23b1ffac1a21ca8','5284736a51bb78845b202630a9b0b8683844d818e96e75d2b5b3a5ddfaa1bba2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'b2507a73ff4f6998582daac667c457308ba78744e3d1d7533c0232092e3eab1f','379aebcf4d32a0480f5d334f5c04629b6ace33bdc5f138907c338eab7b1d9093','0b7333f33db9510d98e2ca8def735467ab64140060a516e2df91c367d715cba4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'18566f22ffb9bc5f98712ef3234f8da84f8f3e382007b23c3bb8e6c910043746','b238ccb2ac0b6329a0fc30267fd29e4813bfc786ad871de90c1797c6c72e65bb','f8deddc029ee14e7198cbc0e1640b9249fc407b9daa38cd8007d226abd118a18',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'72c44bddd5b54657623692e444bf893ca7b6d8da992c274bcbaa37c6db903825','2736ff0669b8c3cfb5b4ad8f082e23d985cbf0c4ba9990175febf1c02882bdf9','68c33e1afdc6e1b1780bbf565e7921e894507a1f5bcfc617c0e20a50eb2b2848',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'1ddc441adb4b262862caf5b811b2375bd376d9b5d7b8ee251c4337478833cde9','3407db619adaf80236c8319a7e9283c10a43a7b1717d4d89115ac90e8f52b706','ca1a7619ba2ae79805699121cc333fde414c57ec9a390e488e662a3189c3e3a7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'b59447846d380cb8d32639ca13e6e396b68b18483f70b6380296bff65dced3d2','e02f456fb1e9b6de38bb9923f6f68973d592ffa04f65731c66dae734e4fd1d44','2e0a475cffb88069a2cc4dbb4b12c74b6363d83f39bbb65d5abe1021a17f6ac3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'54a1c32d20665e7ff92ea43451ff2e59a98136ad7da576fa6b2614dda700b707','5177e82a6aa417664930ecdb0495e108b3fb660ff08a608fa540a29b0c4c2650','097c6f1f44bc67ebec7cbfdfd708b63baabd73a3146ba1edf6b54dc87f710786',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'f0bef715c366843e002c75992b8d50d82a3ea54f144350f158e862eb03cb45dd','84abe1e98b75d07291ef4b9847c336f787fdcc74f9a2570d23cb8ce396c9104a','b73f3c7b7b1e0f19a7d1ba2cc6866dd7ca76be770e208cc6ba7e0c603fd433cb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'0a4ce98b783b97f81fff9ab73d7a7091087e8511ebb425c81ccf60c3f9edbfd6','ca0f3a6b9b2eafb864eb324359d4ad9dd85361a7c7d2833ba6bfd230d0e60773','86b7353dad0c3fffac641322a7bd882fc52f56199747926f4c328534f5f4c105',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'f3b6781eebab3a6928791cf281d4ae7cb4f7fb59c6ae7575eba253e6ec6e447b','283080af19ccbde44c6e268326ddde17fc850d7ca1add3698adb3e606cd984e4','dd3c289c76649de35984676df98ce7a261674944cf41c78e74af915a020af2eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'14261b6b340632c469847700cee16c0163a7f8cad4dac7ad4555efeb5f3235fb','744bcdbcd8d44066eb9528c6fa39109148ea557d3cc3bdb88a818b9f9a9dcb25','78fe875ac35c3758592ec74da5ebd82484347ae0e3c8ed4881e947805619d00a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'3c033a502e1890e8a3c697e354cd1769e4300ce7f62ee7ac47a7201e1ad5de2c','c424d1724a85f76a855b4dc834c8b599f764b5095b0649448a0fa2aef1e41d31','c6b034f77fc0603ddcdf933d1b62c9cd2608a19a97a199e14e01176dab7e8d55',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'acc1dc4b7ec10c0989af833b57640be486035d76f74b57a50b023fb60f418be2','dde73fa3b80a8e2d1cb8aa692dd62ad712549fdceebf4083965cb36f692d45d9','6588649087a15a41d8bc572c8483daa38fb89f42cae69e9058c5ed8c0f0aeeb3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'1443d97efeeb04291e117b152f1e18537035a59c80fabb574577cb3e66e5db59','a52c247beb178317cdd18532927c8281abe3af9914c676cf250084d4b1e96762','8903f00d95a0d220ef6471ae385a6b579ce5ea829650b352bb98b1b8434aa154',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'1c74208da191b965f52006e577c3f4df30f29b36b1d137ab457bbfe30737285d','693d04e9be7d9de1aee3cfe832c6d913213bbf44b0f04a5b394e1aceb77b7b49','1d0ac0a9afcc74d1940fb96a15b9c256a847e2bbfca44b6724582f3153847d07',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'662e1b232c5afeba4df756a31d7b63f7f33dbb4aa752abbea9f0b57f1c7c4295','bce25b4036b54089a064c1fd781923787126977938ff3c206f0a8d76ddf52489','08ce8e7e7278a67d7a7b525a898550f0704cacee2ddffd06ca8a9ba82cd01b36',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'8a1b60657764a35ce95c9e215600f63f0fc8c4933c682ea017553010743c97a2','0d0259b0c4755aba3d725283f1773bdd766a0ae009f2b94be00a5589b61ef8f5','ec7c4e83f9b0e1011862ce5421dfd8ca94c79ea422ee5c77d62efbab4d6e07b2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'c2e25d20f3c50a67a4268d9aa3e386c92e5217cf8f106d2affaae19e49b48828','32c25e6b70ffe5ea4582a7fd8bf8c892d4fe0afb247e3aca79686e5b5ce9e430','86a2e2d74f9bab3f7e5c2a92385ced78332b792eeb786a8a5830093b6bbaf8d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'bd7479caeb388072138c99d19624e495200df1bf02f47caf0ae8a5007fd9dfce','0fdf6d97b6a63f690d30aca13e27aa4cd6bc3ebbf525cfe6f6eee3ce529dfff4','406eb03b3ae001f61024cd239356705095e1a66b9399c0e3b4ae90689f565f90',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'ddb8394df96a37e0127c8894e669072cb195ac953e2a3e922b95bf40804820b6','8cd686429ec5799fb9a78d07d662c5f51431c6d79691a45c109d512d261aa5df','e686f294e7b2c37fe3b5b23ef946a17f1be14945d349550afa083fc02d9314c7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'3ed7694459a57281ba8e4159ce156333aae4b596aa3ab5193ea6c1901f2c9667','b6c153092c9e72a0fc5f32febc767803bf50df6886edea271315e382903b8cc1','8d97e6692ae1488109eb75f96eaec5cc775f8aa9fcc1ef1bbd0a95a46e2264f7',NULL,NULL,0);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -149,32 +149,33 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1);
-INSERT INTO transactions VALUES(3,'04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1);
-INSERT INTO transactions VALUES(4,'98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1);
-INSERT INTO transactions VALUES(5,'90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B04D5809F0085BF2655C500A8C65D6D8B42DD373160FB431AF05792B0F30B63A698EF3D31D1777AD18801E94EEF03D4314911AC03D7A82483B40614EA5CF80E52',1);
-INSERT INTO transactions VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1);
-INSERT INTO transactions VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1);
-INSERT INTO transactions VALUES(8,'30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1);
-INSERT INTO transactions VALUES(9,'7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1);
-INSERT INTO transactions VALUES(10,'f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1);
-INSERT INTO transactions VALUES(11,'15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1);
-INSERT INTO transactions VALUES(12,'1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1);
-INSERT INTO transactions VALUES(13,'1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(14,'a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(15,'040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(16,'62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(17,'578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(18,'479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(19,'16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(20,'65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(21,'43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(22,'cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1);
-INSERT INTO transactions VALUES(23,'ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1);
-INSERT INTO transactions VALUES(24,'53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1);
+INSERT INTO transactions VALUES(1,'63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'7b17f1bd3ee49ce2e5e9d749bcee03749fd056731fc38e3405c6ad4885d18b0d:0');
+INSERT INTO transactions VALUES(2,'5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,'8a6f8cd8a437c07534cd71f9eaedcad50459726a90d52e6fadf0ef1c8c348f2e:0');
+INSERT INTO transactions VALUES(3,'04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'c0b7ba21d78ad1b9d15cb6b9f3a0e5be7308e48da38cebd72daf42e4f8cb63c6:0');
+INSERT INTO transactions VALUES(4,'98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'4570ebcbadcde31bb1b2cbe5e0bce5593c8aa7f246a6c62978394dd046267a24:0');
+INSERT INTO transactions VALUES(5,'90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B04D5809F0085BF2655C500A8C65D6D8B42DD373160FB431AF05792B0F30B63A698EF3D31D1777AD18801E94EEF03D4314911AC03D7A82483B40614EA5CF80E52',1,'d2c33c5859fff1bde271ed0b48f3853ff5441f7d5a29f64a31848b58496c16eb:0');
+INSERT INTO transactions VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'6b24ccc7f3e91ad0db1bb059bb144912e7deaf6436b9b1eef76cbd1e3426ddad:0');
+INSERT INTO transactions VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'65161bae7afefbb7b46cccbc42d943189fb58bc93833504a9beb8a81d1ac3dac:0');
+INSERT INTO transactions VALUES(8,'30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,'2a941755031caa5ca3afe08d8e55aa57ff5fe9e2d725ca91388504885d7658eb:0');
+INSERT INTO transactions VALUES(9,'7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,'25c2b96162f286879550ee980db0bb717e27d63c62beed1604b9e83df8500bcd:0');
+INSERT INTO transactions VALUES(10,'f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'04b45929bbea052062fa897e2bc54d323b0bf9a46f4f5140f1362ca244e4768c:0');
+INSERT INTO transactions VALUES(11,'15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'52def9655f61f72912a55624d1ce0b1fdfd98f7eab1d12eec193c29392572817:0');
+INSERT INTO transactions VALUES(12,'1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'e9063537bf8b14d57f0fede04e91efe40d98d1c73ecc39c9a3d82a56cb013761:0');
+INSERT INTO transactions VALUES(13,'1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'7e8fe4f026481975d26bdade6d84e07654ecfd624ca1c054a2b20ebed6433f0b:0');
+INSERT INTO transactions VALUES(14,'a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'453f22afbd458aeee8eeb422a378fe72b9ee0d2784e5c19517fa52bd442b1ae7:0');
+INSERT INTO transactions VALUES(15,'040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'f07ce90f370ca2c0f6b9b0d35fb394a31fd9d16d60f688a11e02679b303798fd:0');
+INSERT INTO transactions VALUES(16,'62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'1dad931f9d9dbf1dc2e862ba958fd0fc15c2adc0dfbce0f8ba9a399f485ece4a:0');
+INSERT INTO transactions VALUES(17,'578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'7bd26829c3e05451a26c34693af7528ce97e743068f941bf25467ae457d7b6db:0');
+INSERT INTO transactions VALUES(18,'479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'e63bf97412baed033932c81838cd9de48b2b82772a4dee207c95061fbf32379f:0');
+INSERT INTO transactions VALUES(19,'16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'8090ca2faa4b18f1033ce16930f4a4a7ce4ab9761072e16ff025b99dfeef80ec:0');
+INSERT INTO transactions VALUES(20,'65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'1368eced55ba8fd8fe90c029b9cbdee09b2f023f957c95a0e38ae273e2603aaf:0');
+INSERT INTO transactions VALUES(21,'43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'bff102ed8b0979ba6966715d3b4b5138e128cb04031953136441e61d9edb75c2:0');
+INSERT INTO transactions VALUES(22,'cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'a81dcd4abba199c95c7d52cea0390fa94c33b0b11358a09789c469256e62d083:0');
+INSERT INTO transactions VALUES(23,'ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'0446c9865d4eb11e643bd97ab9d4ec5d5fbab31025f579f860089d00b6587815:0');
+INSERT INTO transactions VALUES(24,'53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,'ff2c227052f38fc83140ec7ca8a5dfa718f3ab0546cbce41920ebd36aa54c691:0');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -222,51 +223,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -278,6 +279,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -296,51 +301,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -352,6 +357,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -373,34 +382,34 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,'burn','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2',1);
-INSERT INTO credits VALUES(310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'send','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',2);
-INSERT INTO credits VALUES(310004,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',100000000,'btcpay','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613',5);
-INSERT INTO credits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,'issuance','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',6);
-INSERT INTO credits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,'issuance','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',7);
-INSERT INTO credits VALUES(310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'send','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',8);
-INSERT INTO credits VALUES(310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'send','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',9);
-INSERT INTO credits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',24,'dividend','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',10);
-INSERT INTO credits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',420800,'dividend','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',11);
-INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',4250000,'filled','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',14);
-INSERT INTO credits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',5000000,'cancel order','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',0);
-INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',16);
-INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',16);
-INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',18);
-INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',18);
-INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',59137500,'bet settled: liquidated for bear','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',19);
-INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',3112500,'feed fee','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',19);
-INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',159300000,'bet settled','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',20);
-INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',315700000,'bet settled','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',20);
-INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'feed fee','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',20);
-INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',1330000000,'bet settled: for notequal','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',21);
-INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',70000000,'feed fee','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',21);
-INSERT INTO credits VALUES(310022,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',56999887262,'burn','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa',23);
-INSERT INTO credits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',8500000,'recredit wager remaining','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',0);
-INSERT INTO credits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'send','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',24);
-INSERT INTO credits VALUES(310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',0);
+INSERT INTO credits VALUES(310000,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,'burn','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'send','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',2,NULL,NULL);
+INSERT INTO credits VALUES(310004,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',100000000,'btcpay','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613',5,NULL,NULL);
+INSERT INTO credits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,'issuance','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',6,NULL,NULL);
+INSERT INTO credits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,'issuance','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',7,NULL,NULL);
+INSERT INTO credits VALUES(310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'send','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'send','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',9,NULL,NULL);
+INSERT INTO credits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',24,'dividend','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',10,NULL,NULL);
+INSERT INTO credits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',420800,'dividend','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',11,NULL,NULL);
+INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',4250000,'filled','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',5000000,'cancel order','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',0,NULL,NULL);
+INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',16,NULL,NULL);
+INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',16,NULL,NULL);
+INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',18,NULL,NULL);
+INSERT INTO credits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',18,NULL,NULL);
+INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',59137500,'bet settled: liquidated for bear','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',19,NULL,NULL);
+INSERT INTO credits VALUES(310018,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',3112500,'feed fee','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485',19,NULL,NULL);
+INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',159300000,'bet settled','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',315700000,'bet settled','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'feed fee','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37',20,NULL,NULL);
+INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',1330000000,'bet settled: for notequal','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',70000000,'feed fee','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e',21,NULL,NULL);
+INSERT INTO credits VALUES(310022,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',56999887262,'burn','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa',23,NULL,NULL);
+INSERT INTO credits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',8500000,'recredit wager remaining','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',0,NULL,NULL);
+INSERT INTO credits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'send','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',24,NULL,NULL);
+INSERT INTO credits VALUES(310032,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -418,6 +427,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -435,26 +448,26 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'send','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',2);
-INSERT INTO debits VALUES(310003,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',105000000,'open order','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',4);
-INSERT INTO debits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',6);
-INSERT INTO debits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',7);
-INSERT INTO debits VALUES(310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',4000000,'send','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',8);
-INSERT INTO debits VALUES(310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',526,'send','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',9);
-INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',24,'dividend','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',10);
-INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',10);
-INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',420800,'dividend','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',11);
-INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',11);
-INSERT INTO debits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'bet','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',13);
-INSERT INTO debits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'bet','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',14);
-INSERT INTO debits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',150000000,'bet','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b',15);
-INSERT INTO debits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',350000000,'bet','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',16);
-INSERT INTO debits VALUES(310016,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',750000000,'bet','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f',17);
-INSERT INTO debits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',650000000,'bet','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',18);
-INSERT INTO debits VALUES(310021,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'open order','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',22);
-INSERT INTO debits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',24);
+INSERT INTO debits VALUES(310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'send','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',2,NULL,NULL);
+INSERT INTO debits VALUES(310003,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',105000000,'open order','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52',4,NULL,NULL);
+INSERT INTO debits VALUES(310005,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',4000000,'send','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',526,'send','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',24,'dividend','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',10,NULL,NULL);
+INSERT INTO debits VALUES(310009,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',420800,'dividend','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',11,NULL,NULL);
+INSERT INTO debits VALUES(310010,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'bet','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'bet','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',150000000,'bet','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',350000000,'bet','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',750000000,'bet','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f',17,NULL,NULL);
+INSERT INTO debits VALUES(310017,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',650000000,'bet','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183',18,NULL,NULL);
+INSERT INTO debits VALUES(310021,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'open order','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee',22,NULL,NULL);
+INSERT INTO debits VALUES(310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',24,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -472,6 +485,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -496,352 +513,352 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1}',0,'NEW_TRANSACTION',NULL,'6fbf8198d9a84ce41c800fb5860dd061a594f27bca0f5552decedd6f6ab49e9d');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","quantity":93000000000,"tx_index":1}',0,'CREDIT','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','ed55ffc2939a1412ccb8f575b5cc540fccaa8869a2c75ee8ad57c0650aa4dd1e');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1}',0,'BURN','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','1c827870555d9c215896f6dd9a00f7dd7f2029cd473ffda0a10a4949902d44b7');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"7e1322d444b3395f9d8ce6b1ca6d48e8f0d78e5d72da997fad9520899bdbebe3","messages_hash":"d95ba402c3fcafbebe7fd8f621727efe65b9a20355645e4f62ca4f77f9b4f061","transaction_count":1,"txlist_hash":"702e537dd6e79386a246cbc44fbccf8ea2a4e575c9f1e072189fbbd831308672"}',0,'BLOCK_PARSED',NULL,'a53c02f7f684c82a05b3a650176fee2aa53e3c0d9f43d9210d6194877d5fccfe');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'645bf5f711e5d7126f6697bce36febead206f2831c3251e1c747828308373e0e');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'NEW_TRANSACTION',NULL,'588345d0493a0bf0751e5c4304f3f5ff38676c604725c34989dfc26e2f66c5b4');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2}',0,'DEBIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','514ad3754518543318edfe34f1f723cb112a45fd2b2ff5c8113197948ab25d20');
-INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2}',0,'CREDIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','98693a6d4c4da792eb6d447f2626e609bc5ad816f9e4cdae1a230e60c399d26c');
-INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'SEND','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','ceacdaa2a1a6b9e34a78af090adb95fb6e7f94f8390040785ccba81db66ba397');
-INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'TRANSACTION_PARSED','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','92698c52f8bfa043ac90d7c9ee336b5abdc5f94e56428f6d5428e73790c7ae41');
-INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"3e18d8a969bce2d869cb86b28c23823d88e6d8a840a3cda905a003b37222ebb8","messages_hash":"992c82eb0567345b819a2b96f773b54399af095bd95ded9bdb81f1c9440c6dfd","transaction_count":1,"txlist_hash":"bcd62109b750a9b5c3a07fb6e3ba7a5feb2cb56fb554da3b2b4b560a632e3e2e"}',0,'BLOCK_PARSED',NULL,'b3205fc0ed24ce32235b3244f8a99527d0f7cf9d843a2af5c12991d30507a693');
-INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4676e517742503e4ee6b74278bd1c5beb0a5e824863d666701062b5bea13ca4c');
-INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'NEW_TRANSACTION',NULL,'570cdd5f24c5dd50026bd8fd79f504c01eb86e882ba975a41113e8158549fd33');
-INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'OPEN_ORDER','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','09888876f51f3e4f39ef2e7c5ea980b79411ea9bb4d1558623468835892355a7');
-INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'TRANSACTION_PARSED','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','ab1bc4f586c2d0b77f233a511ae262bf611030e00b5837ad3d6458c4112a0450');
-INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"71dfa527236bbaf632db18cf1773c63f7ee3a0076fc6562e46db0c955b346a9f","messages_hash":"ee6ae96acab5328d1beb240759bfd4593ea203c4a5ab8bbbb893586824ae4816","transaction_count":1,"txlist_hash":"f7e5b51624875d95cb14e212ee733c94f12f69084eeefa4b77491479ea3ae990"}',0,'BLOCK_PARSED',NULL,'0d9737e0fc51a56511eb6c96982a2d3a79ec2cf926546fffc682934da6837e14');
-INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b55fefb9ebe6ec6335f0cf27b1dc7bed7bc6dfde1f414c865a8f28bae6a9fd9');
-INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'NEW_TRANSACTION',NULL,'f8ec61dea5f358af6a8ea9ba738a818eb39609b32c4ae2771141d78d5e687598');
-INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":105000000,"tx_index":4}',0,'DEBIT','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','3c9e29b3b58c49de1145bcc8e972af72b034f2a92ce77e7087ee550a2b667550');
-INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'OPEN_ORDER','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','8483aad36f50f17840c462334a3fc036c99ed410b0102e473adab5a63c1086cc');
-INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','96c8d11bb676cd4782dc846939da1720b81bb8699c162782c28fbd6a77f07df1');
-INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','8e9321f7e1b24e8afff74b41157f8c5fd953489706aa82c5c5596420bd5e0051');
-INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx1_index":4}',0,'ORDER_MATCH','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','29ce2ea354ce6bbabc3f7134c24deaa1ff5f5ce5245453cab1f4bffec443afb1');
-INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'TRANSACTION_PARSED','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','cdf7e6541838919533a05356897b9913e6e843554ab5d83b6f7a443e8b4c50d1');
-INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"39feff81ad306adcfb9610e6bd8442e35dd6e1924e75a53708c1d2932bda67f6","messages_hash":"c3ba35fc4fb0a7a1e9fff19e260c2a36ffc6869477fd4a382b7bc9294aab42a6","transaction_count":1,"txlist_hash":"a857bb0cb63c343a04d6efdf7d69f1de6f89a67dc25ca5b3e9cd9405ef48c416"}',0,'BLOCK_PARSED',NULL,'4eb4f35e70c209cd6dfae962c79d2e4269fe48521156dc46018f915db947015e');
-INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0788d3e1ebaf7e7192d35614c33dd9f61863b5223d112b4137cb02fa0fb83094');
-INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a698ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'NEW_TRANSACTION',NULL,'e8f9ffc61ef0aaf312c0ebd309a8b662fb67f0032b2adf518a7adbd605d8f455');
-INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","quantity":100000000,"tx_index":5}',0,'CREDIT','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','bce3423c48d633226010b562064ed984306f34ee2767c5952108b570673cd27d');
-INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","status":"completed"}',0,'ORDER_MATCH_UPDATE','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','2ae81d22b1c7f4a6f631952eaf095852a7c159455613c2d3e5e70def8e671ed1');
-INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'BTC_PAY','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','09433117b984f736291d8b4748ce117ac227b61dafd8d399e489856e55d9004b');
-INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'TRANSACTION_PARSED','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','b64f12d40e72a7853f00a47fb5a79b71ec79d6bc9b35bbb07cd8179d5f7c5562');
-INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"1cee0851ee48eeaa3f71e7a18f9f52fffa28cd3b2e1cbf1f79c0f562618b88c6","messages_hash":"db1deda535fb5c25233d6efc2cc930499cde719c4546f817abad5b30d48af9ac","transaction_count":1,"txlist_hash":"32e68b308a1281ef170d188fe7d19a93486667d45d8a6b50a0c39f00d6924cde"}',0,'BLOCK_PARSED',NULL,'bc283c4e99b61d33dfe29ad714c8751f30a48432dca55a0ab95eacae0c5a4e71');
-INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52cf9eaa7ce3d29f7d1bedcc064dcd90915027b501c9d412c74d9f8f4776f35b');
-INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'NEW_TRANSACTION',NULL,'3f9949094c96bd1f88162d875edca9f0435276b8d87317ce84efe2efc77f4a26');
-INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":50000000,"tx_index":6}',0,'DEBIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','369abe277117ca268cc430393420fd7c71a512bc535aaf8442c414cefee10f02');
-INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','a94ec04948cbabb2958d5f8d826e2e48ae2d6d12936dcda52887d6cbdb808ebd');
-INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'ASSET_ISSUANCE','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','dd8fc3d305785c5848cbb2958604c6c81214f35c0351d2d719737f3ddac5c53e');
-INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":1000000000,"tx_index":6}',0,'CREDIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','d8431d851e08793da3d820fcf2ba8b1c5f65cf6cc1a38db80dee55db32bcb24e');
-INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'TRANSACTION_PARSED','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','9e24c0d2d9aac151f0e3d1c43ec40e995da0c9a2dd2dba93d4d944a1ccde50e4');
-INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"89f516c3fbdcd1540125561301db451fb55b1baead9ae8f408156075aed104ad","messages_hash":"a587bd615ee0752052c4b1ce2df72fa76cf8ba03ae53e561fa1b55674ae3fbd7","transaction_count":1,"txlist_hash":"3a41f3c4d912ee4628975e61c4a04b836de31df5a9aa5fbd7031628d9c4f0eb6"}',0,'BLOCK_PARSED',NULL,'16b7255d630ce2d004d50c0005db3c2f222200833bbb5586653ae3e5452b4ce1');
-INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47f8b96833ad0eaf1fb647a3d6a4452f70974e3aa5c579b3605650bffc963bd2');
-INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'NEW_TRANSACTION',NULL,'7b0fe24b0773591e46eba2d0b2a372d45ccb72b2a3061016c40c35333f7b9ff6');
-INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":50000000,"tx_index":7}',0,'DEBIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','e4b7feeb00d2e3326e207f36cadca460d4e39acef11f908f6dae0f5549fea91a');
-INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','4daf6aaae85ab2dece0a218e9294637d81a36f1912b08362753b646e8394bc57');
-INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'ASSET_ISSUANCE','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','ac8f2246c9a164f94f45f646702d1b6ad169cdf7fdd783c6aba192d3ea39c4b8');
-INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":100000,"tx_index":7}',0,'CREDIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','7564dc45a523734b25c80c6a51b0cd9c208a658e9aa0dd0e072a2862fa84178e');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'TRANSACTION_PARSED','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','693adc0ae44becd8b98ee6b463b6e04012d6230001313419d091cfd1c2a53568');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"e9a37cfc1055e8c18d369896a14422cad3c5ac8d9b4d5aff6053d8e31dd56336","messages_hash":"200f90a0b58f1350230916be6521a38bc99cc9fdc9165b36a26141b28ae83954","transaction_count":1,"txlist_hash":"4d2d6945b23826371a1cdb4cf2f841cf2b78c891a6b93da8167ed219388edd65"}',0,'BLOCK_PARSED',NULL,'79b4913f52c08bd830f9d76e784356a204ef5e32063782fafe8d813bb7119551');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffc15d2dd00fa0bed6df8dc836bcbafc53ebb6319965c85596cb1f7d0cb8464b');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'NEW_TRANSACTION',NULL,'3d3b576db4c86533b90ad848c40af83071ae5915b4a4be603d9a89c3e642998d');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8}',0,'DEBIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','0634b0cadac8c90f4af9e1b75b71e4c7b51225c2a789fa74b40f0854fd3e96c5');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8}',0,'CREDIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','66a3dac13a02a8142c4dc1d6219fdb78e7c9588bc86496ead264abcc1e175b21');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'SEND','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','65a911d168aa1f4a101cd513badaaf30dc2a935a8bd04856f302821c66578c3e');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'TRANSACTION_PARSED','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','bf41e58f1a4507c53cef7777600bbcf669a554dd911435f30174334bde5aabc5');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"174c7c107c37e0ca2c907b1bc35e086eebbad8eb02493a2f166ff2279ecc013c","messages_hash":"0727ddaec67766acc71f6b2534a1fe0eb25e8866c10d8bd0c5c742eb6a5f8d8c","transaction_count":1,"txlist_hash":"dd1e7522ff359cc0ed124a82d3b367ea105127d45ccf563848b531aaf75b8c2d"}',0,'BLOCK_PARSED',NULL,'def363bb7f5187a26fef503c607a15ddd7a0288045bb7aeead399b1ff44bbbdc');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a2a096dda3a5d69754e6e5f461f378a4cc48fb44d240bf5d8506ebee410f423');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'NEW_TRANSACTION',NULL,'8a02e6aac832895c0904e3775eaac181f10a9c33ad9e6faaa439ca2549094031');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9}',0,'DEBIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','174957745af926851a7bbb587895f5d383dae10a86a103afc2cc0f2bef4b4cbb');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9}',0,'CREDIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','dba5584b549ef4e6c12a505261106b0d3e23279f075ab9429c28162476431a9d');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'SEND','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','44249cf7e4d3a83585f50ca0eec66c3375276bba666e040b401c91182e6162b7');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'TRANSACTION_PARSED','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','55ce995a63f4312b6e6cbaee8564be39ca13416909e1fe3fdb1a0ea12af3f254');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1463da3ebe264e703ecc0c708baa98f737b31f51726f85d3ac646f5e301b7c10","messages_hash":"46eeaba57e4e2bef42a40c71a8bfd0bd81d10357dfe68f3cc0899ceb0da7bd74","transaction_count":1,"txlist_hash":"3e547d66bace022adbb42aba8172ed287077f306537c9ce69bb11f47ed1b34d1"}',0,'BLOCK_PARSED',NULL,'dc61e8f0a33ed07d813ad869296a7ac3ccfb88ff1d72811868432e134074bfbc');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec0482053f41122650618717584138843202694f2e0c77d8abe05b278d7a7550');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'NEW_TRANSACTION',NULL,'241a6f60f77dc2e3884499b0d2b488be0238b84278c68988636c5849e38038e1');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','24589606235531aa017695e00d6d43c79801a0288da9c2080b99bfd616014c0c');
-INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":20000,"tx_index":10}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','ad80f0cc9911525cf6f65f7f09ca78d32269c92858e20e9eea2900c4cca736c0');
-INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10}',0,'CREDIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','3a3ff7d14d9a7933068b21eb5ea958ac4a11f5a9cbac81dc25c36efe82f47891');
-INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'ASSET_DIVIDEND','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','6ab7b3c377ef51ed22626a3523d1cead802b12678aa2b076053ce9c03f40d8ee');
-INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'TRANSACTION_PARSED','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','6303525bc8079a75803b86e657d4ede1cb2b36ccb3cee264ff5b07b9a445665a');
-INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"dfe8c57b4ce4ea12f002d11cfc127f95b7cea7727bcbaf64418b2d584602a250","messages_hash":"fe46bead46c77b206699519527766a6528f0b9c5de6b51cbab3ff306a30b20bd","transaction_count":1,"txlist_hash":"20b7caf43b34f595139545c800247b16da6e00b0b1162928670c80ffc2cc773f"}',0,'BLOCK_PARSED',NULL,'87700f442261f7d3a4fa8772cc04af908c6dc635af539792ae80ab2799934e18');
-INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'514b739a4f7d975d0904ddf848c6bff5515fa387e1e5cf9b00ce1aca644ae8fa');
-INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'NEW_TRANSACTION',NULL,'eae1f44559fa70639b86339e16461edd017923133ecdab5567418187e717015d');
-INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','39ddcf50e710d828a186105e786ccd6dc35abf82954baa35269e03c320ebdf42');
-INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":20000,"tx_index":11}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','0fa6a8113017a63f047f728941f3991ecd5e69ac8b0d7693cdaaea95e01ae67e');
-INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11}',0,'CREDIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','945cc8e65e54011a98c121bf05eb9a4a538894465f76b3b3c9850ee4c6e1f8e7');
-INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'ASSET_DIVIDEND','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','184802c1d928c74afb0b8c56391a1df5dc1dbde21a4195955373bd9070e67ef6');
-INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'TRANSACTION_PARSED','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','bed734fa2d57d739c3e85304b80a4d4a71e162dc30608ec3d6fdac783aaaecc9');
-INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"f9c936d3bb4c8bbc20e544d9262ffa3906fbaeca5e4b2e3b241f6059868f506e","messages_hash":"aa6e782f2298ea91fe4708af37be85c140fbe2b6772a66a9f9acb11d0e2186fe","transaction_count":1,"txlist_hash":"47442be955776c7e31fba3f14df298b088192577691c17dced8b14b6037e3c50"}',0,'BLOCK_PARSED',NULL,'da181a9877c76ba80af5d75eaf5711f0fd120197d8e506b0dd4dc7cabdb203a3');
-INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d11f0eb6ed7435dc4f9c33acfd7eb696ad160702b0e3eae53c5776c2f7fffbd1');
-INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12}',0,'NEW_TRANSACTION',NULL,'eec786cf97bff94e3472c3faa144dc54fe3d10e45d9512fb67840874da1a74b1');
-INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12,"value":100.0}',0,'BROADCAST','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','d69175090a9bf12455fedf757bafa92c250e4110571cb0475cca7a5ebdb6bd6a');
-INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12}',0,'TRANSACTION_PARSED','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','8887c2bfefb7c49e4cf4c95948088c5569594d063e91789f1a26cb2540c7b1a3');
-INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"490bfec10bfd72eca7fcbae5887b94ce4739454a82e601dc754e4e9d1030f3c2","messages_hash":"c9c5eded352f3952628122af57f3f3d716beac03fc6058fb7601f90617221fd2","transaction_count":1,"txlist_hash":"8a060a9cc82b497e020ad7af45a62c07110b724282ce0c7ca34ad24584638a3b"}',0,'BLOCK_PARSED',NULL,'c4754c557a980cf61fc5d3454b1048772d1592c6c77662bb717f442587f24ba4');
-INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'072b64c78369e0f550b191f2f5a2d4586a485b1ae10012e6babf2ccdc657f2f4');
-INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13}',0,'NEW_TRANSACTION',NULL,'a5f92b85b87299c9211160b363d06517e3ab3a26c36311b353a39726249b9b5d');
-INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":50000000,"tx_index":13}',0,'DEBIT','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','88fc3571be9cb035e9f8b9d5415babed461223b1b2447ff9b56260a0ca73179f');
-INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','dab9b4ed7e9adaaf5c65401c34a7670b5ba137c16c9573a1b942729363fe3866');
-INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13}',0,'TRANSACTION_PARSED','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','9fa3a5527ef4e0f63084adac13f5353c0c8b2837b67f4df8e8307d82c6dd2f4f');
-INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"621d39c103bff9a76ada332f41e3ad54c89676bb6057f624942ddf28b31b5927","messages_hash":"26c52cc30b3386eeac9bdd91338ea6460559a0ec72b81314f6de852446b881f3","transaction_count":1,"txlist_hash":"4eb1fdd02e0f8ba27b9134ddb7b03b51caf3417e92687c7c1a7b50ce2d52e6ca"}',0,'BLOCK_PARSED',NULL,'ca613166d1316b75b32b639862b224eb97fc97104f210396be2659fa258ec7da');
-INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2cb515b773f956c3ee4281df72aac08e8a12c590065d5bd7e1359a140c833b7');
-INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14}',0,'NEW_TRANSACTION',NULL,'9129aa0fc0f3937e860b8e1b9af97f2072582c49cc3047e2f3d894207d10aac7');
-INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE',NULL,'4ece76c79c28839aaecf80a52b9edf4f172f96c3f4334d6068515727d219517e');
-INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'f99f44aef2e4c61f763a57fd975863e7bb3e034a20cfe69d3cf75d45b213e976');
-INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":25000000,"tx_index":14}',0,'DEBIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','8da73c6c530bc02f0a6f6fd8434770e1ad27559d6894d67d0b35c0a12007bc3b');
-INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','7bdb97b536ab339870eeaf5dfb05143f8ee4255530c0a6ded054d3ece7fccee0');
-INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","wager_remaining":8500000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','ae2e6134363800161d17f6837af1bc65c5c4f106e495347821b68986cc0325db');
-INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":4250000,"tx_index":14}',0,'CREDIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','70d1ecb5e165b873bd2bf184b20007a5760b6d96d43340b91c647df77a4903b7');
-INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","wager_remaining":4250000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','8e2a20ec387ba2d9736179ebf4a600d776cbb8669439c1d5445c4f7069f9020f');
-INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx1_index":14}',0,'BET_MATCH','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','ff9ce2db2adc551f61728c2a8934c3f37cd671d2b2645f4999d493a2e2deb116');
-INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14}',0,'TRANSACTION_PARSED','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','e7e5a57b987b3fddd1007dfa26e61c7f45dc6f291a454272e8bed8304a6facaf');
-INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"7d31be770d6bb6669bcb0a8a5964e57a758788cbbb942d1d3da1abd25b5dd158","messages_hash":"04ac5c161df427ab528946abd575d82c8579c27637511d1784049e1281c97dfe","transaction_count":1,"txlist_hash":"c71d132b3da755134d5305e814129761fdeab1ac933dc320f83570bd5d007002"}',0,'BLOCK_PARSED',NULL,'057344bfe21c78b6a6a9e93a993e95f255d4964de7838a79b05e9161f56ce07e');
-INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c911555462183e7e8e380b454a2356ae7892c6c4cbf64d4b595ce575325ffa5');
-INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15}',0,'NEW_TRANSACTION',NULL,'93b8cfaba8f51aa088c6eff8f5a4801f65da9215b27546f907cb381712835a5b');
-INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE',NULL,'2280a509a117b2cb21cf9a1444a944c5d5b1dd68e8386fdbe0ae3d1c026e21af');
-INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":5000000,"tx_index":0}',0,'CREDIT',NULL,'5fab9b429835bb659b4df158ac247b9824923efb22df06b6c312cfee5c3bdd44');
-INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'99bb653f1cce254cf5c84da2506bf22ca76b6343e56c1d90ca124caa955b9f5c');
-INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","quantity":150000000,"tx_index":15}',0,'DEBIT','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','56f156d3beed23fce7be9a5609c85c224f9ce90e53805b99b94b6de5b517a0bf');
-INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','76755a65d00e3399dccf663cb1d47a6af5ef1b1936ef48ae79b41a5acb4cd2b1');
-INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15}',0,'TRANSACTION_PARSED','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','3e359447ded61d0d813ca28f03a8bbcaa23c19b627b9cd52cd41d2b6d57a9aa7');
-INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"3aba9622f8de243bcd5e6a5c88fdf04a79a52d95bdc1778d57586b13f30e501c","messages_hash":"6955a89976cbc97716f4f2a189d22ce159a4110af396e660f85ab6e688c24fea","transaction_count":1,"txlist_hash":"d7949a992d062d2eb763b2bd406ffab07d7d676e3327f5e38a4a8a4815e97f35"}',0,'BLOCK_PARSED',NULL,'c607aa5f429d876ac751ac2ce950a78a7e822889a6ce03b86a39c46426c6024d');
-INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca8b0f5f8002f0feb484a562b6ce328315e9926e87bbf34ac8678b25fdedf8d6');
-INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16}',0,'NEW_TRANSACTION',NULL,'48535dd5d2a4860bbebf4112fbd506a3f0c638679f754d2c9e81f8295919d719');
-INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":350000000,"tx_index":16}',0,'DEBIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','30bbde84905c50890ded71db9c323b6560b8bbf2dbfbaa3877e6f1dde65e32b9');
-INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','65f2fe1a48be5f444af4ca6a0d2ee0d7047e99ebb66ff0af1359adf1f73ab173');
-INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','45975ee58c7d58bf743a72d16c4a7d5f975b0da094aed4717c1e1349aed95a86');
-INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','6d0fa6341732bcc48e6c12061f47fec0eda546326a3838f20bc8853e1d54139d');
-INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','337025b60bf68acf7317877a5ad10195eb96e98c76c8762e12ecea55ba52e7f3');
-INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','2c2f53e1b53823c368e3e4a3596dbd5aa8c7c444b5d7f0c2016c2b80005d0866');
-INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx1_index":16}',0,'BET_MATCH','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','e43fede5f2d47ddec38771cd8d78e9478d6b03f3b2075f788839a2e1de90ea4b');
-INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16}',0,'TRANSACTION_PARSED','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','3c9fbf3bc1e7dd598551c4d509c4b3d07b4f35f2f376145c0d2a394a544470f9');
-INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"342e5dddd2289d3d6e381fade13e5a5e3ed27615b89bd8e06ea2bab8f8b48be8","messages_hash":"710b39597c7c1009e186eb15450bec99878edf95af9935ae8ccb2246b6b6728b","transaction_count":1,"txlist_hash":"5afdd424176b977bd7b0660867d92952a9cec422a6861c62a876a10014807084"}',0,'BLOCK_PARSED',NULL,'4d7e820218cab24998acb4a0ee2f8c2a183c0e61c15fabb00a4a21891121f64f');
-INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9285cbe7ee179d102d39c9b29b9c9be40f1dff7ef21d7dfd9edc91b8d21e5702');
-INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17}',0,'NEW_TRANSACTION',NULL,'642c95aa510878506f174e89932d993616f1f7279caa07f33f27935751069b0e');
-INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","quantity":750000000,"tx_index":17}',0,'DEBIT','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','025191720dbcd6c1ca982520e2f5078ebee75fbcb407b286c211fb6835a9ebd2');
-INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','fb8b340f6f3c3e4da9242ab4ecbf3e5e6c3e9ed72af147cefbe1c012ead4cf64');
-INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17}',0,'TRANSACTION_PARSED','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','b803fd96cad87059a4ed06d526fa178f039817c5ced2feed1751c82c012c8c4b');
-INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"51b904e6b18ce4d17bdc491457036ff3a4ba70789ae929862844e9456c3b9b01","messages_hash":"068b8aa01882c57eee33d9c970b47032d3977b9a5c3c5f96cbb96f10a7209706","transaction_count":1,"txlist_hash":"d74711d3af6b2313835591b58b1ff53bc20bc194922d10a60cb1274ca632e153"}',0,'BLOCK_PARSED',NULL,'7477531daab6093b32a3b930815a12bddbf9cb57b3e3f1e2377f5c28fe9d16fc');
-INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24d6364d3bf47fa7430067dbbeb6117198bc0bdc24875b239fde4f24ad34697c');
-INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18}',0,'NEW_TRANSACTION',NULL,'5f9e8ba98db031533d9842c79e28cb81b48c4e2ef410744b7dc450b7aff169fe');
-INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":650000000,"tx_index":18}',0,'DEBIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','6301e42b681039178c38f3f7d7bc79c253c9e4a80682a4259a107f74574e42d6');
-INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','a209a162f998c9ac43b0d52dd6b4bb9c3e54662f2ba5a8c232f19d8444ed7ee5');
-INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','59bef5525199e5c9ecbd5a91c8bacb28420d95d043e518b037a5eeeb2aa924cb');
-INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','49e11fbce366c524e4e66fe32df5349f0e9282b58de7c3fd895165717ddb287a');
-INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','92cbbc4697d16814eb83c7036395e9aa2c3109618b991eb980ce2689a9c37bd6');
-INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','dc0033c6a4bcc53601820668d6dcc2d18e00316242184b5ebae30ac6c4f62414');
-INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx1_index":18}',0,'BET_MATCH','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','3c12f62ab5054ef762454298848262f7813a5434011f28b7ef6b11b614fd25e8');
-INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18}',0,'TRANSACTION_PARSED','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','6085a9cb4b717d394b786bada4338a72166221f9e65012a41dba39f88b8090e6');
-INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"03a60654bc84711524cb38171f6573acbe8cc2120787bd09e5ec621b2f53929c","messages_hash":"795d00da46b3c5f0d16ed694ca58d6aff3cb42c8e2f0d08bfc77964b5b451cde","transaction_count":1,"txlist_hash":"bafeaf2f42cf716cdd586e1aea74504257d170275022dfb2c11863cdc33d3127"}',0,'BLOCK_PARSED',NULL,'c285bd5479cf58a87c9511f8ab571e88c55f9164bdc61a27bbb1e9ab3bd7ad7a');
-INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d087adbb71172a3e4b28e50785e5aca0c27028f10145950c2dbf8c9ac3b541c2');
-INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19}',0,'NEW_TRANSACTION',NULL,'7d911ce2f886d4d906f806bbe02b142b138839f3900123e0bc977ab6ee93b065');
-INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19,"value":99.86166}',0,'BROADCAST','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','996f1b5896c800cc9f2342109ea5cd5d16f2c14ef0c9f4f18baac3900da9c689');
-INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":59137500,"tx_index":19}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','bebde875c98f9239fdad354b372acfe845684c422952cfd2544621594ab909d9');
-INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":3112500,"tx_index":19}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','323c3ff3267b0ff3a5b4a8b2e3127b8b4f440b3e5bb521b84b224bbddd6d70d7');
-INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','1ccb38e36372ab34bc06df1bd32275b855b1fab7d88bcdcae0f3806a534c7aaf');
-INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','a9744d577f2d94480b81f4048e9c8976259d738a136736ef8b6363e5a6a9d5c6');
-INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19}',0,'TRANSACTION_PARSED','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','e409d8e29a4c9e383fac0c7c1130a1fdf5125b3c7483e12d32a371e50c7d529d');
-INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"a590602f34163cf8f880c3620f07a8cd27b9aeba8fc80ccb201d88364eaed210","messages_hash":"dfd585d1c8707912ca3f03923bc4e50cbbbe5a8e4218caecb73df3cb6cb4fd5a","transaction_count":1,"txlist_hash":"930eaaee66936628f4ac02f6417167100cc7e2335aaae56dac78cf2ea81bb172"}',0,'BLOCK_PARSED',NULL,'b61e86406b38d9d4cf88b8849a9b50332d4058cb1ff270fcc65b28d18fd33972');
-INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'087e332e32b1f64a51fbf0254b69b169b01fa80071e49e6c56e54c8933cfebbc');
-INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20}',0,'NEW_TRANSACTION',NULL,'a6c73a4e2e8b4381fcbacff4599eb3369c474f7d92ee0bd0f8d78e134b292091');
-INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20,"value":100.343}',0,'BROADCAST','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','e5663ec29ba47e4faab63fd6387d85fa0290e4d612993327c784f96f5ebb0774');
-INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":159300000,"tx_index":20}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','6980ceef1304ed8be22b92279636fbc02e0fcc7a64f36b2f8fd8a8569894c046');
-INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":315700000,"tx_index":20}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','2b811b6e4d93e726ab7bedeb400f02be8b1d85a3214d168bff5a60d1677b23e4');
-INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":25000000,"tx_index":20}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','2aac3dd3fb8db1fbad945eec07a672a7414b9319d51effe27e3f0b5b1a37f58c');
-INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','39a6c0fcf79447d96a7d3bb57218bb06e98f47c9d39a90df9916abee97a1ad51');
-INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","status":"settled"}',0,'BET_MATCH_UPDATE','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','bd82906fd261792f83c9b1b917ee3709f928a10cba86793c9273bccd607f3dcd');
-INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20}',0,'TRANSACTION_PARSED','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','790c15247027ed00df5c72f82cce3a0d63dfca6a712df787a2a26e4491b905a5');
-INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"1b340e7abac4c458e6a0c6ff2abd6dadaa2913414f450cf926725b5253210950","messages_hash":"16e098173f2f2fb61b8df304c27cc1069eb397263de2262743a57426e05a8152","transaction_count":1,"txlist_hash":"ba496b27fd545d9d811d7421c6f9663e68aa9dbe3a7b5aa9d1ee5644cd142b4a"}',0,'BLOCK_PARSED',NULL,'b5ea0f0066edc1893e9ecd6cfaebd30d40cee7ba232cf9dac5f2ee1751e6a269');
-INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0495d07a6b99cd825b5f956575b64a7d871d4005ffc4ba9ee82cb41acf52237');
-INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21}',0,'NEW_TRANSACTION',NULL,'ab8a8f2ab7696954a83134b6013795bfc1323dc7696a64ec344cabdab53ee42c');
-INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21,"value":2.0}',0,'BROADCAST','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','402b9438df300d6fde1c8ce7317bfed51a79b3a7195e841b412bb16f22880314');
-INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":1330000000,"tx_index":21}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','f5f02bba9c3b7cf0922589f18728ba2370d2e4ed8e73d10a2024cc85b994f74f');
-INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":70000000,"tx_index":21}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','eb08486b2f1adbcf7bb95a891b78f4c7f18bb3194aed14c2cf34c52bdf70f69b');
-INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','f60de1fef0b2bc66b17f89a6d256de2d49a8e5da88f2cb9b51848b858d038d4c');
-INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','e883ac272c60bd24ac46fa6b3400aabb5f0e2a622f2ed68748658971a8631c19');
-INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21}',0,'TRANSACTION_PARSED','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','700c2ac2605d02cace40386ab90b112d970ed4cf9927649ed989ba5af43eed9f');
-INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"5a5a31ae9b03a362b44c9e38effadfeac273bd370374ea4816b8402d6b8a8a1a","messages_hash":"27297409f25155cbbf6c84b665c6d0375c5e964c279c111df35370720b9299ee","transaction_count":1,"txlist_hash":"be94a40c259a5f9e2ad5cb714089c4be18de7bd6d3b403f3a4620f4d889ba4ed"}',0,'BLOCK_PARSED',NULL,'fe66cfaa3005fce8fbb08804b323a93589b27e93ff836c1ccbac4484f8461023');
-INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b92fa682ade1a50546810bc1daf71ca49adc4b2c1165d057c4617a0493dba7f');
-INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'NEW_TRANSACTION',NULL,'dd0c3e219d87bfcf91c3036b598596fea0fddb0228a813199e76c0fd7a8bab6d');
-INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":22}',0,'DEBIT','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','e864a199505fc156a03946bb1f54089eb982a9e27e4da345ec8315aabb4903bc');
-INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'OPEN_ORDER','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','3191673e119360a86bb2cbe32d6b68a8559c5848d720065659a0e65ff28e6b90');
-INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'TRANSACTION_PARSED','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','14287b6d8b3076f91dd91e264948e142a94dbe5f061b78f31d081964e5653e11');
-INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"2005a300856ccc74efe80c56927fc13619d5c40ab03ae4ee4fba2050bc2a6b75","messages_hash":"dad5bc884bf7ba7bc454bc0864ce114a1faf785f6cf500fc4df296130ac5d56f","transaction_count":1,"txlist_hash":"afa68f3f9cb6cf8f767075bc9119411e146b6838278d884868a80d9c8e80e26f"}',0,'BLOCK_PARSED',NULL,'79df2b61c46bdce6890f803630e77abead50b557d40071e3be673ec0016eea2f');
-INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e4e0b777553390beeee6d0214037b86f139fb3659abfc039155b97e84431bc8');
-INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23}',0,'NEW_TRANSACTION',NULL,'ef01440add43eacebb810ad5232d3cc29c4b8117138fb89a1c872dc9712b8037');
-INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","quantity":56999887262,"tx_index":23}',0,'CREDIT','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','1889dd1bad0cc1868d83bb9757d814486b970cd888be3df83b8beb776ab54ce2');
-INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23}',0,'BURN','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','e520d0cf917610c176babea5478c69d0e37e59a2e955383751a1e00fa864ad95');
-INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"95307de52e23a8433143d79710e7df22ba7205e2651c88a2eda220ebc8e0f289","messages_hash":"36fe7b2ad4951a9900b5bbf451e10101d5cdd8ff33d4c40eb6e253dee2e8e991","transaction_count":1,"txlist_hash":"66f27b0e46d782b3e7eb8207ba442131069820295ea19ba9b1f8be5ae5b1367b"}',0,'BLOCK_PARSED',NULL,'78555f8df21bcc7954500952d0fa210698a679a15999398824b20785ba81256d');
-INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec2106d2f2cabb39f15189d6f0d114934a40d0e674d712f10070f594542bf63f');
-INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'NEW_TRANSACTION',NULL,'4835b4f4ec02cac66decca785e19b20e186b76aed98104d844bf6a38ec552c86');
-INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887"}',0,'BET_UPDATE',NULL,'79bb170d000826d1c97578494842f699719be509b4d052086a8cd73fe844d937');
-INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":8500000,"tx_index":0}',0,'CREDIT',NULL,'873094bf1c20b15c0885dd58172a4107a5c77319e0ba8cb14efe86046b43fa84');
-INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'bc8d75faa61b33bbac91ce0566bc2bd414408bdfa680e25aa4b84d46194715ce');
-INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24}',0,'DEBIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','d06bd0d3211bd0325d15685f02c84951660a71b6665d29fe77b22d3cd9fb9d85');
-INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24}',0,'CREDIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','9630c67139f7e36cc84e53394ce335700bf85542746fdf672782ea6610538e16');
-INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'SEND','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','30b9f5435031fe9f1dc68c151ae8fab38568a659a84ebc25c6d44f920697b788');
-INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'TRANSACTION_PARSED','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','2b3bcb7c51ad2e05c49fbd5e000bddc924947ee8e1e94e5c28fd0bcab97c593f');
-INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"de5a22c228bfc58ceaf428d55f180e951ff877537ef463821ce1206f07ab02f3","messages_hash":"f8aeac00fb3c7b32c574f4025dd01789ea804d7dd61ab5e84fc8f0536d6fc923","transaction_count":1,"txlist_hash":"eda7d728863433b4e738e2b317d661a68d7f8921ed3fcf56120e0e0df464f161"}',0,'BLOCK_PARSED',NULL,'cea6f9f898eab662fad3a0eea16ad204cc50b4c69292dce0cd395b5ae6d0e11a');
-INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'737d670b2d235b0c92d871dffc21ea45571be5e6443df5f4708233709e23fec0');
-INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"e54da9db6c4911087dcfb2824acfd7429431e3297f6b5836dfa8f95165ac9b08","messages_hash":"0cdb6d20ad2c93a414e4a882e78a01188ab03c3b4d20ab23980282d0be6d4ab0","transaction_count":0,"txlist_hash":"6d7b69dafc9e895a4a4b75c2e7ee2dcda352e21b82249074bfd0865e04dfe6f6"}',0,'BLOCK_PARSED',NULL,'a470db9a1cbada91dc7bfd312ad2fecd55864448f476f449f20119ffe738e50a');
-INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ec798bd504716eb4541054609240d41c91d1424e7ff948f6fa2df0bb6181445');
-INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"dac63e0e407785c7a461d839ddd749f020f8a33026cd6ea2acd659567a36c40c","messages_hash":"3338a508c7799481dd961696b5634afa3f7caafd82114c09f35903a0761be969","transaction_count":0,"txlist_hash":"fb8e2f9f37cc8ceb72b92925cdb86f62af821bbae196e5de5083d784436e26ef"}',0,'BLOCK_PARSED',NULL,'bc1e91ffbd955d7e6fddf407b9eff22385f2ec52bc07114eff4babbd5b208c14');
-INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c2e41a0d5f020ceba4b0046b90d33b29e9668e62a4f6feb6485dfe04c15d460');
-INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"0397b7da62fb672aadb96fbdfc37f3265ea04c4d401632d5d9018b9b0ad7cd45","messages_hash":"49b57bea36ede566bc2f0b73007114f2979075d952326fa548ea7589598a8648","transaction_count":0,"txlist_hash":"35f40cec8ce2dab43b642668fb3baed3654b63a328ef005e41c8772cbf02029a"}',0,'BLOCK_PARSED',NULL,'448baf10bc341196a639c2260b91d18aa9b6bdbd016eeec62f51f99dbf0f22bd');
-INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f98194138953a5a35595e9328d462752d8b75573a86e03ee51ee096aa29d845e');
-INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"dbe43e77c383acc66cb46105991ed066ed5309434016081c26ca1a7dd948b6ce","messages_hash":"c9e442648e4c4070ad2b42eb492b272dedb0fbb261625d7a1400a36c1ab469d0","transaction_count":0,"txlist_hash":"df94b526dfa87413c5d4c11024019c28dd94051780c00b433b28093788b15ce0"}',0,'BLOCK_PARSED',NULL,'92cb8a5a62682d6cacd684db0c0b404a68d9be8968b3329026d08721475c9db5');
-INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38c8efc094209c1e6129a0730e79182aa6adaf8c318712ece52db0cf683ccbae');
-INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"ce1021a584895988014f16dd9f7b7b29bbe59ca8a761914f60c9290b5ec6a16f","messages_hash":"d7e783156e45f96a55b90a5d0b0986bf47ef91b509c294a3c8369df38b32828e","transaction_count":0,"txlist_hash":"7d8c18a5d7ec2d6d87ef468e4ed6784e9d41b248bd3d6754bef8f6bd1df9b9f2"}',0,'BLOCK_PARSED',NULL,'75ecd190aed43dd0e644a826910d9a762e9812352f6d9095e8a2eaea329e9c8d');
-INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abf1c0df34b9a30e7689949cba46acdea81147141879878b2764e8f5d7723b88');
-INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"4a066ff12cf6f8dad894e23cfbb4fe6a087893b717b3f0c1ec53764b1e922bf4","messages_hash":"ac70e12d6f22150346bb4773fc6439f402a2d5ceb618856bd234d28b475d0917","transaction_count":0,"txlist_hash":"0dab776748029f3a094e8c2ad8871c1771263f81cfc6de79ded15ff475239371"}',0,'BLOCK_PARSED',NULL,'b1b3395901fa36176f23c13a58f4a18d53242b69daa7b230c0df11bfa40adc07');
-INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'315ea594b64b7f88662632cf9bacaaa0ee124597a259222ae86ea7d1d9b9a13c');
-INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"be1cc89117e7cb3fc18eb610103d72f144c31848da4d8001c334aac577f19427","messages_hash":"047e32ff2ff5dfd5356f783809f796f8816c8d5e620d72194126a3277b814783","transaction_count":0,"txlist_hash":"934400af42a6099d1279e8fc2700bfc118bc313da8383d06892521a17663ef73"}',0,'BLOCK_PARSED',NULL,'226951ceb896093030cf63026fe3a8c3b069d461f87d62bb8f07fee35da1e90d');
-INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd5c137008a4e9bdc15830d8fe3fb4729cb1b299ab9cc24d80ef3ff9ab3718a0');
-INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"a616b3d81a1ad1db1a9b1491b06ff6bcead9037f75552d14a4c7234b6ff56670","messages_hash":"f84fea3613d29a2ae4189da93688bf73179b5ca9ca98eed91009e003f919a931","transaction_count":0,"txlist_hash":"b45534f04aeeee6c2ed877085eac7ebea9f7eacceb2026e5ab8a34ff715bc3be"}',0,'BLOCK_PARSED',NULL,'21a8bf9edf20e01c7bdcc370f689ddf6ee71f6fe7370ce7d00e38698528fdb9a');
-INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b07511fe04d40bfb4aee4d97e1a528d4ad3d890237022aab4be8c9c9e5c997f');
-INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee"}',0,'ORDER_UPDATE',NULL,'77366fb39a31dbd4490ea108093f8699b61d324d26945d1bb763ce47dc566c6d');
-INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":0}',0,'CREDIT',NULL,'dd1ca48b0eb38db9d70b4bce4e303f6a6c57d4541e9b000fcc3ccb851cf3ed60');
-INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'86fc0525f2351d0388fb3800ce124b3e5045212810648e7bc4d9ffb49688e512');
-INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"e7e76fe32ac5c06696c0bda815f29f1e0785a9d48641615f2ef78fa9982d258f","messages_hash":"2087d0657082953a749135ecbf8ebfc3659f774ce32c3549d0064fd0474bd7a2","transaction_count":0,"txlist_hash":"b8261f9bd73b90fef96702a2e83111c3b9305e55efefae86a4078d99ce8c3d0d"}',0,'BLOCK_PARSED',NULL,'b1397845fb1cff8cc410c9dc33eedce8efcda14978d3f8945f5e5ca5a86e0390');
-INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'553dadf4a328884b8b0966fbbf29b39eee10a121b8a8556bad446af0a96fab0c');
-INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"f0d33d2f73f83449c18b9a7bea43857b36effa24eb248283d9356c5280e4992f","messages_hash":"fdbb2f907b3d0a7f263f6fa913d39624181ac3bb69d4abfa9f9907eacbff4109","transaction_count":0,"txlist_hash":"bd3133719a6698bda726f9304fa48db5847cc475db79b879d2566da3cc7299d0"}',0,'BLOCK_PARSED',NULL,'5c84488d862ce0f62ad19287ca13a393f094cffd1379ef665ceaa943e06584af');
-INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fe72e15cdc6c0834059a95a8fff0e5b9759afded30e10408dd4b1b18805936a');
-INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"434d631a1c3ef7d31d136b4eab8b3044dc2b65886bf43642537cc592db0415a3","messages_hash":"c9d7c4ebbd0bf9570081d316d219a200759d9e0c820dbd96ffd08ee0ae2550cc","transaction_count":0,"txlist_hash":"eea570d87d2e343bcb9b93764aa9bed952588f4b053d13e87da410b8dee27d7c"}',0,'BLOCK_PARSED',NULL,'310363ebb909c7bf52f9358319ef7e632a627fc7dee30209447078ac01ccf3d3');
-INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b29ef81e7a58d2ddcc4093142e4b4047a3fe3a2a515c63ab22fb0147343d7675');
-INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5ca42816d9c6aaed19f6d25cd02e842b5d834254f90a169630544c83a129c7e5","messages_hash":"e69e7e5d53ad6f4e017b29ae535c181f961c676bf9f868c2712b00a1b23d3485","transaction_count":0,"txlist_hash":"c827847c2f94718cd8c3efdf2b30cf9c8753893a76590efae0e30c61ef9a2d4a"}',0,'BLOCK_PARSED',NULL,'f8fae191c83b185f38aa2858167fde6cfac9941ed479b1d9fb9350770972e46f');
-INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c79fd00df65005e7e219dcc27592e8b37a8ec96f1d163836bc29ef4d85264624');
-INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"31aecb842ea816f98aead90fed7ad005c010919a2ef2c5d7a8965b71832d3201","messages_hash":"7714fff105a6606c2e60c25256d11266c90d628e9aa6947d2fb2ed9f873835ab","transaction_count":0,"txlist_hash":"5a69c5cc5e4aa7e7d071da7ecf8cff88740a707f70ddec29c57ee52b3da09127"}',0,'BLOCK_PARSED',NULL,'864f4e7cca18f4d118c00abab7b4801231267eea181de20f56d6875456a0da5b');
-INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7b3627e45596e4a235f672bea346633e0611748e5f3e09e565dcf0f948f9282');
-INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"7a3167eb2c8a80c7c363ac47200ebc8cb6bd53f57da64465bec14bd86cf2c6c7","messages_hash":"6baaa9f3a19f84c31e3ae3be04bfae441a1073cee975d3e6a2dea97b94904808","transaction_count":0,"txlist_hash":"8bc588a7a9286c3f5c13bc31c0faf29f155391f14ad89defebe3d0a0b21d049e"}',0,'BLOCK_PARSED',NULL,'61aa4e4be2d8df42d3680a2b59dcb5cdbf93cb2d9df9f164fb181efa95079314');
-INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f67eca110398d62f8d72417efeb326518dde6ea95ea837ab92487933924ed9e');
-INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"212bc51956081e57aa618360926e186824dce8987948ee7706403451ab417a0a","messages_hash":"2fed45c6e0eb8befd33dfaae01c3121fbaa17a33fc8db9e7ab32f2a2c8ae970a","transaction_count":0,"txlist_hash":"77861a778f50d5f8314cf4caeb6a78539702ee5b36b882713079b88143d4c6ca"}',0,'BLOCK_PARSED',NULL,'8722aa31b31246ff61199d3e966822f7f479166265a411da4f04585effbb4db4');
-INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63d293e452d689ad2f8b57270149e5bb957caa1e79c29eca1132378e8a909c43');
-INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"03e72d7551164403b41956638a0fdec8703c29373ea2b15c770717b0ec39fa95","messages_hash":"f85797a2335bfe5bb7fe18328e1e199a2c576284b6cbc402b1089c18e7c19319","transaction_count":0,"txlist_hash":"b445575b555d0621a37fc3f9f22c113126ea35507703f8885294cb2a4613a6c7"}',0,'BLOCK_PARSED',NULL,'2ec8773caa0c11a1711a950a4efe306bd45b1df3eac9f9f4ca6d55fb2d71e8c8');
-INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d21401a2c668c53a956522b2e69abea0d96bafc1949fe92a35ebf01c4d4c119');
-INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"922aa744aa0c08274d1f47a0f80638c7937ecaaf95555e68ceec09449e60d080","messages_hash":"976d3bb7ff94f02bde2563b09209c79d775221e6c6b2031b1c202771b499b773","transaction_count":0,"txlist_hash":"d46179d869f330c786bb81e0c122952d33b264f3af2b4a70627764332cce3fb7"}',0,'BLOCK_PARSED',NULL,'1bfc837522b3e9ce248a4acd6599db68b9cd99bada7b222e3a948ea9b4157cce');
-INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a520dd543a329fdbffff664170bd20cd5074fb11868d07918a98d56be5ade83');
-INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"de422fc7f3f11d20b697e0ee57afe101ddeb5e84105153a3bb10f97f9c3f1783","messages_hash":"46b89e475c74e426ff35955880806d687cca7f89f6237980a9b2fb481790947f","transaction_count":0,"txlist_hash":"d0cef146e488d50917e659d8c039e7304a41d239d2330947d81e49d3bc7aa723"}',0,'BLOCK_PARSED',NULL,'3340a8313dca6d5b0c6efc542f8f0fa57fbb631fb9d360870fff4fc72693c73e');
-INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbfa1af743ff77b1cfee7d7d99a5a701e86d7ccf42f24af7645c53807f3e469c');
-INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"82d7c9a0c9d63c3f93b125a9eabc2a7b5f560eccc5fb578d71ec071f150c8fac","messages_hash":"6beccf09f1d28e3b1e210b39e233b2550bc5084e26240329d1a51907745a9ddc","transaction_count":0,"txlist_hash":"68777d56b0179c05517b00df97200e16079b34c54a270d598c28caa4f39ea43b"}',0,'BLOCK_PARSED',NULL,'36635f88ceec0c4b1524dca3aa6e1c31899401d591b261cf79004dbb075ac320');
-INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cedf913584b75784d6481d46fbbd1646293f06a884f4da880e7639552968bf0c');
-INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"c9232d9cfb183cc9bc09bef78f7c83bac3d9af803e6916c9b14063c4f619d9e6","messages_hash":"bdaa43efd672607af77b4b40f439f6aeaed1085617186e1acd6801bb61f3c0f9","transaction_count":0,"txlist_hash":"728975e1d9ed1caeeef47b1b8f1040c3d1ede182cc47282f32f2f464071057b2"}',0,'BLOCK_PARSED',NULL,'e8fbd5a6ef1f1c7bef6a32c70f4e64a2d53928ba1e484a3815e19eb31be76eea');
-INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'995b29bc4de72190533a34091ed6216e00efb72586d934cd07dd376f81cb8191');
-INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"71c3e7aa2ad71e35b752dd4e48381b4ca845c370e5c340f2a221dde808966a45","messages_hash":"66199cebdbc88c927c1f33af517c8f679cd75a9c1d3179e75230b43ca181e447","transaction_count":0,"txlist_hash":"56e52a1e4cd4954442f83c421e7b8c653e38cd7725d6b140a47e74f57df2c169"}',0,'BLOCK_PARSED',NULL,'55d9dc37c556a07f60a0366b7c03e052fae5f4de355e0c52682994bf83c6fc5d');
-INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef1a190f53c69e49e82f50fece34140e3b74ee3a112bb38bb805f2b78df41204');
-INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"47230be2ba96e7adb6088b18788b52a65aa48183c2c00095b79999f5ea1af514","messages_hash":"e2e6623c734a0f965d3897a10844b64d4edf09be17ea873645a6f11f736e9123","transaction_count":0,"txlist_hash":"e8b8a81eeb5c9a9fa6f19f6d9617c7c8e1d19368725d223ef270b74b09b1a541"}',0,'BLOCK_PARSED',NULL,'ad3fba5faa8481c949f91ede7333ce47f4849af736cba16a5b42bf9530b027ce');
-INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a25b4e28928456bd12aaafe6a588332856f807e98f9dad23758702ec21cd379');
-INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"2c306c41049fba2e58a07b5d14f930bcaa465b2afa4df24d8a887958555f0c57","messages_hash":"a4f142388df842e3f7638bba46fa8451424281206af0a37977a5489d032cb40b","transaction_count":0,"txlist_hash":"3ed01193d67e5b016184cd322ca01829a616ad7f7c98bdc034c642ab5c37938d"}',0,'BLOCK_PARSED',NULL,'833895e87dc5de76968e18aab81da05d22771e9dffd9ae13a14767132e790a86');
-INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d48cbd4927414588c911135ffd058e9c6b4b4ddfcd91bae14ce924c4b38e5121');
-INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"95a6325dcb8b9f7aef9da35bd20a46addef23aa5c36795beccacf992bee88d28","messages_hash":"0f056aff130424174dc02d66a0359b0ac135228727e1235bcfdc8c8de90ec17c","transaction_count":0,"txlist_hash":"730fe6316784de4a36e2530b3935fbbd2e1bb9c876c61d0cc436f86a103d6655"}',0,'BLOCK_PARSED',NULL,'b82b17de8b192ee2bd56f3f6db82445dc4773e3e66ad6c6cec07ed5e817899f0');
-INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d4bb0ff71b274dbb671e15034bf6375948026548dd252bd9bb3a05a289bb3e2');
-INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"8811d6a6b22ff3e0ecf399dd20a28a17ad000e99b17f90e63e02230ed42cf260","messages_hash":"ebe06e76bbe19b578653b19bc7dbeb78c4b133028ed77cd51e7f5f366a53bf94","transaction_count":0,"txlist_hash":"a1772d6d909c4fd092a9e511c2f0425480f61c1f2a3d513d973a15e587c47a51"}',0,'BLOCK_PARSED',NULL,'6e823d9b2f440c151e0d76faa63fd2adda3e2fd0599bc42e26e78a30740e5040');
-INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17be92a686e04771f3d2650258a7c0c2e47844209d967fc159983eff4dc58e38');
-INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"4bffe3d3071cee255f64108bd8b97652f06190cb73caac5bdc4ef61d3ff9ecd6","messages_hash":"cdddfdb873c4834f4250cda22831636cab7c724f678da6216fd559b80a0e7ff7","transaction_count":0,"txlist_hash":"af66fd2b113c2349077f00be46a1cd5629b2ec39576ae16ec004249438781905"}',0,'BLOCK_PARSED',NULL,'f3a05a8f640e69d68ff60e114f8f8aa89840936c26f6291955c3060c7cbf284a');
-INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73baedea6acf7eacd756936e657909a08659543c626f65b365d3f864d12e5f03');
-INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"b00d5001e914fde448457f3b373637385114eeb07d79751241f4c1f50cadc050","messages_hash":"82992ff8a610ee881b81bd88a5d4a86e5010062bb0faf06cae1eefe2c6769249","transaction_count":0,"txlist_hash":"64149e5936bce967da53b587f07492b64472145ac66f58c1773a4df324ced96d"}',0,'BLOCK_PARSED',NULL,'a61cbed5f935254b8a6054772b1c40266a4f58b1c9bb319639f3eb662fb3fde4');
-INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d008822e92c65197fb582ce761f5c4ab03af7afcafc913195a621b6e5d7edb6');
-INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"90dd8fabe43314ac6ab6f5485275a4b1131c232a1e9d92395fc030659873edb8","messages_hash":"8dd7a3b1ee68d435cf5931e578e166e91e9961350db22909b6af5fefd5c4442f","transaction_count":0,"txlist_hash":"71f3161707a90feeb8b8e3340f47a9102c344b652ff70760aaa1f7b3bb30a14f"}',0,'BLOCK_PARSED',NULL,'6efebf39a2f13731af9bc747cc35e81bbba7addd215c2b4960303725b0dd902b');
-INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'beaa5d57b79e764d1f01f762016f5b30a069e50306c8003dc991644b528f8f7b');
-INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"923848bdc7906ab89898021e05e201f69305087b12803c459f066f2d681fe9b5","messages_hash":"3698853c8fd4827d29eea3f3c530f1529fa5f17dd33dffaa19be81d9f30511a6","transaction_count":0,"txlist_hash":"de443d5cc1b054f4cff96f616b234d91b0b5e3712e6d72e64d564c201b7cd757"}',0,'BLOCK_PARSED',NULL,'dfe09fc80bafc09d9943f7fa6258ec742ffb49fb15912f8e87a0481ea7d6ae84');
-INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'629be23ad4ea278151e971851857d1a8cfd4b43b8e40f72ca7ce17bf40ae3a08');
-INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"e5ecdf8c0a2166fa8fe25adea0d374d34131d29a3c901868fec579eb20a5a930","messages_hash":"dd245b141ff920a732dda71cbc156cbcd1047a88e56724aa897e88f63a1f0af1","transaction_count":0,"txlist_hash":"05b8fe3b76416a506aed1b000e3649af38e59adf26cf0d168c5e84112641ea6c"}',0,'BLOCK_PARSED',NULL,'7b4e6d7942f68c61c6ba277d7ddb4b3580ca76105231a166c4a447aa1e04c3be');
-INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cb705eff17753f9a410c9a8448f1af118421c8b3c71890213975a3ee4d1f382');
-INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"03cd75c14bbe11800f4d436dce93235787e2521a19b1d5a90796a5de369680d1","messages_hash":"17cdd1a908040ea3a4f92093afe9b9bdab12daea6436a6c00994b04481ed082d","transaction_count":0,"txlist_hash":"d8edec966eae31778588f68b7343dbdb4bf878b30cb430246b04ebebdd9e43b9"}',0,'BLOCK_PARSED',NULL,'d4b573f1b2bf5c1b85f98691e264c84aa648fa2cf314a126b2b3dde0dbc010c4');
-INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa1a9f3514cba136cb1e1f13c1e630416b3ed639b96dabb5f044993cd556dbc8');
-INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"7239560704ca831dfe90791f1cd21ae1f1506275cf6b45933676be9b096d340b","messages_hash":"7741ea70459b2a66f6dd9e80dece0be8e2c70d9bf2f4a35a7e25209afc693168","transaction_count":0,"txlist_hash":"1294057c4f21c98f97d10d96510ce83d0e8d348d138b3caa2c76ef1be47a3c2a"}',0,'BLOCK_PARSED',NULL,'066d841d964abaf937c99211b5ac8d612d4cd20f3005df31c3871e2f2387d8d3');
-INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'452a49ecd49b815af489aecc95e460849b668c407ea9271c0b24790a3bc7eb48');
-INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"3aa4ef8714cbb71c4f0b052dc7ec7795322103ba7b8361db3f33303f564f3815","messages_hash":"67c95d8fcaf9ce3998af05392f9a5068937a7f7e2db782fd8398f91d9a8401b9","transaction_count":0,"txlist_hash":"211d0e47a87100167138974db02ac1299bf1b2a1d7b60606b19cecf2f06df0fd"}',0,'BLOCK_PARSED',NULL,'23da9449e6771bfea9226ffec42e8e5754872c6d4a30f4385afd4347b3f1bb72');
-INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b43507a829944513786fa44599528f770b711fb92c10d368adecc5434c6ca494');
-INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"fee33c0a466c580887106b4bb7a8c6aeb7a049c94987bae64f695ae400c4a4a1","messages_hash":"b669486dbace095d0a4d0c2c526e18b2f10e79c415589a782f79734e9b11fef0","transaction_count":0,"txlist_hash":"f851a0d0a25322d5939a5cd2cafc831b6282af5ab81932553cb80ff3825b4a2d"}',0,'BLOCK_PARSED',NULL,'4d13f80b857ffe377c24939a86f680305d3ba505dba35a967e4729db45163daa');
-INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2611e9f46f9b8a1f149ea83244c08ff737f68a22582dfc72f8adc82125ab0e1b');
-INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"94d58bd9a65a2e13c7ea2373e521952e916b0e1d31d803eced96e5c8903aa625","messages_hash":"e7600207187bfd393eb1cbab52e554db20953b3c0e7677735776cd0c8e6fa1b5","transaction_count":0,"txlist_hash":"e959bddf887904cd324ff7bf5fb60380f2c4a7c2b1b4215c63715a59ad297200"}',0,'BLOCK_PARSED',NULL,'40a6a71f0cf9cf45a5491d5fba28c7daf923e6aa8f37a5d152293168c503fb03');
-INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c0a014ab1b5e1432b52a0afc20434123b066f1b8ffffb32226758977624cc94');
-INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"e9c87b2a652d4ef3d48ac74424f57d06dd85893fd542e0784df067c37396b0df","messages_hash":"1d1f6ff471aa4e5771d0d8f5527a283f946485ffab1ca06addec37f8c3df6039","transaction_count":0,"txlist_hash":"ec205004b519cbbc750bcae821effee41789b3f643f90148e8db2d9d9f83ed49"}',0,'BLOCK_PARSED',NULL,'2e45dd8b1015e7ec36d629d5a420b481282dea9eefd41fe4f043764b3e52e00d');
-INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44af281e243f1358dc06bedee5ff80e8ccd855852aa27229a9ce632ac9890351');
-INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b664a0985edab20768aec36096a7b2faa159cef4af7e779ad421942137ee317a","messages_hash":"1da3366346658554be885ca7896d80736ed13f520e7848030de9ebc9acfdc199","transaction_count":0,"txlist_hash":"dec86d178abd72944cda84a3154303e16eaf39e5bd5bd59a80cca27a5ed5887e"}',0,'BLOCK_PARSED',NULL,'f5846258912c2eec7a53e4b548cef4b417478428ef848f0f217e395fec1653f8');
-INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13234cccfcef24d2523ebe080758752b5709dd50159a74d66ed6c752507060bd');
-INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"5ffa5e1f36c5539b2f5a89a6a60d45ec6372ced770d9b0e0e8dfd61edad84c22","messages_hash":"b31533d94983095966b5f0ac4d0ba3996f7bf8263ccddd8e42aef7356bec55ae","transaction_count":0,"txlist_hash":"be052ccd372d556b9b28d0d2b6f9dbfc9b32ff173b71d7842fb6008047a67384"}',0,'BLOCK_PARSED',NULL,'bf6b2509da000a4d020ad20ccbace03be8c795d2aa862501040869483cf94c9e');
-INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'137cd342c9ca66b7d4fc88fa9c69ac68f79a4c6d9ce9587e2400a945186c83bb');
-INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"fc6f9f23c3b8954c7989b0e4ce40087b66dceabc7c0e407ac7f4b397fe2a1281","messages_hash":"657e25d6ed0c9c9eb39155ba6f1e9d205a57ab7015d18a13905df2b3657ce3c3","transaction_count":0,"txlist_hash":"1495ca8eeb434877ce36335268a349709e99811e93f416ccf1f0c98114731824"}',0,'BLOCK_PARSED',NULL,'a73352b855179067099a81f0499e1f7cc6db8a5efff285ebca7d80fbef60a207');
-INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'562805baef3f12eac3e7f49e985ad70ad5eaff62b83fb11eefd28ebed3ec920a');
-INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"cc6c3b8cf2c457b2f6afb5b208f968544767be8b86ca53bdab4224619a03121d","messages_hash":"3f132fc4d63edafb5eb644dd47aaa2af32fedf3a15c206deedcc1d3dc47549b2","transaction_count":0,"txlist_hash":"93d193df39b7340b932b5abd85a027df086e033ff2b18fd8c9d0d03cd6db392f"}',0,'BLOCK_PARSED',NULL,'fc20fb98e48967280f5ba4db7c31547ac24bffba9dd0416467bf38c4abcc0049');
-INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f144dab01707c892be98df5bc5b8822c73c8d486f9e7a7cec098d6736bb29158');
-INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"cc57ac6aec118ebfb03f5113ad1af749522e60ef4ca201d48bd43478cc0a29e4","messages_hash":"22e4ad71319ebf70101939828e606ddd7381dadd77c8fe5ab718ddba78feded7","transaction_count":0,"txlist_hash":"064c03f24da9de841de9f492487de4077b842d6de92366d3fe7ff37d558998c1"}',0,'BLOCK_PARSED',NULL,'f5e5f9652fe47ebcb4b052cd28c77dd524b6373de72ef96ba1c087ea9a906756');
-INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6bde60678d382b5570477000aaa5775b2363d796052a70ec2a3bfc8364f2a1d');
-INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9999be70079c0943f0a00c54236680bafe0c87dd3bb75c982211f751e7ecdcae","messages_hash":"cbd70e755299ba20e886f6aad7674e4a0784b8507c9a15a64fb1403164d6cc51","transaction_count":0,"txlist_hash":"f1196c84f3767cea82b4dfb6a5e4be30f3ed3f53e9b9cefdadf81af9f2b2bd49"}',0,'BLOCK_PARSED',NULL,'61781c67596eb1814553b4ed0e4884a80cba2e490dfe2a056d33b656a23abd5b');
-INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f328967a5a2174f600673bfc7ef1547aa66976ee964ff9129eab7a1dc63efabc');
-INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"efb2fcb7b5628bb99994bc1ada157bf80b4516d961497aa011c06da1523801d7","messages_hash":"7ed9c6fe414c01dddd55faa66d5934f375f8eef87637bfc2c626ba44eb67968f","transaction_count":0,"txlist_hash":"ba6d273c442538389e43b3ad47795d7e61d9b17427d1a1044333f96cafe575c4"}',0,'BLOCK_PARSED',NULL,'a81965bebe6edf07d9e46dc377041ebd5965695789bd6f102f51ba146fd4865e');
-INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'603c46b0523ed376382070ff26c51641d04c1fd80850148c970fa8d78ce87e33');
-INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"fb396fca9af7816f97b22b8bf1b01951e271a75f1a640dfc64955696dc1c0b7d","messages_hash":"5537534fb9d0145545b419b9d01d124fb4021e9a7144eee21c74e633fc995daa","transaction_count":0,"txlist_hash":"20ebf686e5c5a50c0df23ee15488559024622039aa4fa47f1b07dc3967bbc760"}',0,'BLOCK_PARSED',NULL,'576383bd1cfb5bca29ee490364529cc31d293edb577f423c8caf02324002f725');
-INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6751b8030e98f3a6ad8d3d1ae8e42e13ca3f385ff4209f7d4873677fc7c6b6dc');
-INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"6cbc681ed90e676cc507d07120888bd4c8759873a0b9215f721a0ce707070086","messages_hash":"f758fe286e0973f30be7c0d6afaa7c7cc2ffa3f5dbb73dc91ee326cc2d3b0070","transaction_count":0,"txlist_hash":"d8c09411f0c7fd43774558fd6cc9884b032cfdcca63a08845b61293ff52ef380"}',0,'BLOCK_PARSED',NULL,'c32ed727e8784350ff3f6d172c93284e56b6c978dbb923c32e83d8a00bdda16f');
-INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fab78fbb8547cb15713d87c71773127cd3c061537181f403a3c9bca41bcd293');
-INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"7cb734eb3e24e92de8915a6bea42b6ef721251c481ac9ec751cdbdc08e110011","messages_hash":"65a2965d49d850b583ec0574c58c5d1a7bbc3e5c789f143b4505aed318ba88af","transaction_count":0,"txlist_hash":"4f02ef18a644ac564db930818e845496ab0ea3caa34ff70878f0f9f0ef6641e9"}',0,'BLOCK_PARSED',NULL,'eaaa822ced9e50608d753ae49efefd2f0b3a3a2438927360d5b8a07e69ee6acf');
-INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b7135533609cdb006e1827ddc257463c181e9c5a2e8f6a1bbb6155b2a4bdee6');
-INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"7b57a4d1ce0995a938e174e52a096cc9829a0ddd59f698ed04d8b43371a78126","messages_hash":"d65f12404b216e72ad6ae61b04e69c9f4ca01e2f3fdb4f504e0225ac54736ea5","transaction_count":0,"txlist_hash":"7716368643d8c6d26932d9efabb6fd6e574c1b13b8f149363ec4b99d9f405435"}',0,'BLOCK_PARSED',NULL,'1961797c76cfbe5d3a0e458caef7e065f404b7d971ec7f263a3fbf545a0335b7');
-INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da25036532db64edd5e9c96c9d7d419ee9d70aebb4e3ec4dbd3df48d1fa4e339');
-INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"f46f820a64ced97ccf68a56c048459de0b2855ecd4299e447c4b630913ce1749","messages_hash":"5ab53570219fc9bb359c607e25599669bb1595309f563491e3f66bfa31d1f984","transaction_count":0,"txlist_hash":"71375966f9a524c1df04c5033ebb17e4293053f3ecb8e724a2f093b3373641b6"}',0,'BLOCK_PARSED',NULL,'405c9881f96e59471700528b84f84e82d2a6eed353e16497622d7fad276b83b9');
-INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50df97c101fdedec4ae364257f462b6f1c54a3a0e79598f96b690b7dfc61e9b0');
-INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"878239189ae0afa759af5e59db8a17fd17c0c9a2c017384fd2d0ca789e738050","messages_hash":"0552a8f121d1ab0e74a11098bee498faa3e6ca29ed768c5477060ab17ef7909c","transaction_count":0,"txlist_hash":"4ead629f99d32f3d0ef6c5f7ad1bbffa91608d71b815293128461a9b5850ad15"}',0,'BLOCK_PARSED',NULL,'b8c6159ecea11f3c7c03f89650d829ca77758399d85b6e081ec805d69f0c4b5a');
-INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c87db27f5d506ec3f059182d8735361728e2e7453b6435134c1f93ab769c6a13');
-INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d2d86823f727bc075138653a682373a9c76d21d48b5881968adb66042b501e53","messages_hash":"1bfdd70a8a1e5b2bd0e98a38a1d8583b65de45bcfb19b22e88c1c240d45d5116","transaction_count":0,"txlist_hash":"3958da4cebd7670ab3e197b6ff8b5a770dc756dccc1806bdd050513e75e9e33c"}',0,'BLOCK_PARSED',NULL,'e1a84d51ba4ddb131365890f0e1f490331f23148cde53da9fa907945f186df66');
-INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99953e35633201930c0e8d8c09483960e8c87dbe7088ac8dfa5dbcd4c7eca45e');
-INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"9fd098fcc7d71c0c46fc741ea278de92589c44a6efc4980ced53843193553ea8","messages_hash":"a453a4c531be98d82b30875224f99b77ed74bb8b5433a46773ed9086c78ad820","transaction_count":0,"txlist_hash":"f5b2e274c8dda92ac634490b28d13b18d7aeb22fd1a5101c805d3f4265422a7c"}',0,'BLOCK_PARSED',NULL,'be5a4a10d95a946963e9487c8b517dd624180e119ef6a0996dd20ff5d496169a');
-INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7e54808d9bb3a7deb723c1e4cb72897e0c08574cb3d940e83eeb0208a0f3e21');
-INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f1ad21f9b4134bc0225c26fb8969af3565c07997197a7ed9636c01f187f07042","messages_hash":"ee8a0a5a6e43392e0e1a898383cc016e65ea48728faecfd48ac2216769d3ab4d","transaction_count":0,"txlist_hash":"3711ef31e2cc58fe1a9cbcf0a5bfdac9a805f346137b923fd86c65f850b35eae"}',0,'BLOCK_PARSED',NULL,'a21dde40181d88988433e653c104b93c414971d68142d412bdee75761f2c2137');
-INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad829c0d69db1cfbd500932be63df0464b0089f3cb09bde1d24d4cdc0f49d4ba');
-INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"9a1f3de6b5a255720973fb0c93ae2bc8fe8936565140b8ae991b9d83f86a0002","messages_hash":"813aee3a02a6e3051aee0bcc3f1559a1ef525876773365702d8cfb623b76104a","transaction_count":0,"txlist_hash":"8e73f7f52266820ca7f25665628e31afc6a5e3dcbbf51bc1bc8635440ecdf669"}',0,'BLOCK_PARSED',NULL,'6fd3f2ab56bcc9f0312488b93e65aa46567201ff14220f42380d8d713cfda4dc');
-INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5a140501d849f500e71ae0eca191da7baa0a5b57d1f9cd89d389248181351fc');
-INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"ab56d9f59575b2d8ecc4933bbfa1fb0cb81c7a6fe84c1ba81bdee40c3da13164","messages_hash":"857718a08a7c24695301eea96ac485c69d7d8528ebd7144526877144727a1930","transaction_count":0,"txlist_hash":"2720a0a338a84ae1b56086f0d4f1b341eb5e3b46e9290887d7675800c6872081"}',0,'BLOCK_PARSED',NULL,'e682fc02d059c44634028f9ec27cce4278a9d8dc66208c66c35181df8a5e7a0a');
-INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48e29a038bcae461ebb0f157c8fc787126e511d2046491c9efc0eee6eafa32b2');
-INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"8399d461b5079a145c716f8f6004d2f7870fe93786bd944fa36ef27134c9517c","messages_hash":"cde0bd558daabf0cbede387365e4a018d490754a10047d177cae43a0f4b45d12","transaction_count":0,"txlist_hash":"18ee24262532a6a1e49086f1a8ea0161a5c1ae80ce2230f1b76ce782f6aff39a"}',0,'BLOCK_PARSED',NULL,'d543c0ab6ecc4924282e6e3d6d629c145a6ea895cba60c21a3146e9f2731f40f');
-INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0538a263d10b0c8f41e205468e6fda523b47e0da104c0b1acea8108085d8167a');
-INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"b6696a1511704128bbd5ec2c80a1d7d8d3bda6b959f1a674537ace152cb7f8bc","messages_hash":"e1727b554699bff7dbb8b8e04c1703b9dd8baec7d0adbbe19ed29c13063feacf","transaction_count":0,"txlist_hash":"e839a4222aad212860b0698214f3d426d065226d1e7983e6620325a583b28abb"}',0,'BLOCK_PARSED',NULL,'98f9937ef78040e39f98439a3e9998ae117a3de73dfdc6583b504b3141bdb124');
-INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58f09d14d3a16b7f241193ebcda9b519900703ab9ebbc85bf63fb08cc3cf6d30');
-INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"9aea0f996c36a815e4103b86ee7fc9be784d7c72549e54d04d84cf7fb8adfb78","messages_hash":"417fc14121a6d8f20288b10640991263f4237e0dad8bcd9bfaa3e13bbca4851c","transaction_count":0,"txlist_hash":"fca6c96a2d6bbe118c5418a3e2b85dced8cfc0da2a8b46fef65f49e81a459efc"}',0,'BLOCK_PARSED',NULL,'fbd4479ebcf7e95737cb6ad0c5965a7e217d61fe0a0e61769c324395eda64b45');
-INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecb3dd5b44337f1fb32c54aca7c300abce0bb07b764186f5c80c2ab75a0b3490');
-INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"7571b554c5600796b60982bb6df3517eed517a2a3627f8383b92a073cc4a5872","messages_hash":"8b39440aeec8b1f4a945ab49608e3f9c8d439ccdb5a42d9e60d5ac4e719f8297","transaction_count":0,"txlist_hash":"a168e4a6c3de65e68532d534107bc3033588b2b0d67ae2f5d23b1ffac1a21ca8"}',0,'BLOCK_PARSED',NULL,'e4f06a6056551da559a453d18fe0fd1ee86f40a5c6ba522c2cd95a8f74887e34');
-INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7eca55e1c14bc53c75686d0254dbe5cbca4ad35d2e3e0a31df2979ff7d7a7564');
-INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"b2507a73ff4f6998582daac667c457308ba78744e3d1d7533c0232092e3eab1f","messages_hash":"c40fd8a8ad93626d3df0814b83e6e53fc1ac7e1b56d56c64597931b14dd3ad75","transaction_count":0,"txlist_hash":"379aebcf4d32a0480f5d334f5c04629b6ace33bdc5f138907c338eab7b1d9093"}',0,'BLOCK_PARSED',NULL,'037df848928a41c0ccca8f7d9a678b49744236e66c82e2eb80a20f77cb65bd16');
-INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23c8f0efeaf5745d56510f6da418f48719c69801abe4a52dd7f8c48b7f1d504c');
-INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"18566f22ffb9bc5f98712ef3234f8da84f8f3e382007b23c3bb8e6c910043746","messages_hash":"3cb151083aad730810ba5c58d41d621145473366f7b8c502a742583e5fdecdb8","transaction_count":0,"txlist_hash":"b238ccb2ac0b6329a0fc30267fd29e4813bfc786ad871de90c1797c6c72e65bb"}',0,'BLOCK_PARSED',NULL,'c7f8c0a201e7cdfe66fae5d5d395f8c64a50db85a6b9027e15f548266794166e');
-INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5a19df47c75027a17af47e0bd97d0da1dc45777216973c4d4925dfea978998e');
-INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"72c44bddd5b54657623692e444bf893ca7b6d8da992c274bcbaa37c6db903825","messages_hash":"943656932a28a98619d4de3abdd3e84004dc58ede68152286af3ce6209e12afa","transaction_count":0,"txlist_hash":"2736ff0669b8c3cfb5b4ad8f082e23d985cbf0c4ba9990175febf1c02882bdf9"}',0,'BLOCK_PARSED',NULL,'c9ace2af95e03d45c6259c5a9b3c1078b901761424c5f10d970c4ff77ea72076');
-INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f8c82cfaa2c7ee9ad920c32dfbc85afe1634964bfad2e3dcc7d17811af8f19a');
-INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"1ddc441adb4b262862caf5b811b2375bd376d9b5d7b8ee251c4337478833cde9","messages_hash":"d970401c49e0b45d95031cbd740826688efbe7440f776fe4ae5fbd8f5a2d0eae","transaction_count":0,"txlist_hash":"3407db619adaf80236c8319a7e9283c10a43a7b1717d4d89115ac90e8f52b706"}',0,'BLOCK_PARSED',NULL,'3ab6dcc9c43aa65c98ab0b085ece7737fa72e5b1803ac5494dc26b771d51743a');
-INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74047efd24ed17b5f8dd301ecf2276b16879ae9e4eefe4516d4f3017c77d2cde');
-INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"b59447846d380cb8d32639ca13e6e396b68b18483f70b6380296bff65dced3d2","messages_hash":"e22966531dedb141d7f6e4a5aabfd82382ed9fcfe6caf8991a17fafb7afc5997","transaction_count":0,"txlist_hash":"e02f456fb1e9b6de38bb9923f6f68973d592ffa04f65731c66dae734e4fd1d44"}',0,'BLOCK_PARSED',NULL,'5f198203738f1cc78a65faf8974772109982e4151f48031e678fa784a1963c64');
-INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'507d719e06817318c01e043c76f575cfc245ce3650787c27e5336acf28067553');
-INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"54a1c32d20665e7ff92ea43451ff2e59a98136ad7da576fa6b2614dda700b707","messages_hash":"8cb58a3a69cd2881516a1073e0e6f8c8a6ca7624c1ba03327f39865006054482","transaction_count":0,"txlist_hash":"5177e82a6aa417664930ecdb0495e108b3fb660ff08a608fa540a29b0c4c2650"}',0,'BLOCK_PARSED',NULL,'6f015b1f996e524570c66611dc09fe11d089fdb5095c33fe94438c247d3a3039');
-INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6cbec5c84d739f916010286de0583c68327a498024aa993e01f7fdf899e0515');
-INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"f0bef715c366843e002c75992b8d50d82a3ea54f144350f158e862eb03cb45dd","messages_hash":"a61bd68a25b8460c5a8b915a33898526dcd728017a7f651b70b597cfb11bb1d8","transaction_count":0,"txlist_hash":"84abe1e98b75d07291ef4b9847c336f787fdcc74f9a2570d23cb8ce396c9104a"}',0,'BLOCK_PARSED',NULL,'bdd7851818c649ab5f1c25b556cca3995ba2de35d0837e79a67e159ae4c32cde');
-INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dc27d2bafcfb797f7cf0901f5ad04fc9dc1e68f0ceb1cee49748f7dd726bd10');
-INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"0a4ce98b783b97f81fff9ab73d7a7091087e8511ebb425c81ccf60c3f9edbfd6","messages_hash":"e8454aef34c815ad01cd9016c6c3fb983bf301e63273a36fc802d26b929b7969","transaction_count":0,"txlist_hash":"ca0f3a6b9b2eafb864eb324359d4ad9dd85361a7c7d2833ba6bfd230d0e60773"}',0,'BLOCK_PARSED',NULL,'c0b7265d7eabf8a018c2043f441f687a88060b80b406e6390dca77d2be97db9c');
-INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3de7c2efe67730d12cceb26dfe581425a78e720ca5304e8d8610aa7092a4b38c');
-INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"f3b6781eebab3a6928791cf281d4ae7cb4f7fb59c6ae7575eba253e6ec6e447b","messages_hash":"5b1b966a74a430ee625b0e0d381a963a41ea1d427840a109b95929a4c7061f0d","transaction_count":0,"txlist_hash":"283080af19ccbde44c6e268326ddde17fc850d7ca1add3698adb3e606cd984e4"}',0,'BLOCK_PARSED',NULL,'259deb5f48637d70cac337b5abb1cc8a392782cb545617d1db02dc24b1e291f8');
-INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ea5ad77ad16177677068307919fc974a3a8630a892e35c51f213cad7e4ceb9b');
-INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"14261b6b340632c469847700cee16c0163a7f8cad4dac7ad4555efeb5f3235fb","messages_hash":"d429ca517a7f8c46db00cbb4da11040e4735d0c0aced4f21f1493b44cd679e1f","transaction_count":0,"txlist_hash":"744bcdbcd8d44066eb9528c6fa39109148ea557d3cc3bdb88a818b9f9a9dcb25"}',0,'BLOCK_PARSED',NULL,'12e3f0a778fafda72707802954d874d79004c9d7e37dce8d0dd4c5c969e19892');
-INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c85b8f1d76275051d2e2a0bbab50cd1f8c5340084d2d844b48b8e3d73db28641');
-INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"3c033a502e1890e8a3c697e354cd1769e4300ce7f62ee7ac47a7201e1ad5de2c","messages_hash":"099e7a26e5dca406cf008eae37302e3e0c7c1797c55362c98b4a3743edad2b40","transaction_count":0,"txlist_hash":"c424d1724a85f76a855b4dc834c8b599f764b5095b0649448a0fa2aef1e41d31"}',0,'BLOCK_PARSED',NULL,'cdec40bac0eaa3b3db69e58d2e05caed3eb5aca7c527a9c918d16c7b90f1dbf1');
-INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45f25bdcd51f1d27deb634b1040e589eaed51a303791686f8c7d2832228ca66f');
-INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"acc1dc4b7ec10c0989af833b57640be486035d76f74b57a50b023fb60f418be2","messages_hash":"e7704dd7f3358c09a87dff920ee932c695e7f0b530239518d50b20b10470141f","transaction_count":0,"txlist_hash":"dde73fa3b80a8e2d1cb8aa692dd62ad712549fdceebf4083965cb36f692d45d9"}',0,'BLOCK_PARSED',NULL,'82f00228e79bea96fc3dd9894ff4efb2aa0a44b0bab31e6f02b045a2ae87bb37');
-INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e0e53cd634416e40593cfc27f298151c5e377c8afef0ec1df7db24bb656d1c');
-INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"1443d97efeeb04291e117b152f1e18537035a59c80fabb574577cb3e66e5db59","messages_hash":"acc5a7b3c965552eec18f13d55d796897254c9ae4f6b76b304c53560a5f4cc85","transaction_count":0,"txlist_hash":"a52c247beb178317cdd18532927c8281abe3af9914c676cf250084d4b1e96762"}',0,'BLOCK_PARSED',NULL,'3339051d31840237bbb5fd9b05e2b793442e5cb044578c96ea7be670c9f00567');
-INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37cc73e7661ebab0c4f9ace2fee85b943f4719f48ce6994cc0fd7485ef34666d');
-INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"1c74208da191b965f52006e577c3f4df30f29b36b1d137ab457bbfe30737285d","messages_hash":"96f02682a3030b2befc1d70760002100282215a301eb5aee1cb07c9162843e0d","transaction_count":0,"txlist_hash":"693d04e9be7d9de1aee3cfe832c6d913213bbf44b0f04a5b394e1aceb77b7b49"}',0,'BLOCK_PARSED',NULL,'5a47477383752aed30cddbd04164f9bdd709c45212b58072b32b75075e23d64a');
-INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2dcd601ae304bce39056e6e9905eeb90cd7f0cf11ab704619f5be66a441c47d8');
-INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"662e1b232c5afeba4df756a31d7b63f7f33dbb4aa752abbea9f0b57f1c7c4295","messages_hash":"457f56e032453d64457be80fad88d46e8d4325df25b621c6aea936b6b3636669","transaction_count":0,"txlist_hash":"bce25b4036b54089a064c1fd781923787126977938ff3c206f0a8d76ddf52489"}',0,'BLOCK_PARSED',NULL,'a1fa737d55009f3ab5f6d687643db0dbd1be5400feaabd17caf3a8f2e494e710');
-INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6581ada070a1fad55a00e0d07371ffccf4be518c2e4accd5a4ddb4d107aed34');
-INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"8a1b60657764a35ce95c9e215600f63f0fc8c4933c682ea017553010743c97a2","messages_hash":"64e00821dde4646cad059921826a3014f892cafa2f978b8baee1ed96e4a00409","transaction_count":0,"txlist_hash":"0d0259b0c4755aba3d725283f1773bdd766a0ae009f2b94be00a5589b61ef8f5"}',0,'BLOCK_PARSED',NULL,'0dc14372ba02d6539df28b3a115ff4a25e88b2362549b36371202c42eaaadd62');
-INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ccb4ab0df1fdce001709fba09aa89d7d77a91ca6ccd851b14da0f311fd19962');
-INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c2e25d20f3c50a67a4268d9aa3e386c92e5217cf8f106d2affaae19e49b48828","messages_hash":"da90a92d7a7cc0e24781d15093a3fbb9df9720571e36eb5032240ecb805f01ba","transaction_count":0,"txlist_hash":"32c25e6b70ffe5ea4582a7fd8bf8c892d4fe0afb247e3aca79686e5b5ce9e430"}',0,'BLOCK_PARSED',NULL,'9be1da542b83d1d378a455d29bc10e1f2ef947a312e98ead4f9c9d5072e4175c');
-INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7728d79742ecd4741672a3de22a156ede6f65538f04e7c2f05fcfc755573832c');
-INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"bd7479caeb388072138c99d19624e495200df1bf02f47caf0ae8a5007fd9dfce","messages_hash":"41e980e29574743be776872e4c380ce99c1c84f48f8eeb4ddcfb2cb24207d7e5","transaction_count":0,"txlist_hash":"0fdf6d97b6a63f690d30aca13e27aa4cd6bc3ebbf525cfe6f6eee3ce529dfff4"}',0,'BLOCK_PARSED',NULL,'3f42a08ccfe8a42e721ac0f6eeb1bcbfe3a244c96d52b8101ad8b7e7ff732070');
-INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cec578306126f86498f44cbad3f2753d803a0e7cecbcd411523e9fd099eea79');
-INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ddb8394df96a37e0127c8894e669072cb195ac953e2a3e922b95bf40804820b6","messages_hash":"0cbcc6eba05629dc63fb500419ab4e6f81b94820d68d7974328e09ff92a2f40b","transaction_count":0,"txlist_hash":"8cd686429ec5799fb9a78d07d662c5f51431c6d79691a45c109d512d261aa5df"}',0,'BLOCK_PARSED',NULL,'740fd7439177d233fce9a6c10fb9f8777adad67e2bc62b889ed82db50b16f761');
-INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9529853d753513d96c1f8f5d2f0bbbe3b0df3299904afdba60f69478f9d8f761');
-INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"3ed7694459a57281ba8e4159ce156333aae4b596aa3ab5193ea6c1901f2c9667","messages_hash":"a2034f57c8adc0bddcddab4aa24ca8732ed7c72a551dd4c8369db54be08e025a","transaction_count":0,"txlist_hash":"b6c153092c9e72a0fc5f32febc767803bf50df6886edea271315e382903b8cc1"}',0,'BLOCK_PARSED',NULL,'1037c1c38572239967acef933b0e83ea6c175d42beed8b332db24d83d0bee7c7');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1,"utxos_info":"7b17f1bd3ee49ce2e5e9d749bcee03749fd056731fc38e3405c6ad4885d18b0d:0"}',0,'NEW_TRANSACTION',NULL,'627ff9cc7b396d172eb41e6f6046bbbbf026b14efb0b345f30488c37015ab024');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','a002ad765b1e0b4f940a5184860c88da2dd7b9622a5494865a71b5dcc67a530e');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2","tx_index":1}',0,'BURN','63f8a75a06328d984c928bdcf6bebb20d9c2b154712f1d03041d07c6f319efd2','b9ff4a6733301ef461e16e6c14d337680b71e1dadb2527f464cb7a0d80b2d98d');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"7e1322d444b3395f9d8ce6b1ca6d48e8f0d78e5d72da997fad9520899bdbebe3","messages_hash":"552834a4127080ad2b9d1adb20a5be06521c25bfb26025b5bdfac27ce53002eb","transaction_count":1,"txlist_hash":"702e537dd6e79386a246cbc44fbccf8ea2a4e575c9f1e072189fbbd831308672"}',0,'BLOCK_PARSED',NULL,'3079339ceb00974a363c302ca76c8aae17a66c9603fc4df8a0781ed00cc90b72');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dd06badaa72da926f5af51e6f5ff6734e2fc5eeaf47db98da444baf904cab7a');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2,"utxos_info":"8a6f8cd8a437c07534cd71f9eaedcad50459726a90d52e6fadf0ef1c8c348f2e:0"}',0,'NEW_TRANSACTION',NULL,'093d3c36b54aa8ef5e61cdb0d7232a4eaf3b9891dee721f4fc0f001759da313a');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','de8f125c1258dd7c4830cd90e53feaa24e031c13e52d0f795b9705daf5e73fdd');
+INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','9c996993a4eec18dfc4acf9260aa9c7940aeda8283e44e136eff4560f13506a2');
+INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'SEND','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','e0caf0aa44963588d92bdf1b6bf38fc9012d5dfa9524e3cfe9b73a12d781e5fc');
+INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4","tx_index":2}',0,'TRANSACTION_PARSED','5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4','27e082a6cf40da651457e93a43843e47353b6e35664a9046e97cc5a77f39c788');
+INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"3e18d8a969bce2d869cb86b28c23823d88e6d8a840a3cda905a003b37222ebb8","messages_hash":"c2f806a9a12341f0bf89ecee3d9644f26adc4434014e0113a5524016455bc7dc","transaction_count":1,"txlist_hash":"bcd62109b750a9b5c3a07fb6e3ba7a5feb2cb56fb554da3b2b4b560a632e3e2e"}',0,'BLOCK_PARSED',NULL,'c2924020bed74f6a58111278cf300ccdce62589f0e05abee2896cd2a902d9477');
+INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1aedbfc8a6262a74c0e2f611854450dba2bd3fd4afcb5f81a7ed9f67fb8a1aec');
+INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3,"utxos_info":"c0b7ba21d78ad1b9d15cb6b9f3a0e5be7308e48da38cebd72daf42e4f8cb63c6:0"}',0,'NEW_TRANSACTION',NULL,'72b0c99ee918f6654ea0977d8c73f9f1e9b4f33071c130e24e4ceab3a313b7a7');
+INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'OPEN_ORDER','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','94fcfeb004b5acbe98c7242ad47ea84f693bb6a22853bf8354b05dfe0ccd892a');
+INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx_index":3}',0,'TRANSACTION_PARSED','04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6','20154334b83098c164c421b91122f5a3db7a180c32efa6752f23191c8c3a852f');
+INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"71dfa527236bbaf632db18cf1773c63f7ee3a0076fc6562e46db0c955b346a9f","messages_hash":"d856d7db060596d120d2fba33f71d26680355bede7cf11a678e09dd5c903f7a4","transaction_count":1,"txlist_hash":"f7e5b51624875d95cb14e212ee733c94f12f69084eeefa4b77491479ea3ae990"}',0,'BLOCK_PARSED',NULL,'677675e422b94b241a5469792098469b7b611471920cef0fcaa3c6e2ae975ea9');
+INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f02a113c136cb5533926595e8d1ad8dd5c1051a74b700dd542c8ce95a22895f7');
+INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4,"utxos_info":"4570ebcbadcde31bb1b2cbe5e0bce5593c8aa7f246a6c62978394dd046267a24:0"}',0,'NEW_TRANSACTION',NULL,'74fd85ea999974e34aac2462d949aa3cd5febb1ca721195b0794261ef42f9653');
+INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','222568fbc6caaf5f452bbda6d60e803c90e1abc1abf8091b8e5375d2e01d696b');
+INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'OPEN_ORDER','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','148dbd4a5ee3cbeda66781db64df922d59098898997592a19500f60743e1ff3e');
+INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','d47395b085ba08ffb7041146acfa93aeea16831f81347dd0ec1666ad286a2fb4');
+INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','cdd91c425563d45c7de7f5ba5306ac4d12fe05bd9c6fdc71e47476859d7d4618');
+INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","match_expire_index":310023,"status":"pending","tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","tx0_index":3,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx1_index":4}',0,'ORDER_MATCH','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','f9eaf34429701d5400649cc3533e4dd63b25302d5a48524f4c1d6eda4cb1db12');
+INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","tx_index":4}',0,'TRANSACTION_PARSED','98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52','660d69a4c2d3affcfc0abf1f11b1f47683d0f3d44e4bb2fe8a95fa0cd5b0e11a');
+INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"39feff81ad306adcfb9610e6bd8442e35dd6e1924e75a53708c1d2932bda67f6","messages_hash":"3ba416078c624d16f08723cb72829d2b5e3ee29dad6cfe5d2d12226f260886bf","transaction_count":1,"txlist_hash":"a857bb0cb63c343a04d6efdf7d69f1de6f89a67dc25ca5b3e9cd9405ef48c416"}',0,'BLOCK_PARSED',NULL,'80e76e5f6f8864085625fc9367a95afec9c9ff417e1775025a40d85f2b485d74');
+INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e37753a8d74fc52b521f29222f22f34bff96cbc2448c6fc35cb1b1fc5541f1a6');
+INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a698ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5,"utxos_info":"d2c33c5859fff1bde271ed0b48f3853ff5441f7d5a29f64a31848b58496c16eb:0"}',0,'NEW_TRANSACTION',NULL,'abaf69611a70f1fa641599d7010fc63f31bab12b5f2e84875e7d6927d20ffcc9');
+INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','4cdc819bc67fa8b23c05b04be16a0cd0dcd74c49ccdd319c90ecad8985a7e3ac');
+INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","status":"completed"}',0,'ORDER_MATCH_UPDATE','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','5035137710af9625b17069c3b528962d62f6809658299e0c1f217379475dbef0');
+INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6_98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'BTC_PAY','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','19d58a9bdc8afbb8052856e33f63d003fa10da11e3e53a7dff1b7b380655f2eb');
+INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613","tx_index":5}',0,'TRANSACTION_PARSED','90eb885df58d93c1d5fdc86a88257db69e6ac7904409929733250b3f7bbe5613','eb98bb26306bcd457790e53fbf1f82a85f24c647de3c1ac1f48c6861a8b17f3a');
+INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"1cee0851ee48eeaa3f71e7a18f9f52fffa28cd3b2e1cbf1f79c0f562618b88c6","messages_hash":"76887dad5c1d2e78b4b37a226770643ad4636e012f301b3a5c9c9c2957d74c5b","transaction_count":1,"txlist_hash":"32e68b308a1281ef170d188fe7d19a93486667d45d8a6b50a0c39f00d6924cde"}',0,'BLOCK_PARSED',NULL,'1d3d37f73a6c34617918eee8525e0b7410b3315401742400cc6843bbd5ab8a28');
+INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cd2ca536a8305fc23db4c3c6cf40a3c147ad1e593b321e81b86378343ab202f');
+INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6,"utxos_info":"6b24ccc7f3e91ad0db1bb059bb144912e7deaf6436b9b1eef76cbd1e3426ddad:0"}',0,'NEW_TRANSACTION',NULL,'7dd24238341ddaa4da8a29dcf6b618502e26f5ad067e9e04f387c9c205b3e4f6');
+INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','83eab25947975ace05439f76bbeae659f3c5ccffbb2b804ece366454f1a6f288');
+INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','13b77151e120a94ba52b16592c20a937bbcdb56827759e9b7764c8031522bea0');
+INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'ASSET_ISSUANCE','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','28be0134b6151cc8384841c4f190f82a1bc6a2d7f7b426f6cf9f583f342bbea7');
+INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','09d17e98a4bf3a862c0656351f587b73215295193afd4236949408e7b80b119f');
+INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7","tx_index":6}',0,'TRANSACTION_PARSED','1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7','f47d881729aea02fdf7943546712fafbe7d2341d3b721ca99fd404fada5dfd45');
+INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"89f516c3fbdcd1540125561301db451fb55b1baead9ae8f408156075aed104ad","messages_hash":"df48153c075eb97228d7c1004cc4fe908d610e2e9f827384356e520c58056e01","transaction_count":1,"txlist_hash":"3a41f3c4d912ee4628975e61c4a04b836de31df5a9aa5fbd7031628d9c4f0eb6"}',0,'BLOCK_PARSED',NULL,'f4d67b227d8f4f2f7464747165b35580240324768a05076269951196629dfd40');
+INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'224758cc3ddd1b9f698deb7244febfc8089029eeb5175eed2fbd2dd1c04ab709');
+INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7,"utxos_info":"65161bae7afefbb7b46cccbc42d943189fb58bc93833504a9beb8a81d1ac3dac:0"}',0,'NEW_TRANSACTION',NULL,'6672e6e726e91c12444660d44476a0594661d4cac5857897bc88a05524e48071');
+INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','8b55d56ffb8be8be1d6d16dc254407ded1f85838798aa3a9e0b850762cf30af4');
+INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','73d226893a1028badb53311b36db6bca153f86c912f60a33c4c896e400747377');
+INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'ASSET_ISSUANCE','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','f73142b4bd0471b9d78b23a58a1cd102adbe842b850afeffa7bbad69cd67e314');
+INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','0ca2b3991ffdee9da49c4691478e61d20fd60c07751cd366039be35c7dee8d4f');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846","tx_index":7}',0,'TRANSACTION_PARSED','3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846','78d06727692c8784bbca4088205dbef983f2ba51a2874ae2862cd77e660552e0');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"e9a37cfc1055e8c18d369896a14422cad3c5ac8d9b4d5aff6053d8e31dd56336","messages_hash":"a7e3bf30127962e93c128d1a5864ca96755552f356d1a168abf31fcd4b97be8f","transaction_count":1,"txlist_hash":"4d2d6945b23826371a1cdb4cf2f841cf2b78c891a6b93da8167ed219388edd65"}',0,'BLOCK_PARSED',NULL,'4acfa4cc07a251a51d614e0c9b31748c6ff2cbe515ad7d0fb7aa65b7b789f22f');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59b7ae8469368107bb32f4b2ad3de482e78c1eaf6799f2d720e02923a87fd10e');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8,"utxos_info":"2a941755031caa5ca3afe08d8e55aa57ff5fe9e2d725ca91388504885d7658eb:0"}',0,'NEW_TRANSACTION',NULL,'0669ece2f58417981ff470c23845447088b454f8ec5640d796613d9b73436461');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','bab3bc753892bd0eac98b2884b30949df91b36c0f4bf67409c86b53af457806d');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','0e914a0192b28975ad645b32f2797ec9fa37e90c963269e75e80241183811ae4');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'SEND','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','5829f22ecf75ce61034ee82ff67d78fa9a8459381838e06c348b153cfd45c1c8');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65","tx_index":8}',0,'TRANSACTION_PARSED','30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65','5cd0661c87ae03c2dd0254b2c8ad40c74196220a3e036fa92cab341ceb61859b');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"174c7c107c37e0ca2c907b1bc35e086eebbad8eb02493a2f166ff2279ecc013c","messages_hash":"953607d722b777c690e11bc7b4be7c8e15bc34a21fdd43d8c8df7c4c021c4d26","transaction_count":1,"txlist_hash":"dd1e7522ff359cc0ed124a82d3b367ea105127d45ccf563848b531aaf75b8c2d"}',0,'BLOCK_PARSED',NULL,'0bd51094e6692ee3b4d1b82034c400270de0303be7b8152cb249f103f8cefcdd');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffea9c75cfb7575f5ef1513e2aadf18efcf99e0803fd9690c9c4b9e288a38791');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9,"utxos_info":"25c2b96162f286879550ee980db0bb717e27d63c62beed1604b9e83df8500bcd:0"}',0,'NEW_TRANSACTION',NULL,'c1ff4cec42c8c25e7074a97fb6e259233f982a117faa44fdf1f4bc78dfbc5a95');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','f24ec4dbfaf834231325e7993b4ee06f12f3331aff657cd6c3e4f398254b864e');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','e941f7d304e1e984071c10b26509d77a750ea46c70c836358e27ebe268f8c55c');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'SEND','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','a25c039443616a00b6245612c118e497c99dfe04e9df779532f918cc75d326bb');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849","tx_index":9}',0,'TRANSACTION_PARSED','7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849','c8cf913e92009fe9bc5224da98d5089960d8d7689050f0103e50f25c47a542a1');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1463da3ebe264e703ecc0c708baa98f737b31f51726f85d3ac646f5e301b7c10","messages_hash":"f2f508918acbaa10662a53dae0b5acdc6708361ae5dc133aebf758d444d087ce","transaction_count":1,"txlist_hash":"3e547d66bace022adbb42aba8172ed287077f306537c9ce69bb11f47ed1b34d1"}',0,'BLOCK_PARSED',NULL,'c74cebab2e92293aefdaddf2e4b991d932e95e2a4904e5354fb39f1563dfa091');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e110df6298c77178fecd6375b2b3962c7e9804489121976550044a469d8d50b');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10,"utxos_info":"04b45929bbea052062fa897e2bc54d323b0bf9a46f4f5140f1362ca244e4768c:0"}',0,'NEW_TRANSACTION',NULL,'c62d3bb067390fad5ddd6be3759e1674c40ed522f4d8ed7e535c58308fff9745');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','9dc47456c694b5d452a546b009f584b9aeb56113bafb42255afc6395af194f1a');
+INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','bbf74d723bfea3306436aaa4b4c4f05776e8b200b2ad3dbd32bdb745a8e1f48a');
+INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','38fba6611f8780adb172d826a23bd4ab59d733b969549b1466bf6205cd6e5b46');
+INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'ASSET_DIVIDEND','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','6c63c065ffe985aa3680b43ba544ebf77d759c6144f030671d946fa879d90b35');
+INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f","tx_index":10}',0,'TRANSACTION_PARSED','f3cb8e3c39c261fef8d71c5222b8864bee3c7c1c4ec342430cff08945273779f','e6a43190c3e4470222316f373e565a877d770e7ff768c86c6cacaaeedfd82492');
+INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"dfe8c57b4ce4ea12f002d11cfc127f95b7cea7727bcbaf64418b2d584602a250","messages_hash":"23b93395070934bec727c5d12e4e87b0f13f1d142b939b667d53ca7831262f96","transaction_count":1,"txlist_hash":"20b7caf43b34f595139545c800247b16da6e00b0b1162928670c80ffc2cc773f"}',0,'BLOCK_PARSED',NULL,'15296cb17c10a20923b7a7d91eed69041f0b2a2b2e1a11c0bc1d762c39d4a055');
+INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'543f215fb8b56c7d5f231afb2f87268ee9cecf7428a4cf2cee4132b7a460bee7');
+INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11,"utxos_info":"52def9655f61f72912a55624d1ce0b1fdfd98f7eab1d12eec193c29392572817:0"}',0,'NEW_TRANSACTION',NULL,'935b6686cff9e52367f930449e787789e23853d42257f605cfed54976a328544');
+INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','88bcbba2a8e26fea5ed1d95e5aa42149d76922d9a837bfd607d5ae4e72b20d06');
+INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','4a33e78116a55932fb2c62031b97a827d48c664ea3f1d5ea87f0c0f2064ac9f9');
+INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','60edebb7df4f2d4daa838e549ee42594c6a58095b603605359527dadba49818d');
+INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'ASSET_DIVIDEND','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','e38ddc7704c21e3baba112cb517ad398602dc173a62a3a8b3a6827550e0105a8');
+INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59","tx_index":11}',0,'TRANSACTION_PARSED','15741649c83a752d61662fe00bd28b1c33dfd7816cb92225a0a61008f9059a59','f813d557819b442bff6d308b51c9d3ad094980d12ca5955bd2829ec036da86c1');
+INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"f9c936d3bb4c8bbc20e544d9262ffa3906fbaeca5e4b2e3b241f6059868f506e","messages_hash":"786f39cfca8921b807a90a0ed8bc82066808bf6f6742f4028933abb6ccc3834f","transaction_count":1,"txlist_hash":"47442be955776c7e31fba3f14df298b088192577691c17dced8b14b6037e3c50"}',0,'BLOCK_PARSED',NULL,'387a60a8dbdfcaa55fc10cb2dd5a6ddbcf7c6138d50c860082ba71b992331c65');
+INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d6f15142bf25bb11391caa6a5dc1c0ff2676e573eb9e4d16d61721ed5b8f03b');
+INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12,"utxos_info":"e9063537bf8b14d57f0fede04e91efe40d98d1c73ecc39c9a3d82a56cb013761:0"}',0,'NEW_TRANSACTION',NULL,'f8dd3e6da1a3af1befd465ab2ab64c25f5fd43ae47de9be1e7722e382553fd26');
+INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12,"value":100.0}',0,'BROADCAST','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','fb5c965b4850e106280e33aaa144386a10447543803448e0ffd6fdc0cee16d06');
+INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a","tx_index":12}',0,'TRANSACTION_PARSED','1a5b6320346fcb5f7b59ce88553ef92738d2f5ba0a7477e898df85b2730a0f1a','0763779634cc1e72c0ae61a994db2fea47a880dc5cf66725d012ab4d0c04a0a3');
+INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"490bfec10bfd72eca7fcbae5887b94ce4739454a82e601dc754e4e9d1030f3c2","messages_hash":"83622204e7a7c0e1bb7967a740957ab2af05c6ddcf8c528908173cf04d791dbd","transaction_count":1,"txlist_hash":"8a060a9cc82b497e020ad7af45a62c07110b724282ce0c7ca34ad24584638a3b"}',0,'BLOCK_PARSED',NULL,'842950de559108452152e6141d6969bc0c329bf771b1c89ddffbe39bd4660664');
+INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c44609e99c67f20d33ebc537f79abb2fd7b7a08ffc3201ebc4d81d70f33f697');
+INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13,"utxos_info":"7e8fe4f026481975d26bdade6d84e07654ecfd624ca1c054a2b20ebed6433f0b:0"}',0,'NEW_TRANSACTION',NULL,'17d44bfeb63e923c21e4228f110b9aac267ed29ae59cde07009e26a0568b4d75');
+INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','161aba87a33486214a5750d9dce0e964e12fbb08680fcc4b2a278805b5de0733');
+INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','5b8b41fa088ac96eb43b23b11a095dbea3140999ea10ba7409c18c1e7d232c1e');
+INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx_index":13}',0,'TRANSACTION_PARSED','1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887','3cf79a95c7fb7de952d9acdf7b3f3168ffc8f46c169b3deccfc52060e61c1012');
+INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"621d39c103bff9a76ada332f41e3ad54c89676bb6057f624942ddf28b31b5927","messages_hash":"73e6f94c305baff4e1c1373581a980e84ab1fda23ab7b4b8ab5b796cb0d276c0","transaction_count":1,"txlist_hash":"4eb1fdd02e0f8ba27b9134ddb7b03b51caf3417e92687c7c1a7b50ce2d52e6ca"}',0,'BLOCK_PARSED',NULL,'43240ca35e5f6cb9be344a1b77d09a6bfff1438e58157cfdfb6a6c7c10e0a7a2');
+INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5107449304d03010c10d40d450be6da6277b53c147dfc29518c6af63a78de5be');
+INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14,"utxos_info":"453f22afbd458aeee8eeb422a378fe72b9ee0d2784e5c19517fa52bd442b1ae7:0"}',0,'NEW_TRANSACTION',NULL,'a55704e55cfd1c5622a089875712061e89fa11095e1336e1fad230e32db64035');
+INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6"}',0,'ORDER_UPDATE',NULL,'367919cda77a4e3b2ff0eb31005b4fd0b620d2e6b37ba5d0c8e3f27454484e5f');
+INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"04d5809f0085bf2655c500a8c65d6d8b42dd373160fb431af05792b0f30b63a6","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'8e613a3f095e3943c1b6cfc4737c2fb00f80937d3a3c8583cd70d6c2bd19a6a0');
+INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','1da3cdb494f399e00f0aa1bddb595f28de0f15fce6e896b878d2b77c28860c0a');
+INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','b138b5264a988a686527afcc1e5803aab1dea11b0d743abe906b80f8d6553f49');
+INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","wager_remaining":8500000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','ed7cda93f882862cdcd52529f96788b4a1155f776137489a4c067b45e3f70554');
+INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','e6e929e82415a5be5260d08f3a62c2244b8b5613852ac16b92be460d5878e233');
+INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","wager_remaining":4250000}',0,'BET_UPDATE','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','50d18807472ee7b5fd30256e47ec9e1c28c07ca0b03d0456f9039fa181cea776');
+INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","tx0_index":13,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx1_index":14}',0,'BET_MATCH','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','cbbb92138698f6d5e3db3a3d1a240d5068aaaf16c001bea4e070a4652edd31d9');
+INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","tx_index":14}',0,'TRANSACTION_PARSED','a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33','9d741fe77f9fe9a1dcf8c4777983439e5b3018a86dc10494711ca08efb884217');
+INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"7d31be770d6bb6669bcb0a8a5964e57a758788cbbb942d1d3da1abd25b5dd158","messages_hash":"702ee302651e4a1683d27ecd09a5b728a1ef43b6a12414b7d724ce9174383615","transaction_count":1,"txlist_hash":"c71d132b3da755134d5305e814129761fdeab1ac933dc320f83570bd5d007002"}',0,'BLOCK_PARSED',NULL,'0eb6babf7d66d56eeea12fae53e6d76af055f1a8367c8467941c23010edfe9c5');
+INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8acbbdadddafbd5e9e18aa50c7e5f52ebe7b35c9963158a658a0b3af519abc84');
+INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15,"utxos_info":"f07ce90f370ca2c0f6b9b0d35fb394a31fd9d16d60f688a11e02679b303798fd:0"}',0,'NEW_TRANSACTION',NULL,'b779d4054aa6aa596286c79a1a2030c614dfbc6baf6b1286e7a6763a270aa5a7');
+INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52"}',0,'ORDER_UPDATE',NULL,'6b62dd29f5bf195b3de118417d27d6e0da60be087390d6c07513c411f31ea767');
+INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b23dfad2e29048931caf8a6da4001bfb0ed853fbd58fb2034e0e52ef4d7a52fc');
+INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"98ef3d31d1777ad18801e94eef03d4314911ac03d7a82483b40614ea5cf80e52","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'ec27d669b4d45bce1bb2e54dced8372fba5151f805ae78e87bdefcbba0fa4456');
+INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','9e9870700d43989c33cb3832ddba5295e6653f32ae1b8a4daeb9682275683915');
+INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','f94b5bd7e61caf60da4cec0c3c00c9d86ebb181d26dfafc6e8ffc4a7bb030fd4');
+INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx_index":15}',0,'TRANSACTION_PARSED','040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b','5a7c134d722b81606d256ff419b6b999fab029b341495ed2569fdf043c43814b');
+INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"3aba9622f8de243bcd5e6a5c88fdf04a79a52d95bdc1778d57586b13f30e501c","messages_hash":"fe686a32c0f827d9aab2d14f76a7831683da225ef2f8612ff2b18f7a1776233e","transaction_count":1,"txlist_hash":"d7949a992d062d2eb763b2bd406ffab07d7d676e3327f5e38a4a8a4815e97f35"}',0,'BLOCK_PARSED',NULL,'9ccfb330782ed75baa31e8c78c1f087a7e9862c45a87cca9b905f16221786524');
+INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d0aa432b161f5ffeb88d4ca522ccd5709b1f89d68de5a4d9121b6cc6059c177');
+INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16,"utxos_info":"1dad931f9d9dbf1dc2e862ba958fd0fc15c2adc0dfbce0f8ba9a399f485ece4a:0"}',0,'NEW_TRANSACTION',NULL,'87f254b313b8023a818f2ff64e046d87629aad3d0b6d13155f81b3a9a4741257');
+INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','acbf0263c66ee354dc4c3560ecef523d1659ef421bb0917d0f364e0b8c5e1063');
+INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','9c4a32e43d47f239d5ef3d22525518a68c51aca77e743d758c57f1376c9fc0be');
+INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','2a42f3ba3bf704a68342793f6094358bbc8dd0865d708a6fcbd4ac4d856e0b9a');
+INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','be966bf3177c12728bc6e63a6cccae5301ad0b585d21f0bab0a5af4b58b5f200');
+INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','334505d94135ec428173ccade3efc8157049c7308f6e98e375a7de8ecb28310e');
+INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","wager_remaining":0}',0,'BET_UPDATE','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','f0ce6993803e2fee776dfca622c0398f3730f56c18b617c3b7d49291dda54e87');
+INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b","tx0_index":15,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx1_index":16}',0,'BET_MATCH','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','31b9a1c5e95b2acefa6f7fcff7d2746544da5c83199e0648b7917a2a3d170f79');
+INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","tx_index":16}',0,'TRANSACTION_PARSED','62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2','910d50994dc4fda4df04a2d89a10c87c058db48b5f34e5e042c1a77fee1d2723');
+INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"342e5dddd2289d3d6e381fade13e5a5e3ed27615b89bd8e06ea2bab8f8b48be8","messages_hash":"74218ec7fc38341f5b5037c99528bd4055ff9fe959997c9366cebba810218ba2","transaction_count":1,"txlist_hash":"5afdd424176b977bd7b0660867d92952a9cec422a6861c62a876a10014807084"}',0,'BLOCK_PARSED',NULL,'75ce73a7dc4d899847678e72cf81d4d87e8a5c805726fc25b5dbfce07ff7ebe7');
+INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ef220ba576a6d274466691fe8db3dcae4e8c2ffd655fdeefcef6deccf57c1df');
+INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17,"utxos_info":"7bd26829c3e05451a26c34693af7528ce97e743068f941bf25467ae457d7b6db:0"}',0,'NEW_TRANSACTION',NULL,'4e540cd9aec1ca25c951c9813c4d4e6bc46d2c172f898240abb349b40b4cc214');
+INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','58e25d518bbffd673b5ead15aedcda88fc9eb40d09f2817efa2ed596d87a9bc6');
+INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','fb44023e61b63800c25b333af699206d8eeea09a28f550399b08806da81c4a8b');
+INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx_index":17}',0,'TRANSACTION_PARSED','578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f','b2dc4aa1279bfb70c42dd1eacbb1020bd95ed8dd4ecea7ca2910dc2d2d7d1cf7');
+INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"51b904e6b18ce4d17bdc491457036ff3a4ba70789ae929862844e9456c3b9b01","messages_hash":"d3a5f13d3fd6ed0b387a72b12de69c309daee0a67edc0e177772f940e17e24a1","transaction_count":1,"txlist_hash":"d74711d3af6b2313835591b58b1ff53bc20bc194922d10a60cb1274ca632e153"}',0,'BLOCK_PARSED',NULL,'239e32e5f6eaf2e6c8dc232260da1cf99600f7e4aace91784fd6a120454d6f68');
+INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d778d15187dc93d837fe2aede6997e3ecd7d229a79fa5b4b2100f2e564a73f23');
+INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18,"utxos_info":"e63bf97412baed033932c81838cd9de48b2b82772a4dee207c95061fbf32379f:0"}',0,'NEW_TRANSACTION',NULL,'81632df657e1398691f5f5c5538feff45ace11db6fbf8b3cda7a047d8a9397c6');
+INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','3383d0c03035156c9d35247eda8f2627858978288549318d7209fe9e417eb5fa');
+INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','42f9f75985010bfcd811e17bd5dd534c547f024dc1abe21d8a2ebf733e9dac2b');
+INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','7f1f311f9680a1adb11f0e92c869ea20f2e44be2bf8621f72921717552987ac5');
+INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','e6febcb087cc408eacc970c805d278d8bec1bd7fae3651f59e9cc4d7819ee990');
+INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','c5be8c96dd8a909f6460cc0b34df8e44768714a378de41935fcc5d4c47f4d0c7');
+INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","wager_remaining":0}',0,'BET_UPDATE','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','7fb32f66b786f3b977763d8566d4ecc61eabfa1ea69afcb21e6ba3f842208caa');
+INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f","tx0_index":17,"tx1_address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx1_index":18}',0,'BET_MATCH','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','d3f7b58bcf56bcf64705b994b72367dd4535aa5a4f5576845545f911d8e6207e');
+INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","tx_index":18}',0,'TRANSACTION_PARSED','479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183','341ea9940d89d2017309160ebb4ec61518e2638f701c5eb2469af07e961c4fb8');
+INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"03a60654bc84711524cb38171f6573acbe8cc2120787bd09e5ec621b2f53929c","messages_hash":"b201e578ecbd921781c9b8dfafa0871e096042e549be9762d294b5876b40de9a","transaction_count":1,"txlist_hash":"bafeaf2f42cf716cdd586e1aea74504257d170275022dfb2c11863cdc33d3127"}',0,'BLOCK_PARSED',NULL,'fad5c70310a04fb60b7825d273efd2789c90bb27e88e76ab511061bc1a82d006');
+INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71f6739fd9958227a4621443fa3f8514912d0f64de695f748c96c8789f19c9b9');
+INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19,"utxos_info":"8090ca2faa4b18f1033ce16930f4a4a7ce4ab9761072e16ff025b99dfeef80ec:0"}',0,'NEW_TRANSACTION',NULL,'7b1ae02fa9807f08d12fa684cd519e820f51e1e2764bf69a74203d046af7dd5a');
+INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19,"value":99.86166}',0,'BROADCAST','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','1ce3e6a30c31ec41ae238e2c8d8bfde1c1db3ccccc414b055fdaddc079a9e796');
+INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','4f3ec5da2fe6bacc23c1b9a2c0b10d72d83cbe482ff0b761a60bde56a57ae729');
+INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','f18320452da473cad6af5984db995535c0c6f5189f54ca1898ff0b02d588d795');
+INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','d91886c54148a9f57faf47e49b4c4dce9d41cab320d11748b8023cf7f722977e');
+INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887_a067f79057992245507ea08e901e623918be2b0eb2d178e35b01f36da2d30a33","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','92eff0073f4766f6fcbc61de76f9799e5f2a0d3766dcea6a9892dea3784044f3');
+INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485","tx_index":19}',0,'TRANSACTION_PARSED','16a5d04f339e5765125c4b2fdda91e45e135e44df489b97805b5d3bae50a6485','49fea512fd9bf7723a57ede21eb9f54e44a41639fca6785263824c5be8c98586');
+INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"a590602f34163cf8f880c3620f07a8cd27b9aeba8fc80ccb201d88364eaed210","messages_hash":"56f25721852b30fb1a0d7bf5465cd20955455bdb304488100a159e075052045e","transaction_count":1,"txlist_hash":"930eaaee66936628f4ac02f6417167100cc7e2335aaae56dac78cf2ea81bb172"}',0,'BLOCK_PARSED',NULL,'cf2953de44fc886d4e27103b02035db870a7701867a2bff690fea2a7a57fb0bb');
+INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90539fcdfe055e1214a91f01debf408d78422c2d8ed97578ff433cf597860fd8');
+INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20,"utxos_info":"1368eced55ba8fd8fe90c029b9cbdee09b2f023f957c95a0e38ae273e2603aaf:0"}',0,'NEW_TRANSACTION',NULL,'2eede6d9c65a5c502da12b14f745ea43f66cd6de0d44f19729593305a871a56b');
+INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20,"value":100.343}',0,'BROADCAST','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','ff2fa05d459d895f9012f0caa5e967e3d6381a8c4319655f727fc21493883a5e');
+INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','d74d0a73cbbc903d4a6795d0d82b78cf533894080cd430177efa15b626421905');
+INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','b6e6e6ab2f25677fbb506e9617e03edc9f08e076a758e4900aa7b81fc8267c65');
+INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','d56a760b0db6a4640530c9046c457fe7e6adce7c3554eeddb5b2a3336e44e99e');
+INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','fe80c03ab8ef893b084fbac418341ea31fc9d779d7ae30a51956735c364f2908');
+INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"040e03dfdef2df24411a077cfe5f90f3311bbb82bb3783ea2d7e6f484afd3e2b_62ece578c6760773bd4252922a7a0af87da1a1c308f32423e20cf49a369ea0a2","status":"settled"}',0,'BET_MATCH_UPDATE','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','96a6cc80bf6eb2fecb1037cdf5c8331e42c41dedb3044d26a40bf9764e8d2b39');
+INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37","tx_index":20}',0,'TRANSACTION_PARSED','65c96e80d7bfe2c7b00086196a7fc38889d91f5907658a6bbe795c89ef90ce37','64429373e33c972b7e5cadda8ff177e7ed9562eb360e07a3f42c7a9399f4c303');
+INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"1b340e7abac4c458e6a0c6ff2abd6dadaa2913414f450cf926725b5253210950","messages_hash":"5fc07543d231a3ec1569d5c116bcdd5f67ba8e89bc5e886f472595ff5e0ed40b","transaction_count":1,"txlist_hash":"ba496b27fd545d9d811d7421c6f9663e68aa9dbe3a7b5aa9d1ee5644cd142b4a"}',0,'BLOCK_PARSED',NULL,'e8a9d927b816e9095fa3c2014321a98cf4cfe31f674f618631eaff235c53478e');
+INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b412e893cd5f82484d069fe98bbe04cf8b18690967b3800b0729c401b177d510');
+INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21,"utxos_info":"bff102ed8b0979ba6966715d3b4b5138e128cb04031953136441e61d9edb75c2:0"}',0,'NEW_TRANSACTION',NULL,'3982c99e58b931b8df609034ed094a6d335ba05f025affb84404561dc516f5d5');
+INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21,"value":2.0}',0,'BROADCAST','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','fc3af8d674670d3f95c8c402d27e989d17fe2b37cc87a7496519df01b3e937ac');
+INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','3152968c1450959386093e5e9a0bd4cd73d8b102d1bbc68644681cf942db569c');
+INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','5fd06d02022cb1724e2fca1afc4fb8a484f144aae79323d9bea02196e0520573');
+INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','54852fcbb87ee40901a86427625ba01150264b8314aa6f6c7b1b42db6fdbe08a');
+INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"578d8026c9a3a9173fdb7d5f10c6d5e7d49f375edf5fd8b3f29ccb37a8b42d1f_479b0fbec468381f1e27332755b12a69800680379d0037e02f641265a8beb183","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','283c582af226e73a915ef4f463fac0c4a4ec628fb407398ea59f75bba3460144');
+INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e","tx_index":21}',0,'TRANSACTION_PARSED','43232e4a2e0863cde59fb404a8da059c01cc8afb6c88b509f77d6cbfa02d187e','44e108aa7aca82c5f5beefbc5b269f182b04819d3d558da10563304188ed7054');
+INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"5a5a31ae9b03a362b44c9e38effadfeac273bd370374ea4816b8402d6b8a8a1a","messages_hash":"43a63216cf2d86fafe6abe3656888c9a29ac21d0e21e808b76d7d1afd0edb0a7","transaction_count":1,"txlist_hash":"be94a40c259a5f9e2ad5cb714089c4be18de7bd6d3b403f3a4620f4d889ba4ed"}',0,'BLOCK_PARSED',NULL,'b4e63a8dfad924d90e6eb8f89336c73b5cf4a07e279523866e047156745424e8');
+INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d725f062e625128166ebc685b77175a6aeb98a7b02164ad8bc1f298687a2162');
+INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22,"utxos_info":"a81dcd4abba199c95c7d52cea0390fa94c33b0b11358a09789c469256e62d083:0"}',0,'NEW_TRANSACTION',NULL,'7dca8797828eab72d820b4d51bb5578a7ecb07e40a76b6860a6a25a6e0a15f8a');
+INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','353f0fa1c028e819793cc6f90cca807a46b542ad8b2729d78fa64f103ef6b4ef');
+INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'OPEN_ORDER','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','a0b52f1746b35ae87e24d267f1c63800a4678a61e75c2126b5105468d131b0ab');
+INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","tx_index":22}',0,'TRANSACTION_PARSED','cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee','a5cd34ec5cc790d981485e70ae87cf5e569be9c1d03658193b8d0c1178c8d0e2');
+INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"2005a300856ccc74efe80c56927fc13619d5c40ab03ae4ee4fba2050bc2a6b75","messages_hash":"08bb4ea791ea864610410913a61a2273bb1f197405289e0dd3dd8d572deec241","transaction_count":1,"txlist_hash":"afa68f3f9cb6cf8f767075bc9119411e146b6838278d884868a80d9c8e80e26f"}',0,'BLOCK_PARSED',NULL,'7548fa805eec105bf1f6b44251623d3447c572756816d11d09b26f77922f66c4');
+INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f2a6fbce24ae59fb034abd1e565ee1eb3da4d2a2b4fd8efaa83f9960eb6d21e');
+INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23,"utxos_info":"0446c9865d4eb11e643bd97ab9d4ec5d5fbab31025f579f860089d00b6587815:0"}',0,'NEW_TRANSACTION',NULL,'90b81e17ca36319b3d43946ddd7b55e619974063758891408becfad852fc689d');
+INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','ffc98b83284d3a03127fc4da95afa7504949207450ada5ba7fa9e3289e320b5a');
+INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa","tx_index":23}',0,'BURN','ec9788fbae83a6cdf980d5373d85911a27447410efa4b11997fefcc41bc89caa','bfd82be15a9c0bec36c30032c68c65f0b077bac253837224a2e5a6c398940b79');
+INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"95307de52e23a8433143d79710e7df22ba7205e2651c88a2eda220ebc8e0f289","messages_hash":"4068ddcc0045689c3e9645ebc794d2b528065513deb2080edcda01624de8429b","transaction_count":1,"txlist_hash":"66f27b0e46d782b3e7eb8207ba442131069820295ea19ba9b1f8be5ae5b1367b"}',0,'BLOCK_PARSED',NULL,'ec5efd16ccaa34d53f8d69c8b69bdb76ccfb7c6d2e7c1c4b5268748f9e07fdbc');
+INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cff71314e9d21d4b2c55fce3a751811bdbf61bf8f45e8085caf26bdc68085483');
+INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24,"utxos_info":"ff2c227052f38fc83140ec7ca8a5dfa718f3ab0546cbce41920ebd36aa54c691:0"}',0,'NEW_TRANSACTION',NULL,'22626a0a5d09220d171f1a264ed06ba01f7f638a3f054abf39eb30c1cebac7ca');
+INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887"}',0,'BET_UPDATE',NULL,'5422ec615e879711f9e56a59d98cf348b0b2305ee16cc12cf05d55c8f6991dd9');
+INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'deb21587aba9d6c936ab64ee7bf91be56ace7f4cad45aba8e88c6c26eda734dc');
+INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"1075391072b01264a783bf31205a83abdf7356c8c405753d3ef8599f852df887","bet_index":13,"block_index":310023,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'d6ae3812afaf89d9ecf2440cc9c1263c687bf8e52618c1770e10813511098ec8');
+INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','b7786e928bb7b9f710bbfa5c1f0988d3b7240d620bd13359201c1a6e3781c6c0');
+INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','cfb6d4ab9a91fb03b5ff53d80042923476a31dc18ad470f80bd87f90202ea700');
+INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'SEND','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','9442857a90f9173b4ddc46a06dd13a964048c91c0f64441c71e7b964c841c94f');
+INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc","tx_index":24}',0,'TRANSACTION_PARSED','53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc','709387c9a83de5a2b43b525a62d0332fbf0147dfa93aa5eaec518cc65e7e0552');
+INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"de5a22c228bfc58ceaf428d55f180e951ff877537ef463821ce1206f07ab02f3","messages_hash":"ba4728d205413e91313a95fae1eeb6f9499f9681301ec896dd2f54cc00a7f8f4","transaction_count":1,"txlist_hash":"eda7d728863433b4e738e2b317d661a68d7f8921ed3fcf56120e0e0df464f161"}',0,'BLOCK_PARSED',NULL,'24a981dfd7489b6d2349b61f7dc163923403d63754e9ad8140cd8ed2e408d8a2');
+INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc9a4d0a5f09d5d97efa4eb853fdc846c33426be0fc291bd135a285b9249a24a');
+INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"e54da9db6c4911087dcfb2824acfd7429431e3297f6b5836dfa8f95165ac9b08","messages_hash":"d564f49e3a77a2c556845b2c16222d4b3ba1bbff35b3ed77b48d10981afea914","transaction_count":0,"txlist_hash":"6d7b69dafc9e895a4a4b75c2e7ee2dcda352e21b82249074bfd0865e04dfe6f6"}',0,'BLOCK_PARSED',NULL,'fee967c8e9cab75a5de51b4753d3a7807effd6227bb45ac11b7884446cbe05aa');
+INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e11b72c8e28b4dc72e1f2790ddedd4c115f4a272e88c98c258f42451f4885725');
+INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"dac63e0e407785c7a461d839ddd749f020f8a33026cd6ea2acd659567a36c40c","messages_hash":"d1248587b14af743f1d77729b791b2349f2765838aa37d21ba7b654d82f54397","transaction_count":0,"txlist_hash":"fb8e2f9f37cc8ceb72b92925cdb86f62af821bbae196e5de5083d784436e26ef"}',0,'BLOCK_PARSED',NULL,'1b0db446892010dfb206cefd12f302ec6269369375504421a291834adc62455f');
+INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57db7449bf0d8f38f27a95861ee56f942b0aadb95bbccae888b6891c5139c2da');
+INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"0397b7da62fb672aadb96fbdfc37f3265ea04c4d401632d5d9018b9b0ad7cd45","messages_hash":"a9becd46fc3d51a70f96d07323a5767c23da421ba7abb0d27697da19619b5585","transaction_count":0,"txlist_hash":"35f40cec8ce2dab43b642668fb3baed3654b63a328ef005e41c8772cbf02029a"}',0,'BLOCK_PARSED',NULL,'00c3bff4a6fe6e5e0877285ceb9d8ad0e9e906ccce85727fdfc97a7b34d1941c');
+INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89a86beb05999b7812f8be1fbcff85b1c5a02de4ba7cb4b64f8e14410b586f44');
+INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"dbe43e77c383acc66cb46105991ed066ed5309434016081c26ca1a7dd948b6ce","messages_hash":"75c7e51b159ba4fe32829b56a4394952baf61276163e6fea9478289f2fba39e2","transaction_count":0,"txlist_hash":"df94b526dfa87413c5d4c11024019c28dd94051780c00b433b28093788b15ce0"}',0,'BLOCK_PARSED',NULL,'9e8ce9276a2adf6cacf91605880e793a024f5449655157fc844a6690afa8315b');
+INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90124b31889d72e2a560b97a4bd3b086a84c9786e7adbf714c0ec8980bfb6769');
+INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"ce1021a584895988014f16dd9f7b7b29bbe59ca8a761914f60c9290b5ec6a16f","messages_hash":"be170f0adccfcb6c8ab4790ea15cf54bed3b05fc293b7eac889958ee71b0ddaa","transaction_count":0,"txlist_hash":"7d8c18a5d7ec2d6d87ef468e4ed6784e9d41b248bd3d6754bef8f6bd1df9b9f2"}',0,'BLOCK_PARSED',NULL,'6a897154ca05ed79e7d88a32e66c91d5604b5115a87f68fe1cfc238dcc294196');
+INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7340272cfa419897e134cefe890c741202d2d13f6f66310a4a643795233fb4ea');
+INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"4a066ff12cf6f8dad894e23cfbb4fe6a087893b717b3f0c1ec53764b1e922bf4","messages_hash":"6c9c189470ec33433d6c5791eebdca6cb4703ddb73b2f4fae7899a88a1be07e5","transaction_count":0,"txlist_hash":"0dab776748029f3a094e8c2ad8871c1771263f81cfc6de79ded15ff475239371"}',0,'BLOCK_PARSED',NULL,'e652e88a709d42a2d736bee0553d7b294ceb8f8f048f6dcc2be8879e4691c05a');
+INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6048c52f8b7ee348ba134e5c465627577c689c738af4ee47efb5cfa6e9082e3');
+INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"be1cc89117e7cb3fc18eb610103d72f144c31848da4d8001c334aac577f19427","messages_hash":"73cec7370d89b28ca75d7158c8a0b06eae98c3a5fa31f9e1b57f8504949a38ca","transaction_count":0,"txlist_hash":"934400af42a6099d1279e8fc2700bfc118bc313da8383d06892521a17663ef73"}',0,'BLOCK_PARSED',NULL,'a0050646096b88e455417fb2436d7127b322a0a27aa740b2d429872271dc6b6d');
+INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76b7bd95e3bd9177995d5e2b388a15700ed841f40c159fedda976b5fca61a8fc');
+INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"a616b3d81a1ad1db1a9b1491b06ff6bcead9037f75552d14a4c7234b6ff56670","messages_hash":"401372b7a326740d2cc70981c72f81c163ba337296d45cee689937b615add2db","transaction_count":0,"txlist_hash":"b45534f04aeeee6c2ed877085eac7ebea9f7eacceb2026e5ab8a34ff715bc3be"}',0,'BLOCK_PARSED',NULL,'62ffe964515d7159f7ff0ea8f22867d623fb4984e482e75d88784dc5cf40c0f2');
+INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b738f9ac7d838a08a9d47aa4fd127618206abd77a090b7812a9998665569776b');
+INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee"}',0,'ORDER_UPDATE',NULL,'3a15e1f7c7a490251d45c9372ce7da15f35aab5b5024c6fac0faa7c6baaa2562');
+INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a65490c71d126fc57e0e243856988bff07e9040cfd57a993507f300a1bba2e2b');
+INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"cd79f155a7a8b7737cf959cdc347db22f2f38288261842997e13844a09f6f2ee","source":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'01d9818b56dd8b00d0fb1e6fe28f2f1b9f52a2da4f730e9af572f93baa64d1e6');
+INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"e7e76fe32ac5c06696c0bda815f29f1e0785a9d48641615f2ef78fa9982d258f","messages_hash":"3ffdbf7b756e126259a5a2a189e1718a1488e7f4df769568e0869dad0a015262","transaction_count":0,"txlist_hash":"b8261f9bd73b90fef96702a2e83111c3b9305e55efefae86a4078d99ce8c3d0d"}',0,'BLOCK_PARSED',NULL,'e317cea1fdf0b1c366476066c3b1a14a169a4bd5db258a0d62adbb74bb58528a');
+INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba34e72a7ec386e87861316171b79190250f81e9ddf2b2f0d8eefd8cc10c45f8');
+INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"f0d33d2f73f83449c18b9a7bea43857b36effa24eb248283d9356c5280e4992f","messages_hash":"67263d625b0b74ae67bb045b400c9ca95ae58b0e6e0b2df2225dd1f86e34429f","transaction_count":0,"txlist_hash":"bd3133719a6698bda726f9304fa48db5847cc475db79b879d2566da3cc7299d0"}',0,'BLOCK_PARSED',NULL,'7b3d5e9e144c18038a4e5d552ef73badcef5024ef5f22ae48c456a4ebca3aa01');
+INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d7a77873b50a0729aed3ea10ffcaf5ae37849b93140d93a2c8495a77d0ded7a');
+INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"434d631a1c3ef7d31d136b4eab8b3044dc2b65886bf43642537cc592db0415a3","messages_hash":"d64ef53c4c580f5485e1434101824d01cf54c6e89f9949b1b9eafcedcf1437ea","transaction_count":0,"txlist_hash":"eea570d87d2e343bcb9b93764aa9bed952588f4b053d13e87da410b8dee27d7c"}',0,'BLOCK_PARSED',NULL,'c6a616a6c2b6cdb06d4359a5c2658f45533185f7182c84804c4302b6d7f32c81');
+INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'603abe222ebb5c5f35e17392ab804e46e61ea520e964f5f11403747246555adc');
+INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"5ca42816d9c6aaed19f6d25cd02e842b5d834254f90a169630544c83a129c7e5","messages_hash":"21564219dc16025f549b73ae0d077e48b341e8a37771558145c731f348f8ca4c","transaction_count":0,"txlist_hash":"c827847c2f94718cd8c3efdf2b30cf9c8753893a76590efae0e30c61ef9a2d4a"}',0,'BLOCK_PARSED',NULL,'45ee992632e71b9ce04dcbb6f906ba725cebdc38e3ad66feaf8a63ba8cae9355');
+INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10c5f98f5af0f8515fde61b302eeedd9f4f732ab63a099870fe237426bff18b6');
+INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"31aecb842ea816f98aead90fed7ad005c010919a2ef2c5d7a8965b71832d3201","messages_hash":"081773496182dea9591ae087ce76d4597265cc6ea4d8110884c8daa94158181c","transaction_count":0,"txlist_hash":"5a69c5cc5e4aa7e7d071da7ecf8cff88740a707f70ddec29c57ee52b3da09127"}',0,'BLOCK_PARSED',NULL,'07afeaa71f1d32a2956b3c281b732a8c282a7257f8eec4a8106959181c67a1bc');
+INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7304cd52f166d9544a18d6f49821d14e7751f535f771292d4d65afd25f6f7149');
+INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"7a3167eb2c8a80c7c363ac47200ebc8cb6bd53f57da64465bec14bd86cf2c6c7","messages_hash":"4617a2e4e119e6dfb945a94c1dfedfde0242cc01ae918b7e371be250307b20da","transaction_count":0,"txlist_hash":"8bc588a7a9286c3f5c13bc31c0faf29f155391f14ad89defebe3d0a0b21d049e"}',0,'BLOCK_PARSED',NULL,'ac485eaae230ccd0149a611756dccd2c42f53ec6656896504bf803f47e04db61');
+INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77395088a546d216b36cddb4c143a4aeb16d6a31ce525e706c031600d575abfd');
+INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"212bc51956081e57aa618360926e186824dce8987948ee7706403451ab417a0a","messages_hash":"48bd217a7207d35c57da214a35f2666509a6bcc492e3c7c77b4ab60bc19bc0a5","transaction_count":0,"txlist_hash":"77861a778f50d5f8314cf4caeb6a78539702ee5b36b882713079b88143d4c6ca"}',0,'BLOCK_PARSED',NULL,'7d4deeea77b58f8c17daa0bb2d7916163145e03c027c98be39bafc31ccebf8d1');
+INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cde2d9188234aaa6938536ca4bf9773269d1abdd02da0b01132ce9ab92b5a52');
+INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"03e72d7551164403b41956638a0fdec8703c29373ea2b15c770717b0ec39fa95","messages_hash":"a791233ec9114fe7c51326f039cec0fff3ed94853ee9a1273a917252be74c617","transaction_count":0,"txlist_hash":"b445575b555d0621a37fc3f9f22c113126ea35507703f8885294cb2a4613a6c7"}',0,'BLOCK_PARSED',NULL,'93b47b29f548cb2ca12c571afbd3db5b63f17ec68f5fca4868a9905709244e74');
+INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'deb365a03004a9a8b3c863f721b4097989b9079f57cbc326cff8eba3cee36a34');
+INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"922aa744aa0c08274d1f47a0f80638c7937ecaaf95555e68ceec09449e60d080","messages_hash":"3d455ae7d4a5bdca02d48834b93167dae8138051a41d42bfc97faccab6754a86","transaction_count":0,"txlist_hash":"d46179d869f330c786bb81e0c122952d33b264f3af2b4a70627764332cce3fb7"}',0,'BLOCK_PARSED',NULL,'00eba548aa0d0aae55fca421b5c4ccdab156a7ec98e39888d7c497caf235288b');
+INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'926c93e97de9d471529558e92d9cb358f888956a25c7ccce693c07406339d9ef');
+INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"de422fc7f3f11d20b697e0ee57afe101ddeb5e84105153a3bb10f97f9c3f1783","messages_hash":"0f5ddbd4a96f2897519bfbe26c493bb8a36e00b61546ffcf7ebb030a14110285","transaction_count":0,"txlist_hash":"d0cef146e488d50917e659d8c039e7304a41d239d2330947d81e49d3bc7aa723"}',0,'BLOCK_PARSED',NULL,'a64a987461073ef79bc97cae019dee6841bdd5bf08032f0c21bc00278db13e73');
+INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e98e6b80ed1e5ec5ddefcbbce2fb3c1401fc3664cfaba1af57160cb972c840cd');
+INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"82d7c9a0c9d63c3f93b125a9eabc2a7b5f560eccc5fb578d71ec071f150c8fac","messages_hash":"dc17ffc07165ea0d0e8094184ad60245bd6c1026c3920bf82273813413804f14","transaction_count":0,"txlist_hash":"68777d56b0179c05517b00df97200e16079b34c54a270d598c28caa4f39ea43b"}',0,'BLOCK_PARSED',NULL,'c5d82f4bf69170cae3437595b7c6dea368cf4ef58502b998af2ea4a66ffd264b');
+INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'899c6f1719c2e3fc6ac03c4d3e824038ad5a569df4f83f640f0dff19705c9b7b');
+INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"c9232d9cfb183cc9bc09bef78f7c83bac3d9af803e6916c9b14063c4f619d9e6","messages_hash":"3b90dbb12b4a05b7aefecc2ba66a520e19a2172b4b684ecbcecff68c6694c314","transaction_count":0,"txlist_hash":"728975e1d9ed1caeeef47b1b8f1040c3d1ede182cc47282f32f2f464071057b2"}',0,'BLOCK_PARSED',NULL,'afdb8641951e8139ef45fb0e5a8d72ed2d74b8f67c69bec72379b29c699a41ec');
+INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec9d12c72e22bb6409dbc24ea89473ffa78e88f608cd16012e624ac279d68c5f');
+INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"71c3e7aa2ad71e35b752dd4e48381b4ca845c370e5c340f2a221dde808966a45","messages_hash":"8b7febbfb0f18becaf8ee766706aa0a5017d59476c1dc9f14733ba1bc4abe948","transaction_count":0,"txlist_hash":"56e52a1e4cd4954442f83c421e7b8c653e38cd7725d6b140a47e74f57df2c169"}',0,'BLOCK_PARSED',NULL,'bbe3c6a3720552a17dc30c7d9724828d345663be7588716677085bad18a908dc');
+INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47b1cf00c9b14ad44d0289ca26225f413218c25b45813c692e59c1b7259e806c');
+INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"47230be2ba96e7adb6088b18788b52a65aa48183c2c00095b79999f5ea1af514","messages_hash":"49d8af6df66144910832f67fce9b703445a520c1ad7de27ab26b3b32e78b4c98","transaction_count":0,"txlist_hash":"e8b8a81eeb5c9a9fa6f19f6d9617c7c8e1d19368725d223ef270b74b09b1a541"}',0,'BLOCK_PARSED',NULL,'714b342147d116244350372cf2caa7da56460d4f643314e8d3f6fec2207dd22f');
+INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f763d581745934b2bc2c7bb2929edc538ef9cb31e7035eb1724610246735c04c');
+INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"2c306c41049fba2e58a07b5d14f930bcaa465b2afa4df24d8a887958555f0c57","messages_hash":"d5b4db40f8afea6020f21bccadaa9c5eccc364bdc70fe21016dc67cab3eca30b","transaction_count":0,"txlist_hash":"3ed01193d67e5b016184cd322ca01829a616ad7f7c98bdc034c642ab5c37938d"}',0,'BLOCK_PARSED',NULL,'85f2d48e06d22531411bab91f37f7cad245ae996b7a9afdfdcd5694c4b67b96a');
+INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c783c65dd773ac72bee2309e4eaf4cd8cbb2efb471807b473851332fd95500d1');
+INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"95a6325dcb8b9f7aef9da35bd20a46addef23aa5c36795beccacf992bee88d28","messages_hash":"3105eaa549b93d754bb978078aeaf1865301aee814095b5cde4a1875558483ad","transaction_count":0,"txlist_hash":"730fe6316784de4a36e2530b3935fbbd2e1bb9c876c61d0cc436f86a103d6655"}',0,'BLOCK_PARSED',NULL,'ebcf757d156312b572c3927686956507c590559944830a59e4ebbbf36dc33666');
+INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39c183ea653875bfd4fa1062e396924157c3f81ae779f1ca8b39b8afaec229cb');
+INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"8811d6a6b22ff3e0ecf399dd20a28a17ad000e99b17f90e63e02230ed42cf260","messages_hash":"adddcf11a97e071694c4494e4c91034bce6cc8a51842eb7ea88f1ae741925bec","transaction_count":0,"txlist_hash":"a1772d6d909c4fd092a9e511c2f0425480f61c1f2a3d513d973a15e587c47a51"}',0,'BLOCK_PARSED',NULL,'a11b826565b06fc0de1dc2abd40162e2acbeb97cb32311e80cce8619b696be36');
+INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bdb9b47191ddcba8f5bf9df22b1b8766a0c6f0640f5bd9ce83aa029ff165205');
+INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"4bffe3d3071cee255f64108bd8b97652f06190cb73caac5bdc4ef61d3ff9ecd6","messages_hash":"7ebc90dc37959a4cd4fc4fec9486ac5889338b05e6726beff8895ced7ba47480","transaction_count":0,"txlist_hash":"af66fd2b113c2349077f00be46a1cd5629b2ec39576ae16ec004249438781905"}',0,'BLOCK_PARSED',NULL,'f66e1003a50ee9b83d955af8ed798c090332cea8d0fd1e7f07a683981e75f173');
+INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'333e5e47a855b5d57d5ca6f67d648ce56f2b90abeef86bbc399a737586b9ce6b');
+INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"b00d5001e914fde448457f3b373637385114eeb07d79751241f4c1f50cadc050","messages_hash":"9188f5b574d26f34e57ee0929371a1c7379e5b7a82ec522742b559b1eb17834a","transaction_count":0,"txlist_hash":"64149e5936bce967da53b587f07492b64472145ac66f58c1773a4df324ced96d"}',0,'BLOCK_PARSED',NULL,'c9295d6a80293c0efa4b2696651cdfd42fc6f175cd89810335ac93a945ec3ff2');
+INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cfc5a770a5c98be86c0524ba7b2b943d08a5ec4c7078bcc31f7d1f726b2291a');
+INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"90dd8fabe43314ac6ab6f5485275a4b1131c232a1e9d92395fc030659873edb8","messages_hash":"8aec4a1e3193643635db369dcdab91b33b72345292833f8dd5f1557381a120c1","transaction_count":0,"txlist_hash":"71f3161707a90feeb8b8e3340f47a9102c344b652ff70760aaa1f7b3bb30a14f"}',0,'BLOCK_PARSED',NULL,'c16b58b4259bfa4301125107d1f9542e30c994bf94191a64bd1834e5de2b0f2b');
+INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'585e64e43856c1edf677240b147055bc160d395a0cb94e41b2d1a7e71e86bc1a');
+INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"923848bdc7906ab89898021e05e201f69305087b12803c459f066f2d681fe9b5","messages_hash":"25c51426707a0bf04e70dfbfe94bcc1b0c963400d2466ee85f764e88b40c19ad","transaction_count":0,"txlist_hash":"de443d5cc1b054f4cff96f616b234d91b0b5e3712e6d72e64d564c201b7cd757"}',0,'BLOCK_PARSED',NULL,'b584d417a3e7fb1baa2f9be3943e72c4f4b0343f04b9275cef50ee0c3b4a3e83');
+INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e2a6f8fe0c8e6102c407dfdc78fe7272be00adc43b0a2cdfac35f12944b7633');
+INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"e5ecdf8c0a2166fa8fe25adea0d374d34131d29a3c901868fec579eb20a5a930","messages_hash":"475175769e725711441f8a3646330382689cb2eb827383fe08c8002d98532451","transaction_count":0,"txlist_hash":"05b8fe3b76416a506aed1b000e3649af38e59adf26cf0d168c5e84112641ea6c"}',0,'BLOCK_PARSED',NULL,'f58e68c895dea890423ad1a011e53f826f1b91775fe90c2517b1ffaab59264bd');
+INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c0418d08ca1e9651753078aa9314af6016d5414c1bf9ad8e7b9cd4f66baf551');
+INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"03cd75c14bbe11800f4d436dce93235787e2521a19b1d5a90796a5de369680d1","messages_hash":"9327fea38511453a28aef4aa71228afabc9277bf0eaf02cdf5df4ce11a8fc3a6","transaction_count":0,"txlist_hash":"d8edec966eae31778588f68b7343dbdb4bf878b30cb430246b04ebebdd9e43b9"}',0,'BLOCK_PARSED',NULL,'54da397d6f8eb6fdd333c8d52a207cbd5c53796bc9649a94cd4ef28a0932c473');
+INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3b6b4b55d9da86a3fa267fa15e33a6b7042365b0f61bb6e69b3ffceb005c7b1');
+INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"7239560704ca831dfe90791f1cd21ae1f1506275cf6b45933676be9b096d340b","messages_hash":"2ea5884e4241457abfc076bd3c0ceb4ec721c0521820c7138ffde796061d0d22","transaction_count":0,"txlist_hash":"1294057c4f21c98f97d10d96510ce83d0e8d348d138b3caa2c76ef1be47a3c2a"}',0,'BLOCK_PARSED',NULL,'6fa356aa7eafde391eb3295a6393eb66231ab681e9d490b545326d54ebd2e7c6');
+INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5578425fb74613fe09eed2a12af9ee48fdbcc597addb05995283ba1b79acde8');
+INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"3aa4ef8714cbb71c4f0b052dc7ec7795322103ba7b8361db3f33303f564f3815","messages_hash":"35416149d3d326643ca16a87efcad4b38695db8fa6695c6ea23c6d3ad4947866","transaction_count":0,"txlist_hash":"211d0e47a87100167138974db02ac1299bf1b2a1d7b60606b19cecf2f06df0fd"}',0,'BLOCK_PARSED',NULL,'59d6ddee307ffa5874864098045885f396a82ef992d76c29db2cb0850563e5c4');
+INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34421beb7e3458761f22f47cb90ed90377c77abcce4348d456d6629485d298f7');
+INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"fee33c0a466c580887106b4bb7a8c6aeb7a049c94987bae64f695ae400c4a4a1","messages_hash":"81f7bbf8c604ed9441531c78867e0fe3b4198283b5e493ae0d20e8cbc5425903","transaction_count":0,"txlist_hash":"f851a0d0a25322d5939a5cd2cafc831b6282af5ab81932553cb80ff3825b4a2d"}',0,'BLOCK_PARSED',NULL,'2f6bf0cf9a2aa06055dadcdbb6363d13066f20eefb7e26b2080f48a8032a889d');
+INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63ca80bdf9285b6ef399d8f0ab5c8dc6bc115e2f27f17b993e426c1622716863');
+INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"94d58bd9a65a2e13c7ea2373e521952e916b0e1d31d803eced96e5c8903aa625","messages_hash":"f48d3c887503182ca1e6a90beec0d252c9ab19691705d61c97e8b17ac7d11745","transaction_count":0,"txlist_hash":"e959bddf887904cd324ff7bf5fb60380f2c4a7c2b1b4215c63715a59ad297200"}',0,'BLOCK_PARSED',NULL,'d3724dbaab552f8a1c7875ad22483ff77a3875ac1e9850a99a8015fbbbe0b33a');
+INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1cd17a98af5f0b0db8f449a3de6e9b646c5584147f46616dec7c79e829c41026');
+INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"e9c87b2a652d4ef3d48ac74424f57d06dd85893fd542e0784df067c37396b0df","messages_hash":"eebcc49eda3f3aaa2fbd2e50e6533a76536e6ae7bb4d5f483143f1be6fa7bdc9","transaction_count":0,"txlist_hash":"ec205004b519cbbc750bcae821effee41789b3f643f90148e8db2d9d9f83ed49"}',0,'BLOCK_PARSED',NULL,'d8ad10aff3a3295355f379292945fc9d3687f6c24aebdfe22763673ff454a7e1');
+INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b723742f1baacc96abad375cca553d657364009c0cb753c27699334cbf4d0abd');
+INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b664a0985edab20768aec36096a7b2faa159cef4af7e779ad421942137ee317a","messages_hash":"d3d1e2aca506a79b3013c73e4f9558c2fb2b30137e353695d0ab7abbeb704a0c","transaction_count":0,"txlist_hash":"dec86d178abd72944cda84a3154303e16eaf39e5bd5bd59a80cca27a5ed5887e"}',0,'BLOCK_PARSED',NULL,'a060f10fe826d469ca2f66301f702b28483b74091bca6d9f3aadf66a4b22ed18');
+INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c310c366e8e0ace9c61c03eb7522eef7869062f364a5c613c032ba18319ef23');
+INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"5ffa5e1f36c5539b2f5a89a6a60d45ec6372ced770d9b0e0e8dfd61edad84c22","messages_hash":"0b75b269953266c7e9c604108ff699a45385b5a0099967aefcbc7b3c8c1f05a8","transaction_count":0,"txlist_hash":"be052ccd372d556b9b28d0d2b6f9dbfc9b32ff173b71d7842fb6008047a67384"}',0,'BLOCK_PARSED',NULL,'ceb75de629c9af2ae1a21b75a9d2a3901e53085c9317ab26b3f7ec237bbdaa34');
+INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee4647c2b6d4d41a312345859f0b7d54ce4dbb081a90b813544921ce8347f233');
+INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"fc6f9f23c3b8954c7989b0e4ce40087b66dceabc7c0e407ac7f4b397fe2a1281","messages_hash":"4a0c441e144603acead6249c3f1152ca2e6d5c45f23505a3a0deceba0d55f15c","transaction_count":0,"txlist_hash":"1495ca8eeb434877ce36335268a349709e99811e93f416ccf1f0c98114731824"}',0,'BLOCK_PARSED',NULL,'91e4594da5b35d60db844a3230233404f2c12da1a611344225541c39a8bdbd61');
+INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82ca43fbbb0495cf4dd5ba9933240cc03f4fb9f65a88acaf759e53bcef41e304');
+INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"cc6c3b8cf2c457b2f6afb5b208f968544767be8b86ca53bdab4224619a03121d","messages_hash":"c675a64144e460a13c9ad0191178f53c4723c4f5095d6411c893f0e8fa73e95f","transaction_count":0,"txlist_hash":"93d193df39b7340b932b5abd85a027df086e033ff2b18fd8c9d0d03cd6db392f"}',0,'BLOCK_PARSED',NULL,'c3ec7f2630b3dd2d2991d086ea250bc3eba9a8f90b27525a73d2b5b0b84fb9b5');
+INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d32abec583cf8ce4159e30963e4db200a629d2d4b9c658309145246b0426c709');
+INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"cc57ac6aec118ebfb03f5113ad1af749522e60ef4ca201d48bd43478cc0a29e4","messages_hash":"8e65ba6f2cf7d44e6e2f285a16d1e8b81f7e493530f91ec79586dc65d6c050b8","transaction_count":0,"txlist_hash":"064c03f24da9de841de9f492487de4077b842d6de92366d3fe7ff37d558998c1"}',0,'BLOCK_PARSED',NULL,'83f8afe0000305e5dd9bcca367cfc06ff5e7536a86cf6c17f7a89b3e0a6f4655');
+INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15b082cbf7f2e82c8cbc579fde7db44a85967325b33fff1eeac879eab2da3991');
+INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9999be70079c0943f0a00c54236680bafe0c87dd3bb75c982211f751e7ecdcae","messages_hash":"0a6c3691e3b8a2b57e2f181238bcf9935dde9f5c245b7820f0b5f433c796ba86","transaction_count":0,"txlist_hash":"f1196c84f3767cea82b4dfb6a5e4be30f3ed3f53e9b9cefdadf81af9f2b2bd49"}',0,'BLOCK_PARSED',NULL,'4b2c6ef4e0a357137e1f72942fe20382edf9b04cf68f2c38da59ea58c9823b24');
+INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b4af65981181ff424fb5456933b34689e5fcabda855e269fbfc4b3f3ad6e646');
+INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"efb2fcb7b5628bb99994bc1ada157bf80b4516d961497aa011c06da1523801d7","messages_hash":"59b0e5946549cce1cf27bbae93e29e8204a5dc29b4100e9decba75f6ae4fc5a8","transaction_count":0,"txlist_hash":"ba6d273c442538389e43b3ad47795d7e61d9b17427d1a1044333f96cafe575c4"}',0,'BLOCK_PARSED',NULL,'ef005de305cab1fcd4b15209ae417c8f383d7370646d51ad3d595b840eaaf937');
+INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08abfa40a429c9ada9c0c23c9aa8df901da4a8fd45d193a4cbc44cdac2cc70b5');
+INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"fb396fca9af7816f97b22b8bf1b01951e271a75f1a640dfc64955696dc1c0b7d","messages_hash":"b323893b6081dbad6766eec90402ee9450feaa111c83af4d20b162368be1afda","transaction_count":0,"txlist_hash":"20ebf686e5c5a50c0df23ee15488559024622039aa4fa47f1b07dc3967bbc760"}',0,'BLOCK_PARSED',NULL,'a2cf18c3fc09308dbbd4c41c755c8b134c2c6a2deb10635e66589a217190b197');
+INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88702598c561c54d9e6e5ba660b4d9c4e51a69c5c81c61cc8d1ed81449cacd79');
+INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"6cbc681ed90e676cc507d07120888bd4c8759873a0b9215f721a0ce707070086","messages_hash":"184d92a010711b1e64bfea7bfab82dfafefecdccd2159bcd83f1456fa169488f","transaction_count":0,"txlist_hash":"d8c09411f0c7fd43774558fd6cc9884b032cfdcca63a08845b61293ff52ef380"}',0,'BLOCK_PARSED',NULL,'015a4d00d2485203471d82031d8a4b2869fbd424b9666df15b1310b3ce114933');
+INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0b265812831e5bad4725594764c817a1952383370dcab1b5617f10eb681b53a');
+INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"7cb734eb3e24e92de8915a6bea42b6ef721251c481ac9ec751cdbdc08e110011","messages_hash":"08385957f620d0a52d90b02fd33126cef4bc28ff5f86837fb6d3be7d373888fa","transaction_count":0,"txlist_hash":"4f02ef18a644ac564db930818e845496ab0ea3caa34ff70878f0f9f0ef6641e9"}',0,'BLOCK_PARSED',NULL,'ca90dc6c10f0a4ebede49352ef7662e514126ddd711a99fd1ec98f35f5e7c73b');
+INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec2b416ade4ff10e4e4df21837c29625854f162a5a00c9591e501ffb311c2c39');
+INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"7b57a4d1ce0995a938e174e52a096cc9829a0ddd59f698ed04d8b43371a78126","messages_hash":"bb08ea081f9f395784ff3a7cd7825416edfb81864cec59018260adc70f37097e","transaction_count":0,"txlist_hash":"7716368643d8c6d26932d9efabb6fd6e574c1b13b8f149363ec4b99d9f405435"}',0,'BLOCK_PARSED',NULL,'da0d0367b44b3a44718746d43c6bfab203a9514f098ff2778144df9252005161');
+INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95de8c9cc2b5b23990669e1f00121ed68242f2bdf0f8e52248723241330499e7');
+INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"f46f820a64ced97ccf68a56c048459de0b2855ecd4299e447c4b630913ce1749","messages_hash":"f7a91cceefe49d8855f2df2c50939c1c8fcee740a8a4d5ff418ce7ce6b76e270","transaction_count":0,"txlist_hash":"71375966f9a524c1df04c5033ebb17e4293053f3ecb8e724a2f093b3373641b6"}',0,'BLOCK_PARSED',NULL,'9ad5a49abac06eacbdfbf37137eed10171b5ef700ed1c64808cf7af39c622ee7');
+INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1405c66f208c036768bfd9ad2e0d3baa196d52793353a3776f91fdeb3e0d217f');
+INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"878239189ae0afa759af5e59db8a17fd17c0c9a2c017384fd2d0ca789e738050","messages_hash":"b730c18506b801abdae97a502b3b5e5dc8f95c35823a0144ccaa290a9ceb9448","transaction_count":0,"txlist_hash":"4ead629f99d32f3d0ef6c5f7ad1bbffa91608d71b815293128461a9b5850ad15"}',0,'BLOCK_PARSED',NULL,'9d0998ca65b670bf71d77a7357f63bac88586a7372589b78f0cc3eb02bda2717');
+INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01df1ff628fc77cd27d1e77b7b1fa777e86f9a4e5cf33e2e8c3771c502efa421');
+INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d2d86823f727bc075138653a682373a9c76d21d48b5881968adb66042b501e53","messages_hash":"3096cc3bab8d42731e982f34668a9275eeeae9c9a83b9fe0456561ebd93822cc","transaction_count":0,"txlist_hash":"3958da4cebd7670ab3e197b6ff8b5a770dc756dccc1806bdd050513e75e9e33c"}',0,'BLOCK_PARSED',NULL,'7470622a2c71d7129eef885119fd8301982c7aa0daa09f163417ade9fb37d772');
+INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ae2ac8c65c8b9741f532e04575c92d2a76062ab65b0e0fdbeb7708b72a4f5e4');
+INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"9fd098fcc7d71c0c46fc741ea278de92589c44a6efc4980ced53843193553ea8","messages_hash":"3c4a51b4fc3a9c9ef2f01e18d2a12b365ac4d2f0fefae6960d221107c8340f2a","transaction_count":0,"txlist_hash":"f5b2e274c8dda92ac634490b28d13b18d7aeb22fd1a5101c805d3f4265422a7c"}',0,'BLOCK_PARSED',NULL,'caf429b45e7378bb07d47be1c707fe357f5127b28cfda5390ea1d583fc491755');
+INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6d938fdbcde4a41ee7e2397237062ec2867e42360d7356af6b039a78d8eb48a');
+INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"f1ad21f9b4134bc0225c26fb8969af3565c07997197a7ed9636c01f187f07042","messages_hash":"aa3399ef7fe13c37b8a318f94962d0b1444013d4199c9b7ffc85b2432808d5c4","transaction_count":0,"txlist_hash":"3711ef31e2cc58fe1a9cbcf0a5bfdac9a805f346137b923fd86c65f850b35eae"}',0,'BLOCK_PARSED',NULL,'bebe887fca640063da06b4d648ea33f15683120f93c07c1e9ac13c1b37cd50f4');
+INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a79216eda758e3be02758cae648160152918558deb58b2ee3abd39bcf0bcfa8');
+INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"9a1f3de6b5a255720973fb0c93ae2bc8fe8936565140b8ae991b9d83f86a0002","messages_hash":"be6116864cd2323c91dd504e0c5ba6643a9841aef76d3ae6ac7d415ef3598cdd","transaction_count":0,"txlist_hash":"8e73f7f52266820ca7f25665628e31afc6a5e3dcbbf51bc1bc8635440ecdf669"}',0,'BLOCK_PARSED',NULL,'ebd01e5bc6b314b7c11ff79602454b9290570d6d39ac48ef581a55d9e6d552a3');
+INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'365ad20c53677b4cabb1cf0e31450f18f265d9f157acbfde2988634a1ab3a3ef');
+INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"ab56d9f59575b2d8ecc4933bbfa1fb0cb81c7a6fe84c1ba81bdee40c3da13164","messages_hash":"49b0ba1f0d345b6e60e4e793b6c9e73e0fdf0bf209c9a3c24b0c24d7769f0a02","transaction_count":0,"txlist_hash":"2720a0a338a84ae1b56086f0d4f1b341eb5e3b46e9290887d7675800c6872081"}',0,'BLOCK_PARSED',NULL,'984d37161addf19738b596812a4b19d386ddf93fd86cf7ea59e077e25e982572');
+INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48eb29f4382463d89ec484e49be97fd4b0ad57f58211265a7d0778149b971a6b');
+INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"8399d461b5079a145c716f8f6004d2f7870fe93786bd944fa36ef27134c9517c","messages_hash":"d184a05b0691956c7975c2357fa70ef28764e489afea6e0fb9b9ee30ea223149","transaction_count":0,"txlist_hash":"18ee24262532a6a1e49086f1a8ea0161a5c1ae80ce2230f1b76ce782f6aff39a"}',0,'BLOCK_PARSED',NULL,'d1953bb5b8a6e0f8212d37f86c97dc5d2fb710e85318625c762ccb7e06a46fc6');
+INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b95fee803a67bf76cf5a346e3ff86b6910d436d9ca7d4e7e675f117f119c917f');
+INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"b6696a1511704128bbd5ec2c80a1d7d8d3bda6b959f1a674537ace152cb7f8bc","messages_hash":"71a164247eff544bb5d76c3fdc206aed6f8b32f4b7824b05924347d24f24003d","transaction_count":0,"txlist_hash":"e839a4222aad212860b0698214f3d426d065226d1e7983e6620325a583b28abb"}',0,'BLOCK_PARSED',NULL,'dc7f191a576aa3e65b1598be525d9094725e51551a2803b88bbc5d379a7f8354');
+INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'562f5c76516c89879f8c001ebd73fa0f4c0388824930813f7af6459acade6915');
+INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"9aea0f996c36a815e4103b86ee7fc9be784d7c72549e54d04d84cf7fb8adfb78","messages_hash":"3931d114fcb35c51b231f2802a92e41f14c36352664c528cce401ae99b71b99c","transaction_count":0,"txlist_hash":"fca6c96a2d6bbe118c5418a3e2b85dced8cfc0da2a8b46fef65f49e81a459efc"}',0,'BLOCK_PARSED',NULL,'a1dd27e2213815d25e922ebe9c28a8bf9c00ba138fffc2f00d939d3c42d18fa2');
+INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6ad8c576061032c24085447e1231c62cba3299f02b1a948e755d8f34af70740');
+INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"7571b554c5600796b60982bb6df3517eed517a2a3627f8383b92a073cc4a5872","messages_hash":"5284736a51bb78845b202630a9b0b8683844d818e96e75d2b5b3a5ddfaa1bba2","transaction_count":0,"txlist_hash":"a168e4a6c3de65e68532d534107bc3033588b2b0d67ae2f5d23b1ffac1a21ca8"}',0,'BLOCK_PARSED',NULL,'7121875f821383051d946764e12e05fcfe3a92cacf67b61a0a5d40f20dd61a1c');
+INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'730bb85ddebbab91df23d7092cac6c3a3f2ffe478ce005391ab461546d6c8e34');
+INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"b2507a73ff4f6998582daac667c457308ba78744e3d1d7533c0232092e3eab1f","messages_hash":"0b7333f33db9510d98e2ca8def735467ab64140060a516e2df91c367d715cba4","transaction_count":0,"txlist_hash":"379aebcf4d32a0480f5d334f5c04629b6ace33bdc5f138907c338eab7b1d9093"}',0,'BLOCK_PARSED',NULL,'b8dacb1662fcf7bdabda61287adfc0dfa798e0f09baa3456fdf7ca2c12cfb398');
+INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a743f5e51ca4dd9128853a4945df448cbaed86952042d0b259ee33fecf14e66');
+INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"18566f22ffb9bc5f98712ef3234f8da84f8f3e382007b23c3bb8e6c910043746","messages_hash":"f8deddc029ee14e7198cbc0e1640b9249fc407b9daa38cd8007d226abd118a18","transaction_count":0,"txlist_hash":"b238ccb2ac0b6329a0fc30267fd29e4813bfc786ad871de90c1797c6c72e65bb"}',0,'BLOCK_PARSED',NULL,'31a03a17ceb8ecfbd1e0f54b65270f324d516f560b3cf8c144fb409ad3ae7709');
+INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93d70bb59753ae17c575ee2241e9c368640ed5b152bff4244fba646296291c80');
+INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"72c44bddd5b54657623692e444bf893ca7b6d8da992c274bcbaa37c6db903825","messages_hash":"68c33e1afdc6e1b1780bbf565e7921e894507a1f5bcfc617c0e20a50eb2b2848","transaction_count":0,"txlist_hash":"2736ff0669b8c3cfb5b4ad8f082e23d985cbf0c4ba9990175febf1c02882bdf9"}',0,'BLOCK_PARSED',NULL,'bbb8a22546640d21dab4e5bf57b3066df864804bdebc894bbb80e51e0853481d');
+INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad7e968a4e3961995cea7884a41f1d33a372ef1d8acd88462ed9ba8c66806860');
+INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"1ddc441adb4b262862caf5b811b2375bd376d9b5d7b8ee251c4337478833cde9","messages_hash":"ca1a7619ba2ae79805699121cc333fde414c57ec9a390e488e662a3189c3e3a7","transaction_count":0,"txlist_hash":"3407db619adaf80236c8319a7e9283c10a43a7b1717d4d89115ac90e8f52b706"}',0,'BLOCK_PARSED',NULL,'b5fb3fb352e7407daa0f9f7b9d9a81f072a4f9a4d1b1f92b91dd431288f4b5ea');
+INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c475458cf4aae7e3591bcfb1fcbf4d33dc3b4edd3a1f314fcaeb0aa9d3d1209');
+INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"b59447846d380cb8d32639ca13e6e396b68b18483f70b6380296bff65dced3d2","messages_hash":"2e0a475cffb88069a2cc4dbb4b12c74b6363d83f39bbb65d5abe1021a17f6ac3","transaction_count":0,"txlist_hash":"e02f456fb1e9b6de38bb9923f6f68973d592ffa04f65731c66dae734e4fd1d44"}',0,'BLOCK_PARSED',NULL,'73a539c8896732dd44ccc125a5d8637292872724bac028fcc2d0b28040049817');
+INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74c86a67d70ad826cb52bb24742f5afa18b291a3dbd314dce490704eb8f5bfa1');
+INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"54a1c32d20665e7ff92ea43451ff2e59a98136ad7da576fa6b2614dda700b707","messages_hash":"097c6f1f44bc67ebec7cbfdfd708b63baabd73a3146ba1edf6b54dc87f710786","transaction_count":0,"txlist_hash":"5177e82a6aa417664930ecdb0495e108b3fb660ff08a608fa540a29b0c4c2650"}',0,'BLOCK_PARSED',NULL,'bbb6ecc6139a5606e61ae97f2da86258ba7231792884eb7e1a74f725230e7263');
+INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6c86ba01b5590f26e5976df98d111f63392a26be31d3d120adc9cd672117ab0');
+INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"f0bef715c366843e002c75992b8d50d82a3ea54f144350f158e862eb03cb45dd","messages_hash":"b73f3c7b7b1e0f19a7d1ba2cc6866dd7ca76be770e208cc6ba7e0c603fd433cb","transaction_count":0,"txlist_hash":"84abe1e98b75d07291ef4b9847c336f787fdcc74f9a2570d23cb8ce396c9104a"}',0,'BLOCK_PARSED',NULL,'ef7e2dfe25a958de232757ec7dc3cc22c6c6d6f9909ac4788f3eeb27c299c54b');
+INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a33c671f631c868286d812bf54bc7e635b5bf48a747cc35f655dec38e76d43b');
+INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"0a4ce98b783b97f81fff9ab73d7a7091087e8511ebb425c81ccf60c3f9edbfd6","messages_hash":"86b7353dad0c3fffac641322a7bd882fc52f56199747926f4c328534f5f4c105","transaction_count":0,"txlist_hash":"ca0f3a6b9b2eafb864eb324359d4ad9dd85361a7c7d2833ba6bfd230d0e60773"}',0,'BLOCK_PARSED',NULL,'27cbf172f9d3c9375ec524d1adb86c72405a2e2c73d68e358bcb65d90b4439b2');
+INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c832350c2cace2aa9ef33b628cca27294ca134c0d1709a0479fd3984bf06a54');
+INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"f3b6781eebab3a6928791cf281d4ae7cb4f7fb59c6ae7575eba253e6ec6e447b","messages_hash":"dd3c289c76649de35984676df98ce7a261674944cf41c78e74af915a020af2eb","transaction_count":0,"txlist_hash":"283080af19ccbde44c6e268326ddde17fc850d7ca1add3698adb3e606cd984e4"}',0,'BLOCK_PARSED',NULL,'a59a0b7703d2e77c3e087d10021ff00313cd5280f870720ff41edec3da9d42fc');
+INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'754d6d017bed2acd7f4735f1bd1686511fd084a26c7928731d7a99a3317b43f5');
+INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"14261b6b340632c469847700cee16c0163a7f8cad4dac7ad4555efeb5f3235fb","messages_hash":"78fe875ac35c3758592ec74da5ebd82484347ae0e3c8ed4881e947805619d00a","transaction_count":0,"txlist_hash":"744bcdbcd8d44066eb9528c6fa39109148ea557d3cc3bdb88a818b9f9a9dcb25"}',0,'BLOCK_PARSED',NULL,'1bc467158c388465591d2ae6dfd924e31f9a0ba6f0aacf08d2aed5a5b87684b2');
+INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff9d0a2bb67d817c6def3476a248333d0425ba5ab1172e3e18b6aee76147c0a3');
+INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"3c033a502e1890e8a3c697e354cd1769e4300ce7f62ee7ac47a7201e1ad5de2c","messages_hash":"c6b034f77fc0603ddcdf933d1b62c9cd2608a19a97a199e14e01176dab7e8d55","transaction_count":0,"txlist_hash":"c424d1724a85f76a855b4dc834c8b599f764b5095b0649448a0fa2aef1e41d31"}',0,'BLOCK_PARSED',NULL,'2113dc906c30981e62035aa04b9be5ee23155f9bfd34485f0b12124f38ea00c1');
+INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a955ddc71a92cd19e145d1370e24d9c20fcc0a9edbab82b9834eb6aed40b0fec');
+INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"acc1dc4b7ec10c0989af833b57640be486035d76f74b57a50b023fb60f418be2","messages_hash":"6588649087a15a41d8bc572c8483daa38fb89f42cae69e9058c5ed8c0f0aeeb3","transaction_count":0,"txlist_hash":"dde73fa3b80a8e2d1cb8aa692dd62ad712549fdceebf4083965cb36f692d45d9"}',0,'BLOCK_PARSED',NULL,'cf88607b6c0423d25d5552bae58694df66d5207d0e74786481799e6be3a60496');
+INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a0b090081ebf6964ae9e4f527b60255d0e0707207cc497d41bda92fc865a4a3');
+INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"1443d97efeeb04291e117b152f1e18537035a59c80fabb574577cb3e66e5db59","messages_hash":"8903f00d95a0d220ef6471ae385a6b579ce5ea829650b352bb98b1b8434aa154","transaction_count":0,"txlist_hash":"a52c247beb178317cdd18532927c8281abe3af9914c676cf250084d4b1e96762"}',0,'BLOCK_PARSED',NULL,'2bd04e42cb0325300411f23232aa186ef5659b7414353e98a21fa33cc202c368');
+INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b343dce326329896c8c90913962fa8de121456bed3e08b4dce7977de53aac32f');
+INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"1c74208da191b965f52006e577c3f4df30f29b36b1d137ab457bbfe30737285d","messages_hash":"1d0ac0a9afcc74d1940fb96a15b9c256a847e2bbfca44b6724582f3153847d07","transaction_count":0,"txlist_hash":"693d04e9be7d9de1aee3cfe832c6d913213bbf44b0f04a5b394e1aceb77b7b49"}',0,'BLOCK_PARSED',NULL,'3b5c03efa9e3a3e80344551ea4a95840c3ddc3df68d3a0ee528dbfb601c751cc');
+INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeb2297779753afa75b4beaeea59742df5b59e8ee6fb60d8fb916d38b029d00b');
+INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"662e1b232c5afeba4df756a31d7b63f7f33dbb4aa752abbea9f0b57f1c7c4295","messages_hash":"08ce8e7e7278a67d7a7b525a898550f0704cacee2ddffd06ca8a9ba82cd01b36","transaction_count":0,"txlist_hash":"bce25b4036b54089a064c1fd781923787126977938ff3c206f0a8d76ddf52489"}',0,'BLOCK_PARSED',NULL,'66963d73327a11c1b838bfc354d2a0c413bb6f00295c23633100953f262b8349');
+INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c08a6324568cc734da1efba2b6232ced231dcc39bc2fe87b1cc0e3a87b5a8b7c');
+INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"8a1b60657764a35ce95c9e215600f63f0fc8c4933c682ea017553010743c97a2","messages_hash":"ec7c4e83f9b0e1011862ce5421dfd8ca94c79ea422ee5c77d62efbab4d6e07b2","transaction_count":0,"txlist_hash":"0d0259b0c4755aba3d725283f1773bdd766a0ae009f2b94be00a5589b61ef8f5"}',0,'BLOCK_PARSED',NULL,'79884d112a3ec477ee543b540c9b4957f7085fe5870dbc74aadb23cdb0177ba7');
+INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b9aad361f5eb6c1627c687374ffdf01b6640b76782f5113ea1e051cd6e751e3');
+INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c2e25d20f3c50a67a4268d9aa3e386c92e5217cf8f106d2affaae19e49b48828","messages_hash":"86a2e2d74f9bab3f7e5c2a92385ced78332b792eeb786a8a5830093b6bbaf8d9","transaction_count":0,"txlist_hash":"32c25e6b70ffe5ea4582a7fd8bf8c892d4fe0afb247e3aca79686e5b5ce9e430"}',0,'BLOCK_PARSED',NULL,'54237bbaa1ffdb9c1ca0fbf9fbb84133be2a517f7a70cc4c449809450abce006');
+INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba06877e27deefcaee191a3cacc65c8bfaacd413c7eb5880f52d0d32eeef41c5');
+INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"bd7479caeb388072138c99d19624e495200df1bf02f47caf0ae8a5007fd9dfce","messages_hash":"406eb03b3ae001f61024cd239356705095e1a66b9399c0e3b4ae90689f565f90","transaction_count":0,"txlist_hash":"0fdf6d97b6a63f690d30aca13e27aa4cd6bc3ebbf525cfe6f6eee3ce529dfff4"}',0,'BLOCK_PARSED',NULL,'47bc98e1bd77fe08fd5c4ecffa010f3d4f45b19713994f2e6d2fa199199e6e30');
+INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d624177502344c984f24494646b7c7a7366a92ed0824654e826fe57bff39376c');
+INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ddb8394df96a37e0127c8894e669072cb195ac953e2a3e922b95bf40804820b6","messages_hash":"e686f294e7b2c37fe3b5b23ef946a17f1be14945d349550afa083fc02d9314c7","transaction_count":0,"txlist_hash":"8cd686429ec5799fb9a78d07d662c5f51431c6d79691a45c109d512d261aa5df"}',0,'BLOCK_PARSED',NULL,'30266e0d9c4ab6b890bef6a738bb8ba3680819f670a3ec82455162b344c398fb');
+INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86dfb64f7648e7ba945af0afd8828c09cd02f8257822ca48a29efaea321bcf1d');
+INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"3ed7694459a57281ba8e4159ce156333aae4b596aa3ab5193ea6c1901f2c9667","messages_hash":"8d97e6692ae1488109eb75f96eaec5cc775f8aa9fcc1ef1bbd0a95a46e2264f7","transaction_count":0,"txlist_hash":"b6c153092c9e72a0fc5f32febc767803bf50df6886edea271315e382903b8cc1"}',0,'BLOCK_PARSED',NULL,'0c9e90fe4f45dbd7a1f5dae877d6643645dc94d637144a9b86de19dd06954cdc');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -1418,31 +1435,33 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',0,310005,'BBBB',1000000000,1,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(6,'1ba2a0b4ee8543976aab629c78103c0ba86c60250c11d51f9bc40676487283b7',0,310005,'BBBB',1000000000,1,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(7,'3f9e2dc4f7a72dee0e2d3badd871324506fe6c8239f62b6aa35f316800d55846',0,310006,'BBBC',100000,0,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -1482,14 +1501,14 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(2,'5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'valid',0,NULL);
-INSERT INTO sends VALUES(8,'30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'valid',0,NULL);
-INSERT INTO sends VALUES(24,'53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL);
+INSERT INTO sends VALUES(2,'5849bd15f5a73840e4babd220ed450d0f46128479d6bb7eaf9f4e98a409c97d4',310001,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(8,'30bfb2793bd1a65e5993edb9c3268db31bc96b8bf1f6e3bef037da4f4e93bc65',310007,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'7da21bef68887cb50f8582fc0dda69ee5414993450dfab7437891b5a1117e849',310008,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'valid',0,NULL,0);
+INSERT INTO sends VALUES(24,'53290702a54a5c19d9a5e2fc1942c2381a4d2283f30d645579b982ae0dbb7fcc',310023,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL,0);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -1689,15 +1708,15 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -1931,3 +1950,121 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql
index 93e6b49e71..1eff5145aa 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.sql
@@ -19,108 +19,108 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'a16ae7423db132c887ae41cc33b7fa48a0cc6571d5a49e0963be25ec8a9769b4','b8fb4fb649dd315851564165b076d636e5a85e043d59c11877bdccced38f1b3e','72fb35fd107eb57460c13d547f5963136bd2c13d3ded9fc7318f917f7b7bf3e4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'0cda5c4a26f0b23d5b948142dcd226b2718c57c9c6a481250128a7a1c8ad30dc','1c009ff73127980e51ba6a7035bec5c2a9650b5a184da1d55c3d807fa658f8e7','aff0be14b9e6ace9e4d6333cf04061ef6447598c02d9b27fac1d939df31aa09c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'657c31576766cf1f8a699a14e6c7493498673f1948bea1be4f639247f4d52d53','c674bb5077acb71ab19a6a4a8f779015846135e7b93a5006555fe1f4ad10c58e','3f32659dd96a8649fd53b83ac36a4fc05acaac73db54738573b8642b7875f787',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'e11e7eeb21ff539c27324c94a407dc6f04c739f3ed9841f9f661bf4441e4d847','105a5c9915547d3ebfe733d284d6e812cada8e86a904510fc196e2f0af5b50a4','85ce063a964cd9bc7d1b5803ebd4a0f460cd48e5be820968cd47859025492a45',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2742a3e99eed62c09d9ecdaf501aa69b0d0b21fc092ca061448d5016957f35e0','369b47f51b512708e680edc5ba459b91e2a514f5a5c7cb8435670a4b3ed34dbe','604c56317946ca59a8278817b3802ec346527d2d286d64e2f354179effbe87b0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'49f526a56f21491c797e8e2559f722ded6f6990b1f69c55dc38791d8d30f4048','f0c2ddd7c39b14fc55d8518c65aa0811fe7807ebd1eebb4b66df8459f9e5352b','7601e852ffd000c30484a083254b65a7d1d6c72df44ebf568915c7d8fcd72512',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'78787c4c9537fc4db5d1dc7d31d4fab6b445d57021aab1a38d4bd6a9404713c5','877117b3bd10ddbe6e46f417845085a6bdecd86a4961b99c80e991b4c51e0f5e','914680b3a6ab891815c044f2d4a31422852b4125f1810e9d1179515560f1582f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'5cc2599b63007433426c220c59a777b5c37b1165595f2ba239c3ce578c8055ab','702a5772ce8529995f7a66a244e8be495e3f7cbedb7b09f47e3d5aa941c7f4c1','854c4c587b4276b27f3fed020babe5e6b8ab8dd184a4d7ba1432ab6bfab2c6ea',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'9550db622e679ff3d63d814f9ffa743d57eb12491b213ef6474617a6c738c3fa','6c536f7ae10567cbd91945e3e958640e6c65408f83e4a1d93e705950ba39de1b','345a10c31ef469648159999ef16856316259345971b2eec607a5ce57ba556676',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'08c005dd5bae7f21ca27803d75318ac4b968c6d4dd2c275ef284c03fea43b189','8f8156aca3441754221fbf9cc21b0e7d877a533e00f63950be3f95d0a9305433','5ab18e8b7b08bdb2aabef0fb95b3a8d431438f98527f224b19863e1a18e7671b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'07f48634d06e6be1d800e068cd213a648517fe167ed89c355d9db966897ed7b0','c5956a9750e786639ceb4a252a219afef6abb753037888c90ebf17a5c5db079f','0546e010b64a8b52b22b5806d642b98afa94cd8ba58a7b79fd5468c7d3967e2e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'8d0be0b3731bdd0d611e81b48efa6c706a983990f31bc563d57893f705b73aa7','219d47523246e5c4ffa99ae9c29bdcfdf9f419bff3d21da76fdc91cfe99fc28d','aa5dc6df82251757a41241459af772cbf946bceda20e4ab304e9c0dc1d54b729',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'e3de05180536ad40eb9007f19ccb819fee0586cb9e7c414dc560e506ae5c09b7','ce6072bd562a52051fc530ec552aa343e4980a1b236f1cb8318c415d3eb2e851','5322bd28e42ff13238d6bad863782392d07d3c529139d25b5a7859f2065e25ff',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'e521556db091cc726fb38cbebfd10923e37dab652c51dca73a646fe5bd81bb96','1a1e24f2debcd4b5b1e350a71823758d3114335ac831367bc91c9e487b94c65c','53dd35d7fcb3cb00c464d2e5cf8d658b0de66fbdb3c644d862477ec1cf9827ea',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1cd6d92fbbca9266135a35f20a4328d510c8d209ba6161dc8c9e9bfa69032c57','80ee1bd354b8e1aa1c2f57926fbd36c0d9e2dbd3f77d8f2e43d59b29bd8175a6','2b42fe416ff6b68adcff8c01b8ad5e9e664617e5982215fa404edea66c7ef951',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'62759ea6d5070225bd30253a42b6c68fdaf2c4165b1b221b8e7bdddeb26e9737','30a124b4460d985c715c7bbd85cfbe972a5caf457e45844e0a54daa258ca3376','95e6788f7af884c71f7e813de2665e2beddc6faee99015402ec9e8498edf6074',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'f9fc0dd4d98ac5e06e4f9673cf5678f9fc264cda23172e24427b833331b73c33','cdbbf3665287df62a1660198e00049d06f649f37c49cb76e9fb1eab12960e66c','7fd6480d829327edbce5d160651ffe3490f980d0e5f2b0ff6d5328f7e29e75d4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'4a355b8e80a902030f384f58700d05da9a6efaae3f3ce0b1a056dc1250d9ec63','355616d4b8b8408ea7061e787ca35918b6d0417895a2a2ff224d207f0f76e02a','4326f831920bfbfc580e6dbc0b1c8c012c7b46f95f2a57e8cfba5128a8ec7d31',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'57aee8f9c9b63342ceeea3a3162998e9034a3d624d6d85b19782943ce170cef5','7987b849a43c706d33e421d45e99ca6593c9aa8c69079522888f746a8d4ff748','1933395b09d7e4284e5565db7975d03a7b752fa50af48573e1ef8bd7aaf91964',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'d11f94528a9e0034365e4388ee455f02102d2024c65e1428cdee28b6e5aa7e1c','14d0604fb6986f281715ae660221c79b7bfddf15cbc7da02c722e86b8e264d85','f58bd63cd1c639a15c0ef21fbb816bdcfc65555f27e76c7638d632f2f65308ed',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'4397f5568bfcf8cc90d1e72b7c61e7cc6905a0d9d3b3890c33e2afb464a25fb9','5483ead85237ef0ceb3486e3c3e6ee1e5080a5dd602f805b811cedf996b8dbaa','c83c26a59d32bdb9ac99237809b1df16a5ac2ca3102b1c6dc4ebf59b57e6c231',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'16b7018344f7a97695eb17dc5921c4955b3f8cf4d9e70bd8628041c4033886b9','bd68fe9b7aef054c8a5925dff9ff140cb5c00eb611a8802156196ed486479ad1','df2718afd201901a86d99a9d0a6d51eae8c18ffd5410c2df3e03f9bc9dc19ad6',NULL,NULL,1);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'c3c26212677f4aed4614b653f1e5da509f962c29502d22c84c1c5522bca0dcf5','109e820ac7d290ecec049098115ba6b467ba90ba624aa24326cc7e103e51b265','44ca0135d35e858c86b381ada27e536e525b152a649f50d2707dba4154f181bf',NULL,NULL,1);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'420b753d9e2a4ae5c00cf65efccb9a657d2daeb19159075d1671a076d8c1ade1','8e03eae75b5f9306a0a8142296412f7271b17f8c751e9e8e1b1cbeca5418f4eb','91081b0be0fff5219493139012532117f008245abc4b50bd36faab48f85be5ff',NULL,NULL,1);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'786e9c043df5025bb8d123322e2dd9cba30cc433ff90a44b7b7036369565835b','6a80f89b076199d165801b34c7d292976e069920f2ae4184e09dad8411735b94','9ab46e4d9677c04c33eaf38a5739415b157e5030714de0a236e7be42ff238dc0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'1a2e0585eb1a7f608b4ca4b1d252f555f87e7f16fff124ed869285ec17643059','a2110149cc4e90d1474c53bdf91e24f8bbb8931548542a6afda94bc343fe3a7f','20141b1af89156b848ceb20e590be9ff0d54478bcaad039be244306aef734642',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'44a1f10e2df25328c38e20c36029bff557c7a93784030ece591406df9c71ebd6','d087d907b7af1ac1171c61f00c756754fc94e0edf0dc265d9eced163a07357c1','63504129b0e9f989d9c6f9ab21687c26b7202d9cf0f03f79958385033f163464',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'093f82c2b8e108242edc6dad72e5878700b9c33606c359e673bdfe65341db64a','5796b7de2e12cda876546b21e2a64e92b85792c201f39fe404e7fa6c395e78db','66093532b874150a5943bf3868b6f76cfcd695755d97035987429f4cfa0edeb5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'efac93e04f7cd9d3b1c0af3da102c29b50d940b4b5687fb0061b3b6e169290f6','5daed82ccefd923a597451b918ece6172dbc75df5cd53ea0f7e40065e3d0d929','de99b16970903ae65ce92f70f7d0a8da9ad74db4c483e2d4447cb548982d0bc9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'1fa464e853787685a588de6dab287456de7a0efdcd76052a41ddaf5e2f85a648','818415429923b4a38cb65dddb4e8b8a17264cea0188e905d4a19db340e98ef82','f3b6cd92ef9d32c924d0ce7881b825fa846c06a58bbc075502484ed976f8f528',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'fee866f1cf6e5f83010b97e0e9d88b54ce43fdf45e89081ba3b2fe07b62434fc','7e3fb0dc1ce885afb71be88ad0ca3b189202535d328ff70bda7cceaede6813bb','c61b51630aa3cec277cb59ae2f322a8abd57699b6f090b731564d2e6d00f4810',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'11ed526c46610698e7a4f102ae91755a541d668750ec3bc10decd0c1709d1115','e3044e5fc57d122eb707d271ca1f4248358a8f477a6466cedb739e7799351bb8','6e82edc73115783e4515dc3c8f34c62c906da0c0c882c4ab621a4adf58ad11b5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'7930e5a2c6150df64dfd995801aec68ce11df292e206f08f7ff20eda9ca2d017','cbe01ce5a4da72538e9310180de025f141ea8baf1b6eeede8164cac3488532fe','9e5bd4348011a4bfd4f91b9ecfa75389c87204381308a38032ccbfd463529617',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'c5834a54b3ad7f9fdbb18a87c8cefe867eff2ba1ae5bff238a3a041431d0afdd','81bceadbd9f9b956ed25021e2e0a9f4217c7424522105f8a0ba41c9f78234fcd','907ed29694aefd86edfbc4a210f60db1de73085d1ef82b5eba6fed922ef2681a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'5a4b3f29cb1554ae8f670955df4dde45fdcc57623a50ca7d8f2c78ad79186a7a','0ec430eb4c16f386b5abbd6586133741dfe6c19eb820d388810f3680442d363a','dd328930abb087b56675e8122dc92a7dcd71162ee577f4d482fa176d2a88b3fb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'b81834ed9e92514fe7d277378be72e1f81043a615a4b67cb67dbcf97e3c3b43e','a883860baff0c6dec150c9d80b8a640401e191312eeebd4e9f21914e7803c46b','41db3179bc9788824037f2c6341e43178c2013baec35d5144cfd625349ca9b20',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'736adff04611f10a4e384b5d5c44651bdf037c0caeb8dda5bedbbc6d18d04ca2','821ad697a76d9a35b14a7c388b65b4f3a86fc66c42e02af6d568f73e2586beec','e47efff42238d0792a847ce03c257ebc6a98df5b2ed2aa6794deb87bb1762714',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'34d49fb14a7ec85ebd02ffe04768f5aa7382ed0ac7f9ae903e71567dc5d9ab67','c5ff4e50b07b755c23a6d9ca6dd5efe71a2728c4c662418fab814993be455308','c85db66d7f2fc6b8db0dc4a2290e79e34f961b84004b7d0260be4e17d645b209',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'9bfc3bf0ed35dd256f0df04c813dab9dd818238163e6b01842e18815971e7010','8a2ea429a26990e70f9c8937d11c58c986f991c55f196416344847435c670849','2c2e220375664b0c12fa86da7be19a292aa6fdd5ada46d285df190b50f5d3bb4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'da7a63f22053d1713c805684d14695c31670eaf848bf23eee3331e679744f291','9f186391b30cc438ae59dabfb18dfca8811193a8fe37cada73d513ad688a80f0','b203f7b7b307a063a1d329553fb07b2b1dcece4111f3cd0c35b32c3af097d943',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'ddb485115b64342bcb172cc3e77b20effb1294e635459119b59179f3b6a87d66','f73c8b5e92181566aeee4ec42a1e50b950fd18680c69c58fe20b5288a915d7e9','c7ce0dc2cbfb4e01ad2d6ee56ba13aa9b1bb7ea41a814d918e62351b5f7e46d6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'b58d05ae5f282f7904c7a759ae5624194b5cb091f43f05d738cb4002a999c26d','73ee837bac9153dbc94c23879192b6c2fd71a9a6148502e8c4693bd342c4feec','93117028a2487b2bfcaf92829728572bd59794f0ecc6ab6108ad7e2dc620023e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'c18e1989fccd8bc7168ebf2acc035c224a9010b428b81c814683b0ce1e244113','9ef577154ca6e451585e9dcc4c3690d496b8a666856987194c4e41414743945f','2d222cb4b49a3a83535b2f026e13759f1ef6faf8ff833e79dfd218a8e2972a7e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'1a935492fce6a168d9aafd24246bba6f5615f53a47311549059b21adc6a67154','29f3ff5d49a8c6ffbf0ddc41a5e45fd3b777fd7c9ea60a914191fc551ac46ea4','2e99c026842fbb3d0096b55a09d137f21c59b1d5b1d9303b8c02d3e049e471ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'536611cb3cb3005f8c4ffc5b8ed8271734448b5d6f49bd47eb0456bc4ee207e4','6f22c984234616fa84a474dc80c5d5e25ccdbec1a84b0cabb279505e93aa4d6c','f45c8d78c1854e9ff54aa0ea675ae1e5267a5b9ee5e41284fdf2bcc8fa49553f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'ebbeea29c073c61dad3e091302cd945a9926741db0dc6a918792c4c01b8cc30c','a1d1a029c0bcbe481f8ba760714e266ff9e759844517ceef96bbaefb05652dcd','f7e2e1530436138aa604ff4ab4fdf5199c0c14b1307aad7f53992963325b99b8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'d9baff8bec82f3c29f1fa69c9ddd456f1867f33a55d1648605ea7109270d8e07','26f6ea6c1e350b91f4757619dd52bb7a2b2bad7277497f0d4e1d61b363eb7a99','79f70931f48bb72ed75656a64ab2de397aa09047ac7609b22611c21b40dd754d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'09ad4a6bb3f671e6ac6d595bcbfb82371cc41f35c309142678eb5b7df97a5de5','5e32dc4d14838fdf0460146fd87eeb59ece3416bb7104362d24fd6d2bf0fe963','24e0e1b61be60f0a0078d5d1ac7e31c287354323e9331e2bf40021cc703358f6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'208200708851a32b0ffaecade58f78f8ba7d5820457c582d5ca127e16fec0952','c0a8253cff82f71d9a90c7b982e5d5093d5c2bbc2ee2859d9d7d09afbef56192','2597361763116e4e99d7f8d7988dc1c3a1f1316e51703c09a1d02852aa1caa26',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'9d1a7335d989bb73b0363bc88da6dd82c0fbaf064b1d70708b0aa2f6a8a9958b','c07861a54cc9537b7a2486e5a7e6366cd04413fb1307712ec6af55588dd22cfc','17d15d7933015f793185bd1eae6e311471e2cdf3c15df12eef904447206625a2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'2fd9039e49fcbb070315defae275bed858cfbb539bc4db8f2ec5f5ff6d69ea25','0ae948495f47c1ad343052f786467c6236cd6ca23dce0c628503a44ada8f8329','e9d18500e588b2ee026e997cf3bf94d83180495f1ed9a943591b63d99c379e1f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'2e97864865a020b04ed60b22c347d9dbebce5d00abce86c2b3a5054a3184699b','986536c5e9cec38d9b78bef44e21e73f93a654b9c421c7822dcba475b14f2127','db5355867330ece23a480053220efc0a9c0e2adc29c43066b897db1f8be5ce5d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'f6a8e9f4cde78fbf6c9a5ea176312116f3813f2c0bcaee6c92f3beb13a8c3899','4ffb95c683e1839d31018cc7ec92e978014b8cd32f308c2819ff2e79ff60fa2d','d42146acaf047c28ad0bff965c05dcefaf06d898828e4a538d9fd1a7422e3e89',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'1d84e4657febaa291b4873d808d9ab433370227976196fd6436a65839c3575d1','0ed99730b61327cff9ed15d8585f70d7629b2b10150a717093dac4fafcc4e737','cea5b93f173a27746ed90eb780446303b38fa611548f5641f24381973435570b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'083f6b773191caaf1844f47c53077e8724e100d0b46461ddaa642b88d5265c9a','69aa5d1c74c026da7b7cebe352bd6d907a31174cfd6f346e09382b0cf3fb8239','73b50c51dd56dc45dfd626e0051250cdbebd9ce256952530fd0b6710a3cba150',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'b1302087b804fc5753df5a4d8aaf8626e80ff99b429f52fed97767b051c24e8c','e35d2a19e5b60e2534a36d8c1d0c14c6211d56c29b4aa4953a14bf0b83bcc405','7a31dd7f45427e5ed38234de010caee7ef9713c09191aedc7ce9279a4dfd9059',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'956c9ca0b51eaba7343703a165eb96d5947fc764457ef3dde5ca90c18d3b2f3d','165a88d3d459ce6f4f37cc2ddb1c365dd01542b102dc68181d41b95ebde044dd','7c37e4f5dcbb655f768081f89e89f74a8dfa368459e2c65c34e41f4904709f0b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'e86cae3e73aa13e8498a98de335ed0cbdb7899b24e91839bbf0f50aa22355ecb','37394f57952a82ab5fb6ceb7323152d83f3c911a533e289c55b531fc83269268','cb8ea0fe610cd5906ffe9de26da5d5b2635ddfc88ececfe465e2f9711bcfda04',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'54bd5e4fc1bc17df27f9e6f22b5e1facd82229a877e09ec0136f878f2da81344','ebd7b1c7c24aa51a0622e244d1b486d4bde8b1019d86e1d8845b6e90847ad09b','34d713c9ef3e60d682f178fa7dbe1daf4f12a64fc8143a01e036666da1f4f46a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'1403832427d4c482b0d2d925e08a72fe37f5aaa6af73e74f601f7e22fdad7662','cb71b795988456a345fd21a3c729005ab802707d54311480012920f07db40bc9','5d1b34371d873a0b08e072ba89187bf5f51e9d1bd9471b3a9ad8c3cc0374adca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'7b08f124a953d0e5511b0698d3314f5ec71ebba77b94c4d236ff9738d5a587e8','cf47be21938b5a55ffb8eba6a9f63eb61b89e679b279d75080571832bf08c0e0','e52e415923ef293e6c5a234251c4298558d2d739934fb7efdf6fc6c56c341ece',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'1de158dfd18413618b9800236a2aa265d2fab497b09a839be408da8871b0960a','a9c1a3c24a410649e701fc0b321b2030b6fc35de7a2538a10e75b482cbe96b3f','739ac804a6f6728dbb657d1c6e918b357b3bca5b468bd919a413f4c826737ac5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'aa4be540bad6cd762a02b77856c3d6a737d90245e71f61b63a426573bffb3a4a','93d0499dcc4fc819927eed8d1eec8b094eb5a4323b70d2cec33d568e31737ce4','54d67ccdcc62ff368fd5344c672b89a1b1e70cab962fc124ff44562a8669bd40',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'49edce8190c2480fe3c6b3df7c7c5f13d34f67c3aef3b2aa12eaea603153aa83','a76d957ffb41dbfd83b8c92ad487582586cdf13ca49dc1dfc30e869afc8ca76b','6aaade6a270f9a62a4dcaac7b6f1c07cd511a51f0094be18b1c8aff23e7951ef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'a2a8c9946cf45490858deb15c8f277ec545854dfc02dc9d248a684c0c3544d6e','0270a3faca0bc1a674fbd3632a1edbe8363d5115db8af56f135493f09a63df30','4c574f2119c32253047618cfd26249d088f1f78b7a3122be6132431db5812d9d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'ca1e5d385fd9cec1184d28095a6f4a2ec2914d40cc016309fe322dbb335cf2c3','85484b37f06238496ca822d539fe09e0e2906d12cf5b6d77c6219af29ec7410a','917bc990738cda65cd360163d7a69a3d52acfa1d93ef3d39e0684dd323519842',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'73519f53874cc8cbe9052bf8dd18c590e0a4bd5bdc2a286c4930e8cfd006a993','9c360f75cdc0788ebf8a530fa967e8eaefc3876b19739dfef2f7307e1af414f2','a59263137511047b1accc2820a60c67aaee255e806d3850abeafe6a7de0ebb57',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'5de09a95e36480de84f9d3c8db3e18b7bf5145f8b6ee6bde57b5c3de11274cbd','b4a32df829f1f913a9077d0ecd83362230bf893ffd654703538c5fc1c30a181e','9eef7e51b0077440af3cdd4cd771c9639cc28f7c45baa6a9792e5310382a2119',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'be6a452931358d500eda0fd2aa3a91b86483fa847a7bf350f23d33d85712592e','fc4f551737950e1293a8718899c3b74c2ce76d8d1f58d6e22d10976ffd15eb24','3e98d5f18828f0025e9ae510f23a142b57d1801ea8d4f33426caba2d861be081',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'5940a47dfa1a1c8bc1e51f1e64100cd0604c74197c88b39f6f7a9d5b763a0b56','53ce1fdeb3b9e39930ad127bc86bc71e7b497f24cc34af2a022200db36ebfa36','6f2fcc910d98c607fb5b6373ae58afc4d60928eb6de15f43489fbd4221529157',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'6aebe68545207e7cc81d68c3aca801f0b39e276ac86e8e0130d5029eefb60e2e','0d482039b615aa55b721fef8ddaffcc2942838dbda8784940e9fdd8dba8b1465','b24b67a141d2b58200f8e59427c601292b3cf1ffe3b1459bd06984b224be6286',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'d005aff752907b93e2dfe442896c8976203f0139fb67cda3ea1936aea495e008','8be094b2e99ec5c85a594d4a4059b7427ffbee3671190b84161fbf2fadb6f313','616dba0e803fd874755b060b0585ffa3bfe5777161671e5438501c82a61dd167',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'781f0ebe67964c25640f0bf5624e08cda546dbbb6648bd6e8d9f280c7f075f7c','9c5e049c1738beda53ffdffe18492b0af038a756278f2bdeaddaa1a726681ce5','d49d67e76802bf51725be6edba18b0699a224052de810192c76e1780d6fdd23f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'83b5e1ca76fda895b144e8c03cda5fc3d18f6324b5413fd74923e51a94ccc53a','a7199dd9b360cc694f85a81ccf72fd614e6c0400d753132cb517ca9da55df86a','d10c8c167ab11695802fabdfb86811f5e97dfd159eb48726599d1f6db6e8d79d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'4293be396327c0aa3c56c77a9152068cc32612692c76ba94e8961c59a9ad780f','833f9d3ae03e5819eec47318d948999dfbe35fcbe66766f985b6ca71eccae54a','8ffe9a16041d01db32f197ac722248cc5a965f8b898b9993fd22a85eea5db562',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'d08b93b609f1766534cb0c30502350b9e4ccc4a885ebff7633e9e5c5b52d8e90','7db8bbcaa76b087fbcdbd8f5b428b3587c494f0cd7d458a2d519abb0ef26f424','292b6736907d722669ccff7de41f5768bf856990f27bed1bc6bbae4d86a698b0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'06c72d219df429f2873af74b6250f3d12996cce14496d151bf8bd4cf819532e4','8f6a902dd8d5d573658f07e8ac598ccc46ed49bff95b2a9ed89a051c852215a5','454f362796ec85e40ff999ad703786cb1566dc265cbad79679a21863df744616',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'0ff019cc4b9b8a394aad1b9f8f579fd5c4cc48a846e4fe71ab2f45226cec5a1e','e1ab0a4cbd4e60c5b1da333c5ef542bbc1d8bbd7709fdb35374c072a1f54d38c','f1fd80fbd94b33058c5f6c79aba84481468967589830db3d32883d8543d32367',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'6ea40a02464725d0ba45b9969bdbb7529ae5e3ca794ae00abf4783bfc9667104','be6f6965b6ba8aae157eb48f28bce3fa91c3bbc22b88fc3ee8d4f126c1538032','ced300cd87e34fe62b096d945571be63ab5bba0fc53d62541a52f6c1274f6e3e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'076abf036bd51c47525fe4e638dbad403a8a1667a5b7c2f81ffc2a70e79b80a8','eb97110f496f9813e14f127af2cdcdb26d54e9745e274fe227fb0646cc132c29','dfd50e735f06f6aae4bcd58b484f39021e38ee290d41240b18b1744d3de653f7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'8cc2e62f7b3ae2c89977ee9e31acacff38f944d00a978e9b0e48678487cdbe27','93c6c5967f4d297df962f2853f2a2ba3870f5692c8835413c08528cf243985dc','4b3120593291e81d0a0519478f45b1c17aad478f384964dadbb6631295912aa7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'ec86fa6786b598b091121fc2001650bc04668d26d88805efff7271312c76a373','e6cf70178316b3c594c60d10ac1ee3783f1dafe5054ce4c6fb932bf3c771f703','815500c2b55e7b9eadf7b1436407dc29d17fcbd5145aee3cc14b9559fdc38600',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'6b720db96b2d10816e5022ab8c61fafba49cc6bf484909fb500295451e61f768','254cf1d1ac865c611a3d9fbd78001152928a52ad94fd640c526e043ce7c0fdb3','33014d2d503328d843a057ed2d544af2dd00c7c7dfe923c4494d5f04a5e5ea2c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'d8c6fabb9b9dff0f1f3ba35e75c08be55dc4ded8dcf54e51f0cd857625b87dc8','a34f7e98c65b95becae5908e74cfedcb846366a83605f9d8685e98ac629d1278','7b5d4bd5a47db25e25b6fbfed91c263663202753248a1953369da64a782ac8cb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'eba03194b13ca764dbfbb86f86d16841df4486f12c26a214f7f1020468b52d27','e5a15333b0539a58bcf306d993b0be078d8dfd3cf3f5929a690da5ac534eff5e','b9ce189b79f426b6e6eb9d9bd6ea4272dee9713c93e9d842183ccb6ae66f9211',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'d7fa8085722edc91ea5cb907e439649533e32ad5429b52bc10463629719af5ab','bfedffe97e2bf812728130721dec204767d92ab05bfcf2c4596b5386fc6ea380','20abfbccb4ae6786f1ef5249f27b96ce3a561e38705295ae96433606a9ee2f59',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'e84e0b26a5a67af1bca0cdadadea17b52b79f160d8acc0281289de1c70bef248','2b4c3ff824d597cc1376a524f89bac6deef025a71395e848b51e9c06002d7f12','5f674cafe43098f7d91995019a4796221cb521683242efb9350aebd6f0962761',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'ac3522ba0e8278bac956b5f9d7af271424f8e4eff23d57d2a5ff88416dd02ff4','2b3b181734d815e3cd024f6fd91b11de8cd457bdc5f833520af281a6c42ab391','aa6c5e822ec3d28fab4b599a922cb46afe34d4d8b075d59266bd814704bf3b30',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'86255a3e32e6c7a96d0f0a6e7815d61d9a970272f1df38bb0c29ee9f2051f2e4','9092b97fab9af004edd169f26446c6712e5e1ed1d5f94fc5ac0b49565fa65b4b','1aecea3bd5175ddda4a31d3ffc6dbc1873210b9191b76b4e12e77b96d7e4e53c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'9694fd19263381693133a47584432de876ef1e0a32060d52c8db96811ff7d09e','06ae398816ea8ca96fa424903182c7df9ce93c5d1bdbc2ead089ee71acb90531','46153be228fa8f944bbdf64b72e4ab8089c93152fa4e70e99866e57496899e11',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'3cb1b469cc6627cbed3f0db1a00370d5c95edf9940f8a4c9406fc78076640d90','2c688b2021aa321432ae1bd5a60a9f65cdb6d3720512ca2c304bd2773e7647d9','1cb847cbd07a241995f1c2afa6efb8c9557104fae1b36048f241e7b1ff62b63b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'cac7cc49c1d632aef2e9bcb3456f60df2ff11110c4e9980989ce0f2d8a5835e1','2a7ce0455e84f973c078752f1c0ea93ffdbe993f239baeb7ed947e749c119dfb','e48ef422b958d8058d5cd6aa702072825fd190a03b58f569671ee58d6ca2306f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'1614a317b1144c7f08fb2785bf468bb299b9f19450331b7fdfebd510fa07e574','270190f8eea6e059acfe66f7369986d3748f707f3ad0eaa2e396a190cc047a6f','ac58d3aa1c81f62a3b39215d28d911e1d7b2c2b16d5fb942dc81c215231d9703',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'631d42f4b3fb091a4c67f737bc2da60b8bf9820d27c758f5b9453b40813c5bc5','35ca62f9b66717328f41e23c80e72395f4ece758ce3ca9aabe1d1edd87d06016','af5aec74565edcf44587e0eb2782fc4fc4cf1506001b8a0e45401bc8186ed36b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'2b3f460da72fc0a9b3a720abca80bff0c44654287de69567c43c62a5557144bf','37d35cf95c6f102413739a672d5dc1c3b0760068de256676b336c631bdc94447','3184f5a18eb60486361d3987a39fe534d6d0a5e6fb450dcc8835c6c37e11ed19',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'db62bf94ddb276cf55ddfe73f8023e760788647910807adff6e0672ce1d5e23d','2eec38760b106cf52b3bf0fa51198348cb611ae9bb75edd8e4a343e7fef1e042','a73f6efcbccef38fded18f60759919ae1bcdcbb425eaff8b4225d1e6d411c59c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'1c427808f1eb1972df57b51eea9f3405d3d63a1d58c5a3faba616d7160e3a264','be57a1f4088437c89e3bdd7c9456b8ac9dc6011d15ada8d5432ab662f80e9a52','c95f2aa93c30ec8c210a78b3439c66b1586e3eab75991b87296393289c1dbd07',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'cd28b5ac0f80f8815467663c1e90b15ffe46ce067a1b2ce004b0d371cb0ceb16','cf5fed759ba01d430d2e97ed6d52503a67c35688f02ad6742e87f1da1b468ae0','f36348ab193e851709e6f1e2977ff3b954bcfc208e81a1a2faff95014cbfc64c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'69adfbe756c116e395fb3a5170b57210ac2721b07144b3d7a35c4327f28e28c9','528e0ea934cb95d328ad13fb3a3a47a1d89824ee44abbb2cc271d707bb6d62d1','ca4a3f93e7ffdbdfce2fdc86ab481462f5d9ea6c30968c939d784a837736b3ef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'d50cb66a25a410db360cdf749b5d10932410b5e37c3e5d3d834a65b5671dcca6','f0e0e40238d13f69c9c40cad5b8be218cb09af9bc061e728b56d74a42182788b','a953aa10f4e569ce2037e817593575ae40b4423b9f857d5b38e09afbf07e1a12',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'384f8d2eda5f1b7b8273ef149ac37fcaa9ae51865fd57bd348339579b8a078eb','19ac618404aade5a0914a9a9c159ea229384be303a320b08b9915474beccf1df','23ce68e6c5fde9490e384c6204ce16bcf645cb1fc006622de99beeb1b8ea40e3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'5eff25450225c71f85f34466d6e359001eed8f05ea5042e7d65c30ccfeb6098f','7d02630f0fbe3e5c3b16766f1d04dd1a83c305f74f0546276d970b36e870ba8e','d85c0fed7144a53f31159f376756a35a8ce777d7dd174ed300eead63079bfdf0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'a16ae7423db132c887ae41cc33b7fa48a0cc6571d5a49e0963be25ec8a9769b4','b8fb4fb649dd315851564165b076d636e5a85e043d59c11877bdccced38f1b3e','2f1739da6af89a64a270eb18f33e6b1d96587b44c2621ac4e660892efc5c182d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'0cda5c4a26f0b23d5b948142dcd226b2718c57c9c6a481250128a7a1c8ad30dc','1c009ff73127980e51ba6a7035bec5c2a9650b5a184da1d55c3d807fa658f8e7','e9deaabf7fd801d95ffee56908c3914de322df83a1144013646e6187bb27cbb3',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'657c31576766cf1f8a699a14e6c7493498673f1948bea1be4f639247f4d52d53','c674bb5077acb71ab19a6a4a8f779015846135e7b93a5006555fe1f4ad10c58e','6e9bd4b7b0149368c0454b12e392ce277bede7f11ac07338bc4d199baa4606a4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'e11e7eeb21ff539c27324c94a407dc6f04c739f3ed9841f9f661bf4441e4d847','105a5c9915547d3ebfe733d284d6e812cada8e86a904510fc196e2f0af5b50a4','35acbe7c58004be5eed9247725e54a9e62d9c12d1819f476b96438fe89ccee24',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2742a3e99eed62c09d9ecdaf501aa69b0d0b21fc092ca061448d5016957f35e0','369b47f51b512708e680edc5ba459b91e2a514f5a5c7cb8435670a4b3ed34dbe','4511574655e8ca48d331335647f4867eb537696f16a1e1967aa0d5eed9094011',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'49f526a56f21491c797e8e2559f722ded6f6990b1f69c55dc38791d8d30f4048','f0c2ddd7c39b14fc55d8518c65aa0811fe7807ebd1eebb4b66df8459f9e5352b','568c98891837d627aece7b98720a3c2e84ffac264b920c6a96c1bd3c2f839df4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'78787c4c9537fc4db5d1dc7d31d4fab6b445d57021aab1a38d4bd6a9404713c5','877117b3bd10ddbe6e46f417845085a6bdecd86a4961b99c80e991b4c51e0f5e','616a0d9bd0a91eacf780f74d009873b90c573644794634ebc9e956fdbea9a76c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'5cc2599b63007433426c220c59a777b5c37b1165595f2ba239c3ce578c8055ab','702a5772ce8529995f7a66a244e8be495e3f7cbedb7b09f47e3d5aa941c7f4c1','6812e7237e054268ea52058fcefef3f801d36bace225eb6d3fd95c93696c1a2c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'9550db622e679ff3d63d814f9ffa743d57eb12491b213ef6474617a6c738c3fa','6c536f7ae10567cbd91945e3e958640e6c65408f83e4a1d93e705950ba39de1b','4e94d7dadd588f5cbb2a3bfa338879bb835e63e0be3f29cc63fd7c9df3e6cb02',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'08c005dd5bae7f21ca27803d75318ac4b968c6d4dd2c275ef284c03fea43b189','8f8156aca3441754221fbf9cc21b0e7d877a533e00f63950be3f95d0a9305433','276a777ddf31320752e501401ac7cc87a15c6ce1495f1f6d4dabcef1126204d1',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'07f48634d06e6be1d800e068cd213a648517fe167ed89c355d9db966897ed7b0','c5956a9750e786639ceb4a252a219afef6abb753037888c90ebf17a5c5db079f','89068f2acf4a0563d3d3f344fbe7e4dd63de7750c3a9a39b44205306fc404565',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'8d0be0b3731bdd0d611e81b48efa6c706a983990f31bc563d57893f705b73aa7','219d47523246e5c4ffa99ae9c29bdcfdf9f419bff3d21da76fdc91cfe99fc28d','108d8251dae0667820f5aec7853c9352b69ebbb1ccec0e2ce3b9d845111fe9f0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'e3de05180536ad40eb9007f19ccb819fee0586cb9e7c414dc560e506ae5c09b7','ce6072bd562a52051fc530ec552aa343e4980a1b236f1cb8318c415d3eb2e851','b4422a845b0561883b59a4f9b510b5d280fc096482796017698996356d61383f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'e521556db091cc726fb38cbebfd10923e37dab652c51dca73a646fe5bd81bb96','1a1e24f2debcd4b5b1e350a71823758d3114335ac831367bc91c9e487b94c65c','04c93ab3e40fcc757d95d7d988100af4f8a3b8030dfc3bca00266e58e13c4f59',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'1cd6d92fbbca9266135a35f20a4328d510c8d209ba6161dc8c9e9bfa69032c57','80ee1bd354b8e1aa1c2f57926fbd36c0d9e2dbd3f77d8f2e43d59b29bd8175a6','20ffb72682c5b27ecab3983388e6c375dbe0607f4c8f5e3dd070e00b7b58e37f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'62759ea6d5070225bd30253a42b6c68fdaf2c4165b1b221b8e7bdddeb26e9737','30a124b4460d985c715c7bbd85cfbe972a5caf457e45844e0a54daa258ca3376','f3d086dfac0849706c5dd2047451ef87178f00ea00ad422051d0814b7843b47a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'f9fc0dd4d98ac5e06e4f9673cf5678f9fc264cda23172e24427b833331b73c33','cdbbf3665287df62a1660198e00049d06f649f37c49cb76e9fb1eab12960e66c','fed2f51431618faaf65ac437f4e2ab09bad0f39f5c97b3ea62e2fedc91d6708d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'4a355b8e80a902030f384f58700d05da9a6efaae3f3ce0b1a056dc1250d9ec63','355616d4b8b8408ea7061e787ca35918b6d0417895a2a2ff224d207f0f76e02a','6e730d3392bf1313956c89d2323a4fdc27e3100c2842eea65bee8900f427000a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'57aee8f9c9b63342ceeea3a3162998e9034a3d624d6d85b19782943ce170cef5','7987b849a43c706d33e421d45e99ca6593c9aa8c69079522888f746a8d4ff748','3f2a2498095f847c8ee4dfff40c31a208f7018a1ccb785289c931be3bb856faa',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'d11f94528a9e0034365e4388ee455f02102d2024c65e1428cdee28b6e5aa7e1c','14d0604fb6986f281715ae660221c79b7bfddf15cbc7da02c722e86b8e264d85','c19f295295d5be4e3fbfb303d263903b04d6db9ecbfdcdcade7f55730ab5ec70',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'4397f5568bfcf8cc90d1e72b7c61e7cc6905a0d9d3b3890c33e2afb464a25fb9','5483ead85237ef0ceb3486e3c3e6ee1e5080a5dd602f805b811cedf996b8dbaa','584336adb53629a35656fcd61eb8c4f646f69a3b7b87ad4e6dd86d49b965d7e7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'16b7018344f7a97695eb17dc5921c4955b3f8cf4d9e70bd8628041c4033886b9','bd68fe9b7aef054c8a5925dff9ff140cb5c00eb611a8802156196ed486479ad1','d08b542decc13c0df72de898facffec9edc2fbc1d055d5fce7c872eaa961b46f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'c3c26212677f4aed4614b653f1e5da509f962c29502d22c84c1c5522bca0dcf5','109e820ac7d290ecec049098115ba6b467ba90ba624aa24326cc7e103e51b265','066fbe373bd1997fdb3c38d6023bd6e8f05f3e58461ad6a422cd4dfbeb0f2fb7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'420b753d9e2a4ae5c00cf65efccb9a657d2daeb19159075d1671a076d8c1ade1','8e03eae75b5f9306a0a8142296412f7271b17f8c751e9e8e1b1cbeca5418f4eb','32f524eca487a1118524f31bbd88b9e80384752bd324b9ed82a103f497722bd9',NULL,NULL,1);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'786e9c043df5025bb8d123322e2dd9cba30cc433ff90a44b7b7036369565835b','6a80f89b076199d165801b34c7d292976e069920f2ae4184e09dad8411735b94','d17f4a4249ff8894cbe38c53470a085c0b43f37af3def5827bdcbd512627975d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'1a2e0585eb1a7f608b4ca4b1d252f555f87e7f16fff124ed869285ec17643059','a2110149cc4e90d1474c53bdf91e24f8bbb8931548542a6afda94bc343fe3a7f','99e549c635c9de25af9aaff573b979b84e570faa4804ca23d16774af1a0667d0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'44a1f10e2df25328c38e20c36029bff557c7a93784030ece591406df9c71ebd6','d087d907b7af1ac1171c61f00c756754fc94e0edf0dc265d9eced163a07357c1','593ae1a07859992830aa36425fd449b6d7fea9a58d2377c9c7fc449869fe1539',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'093f82c2b8e108242edc6dad72e5878700b9c33606c359e673bdfe65341db64a','5796b7de2e12cda876546b21e2a64e92b85792c201f39fe404e7fa6c395e78db','97b27836562b1c9153a00fae9035dfbf9ff10a7f36aa0a4fb3bcaf8103a95d7d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'efac93e04f7cd9d3b1c0af3da102c29b50d940b4b5687fb0061b3b6e169290f6','5daed82ccefd923a597451b918ece6172dbc75df5cd53ea0f7e40065e3d0d929','9936dc9a6205f83183b394d439ef19ec875b09b6818b3bec22e9ee9824158df3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'1fa464e853787685a588de6dab287456de7a0efdcd76052a41ddaf5e2f85a648','818415429923b4a38cb65dddb4e8b8a17264cea0188e905d4a19db340e98ef82','2fda1ff9913e7eaec6e0609c08119f99b5521f4acaae37f169d384154d833d5a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'fee866f1cf6e5f83010b97e0e9d88b54ce43fdf45e89081ba3b2fe07b62434fc','7e3fb0dc1ce885afb71be88ad0ca3b189202535d328ff70bda7cceaede6813bb','b3650d2f7043b841e9ed73321a8136a8b16e31c59c814fb166c396607f944be3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'11ed526c46610698e7a4f102ae91755a541d668750ec3bc10decd0c1709d1115','e3044e5fc57d122eb707d271ca1f4248358a8f477a6466cedb739e7799351bb8','ed225e48b5d71bdf3a0225eb3745f6f823968ebb5afcfad54bd1ccc2f9efdccd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'7930e5a2c6150df64dfd995801aec68ce11df292e206f08f7ff20eda9ca2d017','cbe01ce5a4da72538e9310180de025f141ea8baf1b6eeede8164cac3488532fe','2fcd14de99cfc0051e32cb7575fe68f249435ea6e1fdf13995bb7b869310c8b9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'c5834a54b3ad7f9fdbb18a87c8cefe867eff2ba1ae5bff238a3a041431d0afdd','81bceadbd9f9b956ed25021e2e0a9f4217c7424522105f8a0ba41c9f78234fcd','c9f47c6da5068b7919a832cdf502e72fa2c792fb368ba9eae73728e8ecaf0941',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'5a4b3f29cb1554ae8f670955df4dde45fdcc57623a50ca7d8f2c78ad79186a7a','0ec430eb4c16f386b5abbd6586133741dfe6c19eb820d388810f3680442d363a','aa253a5f5b5741edccdf5a5b002cf4bf2f469e378ee25dc7279229f144677104',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'b81834ed9e92514fe7d277378be72e1f81043a615a4b67cb67dbcf97e3c3b43e','a883860baff0c6dec150c9d80b8a640401e191312eeebd4e9f21914e7803c46b','3d929d7479aba70da9c122bea1eeb8bdbfdcbf28998dfe4f72e49f9f92088360',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'736adff04611f10a4e384b5d5c44651bdf037c0caeb8dda5bedbbc6d18d04ca2','821ad697a76d9a35b14a7c388b65b4f3a86fc66c42e02af6d568f73e2586beec','04df2e8a894e19473dedd9493069c49bcc1c57bece30ab85a94e4e85de076ff6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'34d49fb14a7ec85ebd02ffe04768f5aa7382ed0ac7f9ae903e71567dc5d9ab67','c5ff4e50b07b755c23a6d9ca6dd5efe71a2728c4c662418fab814993be455308','80ff1983d78ac09b5786d969122672922f34dc77570b9c1e3cc7877a739d6c62',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'9bfc3bf0ed35dd256f0df04c813dab9dd818238163e6b01842e18815971e7010','8a2ea429a26990e70f9c8937d11c58c986f991c55f196416344847435c670849','c4cd65293538194afdf55ff89f59cb8067f83af62b3eb0040d3f7d922d745a75',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'da7a63f22053d1713c805684d14695c31670eaf848bf23eee3331e679744f291','9f186391b30cc438ae59dabfb18dfca8811193a8fe37cada73d513ad688a80f0','ed3a4d705697bf957f0e3e679f8636cf18074e7c3d5821404acd359e8c5e8c7a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'ddb485115b64342bcb172cc3e77b20effb1294e635459119b59179f3b6a87d66','f73c8b5e92181566aeee4ec42a1e50b950fd18680c69c58fe20b5288a915d7e9','4b8888c285233ef646619f95ba8b80393673659147e71b97002924c64ede9d3c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'b58d05ae5f282f7904c7a759ae5624194b5cb091f43f05d738cb4002a999c26d','73ee837bac9153dbc94c23879192b6c2fd71a9a6148502e8c4693bd342c4feec','e66d0468081429a32e87dcf4480bfb96348560715ad3a6b0e342691f1403a488',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'c18e1989fccd8bc7168ebf2acc035c224a9010b428b81c814683b0ce1e244113','9ef577154ca6e451585e9dcc4c3690d496b8a666856987194c4e41414743945f','eb297e8409f08b38b5a5a86c98f636888cd7c893f58235c16d6385e211f20460',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'1a935492fce6a168d9aafd24246bba6f5615f53a47311549059b21adc6a67154','29f3ff5d49a8c6ffbf0ddc41a5e45fd3b777fd7c9ea60a914191fc551ac46ea4','b4623b45d79503405f544a3b246ef9f2aa5d3d3b0a7ea344228737146fc26120',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'536611cb3cb3005f8c4ffc5b8ed8271734448b5d6f49bd47eb0456bc4ee207e4','6f22c984234616fa84a474dc80c5d5e25ccdbec1a84b0cabb279505e93aa4d6c','6683f4f0bae39aa62af117279e5b65385d61a0104451f3e35a5fe0fd54b40fc4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'ebbeea29c073c61dad3e091302cd945a9926741db0dc6a918792c4c01b8cc30c','a1d1a029c0bcbe481f8ba760714e266ff9e759844517ceef96bbaefb05652dcd','06fcb3429bb75337ac36ff2159d07b86b513a711b3e69abb5ac028c178f37e4b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'d9baff8bec82f3c29f1fa69c9ddd456f1867f33a55d1648605ea7109270d8e07','26f6ea6c1e350b91f4757619dd52bb7a2b2bad7277497f0d4e1d61b363eb7a99','2d092e5abe539c768cd52e2bd108fc9592c211544680e746faff1af941f833b0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'09ad4a6bb3f671e6ac6d595bcbfb82371cc41f35c309142678eb5b7df97a5de5','5e32dc4d14838fdf0460146fd87eeb59ece3416bb7104362d24fd6d2bf0fe963','4a59838efe59a9dea7167e349a1ff3e322129d3cdbb9f4fb60d6b6553629f7c5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'208200708851a32b0ffaecade58f78f8ba7d5820457c582d5ca127e16fec0952','c0a8253cff82f71d9a90c7b982e5d5093d5c2bbc2ee2859d9d7d09afbef56192','b6994f5b5451c36854174318af39a43b3ffda255f8db3e7fda875fcf954e1d99',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'9d1a7335d989bb73b0363bc88da6dd82c0fbaf064b1d70708b0aa2f6a8a9958b','c07861a54cc9537b7a2486e5a7e6366cd04413fb1307712ec6af55588dd22cfc','2c582e0398b9bc18f222d7af1f884b5eb8855cdf7209790a377ae57e86ebd1a6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'2fd9039e49fcbb070315defae275bed858cfbb539bc4db8f2ec5f5ff6d69ea25','0ae948495f47c1ad343052f786467c6236cd6ca23dce0c628503a44ada8f8329','26396bebf934270906e3d61a14c9174639beaf51d92249476006f7766fd0f022',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'2e97864865a020b04ed60b22c347d9dbebce5d00abce86c2b3a5054a3184699b','986536c5e9cec38d9b78bef44e21e73f93a654b9c421c7822dcba475b14f2127','0700cf8de8063fcd09a6131b1c8c974213d459a987bf0d750e773735206e1b15',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'f6a8e9f4cde78fbf6c9a5ea176312116f3813f2c0bcaee6c92f3beb13a8c3899','4ffb95c683e1839d31018cc7ec92e978014b8cd32f308c2819ff2e79ff60fa2d','0b2929cadbfd7a6678bf9776a4d55ee816dc97800e6c4e079826bfc3b57334c9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'1d84e4657febaa291b4873d808d9ab433370227976196fd6436a65839c3575d1','0ed99730b61327cff9ed15d8585f70d7629b2b10150a717093dac4fafcc4e737','1b25e91387df793334d9aada005b105dc2c1242acd739ea34a18ea1e5d5f5cb6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'083f6b773191caaf1844f47c53077e8724e100d0b46461ddaa642b88d5265c9a','69aa5d1c74c026da7b7cebe352bd6d907a31174cfd6f346e09382b0cf3fb8239','b157f369d48b334ae12ea5c853aedbba8e8cad288ae183771e8a6e33bec299ae',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'b1302087b804fc5753df5a4d8aaf8626e80ff99b429f52fed97767b051c24e8c','e35d2a19e5b60e2534a36d8c1d0c14c6211d56c29b4aa4953a14bf0b83bcc405','0eafdd35080661c9f45ecd3fbd30b94ffe647926ca046a5774e0db98817a6868',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'956c9ca0b51eaba7343703a165eb96d5947fc764457ef3dde5ca90c18d3b2f3d','165a88d3d459ce6f4f37cc2ddb1c365dd01542b102dc68181d41b95ebde044dd','397a62f4d919dd7a09bf1cce83560d51a067f9b938a905b79374c6280fffdeed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'e86cae3e73aa13e8498a98de335ed0cbdb7899b24e91839bbf0f50aa22355ecb','37394f57952a82ab5fb6ceb7323152d83f3c911a533e289c55b531fc83269268','f837ddf62d133c68191de84b68fc2705a4cab57412d89fcf4f5bed131e2c3ed0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'54bd5e4fc1bc17df27f9e6f22b5e1facd82229a877e09ec0136f878f2da81344','ebd7b1c7c24aa51a0622e244d1b486d4bde8b1019d86e1d8845b6e90847ad09b','bfb4cf68e7b32b6bd342aaf45e0bd054f99e5ad06bcfb3576b90e12f4e4d7af0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'1403832427d4c482b0d2d925e08a72fe37f5aaa6af73e74f601f7e22fdad7662','cb71b795988456a345fd21a3c729005ab802707d54311480012920f07db40bc9','df0e6523af1c6569970513c07e9a30923c5c0cf212abe0d4163e2cdb972cbea3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'7b08f124a953d0e5511b0698d3314f5ec71ebba77b94c4d236ff9738d5a587e8','cf47be21938b5a55ffb8eba6a9f63eb61b89e679b279d75080571832bf08c0e0','8d71dba32d92013399bb8f18e4f4eb87c9cfcb2aff4c32932573e2dfd822a620',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'1de158dfd18413618b9800236a2aa265d2fab497b09a839be408da8871b0960a','a9c1a3c24a410649e701fc0b321b2030b6fc35de7a2538a10e75b482cbe96b3f','515fefec184d55e09a1f40afb966f020c444683cc63cefb38df33585004186ec',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'aa4be540bad6cd762a02b77856c3d6a737d90245e71f61b63a426573bffb3a4a','93d0499dcc4fc819927eed8d1eec8b094eb5a4323b70d2cec33d568e31737ce4','793060ef4fbf8ff5072973c0b32c21e6cfa993adf8d62784985f255a6f5c6016',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'49edce8190c2480fe3c6b3df7c7c5f13d34f67c3aef3b2aa12eaea603153aa83','a76d957ffb41dbfd83b8c92ad487582586cdf13ca49dc1dfc30e869afc8ca76b','54c31939735d7929d522d3ec88edc2d22ce84d382c5fc0da3f2fa3b3fab5a199',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'a2a8c9946cf45490858deb15c8f277ec545854dfc02dc9d248a684c0c3544d6e','0270a3faca0bc1a674fbd3632a1edbe8363d5115db8af56f135493f09a63df30','fcd1038b34ea4065cf1aa061f22e225bb7ecf797c3afd06d7f7aba0b788413d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'ca1e5d385fd9cec1184d28095a6f4a2ec2914d40cc016309fe322dbb335cf2c3','85484b37f06238496ca822d539fe09e0e2906d12cf5b6d77c6219af29ec7410a','8bff6ea3bfb733a3b1f1282f9c7bbdb768a16b54d3f0d062d58c7ab838ca4e0d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'73519f53874cc8cbe9052bf8dd18c590e0a4bd5bdc2a286c4930e8cfd006a993','9c360f75cdc0788ebf8a530fa967e8eaefc3876b19739dfef2f7307e1af414f2','3113db4f601a0a22f575e73f034b71ffc2cce96ea0c7e04d5231d7e6aad5e2eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'5de09a95e36480de84f9d3c8db3e18b7bf5145f8b6ee6bde57b5c3de11274cbd','b4a32df829f1f913a9077d0ecd83362230bf893ffd654703538c5fc1c30a181e','bd0000bee542571f0ded86b42b37a80ce1ff645fc16ed10cbc8612a757dc37e9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'be6a452931358d500eda0fd2aa3a91b86483fa847a7bf350f23d33d85712592e','fc4f551737950e1293a8718899c3b74c2ce76d8d1f58d6e22d10976ffd15eb24','382e4621850d0db961e9c198c9fdb46ec461d20c61eb8e7327a796854735532f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'5940a47dfa1a1c8bc1e51f1e64100cd0604c74197c88b39f6f7a9d5b763a0b56','53ce1fdeb3b9e39930ad127bc86bc71e7b497f24cc34af2a022200db36ebfa36','56eef3f8075ac1b4622cf9b8aa2e2a693561e360428c0d8f7797ab56c0c5bcb3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'6aebe68545207e7cc81d68c3aca801f0b39e276ac86e8e0130d5029eefb60e2e','0d482039b615aa55b721fef8ddaffcc2942838dbda8784940e9fdd8dba8b1465','56deb2b09ef813d1575b12c373b198b0dd0a2708bc9d4cea9b32fbd7a512092f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'d005aff752907b93e2dfe442896c8976203f0139fb67cda3ea1936aea495e008','8be094b2e99ec5c85a594d4a4059b7427ffbee3671190b84161fbf2fadb6f313','490813f31a900925671df46f758b7f1132867a465069c0269e6d45e486aecde5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'781f0ebe67964c25640f0bf5624e08cda546dbbb6648bd6e8d9f280c7f075f7c','9c5e049c1738beda53ffdffe18492b0af038a756278f2bdeaddaa1a726681ce5','a9673ee50d9f65eddccedc0b3e98382f57547f8b96316e443ac21f49c775a8f1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'83b5e1ca76fda895b144e8c03cda5fc3d18f6324b5413fd74923e51a94ccc53a','a7199dd9b360cc694f85a81ccf72fd614e6c0400d753132cb517ca9da55df86a','8892c734b6cb78ac0551dd5e0f39f1af27598ee2a829884e04ff1ad32c33ef8a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'4293be396327c0aa3c56c77a9152068cc32612692c76ba94e8961c59a9ad780f','833f9d3ae03e5819eec47318d948999dfbe35fcbe66766f985b6ca71eccae54a','e2536800bbba398a97e38efcf5f4c2febfee15b735b57236a3ed34491126647d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'d08b93b609f1766534cb0c30502350b9e4ccc4a885ebff7633e9e5c5b52d8e90','7db8bbcaa76b087fbcdbd8f5b428b3587c494f0cd7d458a2d519abb0ef26f424','c9c37a11996ef89c4516c81d8bc8d2b3bb1a342f044bdf47dda4d9691bf46bd9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'06c72d219df429f2873af74b6250f3d12996cce14496d151bf8bd4cf819532e4','8f6a902dd8d5d573658f07e8ac598ccc46ed49bff95b2a9ed89a051c852215a5','e5fc7d8debe247d68ba41b0287e7b8ad40b9b210ec62a8e6fb7111604b65a114',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'0ff019cc4b9b8a394aad1b9f8f579fd5c4cc48a846e4fe71ab2f45226cec5a1e','e1ab0a4cbd4e60c5b1da333c5ef542bbc1d8bbd7709fdb35374c072a1f54d38c','8234496edc47944c501573c82525dfb55fd7c614872379a059562d66b44a71ba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'6ea40a02464725d0ba45b9969bdbb7529ae5e3ca794ae00abf4783bfc9667104','be6f6965b6ba8aae157eb48f28bce3fa91c3bbc22b88fc3ee8d4f126c1538032','5f55694254aeebeed7a8b70fe5bc347b4df6a966080f72d16262447e56b6b2cd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'076abf036bd51c47525fe4e638dbad403a8a1667a5b7c2f81ffc2a70e79b80a8','eb97110f496f9813e14f127af2cdcdb26d54e9745e274fe227fb0646cc132c29','9381a2652532f3ea053e1cb0f28a44bc8f6e98f04d51783651435fbe689c9891',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'8cc2e62f7b3ae2c89977ee9e31acacff38f944d00a978e9b0e48678487cdbe27','93c6c5967f4d297df962f2853f2a2ba3870f5692c8835413c08528cf243985dc','16f709bb262ad8b0e6c048b5207b7514d2bb6e02cc385ffaf146dd03d4a04dda',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'ec86fa6786b598b091121fc2001650bc04668d26d88805efff7271312c76a373','e6cf70178316b3c594c60d10ac1ee3783f1dafe5054ce4c6fb932bf3c771f703','9f1a7928095be6b7191d8a72d743d000d2b5040606789fb7b89d697b261a82b4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'6b720db96b2d10816e5022ab8c61fafba49cc6bf484909fb500295451e61f768','254cf1d1ac865c611a3d9fbd78001152928a52ad94fd640c526e043ce7c0fdb3','923002cf1253a4d2229ecfab2b4a9b049d08cabedd9ca831de2de63a6addf730',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'d8c6fabb9b9dff0f1f3ba35e75c08be55dc4ded8dcf54e51f0cd857625b87dc8','a34f7e98c65b95becae5908e74cfedcb846366a83605f9d8685e98ac629d1278','4158c7703a1fe910acfb1ba2e9bce1d7298dcc5dcd9e8c71662136d6b5d31ed1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'eba03194b13ca764dbfbb86f86d16841df4486f12c26a214f7f1020468b52d27','e5a15333b0539a58bcf306d993b0be078d8dfd3cf3f5929a690da5ac534eff5e','ebe529dc2a9cf1491d2d5d1d9c3c58179025fb398aabd74b96c7e36e7707665e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'d7fa8085722edc91ea5cb907e439649533e32ad5429b52bc10463629719af5ab','bfedffe97e2bf812728130721dec204767d92ab05bfcf2c4596b5386fc6ea380','25013bbda0f976f456e9899c5e6f84515b61640e1ddd41d31f40aacd0354e1f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'e84e0b26a5a67af1bca0cdadadea17b52b79f160d8acc0281289de1c70bef248','2b4c3ff824d597cc1376a524f89bac6deef025a71395e848b51e9c06002d7f12','30b9d419bf1481515cac50b1152199544accd2a8c60be770efb9f5aa403ea5fb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'ac3522ba0e8278bac956b5f9d7af271424f8e4eff23d57d2a5ff88416dd02ff4','2b3b181734d815e3cd024f6fd91b11de8cd457bdc5f833520af281a6c42ab391','b62c5ddcc39b609c001c568e8a96b2d91de3fadba244635cc5aed05d35763889',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'86255a3e32e6c7a96d0f0a6e7815d61d9a970272f1df38bb0c29ee9f2051f2e4','9092b97fab9af004edd169f26446c6712e5e1ed1d5f94fc5ac0b49565fa65b4b','9f0ab7dfb41ef3180a08536fc0252e821991d592ec233ab048424419f8e0e799',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'9694fd19263381693133a47584432de876ef1e0a32060d52c8db96811ff7d09e','06ae398816ea8ca96fa424903182c7df9ce93c5d1bdbc2ead089ee71acb90531','6551432da4efd50d021d5dc88ba8d6768fd40c0785ce93cdc0491f179d399739',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'3cb1b469cc6627cbed3f0db1a00370d5c95edf9940f8a4c9406fc78076640d90','2c688b2021aa321432ae1bd5a60a9f65cdb6d3720512ca2c304bd2773e7647d9','ca6e8c9105d538b6872ea6f62f0636cdd245b17f2a382048a6712e1ad9f4b290',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'cac7cc49c1d632aef2e9bcb3456f60df2ff11110c4e9980989ce0f2d8a5835e1','2a7ce0455e84f973c078752f1c0ea93ffdbe993f239baeb7ed947e749c119dfb','da5e150ff4f4000664421aa0506fb40a5a09bd0e67d00d2f1c94d4083d594472',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'1614a317b1144c7f08fb2785bf468bb299b9f19450331b7fdfebd510fa07e574','270190f8eea6e059acfe66f7369986d3748f707f3ad0eaa2e396a190cc047a6f','b2d1f80a9255751fb1fed53b2bc3b638c0296d95c6d2d34b5568a4689dd224a9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'631d42f4b3fb091a4c67f737bc2da60b8bf9820d27c758f5b9453b40813c5bc5','35ca62f9b66717328f41e23c80e72395f4ece758ce3ca9aabe1d1edd87d06016','f079d3b7bdb4c56bfc3f61400a4092a75f9e6231f4a62bc00f476523ff679edc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'2b3f460da72fc0a9b3a720abca80bff0c44654287de69567c43c62a5557144bf','37d35cf95c6f102413739a672d5dc1c3b0760068de256676b336c631bdc94447','6198309a64cb0964437b25c3d2c72354f8ee78c81f0d525ef4ea92daa208eb5e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'db62bf94ddb276cf55ddfe73f8023e760788647910807adff6e0672ce1d5e23d','2eec38760b106cf52b3bf0fa51198348cb611ae9bb75edd8e4a343e7fef1e042','9b09326d60df6598e7b742f971954a5ca84a154851c17fb0e52c0bf755b74959',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'1c427808f1eb1972df57b51eea9f3405d3d63a1d58c5a3faba616d7160e3a264','be57a1f4088437c89e3bdd7c9456b8ac9dc6011d15ada8d5432ab662f80e9a52','af0ec86d25140f5a952df3fe646f217de042ddfd8dfd085a6fb5d88e0888b13f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'cd28b5ac0f80f8815467663c1e90b15ffe46ce067a1b2ce004b0d371cb0ceb16','cf5fed759ba01d430d2e97ed6d52503a67c35688f02ad6742e87f1da1b468ae0','a07a2f28740a4c0534b49158731d7a5ebdcc864a78f6a43712f0801df161b7f4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'69adfbe756c116e395fb3a5170b57210ac2721b07144b3d7a35c4327f28e28c9','528e0ea934cb95d328ad13fb3a3a47a1d89824ee44abbb2cc271d707bb6d62d1','22f0cc2c3132b52f202ac56a0f3b655a80749220c831f02962583c757681f799',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'d50cb66a25a410db360cdf749b5d10932410b5e37c3e5d3d834a65b5671dcca6','f0e0e40238d13f69c9c40cad5b8be218cb09af9bc061e728b56d74a42182788b','b02de37f697c714bb2e208429c8209346762735ae91f02c7a6bc88a65f970db0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'384f8d2eda5f1b7b8273ef149ac37fcaa9ae51865fd57bd348339579b8a078eb','19ac618404aade5a0914a9a9c159ea229384be303a320b08b9915474beccf1df','b93269658cde34c18f66e0b0243c38a6425d52a4cc55934972ccb78e0a0e0cec',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'5eff25450225c71f85f34466d6e359001eed8f05ea5042e7d65c30ccfeb6098f','7d02630f0fbe3e5c3b16766f1d04dd1a83c305f74f0546276d970b36e870ba8e','d37c9a6017c79571efd424729624af5c2bca215c2215fdbcf718de863ea10f89',NULL,NULL,0);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -149,32 +149,33 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1);
-INSERT INTO transactions VALUES(3,'025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1);
-INSERT INTO transactions VALUES(4,'c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1);
-INSERT INTO transactions VALUES(5,'b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B025CA2C1784CA3C9389B9F227A5A04445908337E21E2EF9411C890E20AFF61C0C6881F7505BD7FE0742C2CE50490E21431705BF2DF4368BE43F423FA0C515AEE',1);
-INSERT INTO transactions VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1);
-INSERT INTO transactions VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1);
-INSERT INTO transactions VALUES(8,'e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1);
-INSERT INTO transactions VALUES(9,'7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1);
-INSERT INTO transactions VALUES(10,'cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1);
-INSERT INTO transactions VALUES(11,'c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1);
-INSERT INTO transactions VALUES(12,'0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1);
-INSERT INTO transactions VALUES(13,'c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(14,'23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(15,'a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(16,'6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(17,'91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(18,'c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(19,'c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(20,'c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(21,'54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(22,'6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1);
-INSERT INTO transactions VALUES(23,'df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1);
-INSERT INTO transactions VALUES(24,'abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1);
+INSERT INTO transactions VALUES(1,'5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'5a1dd4e714aefe0a715c2b0ea6428c2e10cf3d3e3dc7e740cd0877c1e4edec24:0');
+INSERT INTO transactions VALUES(2,'eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000002FAF080',1,'ba510a377d1e3a7b8ef283dbff7b885f86b7ae606773a85915618aacd3ff19ca:0');
+INSERT INTO transactions VALUES(3,'025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'56bffd88516cfd0d35b3c4fe49592a213cc276b1af94c73d4254f689dc408946:0');
+INSERT INTO transactions VALUES(4,'c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'db6a3690de6726ffb0fbfdb3e15c890ab7619b967b60b9e8434605070e0264de:0');
+INSERT INTO transactions VALUES(5,'b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',50000000,9675,X'0000000B025CA2C1784CA3C9389B9F227A5A04445908337E21E2EF9411C890E20AFF61C0C6881F7505BD7FE0742C2CE50490E21431705BF2DF4368BE43F423FA0C515AEE',1,'85a2ebf947069bab0041ce8cdcbe9f0252300f8f02f46b5a8c688d2ca40f74a8:0');
+INSERT INTO transactions VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'adb8634c149c3b6052a0ba9800ce5fd4deb634cc1081ecb64da04a0c136ff9ab:0');
+INSERT INTO transactions VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'8c154a6d6b271e4a1d2778871fcba2f45cc455b1260f79ea08e031b9ad79c727:0');
+INSERT INTO transactions VALUES(8,'e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000000000476700000000003D0900',1,'51d85687c1c89962f2676b6beb0374e432835723638250959cc084f37ff6da88:0');
+INSERT INTO transactions VALUES(9,'7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000000000000004768000000000000020E',1,'6663a90d7ca7b4ea4ca5bf8c409457230bc427c7fc6a5d0fecba5ebb7a6758f1:0');
+INSERT INTO transactions VALUES(10,'cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'b0ff0b363dfa94369ca5a5c66e1cdb0b4417d879031471cbb14a371b58d26f99:0');
+INSERT INTO transactions VALUES(11,'c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'f723e723c8b285dca6cb5d4ab84ad48be13f56e1f664d6b6a14833ca440019cf:0');
+INSERT INTO transactions VALUES(12,'0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'1d08e7f0e0844e03e7ca4db4990dd81ba00b39cb05ab13aaf69fc990592f0f64:0');
+INSERT INTO transactions VALUES(13,'c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'62a77d25a0ce892f3de8300271ca730514c843ad2e0d86cfbc9a0b092cc46bc8:0');
+INSERT INTO transactions VALUES(14,'23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'2edaae7a61984f1fb31cdbb4513d8523f5b5ff7feaa86390bc32b3463c55b656:0');
+INSERT INTO transactions VALUES(15,'a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'36094f1d95f27bb5e6cb42a8174cc0fba3f39905d6cd6ac2140273c73d55e04d:0');
+INSERT INTO transactions VALUES(16,'6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'e422a810d19bbe9a4215c706193e554053f06d80d74ab60aeaa519d01f2d8abb:0');
+INSERT INTO transactions VALUES(17,'91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'bf409565cd591e16a2102fee4781a64681cbc79982ec5526ee17bf31c7a4403e:0');
+INSERT INTO transactions VALUES(18,'c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'b7a480818948d8910e2cf2e6475aae1072be41ede27832fb8f99e3f14169f67d:0');
+INSERT INTO transactions VALUES(19,'c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'86676313d1f457055a16784cbf7dc0c9066499ed114d72535379ac4f9ca398f6:0');
+INSERT INTO transactions VALUES(20,'c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'3b7b4a98830381c9af4bda05e9520bc30013663a4fb71081a094e1017c6cc7ff:0');
+INSERT INTO transactions VALUES(21,'54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'0f06ac488c13977713320e18f2c2ed82d6efce5eefc2988cd4b2e4bd1220dddb:0');
+INSERT INTO transactions VALUES(22,'6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'0b84fe823c78ce33db02a287f480ad6c2dac38de1bca142b10690dddd06b9429:0');
+INSERT INTO transactions VALUES(23,'df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'fa714c345a1ad0cf699f33c9572c70e3a5d96c16be2ddaf0ad0a8580e99a3ede:0');
+INSERT INTO transactions VALUES(24,'abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000047680000000000002710',1,'64b128fe57538b87e472586bc2efacc0d692f07bdb4bc4868ec66c3f2061b109:0');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -222,51 +223,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -278,6 +279,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -296,51 +301,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -352,6 +357,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -373,34 +382,34 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,'burn','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb',1);
-INSERT INTO credits VALUES(310001,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',2);
-INSERT INTO credits VALUES(310004,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',100000000,'btcpay','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2',5);
-INSERT INTO credits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,'issuance','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',6);
-INSERT INTO credits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,'issuance','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',7);
-INSERT INTO credits VALUES(310007,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',8);
-INSERT INTO credits VALUES(310008,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',9);
-INSERT INTO credits VALUES(310009,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',10);
-INSERT INTO credits VALUES(310010,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',11);
-INSERT INTO credits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',4250000,'filled','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',14);
-INSERT INTO credits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',5000000,'cancel order','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',0);
-INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',16);
-INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',16);
-INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',18);
-INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',18);
-INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',59137500,'bet settled: liquidated for bear','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',19);
-INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',3112500,'feed fee','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',19);
-INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',159300000,'bet settled','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',20);
-INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',315700000,'bet settled','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',20);
-INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'feed fee','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',20);
-INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',1330000000,'bet settled: for notequal','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',21);
-INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',70000000,'feed fee','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',21);
-INSERT INTO credits VALUES(310022,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',56999887262,'burn','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1',23);
-INSERT INTO credits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',8500000,'recredit wager remaining','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',0);
-INSERT INTO credits VALUES(310023,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',24);
-INSERT INTO credits VALUES(310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'cancel order','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',0);
+INSERT INTO credits VALUES(310000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',93000000000,'burn','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',2,NULL,NULL);
+INSERT INTO credits VALUES(310004,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',100000000,'btcpay','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2',5,NULL,NULL);
+INSERT INTO credits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',1000000000,'issuance','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',6,NULL,NULL);
+INSERT INTO credits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',100000,'issuance','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',7,NULL,NULL);
+INSERT INTO credits VALUES(310007,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',9,NULL,NULL);
+INSERT INTO credits VALUES(310009,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',10,NULL,NULL);
+INSERT INTO credits VALUES(310010,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',11,NULL,NULL);
+INSERT INTO credits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',4250000,'filled','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',5000000,'cancel order','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',0,NULL,NULL);
+INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',16,NULL,NULL);
+INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',16,NULL,NULL);
+INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',18,NULL,NULL);
+INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',0,'filled','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',18,NULL,NULL);
+INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',59137500,'bet settled: liquidated for bear','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',19,NULL,NULL);
+INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',3112500,'feed fee','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4',19,NULL,NULL);
+INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',159300000,'bet settled','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',315700000,'bet settled','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'feed fee','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0',20,NULL,NULL);
+INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',1330000000,'bet settled: for notequal','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',70000000,'feed fee','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e',21,NULL,NULL);
+INSERT INTO credits VALUES(310022,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',56999887262,'burn','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1',23,NULL,NULL);
+INSERT INTO credits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',8500000,'recredit wager remaining','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',0,NULL,NULL);
+INSERT INTO credits VALUES(310023,'2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',24,NULL,NULL);
+INSERT INTO credits VALUES(310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'cancel order','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -418,6 +427,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -435,26 +448,26 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',2);
-INSERT INTO debits VALUES(310003,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',105000000,'open order','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',4);
-INSERT INTO debits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',6);
-INSERT INTO debits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',7);
-INSERT INTO debits VALUES(310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',8);
-INSERT INTO debits VALUES(310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',9);
-INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',10);
-INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',10);
-INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',11);
-INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',11);
-INSERT INTO debits VALUES(310012,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'bet','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',13);
-INSERT INTO debits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'bet','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',14);
-INSERT INTO debits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',150000000,'bet','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd',15);
-INSERT INTO debits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',350000000,'bet','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',16);
-INSERT INTO debits VALUES(310016,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',750000000,'bet','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1',17);
-INSERT INTO debits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',650000000,'bet','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',18);
-INSERT INTO debits VALUES(310021,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'open order','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',22);
-INSERT INTO debits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',24);
+INSERT INTO debits VALUES(310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'send','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',2,NULL,NULL);
+INSERT INTO debits VALUES(310003,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',105000000,'open order','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee',4,NULL,NULL);
+INSERT INTO debits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'issuance fee','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'send','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'send','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',24,'dividend','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',10,NULL,NULL);
+INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',420800,'dividend','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',11,NULL,NULL);
+INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',20000,'dividend fee','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'bet','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',25000000,'bet','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',150000000,'bet','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',350000000,'bet','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',750000000,'bet','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1',17,NULL,NULL);
+INSERT INTO debits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',650000000,'bet','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a',18,NULL,NULL);
+INSERT INTO debits VALUES(310021,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',50000000,'open order','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e',22,NULL,NULL);
+INSERT INTO debits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'send','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',24,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -472,6 +485,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -496,352 +513,352 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1}',0,'NEW_TRANSACTION',NULL,'9f00c66e106e0614d6b2cbc3097a18c0f955411a9472e0bf972afe8dbc0c020f');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","quantity":93000000000,"tx_index":1}',0,'CREDIT','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','7c081659a0d1a3a9ac968853021866fb262b8b12d75255ef35337f7f239ac3bc');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1}',0,'BURN','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','565f1a13ab8144df728152439d944081aaba0480604af22eaf05c375f5675817');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"a16ae7423db132c887ae41cc33b7fa48a0cc6571d5a49e0963be25ec8a9769b4","messages_hash":"72fb35fd107eb57460c13d547f5963136bd2c13d3ded9fc7318f917f7b7bf3e4","transaction_count":1,"txlist_hash":"b8fb4fb649dd315851564165b076d636e5a85e043d59c11877bdccced38f1b3e"}',0,'BLOCK_PARSED',NULL,'aaf19d9dba22967385847f7bd66e084bd4bd23824ada365fe83008c86b2c060b');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1363876a57b6fde7170c7f33c7fa160eef21d6629e963566e0e7957b18f1771e');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'NEW_TRANSACTION',NULL,'ce70da2123234c77bef75b6e8abdc43e22cf2a1185de634dff7c70ff95085dea');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2}',0,'DEBIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','6d45377186606db80469b50cd483cbcb66bf0695a8fd7fe4251aefce9e193537');
-INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2}',0,'CREDIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','9688c557d0ea50c5fd73310842f6c73f367d9e430e9dbefed3f2950bfa06f329');
-INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'SEND','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','52e7e94fcd6c0da156494d8da9bad2c694e3e1ba70d0849260a5f76bd0e00c64');
-INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'TRANSACTION_PARSED','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','b4bf381065424a775953708f0395f227c00addec9fa8a921f2759b354b54b1c4');
-INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"0cda5c4a26f0b23d5b948142dcd226b2718c57c9c6a481250128a7a1c8ad30dc","messages_hash":"aff0be14b9e6ace9e4d6333cf04061ef6447598c02d9b27fac1d939df31aa09c","transaction_count":1,"txlist_hash":"1c009ff73127980e51ba6a7035bec5c2a9650b5a184da1d55c3d807fa658f8e7"}',0,'BLOCK_PARSED',NULL,'7918065884b9059fff8e8fdde643ff3bd4345e0a85ff16a159600d751bd52dde');
-INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acf0a8df67e80c2d0615c3205f83aa6b57131beeed4cdc0e7ad0023d117a5eb6');
-INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'NEW_TRANSACTION',NULL,'13b9dc75e77e1376603aae16ad2a3aa9ccbd9c85aad9a2630bdd124066f9ce74');
-INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'OPEN_ORDER','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','98e030ce2c0e8f103dbc0067dead66351161693a4d793874c4f8fd914ac1514d');
-INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'TRANSACTION_PARSED','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','f5104acb82d14f1e67c11f56c2b01013fb7a6ece01e99331d22682f1b32949ee');
-INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"657c31576766cf1f8a699a14e6c7493498673f1948bea1be4f639247f4d52d53","messages_hash":"3f32659dd96a8649fd53b83ac36a4fc05acaac73db54738573b8642b7875f787","transaction_count":1,"txlist_hash":"c674bb5077acb71ab19a6a4a8f779015846135e7b93a5006555fe1f4ad10c58e"}',0,'BLOCK_PARSED',NULL,'5dbbc8fe359e07175d20d2ba357ac9bafa647680fa783b913b6f3a999dc5b387');
-INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be6de2eab19d1ca494a8c0d4a0c136a4a6dae111f0756cbcd7b80e5143122ff3');
-INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'NEW_TRANSACTION',NULL,'14dfa78f5ca83d87399525746aef461accbbb7982d3e052d56133e83b0817234');
-INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":105000000,"tx_index":4}',0,'DEBIT','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','5dbb89fc32f4d76a956f1cda281ceeb9773e6957c9803438eebc54f1bd03fd5a');
-INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'OPEN_ORDER','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','409dd3b0e85a31237a723eb383417c47e1df88b5ba62d299481709ca8435deba');
-INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','8ea40d28bed8b66dbe0e2534a1b6878decb8988f11ce0ab44ef0eb138f039df6');
-INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','5aa12a5d2a70608bdb4f288873148cefc8a8d1b40ddb077a5128074be0825adb');
-INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx1_index":4}',0,'ORDER_MATCH','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','687be7852a4911ba63d961c2405578b239a62e55b3fff731505229644d0d9529');
-INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'TRANSACTION_PARSED','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','4ce142dff68fd71152103723b91ef6769468c945aaf4ea0826fd54c38fb765e1');
-INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e11e7eeb21ff539c27324c94a407dc6f04c739f3ed9841f9f661bf4441e4d847","messages_hash":"85ce063a964cd9bc7d1b5803ebd4a0f460cd48e5be820968cd47859025492a45","transaction_count":1,"txlist_hash":"105a5c9915547d3ebfe733d284d6e812cada8e86a904510fc196e2f0af5b50a4"}',0,'BLOCK_PARSED',NULL,'de9438301cc2f8a40995332f2c338a4dbf8c54817de33f107617f629c43a4a0f');
-INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b6ba1d030b0dfd510508fe189a53e4d8a835a5e066dea964b4b9154265037a7');
-INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'NEW_TRANSACTION',NULL,'aa2c7a8b11a2c7173d66d0a14c35ba8c49a19ab8652e4fd9800ad57ca608e3f3');
-INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","quantity":100000000,"tx_index":5}',0,'CREDIT','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','0b5b9032c8c5d57fe2fef5968a864e692945692a4d1ae4d3fcedb6b3029e9b37');
-INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","status":"completed"}',0,'ORDER_MATCH_UPDATE','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','900cdcfd604937ea25c500b7164d34498b244fda2bb0b6b1b71b2cf1e4b0e0e1');
-INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'BTC_PAY','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','155d308c61da29d495aab1a1e3c6dd315d64bf272d35607524f536c9d3d2d952');
-INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'TRANSACTION_PARSED','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','75556f47412c442578ec9858452b84cf2e241f4f6b3e78f3b7ea79c098d4b08e');
-INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"2742a3e99eed62c09d9ecdaf501aa69b0d0b21fc092ca061448d5016957f35e0","messages_hash":"604c56317946ca59a8278817b3802ec346527d2d286d64e2f354179effbe87b0","transaction_count":1,"txlist_hash":"369b47f51b512708e680edc5ba459b91e2a514f5a5c7cb8435670a4b3ed34dbe"}',0,'BLOCK_PARSED',NULL,'45250e036c7edee071ba4bf2243d1bbb433c63e50785caf797e3526824a81430');
-INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'659cdd3c132dc4f1a12ffd94c6e8c74e1ad8e7ae7accaf73ccbc40a8baadc3a1');
-INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'NEW_TRANSACTION',NULL,'b4d6b12f1c9821a551bb18a1b82798e056079dac64ac64b44702bf815d38a85e');
-INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":50000000,"tx_index":6}',0,'DEBIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','48b429e1ab0f2ac044fdbbed23b4530a7df99ec69f55fa8c0c9d21c4700bdebd');
-INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','3a45d264dfccf58d0fd371ed1f175a9ecc1d615e916edd1463be8d69785f4461');
-INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'ASSET_ISSUANCE','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','b839e9089094e765f15586add924e662a1ddf29ef4aac6b510539ee526d9720c');
-INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":1000000000,"tx_index":6}',0,'CREDIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','cf3d45df2781323c9992bb240a521421c84d9a28c176164075c3a70ee3072be6');
-INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'TRANSACTION_PARSED','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','5e2017e1afe46cdf14bc667769e783636fee2ced3b65f0c1149173d16637c82a');
-INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"49f526a56f21491c797e8e2559f722ded6f6990b1f69c55dc38791d8d30f4048","messages_hash":"7601e852ffd000c30484a083254b65a7d1d6c72df44ebf568915c7d8fcd72512","transaction_count":1,"txlist_hash":"f0c2ddd7c39b14fc55d8518c65aa0811fe7807ebd1eebb4b66df8459f9e5352b"}',0,'BLOCK_PARSED',NULL,'4a61a2c3b6df8cbbcf06d2dbe074df2674e9d0e0c2e617007b35054490849d8e');
-INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d3488b6ae86e538d387b774f8d54083c0d46787ec26fcc4b3fc6243015e90e3');
-INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'NEW_TRANSACTION',NULL,'c45f0b09dd60db048646799cb76794732f40fb684637171d494d55b0bea2b018');
-INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":50000000,"tx_index":7}',0,'DEBIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','a95e57057ef99c1adb9fe30d51966cc002688877f357cdba9974bbdc96f44f09');
-INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','e178cacd2b85178cda4a0e01e2cf3b218ded72446629c2c45b8d09141316133d');
-INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'ASSET_ISSUANCE','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','ec9e99566afe1d599ca190ae91ec3044b52c87fd424a53a7a25c420bdd56d575');
-INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":100000,"tx_index":7}',0,'CREDIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','41ff8cdbec08bd74e5ccc12314f8d0c977d859940b52527e03169350eb83f509');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'TRANSACTION_PARSED','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','5214426341ec3fad7a35f4a8939720b2f085ed0738e3a5e0511ef8c59c408c7c');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"78787c4c9537fc4db5d1dc7d31d4fab6b445d57021aab1a38d4bd6a9404713c5","messages_hash":"914680b3a6ab891815c044f2d4a31422852b4125f1810e9d1179515560f1582f","transaction_count":1,"txlist_hash":"877117b3bd10ddbe6e46f417845085a6bdecd86a4961b99c80e991b4c51e0f5e"}',0,'BLOCK_PARSED',NULL,'e99ed40e63d14fae4a135c500390798b59515a45fe94a1594d777598749af383');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bbd01c5cebb347dc4a9ed466cd5a2ecce6d284468d62a8866cf1274a557925b');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'NEW_TRANSACTION',NULL,'3cfce32c9ae644c688ebb31cc7b2b71150e6c1b5ccde4fd9972f2c8ff74a0c8d');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8}',0,'DEBIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','5611c4445e5d68ae349c425c4da6baaf2610459c3b90d4f459198f387d6ace71');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8}',0,'CREDIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','f701402b18a937d0e9b42e0cd47260d366dc3696fca0e9f2a84807e14883c027');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'SEND','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','d5c6c410f1fddbe45b9d52c5b003f388328c2d0a3f0385d7927d40c2bcfe7b17');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'TRANSACTION_PARSED','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','9e9b9861d095ba2e4d6caf2a7982b7966eefee61993640c6fb0759c94c67bbf0');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"5cc2599b63007433426c220c59a777b5c37b1165595f2ba239c3ce578c8055ab","messages_hash":"854c4c587b4276b27f3fed020babe5e6b8ab8dd184a4d7ba1432ab6bfab2c6ea","transaction_count":1,"txlist_hash":"702a5772ce8529995f7a66a244e8be495e3f7cbedb7b09f47e3d5aa941c7f4c1"}',0,'BLOCK_PARSED',NULL,'e851d65635e9cc84af2838ba0c7c07b5f97c3d07e58b92cb123928fe47e17269');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea3a847ac75919fd4a44e0d3299bc5bb995684e114891d182972319dc6d004be');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'NEW_TRANSACTION',NULL,'a0f6dd9597bca17ae95b0c5c737901ce2c20aadf6b65fb2de183b7eaeea10c8c');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9}',0,'DEBIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','2221fcf926bcd57ef6ceef7c1eef26372e5228e41f65250f699b732a9dd253f5');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9}',0,'CREDIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','961e9d0826135543f29e5082605bf335822618c893bd40781d1e0434559768f0');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'SEND','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','002dd6f12a8d03f6a823874f07ca772c38cf1e989fa287ae8f55d4cdcc9aec01');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'TRANSACTION_PARSED','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','ad393b0e84c49f5763093d00cbfa55a7ab6fb0ef4727666e60ba5b2e7280a760');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"9550db622e679ff3d63d814f9ffa743d57eb12491b213ef6474617a6c738c3fa","messages_hash":"345a10c31ef469648159999ef16856316259345971b2eec607a5ce57ba556676","transaction_count":1,"txlist_hash":"6c536f7ae10567cbd91945e3e958640e6c65408f83e4a1d93e705950ba39de1b"}',0,'BLOCK_PARSED',NULL,'001058c36d6a059081f7e59e56dc98962dec2f1f00963d2f3a32e3b515eee93c');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'081d3c5d15cadc11cb8484ad84fc6cd72dd5665416c28effd4fd4a006d3b3d24');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'NEW_TRANSACTION',NULL,'ba30d62c7615437a90d07c85f248f17a775c5e9c833180395f02837cea3f23d9');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','998357f9d8a19010a7b70c1a0be823406ef78b87f2e66eacb591c88127f96946');
-INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":20000,"tx_index":10}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','1070a1cd5a11d7876652d41b1c58f4eda2f9e7d69541e6dcfdfcac0c613ff107');
-INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10}',0,'CREDIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','37c99681252fe3da18bd61e8a5e051cb6c06be30113502bffb7477a1bfd9a2d9');
-INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'ASSET_DIVIDEND','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','9248e5f04eb192d268314a513bd988725dc62cde24b24de291730b1d5418f1ba');
-INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'TRANSACTION_PARSED','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','a6d2c7401036a4a69a8e75cff61f9fe48ea3b4fc8eb520454610d038fa78c9a8');
-INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"08c005dd5bae7f21ca27803d75318ac4b968c6d4dd2c275ef284c03fea43b189","messages_hash":"5ab18e8b7b08bdb2aabef0fb95b3a8d431438f98527f224b19863e1a18e7671b","transaction_count":1,"txlist_hash":"8f8156aca3441754221fbf9cc21b0e7d877a533e00f63950be3f95d0a9305433"}',0,'BLOCK_PARSED',NULL,'29d6027e03b8e38751358eda5bf78bee8514fed603faa6dff352623e3731d54a');
-INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94083f9c0c4525ddf3dd31989926122cd3f1ac05c72ceb1bf14f2fe4cc5b7b1b');
-INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'NEW_TRANSACTION',NULL,'888ea8fb51b3648fbd8f1a49479a99aa3ab7c230497f6e80e3db615e9b443b9c');
-INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','1831b998d0e49e614594571cbb5a20f7a7599ec72ab4226f76b44a255e2491e0');
-INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":20000,"tx_index":11}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','e1a11c09579812e531c3c081d48ccaa369edb5e3a4911a496e0ac3aff9f14874');
-INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11}',0,'CREDIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','9a3d7d17437885ecc96e6edb2d5c43448ca3f3eb25c52f490aeb43a899e7eb01');
-INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'ASSET_DIVIDEND','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','3e062e1cc13a2886d0dcb1f4f2a72ad2c891c9d976d0eeb87a2bedc7ee7b5ee2');
-INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'TRANSACTION_PARSED','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','d304f4dd5e897cb066c6a599cbc6cdc8245babdf9ea1b1d208f16faa83bbcb99');
-INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"07f48634d06e6be1d800e068cd213a648517fe167ed89c355d9db966897ed7b0","messages_hash":"0546e010b64a8b52b22b5806d642b98afa94cd8ba58a7b79fd5468c7d3967e2e","transaction_count":1,"txlist_hash":"c5956a9750e786639ceb4a252a219afef6abb753037888c90ebf17a5c5db079f"}',0,'BLOCK_PARSED',NULL,'dd1168f0b007e80163246ac05b2394822e6c29842aee9304d4eddd72748ae29f');
-INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8302a27aa5ee386d53077146041e798e0323d70a9b26ff0e6b70ac9d599205c');
-INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12}',0,'NEW_TRANSACTION',NULL,'987404a7da1cce343e67b76ee901794e12e3e6c94552c4fcdb23b9366d529c16');
-INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12,"value":100.0}',0,'BROADCAST','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','93a1e153edeca997b1437a6e7c1aa978e233da9cd312b96839a54fa5f6f8cd96');
-INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12}',0,'TRANSACTION_PARSED','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','915eb6728e57234d17116e109ea3273e5031c2e8379b0c2d5ec2c8c857ae77ce');
-INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"8d0be0b3731bdd0d611e81b48efa6c706a983990f31bc563d57893f705b73aa7","messages_hash":"aa5dc6df82251757a41241459af772cbf946bceda20e4ab304e9c0dc1d54b729","transaction_count":1,"txlist_hash":"219d47523246e5c4ffa99ae9c29bdcfdf9f419bff3d21da76fdc91cfe99fc28d"}',0,'BLOCK_PARSED',NULL,'6cf02222fa6330ebf111fdae1339543ebb877f81c8f6e3b8b60f4cc8a1e0728f');
-INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a5e1ba1adcd16ac7ca0b55777de048d2203b1d99b51971216608c0cad49593c');
-INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13}',0,'NEW_TRANSACTION',NULL,'be6d4e4a74993d5bbef46677757ac2cec805910881240182c0842971945531e0');
-INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":50000000,"tx_index":13}',0,'DEBIT','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','d47be4d4fb52a5f85e0c46b9235c93e66f3da03a7a0411063ce560413ee80ded');
-INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','31d4ae6a9a7e06a514646d806e8cabdc0ed3700a85ef71de11ce5b7e241dd5c4');
-INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13}',0,'TRANSACTION_PARSED','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','f47ed90e888339c39fc7a5ff53d4425f761d451e90be33933e37184ec4146a13');
-INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"e3de05180536ad40eb9007f19ccb819fee0586cb9e7c414dc560e506ae5c09b7","messages_hash":"5322bd28e42ff13238d6bad863782392d07d3c529139d25b5a7859f2065e25ff","transaction_count":1,"txlist_hash":"ce6072bd562a52051fc530ec552aa343e4980a1b236f1cb8318c415d3eb2e851"}',0,'BLOCK_PARSED',NULL,'8728b1f68c513c091e7081cf480984624861efefb43a52ee6250c4ac6fd7d192');
-INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bb4316a38eac22a765a716a6ff2e349d9768aa4b08303b4fd6f0c90f2d90b04');
-INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14}',0,'NEW_TRANSACTION',NULL,'1736c7885b2a3b20622ec5b0d633e4bf870fb7729155d98d9fb8520b77cae8bf');
-INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE',NULL,'bbeacb457b3c2b3c3a06e9f723103c79f827de192b1eb6ed972e82e247b52e05');
-INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'2ba834fc3db4b8305c870402ed115106fb6e9c44cd03656fe33e3e65cd5cdf13');
-INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":25000000,"tx_index":14}',0,'DEBIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','44bcaf705cb7d3cac916d15c46047292ebe9f8066dfff4b8d0e45a137ccf2314');
-INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','687e7f8f37f5beb7bf4850889c0447c5260b8f02bf5d95e1b2a0dea182bc6642');
-INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","wager_remaining":8500000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','a8fea9ccf762e138b0a727a75a977d9ea5600333abd3aad94c551bc78300a535');
-INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":4250000,"tx_index":14}',0,'CREDIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','50d6570dd3423c9a02dd6ea9f1640cb57cbc396907eeb6128c90e928fc68beb0');
-INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","wager_remaining":4250000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','a049ab52fb50e38204d1709bddda6408049eb3e4aa9c720e61aa47bf3fe3c88c');
-INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx1_index":14}',0,'BET_MATCH','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','b3c304daa0cb94e42e227bac170be27f368f25091af751249b9cffba39a30414');
-INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14}',0,'TRANSACTION_PARSED','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','dcf084780a2aebf1a78560c4b3cefcaf2feee60e6227d87f764245de7f5e6b05');
-INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e521556db091cc726fb38cbebfd10923e37dab652c51dca73a646fe5bd81bb96","messages_hash":"53dd35d7fcb3cb00c464d2e5cf8d658b0de66fbdb3c644d862477ec1cf9827ea","transaction_count":1,"txlist_hash":"1a1e24f2debcd4b5b1e350a71823758d3114335ac831367bc91c9e487b94c65c"}',0,'BLOCK_PARSED',NULL,'7024081780297fb79744ab499d7f091faf34287173011e98a5dfb99ce49ecfec');
-INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0972d086687d863e756f563d576a305f422f0b2f71968c0ee02bf4e83c29f0fd');
-INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15}',0,'NEW_TRANSACTION',NULL,'8cb43f81f45b3ec54cba71ef7a5f95e583e9ae88b040435607e43aa2400d9726');
-INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE',NULL,'42d31f3f895523f6f34440b963ebd5f1d7af95ce4c80fc45edea0857abfb3808');
-INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":5000000,"tx_index":0}',0,'CREDIT',NULL,'930b5277e09af0c74264c8a83bf7be716477d6cdb8ff14113cf9a2a9cbffe107');
-INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'9ab860f18774f4bc4641ac5ed43dbe72708716982bfe5c3a72521b62ad2ddd36');
-INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","quantity":150000000,"tx_index":15}',0,'DEBIT','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','f432a0c7242d6158577c90877b6aa16939dd4e170e81fde1f17f6c022ce27933');
-INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','96186c359d041ae5d30152ebb511a5621165c5d517f69956771939192a12cfa1');
-INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15}',0,'TRANSACTION_PARSED','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','75dcf890fbe6a211700456b2f79069d3eefa59eab1ad4f9696ed0bf435a75bfd');
-INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"1cd6d92fbbca9266135a35f20a4328d510c8d209ba6161dc8c9e9bfa69032c57","messages_hash":"2b42fe416ff6b68adcff8c01b8ad5e9e664617e5982215fa404edea66c7ef951","transaction_count":1,"txlist_hash":"80ee1bd354b8e1aa1c2f57926fbd36c0d9e2dbd3f77d8f2e43d59b29bd8175a6"}',0,'BLOCK_PARSED',NULL,'9368a96758401f560f826666de3dda94e49a7ac5f6985b4c20dce12f5d22f1ea');
-INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'440d9c0f463e6dc07600d57e61b8ca57d7ef2c55eea18c43d6ce24632f09fa6e');
-INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16}',0,'NEW_TRANSACTION',NULL,'92e77e15f9ba775366fa186a255f63e68ec042f3496bf0cd8c97ac036d194df9');
-INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":350000000,"tx_index":16}',0,'DEBIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','c8f7ab86abeca1cfb501bc0a87adc6bacaed37ddaa9b1303490f6705f4a2cc3e');
-INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','6102b39c90e27ecc0588590559e7a9577317e0e789bad83d4730a54389aed366');
-INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','abf306e365b04c0332cbb6c8f7eab615da9603dcd48bb97c6882a8e37acd3411');
-INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','5d932445bac556bc2083fddcd381836b3377a27985b4c4a9918b112ed4c35f56');
-INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','6d01035b25954f4378a8dcdee186869a6f5993cf3a130229d8874a1b0ef0add6');
-INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','fbb49572472efbfff32df1f12871ca83614c2d6087c31b7d7b089443eac4a56a');
-INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx1_index":16}',0,'BET_MATCH','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','7216effe12fb25180547ebb9f57cfdd8bbd6b04ab9f01149beb1bb7e2f33b398');
-INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16}',0,'TRANSACTION_PARSED','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','29b76d8c4e3fae2c10bd3e3c8234aaa933754193a76d750c4ee022661b4f9f0a');
-INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"62759ea6d5070225bd30253a42b6c68fdaf2c4165b1b221b8e7bdddeb26e9737","messages_hash":"95e6788f7af884c71f7e813de2665e2beddc6faee99015402ec9e8498edf6074","transaction_count":1,"txlist_hash":"30a124b4460d985c715c7bbd85cfbe972a5caf457e45844e0a54daa258ca3376"}',0,'BLOCK_PARSED',NULL,'29af9cb4131494de23e08ed87e3ecb3fd9e5e25df46d5881166f950a164550e1');
-INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd282b2652b6a48361b8b9536cf916f4b0f32d24b14a64e4301e3334de27a653');
-INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17}',0,'NEW_TRANSACTION',NULL,'9a8ea16bdb21f880f732d57224a116c9552c3ae686874bbe4b1770a48287c9d9');
-INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","quantity":750000000,"tx_index":17}',0,'DEBIT','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','d2e16f3798d18613a0b00391e3f5129afe47fa0fc69e9b10f0aedf7e3ae6902a');
-INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','a2b27844e9d86e7250871a0fc7bc1a166bb611bda4e95691a2bac0d99a2b7d04');
-INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17}',0,'TRANSACTION_PARSED','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','c4a4d311e7b04ad6ae0e86f1cdc3a51bd8b90a4c726d03a4493a1ca537468b6b');
-INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"f9fc0dd4d98ac5e06e4f9673cf5678f9fc264cda23172e24427b833331b73c33","messages_hash":"7fd6480d829327edbce5d160651ffe3490f980d0e5f2b0ff6d5328f7e29e75d4","transaction_count":1,"txlist_hash":"cdbbf3665287df62a1660198e00049d06f649f37c49cb76e9fb1eab12960e66c"}',0,'BLOCK_PARSED',NULL,'a3a29dedd44c93b11a68e64868e68e1ab09fdf02a697df4ae8c4491122d1ee7c');
-INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27788eeddbb4d80a55d7badbc9af324ee583b2412e56b2faa05c2c1ef3861890');
-INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18}',0,'NEW_TRANSACTION',NULL,'51adc3d99679d946a6e2c29223a5bca153c159ea3fbd7b2aeea41da17fb85a75');
-INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":650000000,"tx_index":18}',0,'DEBIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','84280a2a8abde685f5c607d11d315166974dc20281f666a7f252f8005e3ddaa0');
-INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','6a584d30e6efc610e6cd42a362b6eeef6452571e1df9d7d6a198c450b87a70db');
-INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','f96dd69741ecc0e5370528d5c5a525ac0ffd78cb127dc421cc8621c31694df2a');
-INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','0822701c900be922f9d7a6c8755e6a0561eb5f325a12fabd214ab918eb7fbc47');
-INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','1967b326c2cc9e7103b15e7af16bfc6b31c7fa69ff6e344169d5d732cf926621');
-INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','26085c9d418998c8a851b087ac64d3f521cb5a38edcc13abd3474bc32bafe5d9');
-INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx1_index":18}',0,'BET_MATCH','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','72751989a4c8f9ee656acb213488900dc25c89b722c72008dd0a0deb19c90a89');
-INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18}',0,'TRANSACTION_PARSED','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','561631f0783b2280a49c842676a14abf82178aabfeba83f09cbd01de68b5576c');
-INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"4a355b8e80a902030f384f58700d05da9a6efaae3f3ce0b1a056dc1250d9ec63","messages_hash":"4326f831920bfbfc580e6dbc0b1c8c012c7b46f95f2a57e8cfba5128a8ec7d31","transaction_count":1,"txlist_hash":"355616d4b8b8408ea7061e787ca35918b6d0417895a2a2ff224d207f0f76e02a"}',0,'BLOCK_PARSED',NULL,'972fbbff8814e6dcecf6716c5e4a1b6e6e5b746f920b7b434949304f2258900a');
-INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d12d65b32eae1b3e2ba0e917f1bc54c8832611e1e3f29712ce026bb48b00c0bc');
-INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19}',0,'NEW_TRANSACTION',NULL,'55491bd99cc2d13e9d035a099e70e48cae30ffb15640937f37b512a7297672fc');
-INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19,"value":99.86166}',0,'BROADCAST','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','fef47c4f7ab5d23cd9f86f7bb884060ecb3a642b84c364d035d5bf9ca29c499b');
-INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":59137500,"tx_index":19}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','dcf91b762cae14836709f7074a4c46aebbfcfb38af2ff668db8990f1ff0e0dea');
-INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":3112500,"tx_index":19}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','5874e47a62ba17f80ee28902ad046c50c3f5b2cc4fb7f078f5a5ffab8898413b');
-INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','12f773d0d0591306ff4122a63d4e7dc7e5886a3bc39cd79956256a3a5833861a');
-INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','49082646ce7b8cdb9c5ea2f82a03643b55d80e93ac992d5b9e9355f899f3dd3f');
-INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19}',0,'TRANSACTION_PARSED','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','083c69df4edc77c75c4abd9288747dac40163947851979d142588e624faa342b');
-INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"57aee8f9c9b63342ceeea3a3162998e9034a3d624d6d85b19782943ce170cef5","messages_hash":"1933395b09d7e4284e5565db7975d03a7b752fa50af48573e1ef8bd7aaf91964","transaction_count":1,"txlist_hash":"7987b849a43c706d33e421d45e99ca6593c9aa8c69079522888f746a8d4ff748"}',0,'BLOCK_PARSED',NULL,'a3e6f77fdd33087396b841a95b0b3d7f225f25c73484674faaa5837fd35dcd6a');
-INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6fb814270890aba5be46edf33a2ff99fbdbd015f343a078dee5bb891a5eca43');
-INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20}',0,'NEW_TRANSACTION',NULL,'df405a0fdf78e671ea5e443b1c45cfb527d5d11b85acb2df95ae9a7e36d6b4c8');
-INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20,"value":100.343}',0,'BROADCAST','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','565dbc84af7971508f39be24ca04ab3dc6e67ddb6e69fbabfbd983f284ba9bd2');
-INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":159300000,"tx_index":20}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','eb1ae5b56cbe97223f1552592d5f96796769cd343982358ce4fc38c96dd8ab74');
-INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":315700000,"tx_index":20}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','2111cad66d8d03568c27e1a4485e0a2986245d1ad01cd84443501a02b2c3ebfe');
-INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":25000000,"tx_index":20}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','c78672aae47ef989a8fd4e0b7e1c29018822c66cb8618c9a6d8d91116a095135');
-INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','3c372fc9f4fc6360d8f35181915dff053f5b8fae50e117e96d015f4824ade1cd');
-INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","status":"settled"}',0,'BET_MATCH_UPDATE','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','63784c58144d2d24999c5c32a3db19d69c46239d17742ff280f8c4cbb6999338');
-INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20}',0,'TRANSACTION_PARSED','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','e6c3e054977fe60e25e3846e1da1385624d073f5a97abe8a8fb25856c30cb354');
-INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"d11f94528a9e0034365e4388ee455f02102d2024c65e1428cdee28b6e5aa7e1c","messages_hash":"f58bd63cd1c639a15c0ef21fbb816bdcfc65555f27e76c7638d632f2f65308ed","transaction_count":1,"txlist_hash":"14d0604fb6986f281715ae660221c79b7bfddf15cbc7da02c722e86b8e264d85"}',0,'BLOCK_PARSED',NULL,'d69ffb6975c54b288439edab409b3641c8f9c1063f4bc4b5cb320fe9a594023b');
-INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93dce575940690bb5ac01d3677c594c48b90f40921deb4741d552496359bd4cf');
-INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21}',0,'NEW_TRANSACTION',NULL,'e2963e1e3dea3d3edc8700383c344ff2c76e000aa5a1ae41e3302d2023910342');
-INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21,"value":2.0}',0,'BROADCAST','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','e63527225b464e6a8b7494d03b2ff74415654c9a1f974a9b19ae92e9e11fe48b');
-INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":1330000000,"tx_index":21}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','561b8c6f9c60881d92ba9e78c7ab999f06b1a80f4c95c13fc2eceaf335f45c67');
-INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":70000000,"tx_index":21}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','6d44646fa63bf72bf876f51b564c63b04fdd623390f1d54eb9ca51d7acce97bf');
-INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','b3e18a845e9c2210618810b6912f83ae24d36c253f5fa33afc61abbb5843a465');
-INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','90099552031e3961f380cbf0e2bc1e4a79feb2c3a12bab03febfe2fda8123988');
-INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21}',0,'TRANSACTION_PARSED','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','e9b07cbb73837e49bb2c1e2e1fc66e07e0cefdfc2beee1c21e1d93ce3336dc87');
-INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"4397f5568bfcf8cc90d1e72b7c61e7cc6905a0d9d3b3890c33e2afb464a25fb9","messages_hash":"c83c26a59d32bdb9ac99237809b1df16a5ac2ca3102b1c6dc4ebf59b57e6c231","transaction_count":1,"txlist_hash":"5483ead85237ef0ceb3486e3c3e6ee1e5080a5dd602f805b811cedf996b8dbaa"}',0,'BLOCK_PARSED',NULL,'2f9016bcef9fc5d1e5f0cf38a1c677a122bda60bf03feebee6e7a0f41654843b');
-INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e636d495847e7afc1fb162eba6273e20934d19b17b2a029422b47e4b1a547fa');
-INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'NEW_TRANSACTION',NULL,'d057fdea3aaeca3bf142855b315c2b466aace97cb3eb895f6e2b4dafc1d6817a');
-INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":22}',0,'DEBIT','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','49a7d19e6299ace968a66a583243c2f9ccdffd2e7dbde8b553b8ecc0c0f818d5');
-INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'OPEN_ORDER','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','8a128b589021aac99233bb580a8201b1f8f313e4e16da2378a7b78f83e7ce23f');
-INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'TRANSACTION_PARSED','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','cc689438e8389926dda039d7a41d7d9f990641b9ad9702aae9fe69a64de686ff');
-INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"16b7018344f7a97695eb17dc5921c4955b3f8cf4d9e70bd8628041c4033886b9","messages_hash":"df2718afd201901a86d99a9d0a6d51eae8c18ffd5410c2df3e03f9bc9dc19ad6","transaction_count":1,"txlist_hash":"bd68fe9b7aef054c8a5925dff9ff140cb5c00eb611a8802156196ed486479ad1"}',0,'BLOCK_PARSED',NULL,'672f1660c942d4819f338ceac996926c82f9a0eb9020c3a69ab77bf2ccd4d8fd');
-INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b26960461cb1f6de525edb65b460453de4cff33e7469b53da1950438db083a42');
-INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23}',0,'NEW_TRANSACTION',NULL,'69fd0f1bc6df023c3837739fc7354b622ca9c2e4ffcb13e67efd46e85b5470c0');
-INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","quantity":56999887262,"tx_index":23}',0,'CREDIT','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','78f9dbb99d3360cc8736a3e6807154219046643e208e094ae3956fa9b8aaee15');
-INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23}',0,'BURN','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','6821c0b88e63db93d51b33a49a160da88fe888157c1099dae829d016ce6fea5e');
-INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c3c26212677f4aed4614b653f1e5da509f962c29502d22c84c1c5522bca0dcf5","messages_hash":"44ca0135d35e858c86b381ada27e536e525b152a649f50d2707dba4154f181bf","transaction_count":1,"txlist_hash":"109e820ac7d290ecec049098115ba6b467ba90ba624aa24326cc7e103e51b265"}',0,'BLOCK_PARSED',NULL,'5131a47c173ec6b96d67337c70be0a3c11e88f3778ce7d7e54fb5dcb2bc9d967');
-INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df2f256707b59985ce1f0d41bc465a55cfffe4831ca64ba82f6bb379e8f734f9');
-INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'NEW_TRANSACTION',NULL,'5017479b4198b588146c797cad761bfd3bba0f756ed609c8de40d5fb620b811b');
-INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8"}',0,'BET_UPDATE',NULL,'7a433b4f0c2cb1dbc770b422bb1d28c4dfdcfca1feb0714c9158d450bacb6170');
-INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":8500000,"tx_index":0}',0,'CREDIT',NULL,'94a29d834de6a28394d79865daadbca066eefb21a09c3afdb197c56aaa1e9538');
-INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'32839c5c6bb6e343dd2e03db2d3656b2c43c01c98672dff69c8c88f2ea5a19cd');
-INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24}',0,'DEBIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','1e718918081ff97bd347822781f66dae464332707eef080d371aff35dbedaac9');
-INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24}',0,'CREDIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','8f47e39a4b7a7907213ac9387590807f9d0c63cb88779160205f2ee67b41e33c');
-INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'SEND','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','7e5f19c25ddb1c9317a3a5a3348a93b7ae7ec8421e22272a32efd7781e6c5518');
-INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'TRANSACTION_PARSED','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','59607a60de5391c038cf5b0e028b6fca7e3883c936d783bcb3e726543b6b3278');
-INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"420b753d9e2a4ae5c00cf65efccb9a657d2daeb19159075d1671a076d8c1ade1","messages_hash":"91081b0be0fff5219493139012532117f008245abc4b50bd36faab48f85be5ff","transaction_count":1,"txlist_hash":"8e03eae75b5f9306a0a8142296412f7271b17f8c751e9e8e1b1cbeca5418f4eb"}',0,'BLOCK_PARSED',NULL,'ba9285d24da654af86817cb541f287cc503c909d05bae700b5d0bf6a334d5337');
-INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73c7623b55e3e2e7c37978bf325cac16576980de3db723cd3451b72ae02b0c4c');
-INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"786e9c043df5025bb8d123322e2dd9cba30cc433ff90a44b7b7036369565835b","messages_hash":"9ab46e4d9677c04c33eaf38a5739415b157e5030714de0a236e7be42ff238dc0","transaction_count":0,"txlist_hash":"6a80f89b076199d165801b34c7d292976e069920f2ae4184e09dad8411735b94"}',0,'BLOCK_PARSED',NULL,'27cd6a6f16cc52deba5a22c4fbcfcd288f2920389535d6342bed2ef760d31dda');
-INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58d6f5d3fe9d77d4f9e4ddd000a2b7307fb56e2217ae943f5e7350eec16488c0');
-INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"1a2e0585eb1a7f608b4ca4b1d252f555f87e7f16fff124ed869285ec17643059","messages_hash":"20141b1af89156b848ceb20e590be9ff0d54478bcaad039be244306aef734642","transaction_count":0,"txlist_hash":"a2110149cc4e90d1474c53bdf91e24f8bbb8931548542a6afda94bc343fe3a7f"}',0,'BLOCK_PARSED',NULL,'81687098550faf5fb3c63caae244068a49e5eaa8a9421ade3e2fdc393519707f');
-INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8edcc2970d4f2b527e43a03651f939b5886f8d0e88488dbc1b1b2e00823dd280');
-INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"44a1f10e2df25328c38e20c36029bff557c7a93784030ece591406df9c71ebd6","messages_hash":"63504129b0e9f989d9c6f9ab21687c26b7202d9cf0f03f79958385033f163464","transaction_count":0,"txlist_hash":"d087d907b7af1ac1171c61f00c756754fc94e0edf0dc265d9eced163a07357c1"}',0,'BLOCK_PARSED',NULL,'d0852e1cc505ec0d76ef86d21ef6b8f56837d54f341597e8c1f65ce9d3644788');
-INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b43788e17007dce77aced453b33183a35869297e98519cf3385c9ac7652d8a0');
-INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"093f82c2b8e108242edc6dad72e5878700b9c33606c359e673bdfe65341db64a","messages_hash":"66093532b874150a5943bf3868b6f76cfcd695755d97035987429f4cfa0edeb5","transaction_count":0,"txlist_hash":"5796b7de2e12cda876546b21e2a64e92b85792c201f39fe404e7fa6c395e78db"}',0,'BLOCK_PARSED',NULL,'750be918d445e14be4357feb05c8d58635f487e56f026d9dd16b000df832051c');
-INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f9a0d7f7f9d1a3b2d48c875135c2e6c2da9f1c4ba897af8fc54e16b0cc5498e');
-INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"efac93e04f7cd9d3b1c0af3da102c29b50d940b4b5687fb0061b3b6e169290f6","messages_hash":"de99b16970903ae65ce92f70f7d0a8da9ad74db4c483e2d4447cb548982d0bc9","transaction_count":0,"txlist_hash":"5daed82ccefd923a597451b918ece6172dbc75df5cd53ea0f7e40065e3d0d929"}',0,'BLOCK_PARSED',NULL,'aca79fdabcf857f86ce2d4d5f891b3d84ce2645ba5400874b15702a8c6013222');
-INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a64e41eb7c5d4d3daaf8250b173dee72b6d79a8ea4e6ee63b02fe127be9a782');
-INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"1fa464e853787685a588de6dab287456de7a0efdcd76052a41ddaf5e2f85a648","messages_hash":"f3b6cd92ef9d32c924d0ce7881b825fa846c06a58bbc075502484ed976f8f528","transaction_count":0,"txlist_hash":"818415429923b4a38cb65dddb4e8b8a17264cea0188e905d4a19db340e98ef82"}',0,'BLOCK_PARSED',NULL,'b1b3c22922fce88af963ec13d5d457274f296391e0a5d8bae044d01587023b13');
-INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'376e192442c675c69426e4557578d29950666d56df7522c4a81bb7ada859c5b3');
-INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"fee866f1cf6e5f83010b97e0e9d88b54ce43fdf45e89081ba3b2fe07b62434fc","messages_hash":"c61b51630aa3cec277cb59ae2f322a8abd57699b6f090b731564d2e6d00f4810","transaction_count":0,"txlist_hash":"7e3fb0dc1ce885afb71be88ad0ca3b189202535d328ff70bda7cceaede6813bb"}',0,'BLOCK_PARSED',NULL,'db921ba27a2a39b929ce544aa03e16c560242aea7500f4dc06b46fca475f6c37');
-INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d18232272f92f4e76429b271c4564f1e6578ac5a90154c82866b59311f539cc1');
-INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"11ed526c46610698e7a4f102ae91755a541d668750ec3bc10decd0c1709d1115","messages_hash":"6e82edc73115783e4515dc3c8f34c62c906da0c0c882c4ab621a4adf58ad11b5","transaction_count":0,"txlist_hash":"e3044e5fc57d122eb707d271ca1f4248358a8f477a6466cedb739e7799351bb8"}',0,'BLOCK_PARSED',NULL,'567a8b7f4392064fd99518aa8dff967e2410f1f0078fe4038520343aeaa4caef');
-INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3f3f6126b637c696bb68f9b48707f03c8770ce8fbdc84e4e6047fbd03923bb');
-INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e"}',0,'ORDER_UPDATE',NULL,'1eef41f6327cd900c9149c2f41b67c713e8bd0e927cbfca86f505604bdd7dc9a');
-INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":0}',0,'CREDIT',NULL,'320ed4ea9a9fc97510432c59392efa7fa6540284ecb577b8292fc4ed635c62f2');
-INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'16cf5bc81a190544c6641c4c93151a73499a99ed05348e66080fdfaa6f458784');
-INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"7930e5a2c6150df64dfd995801aec68ce11df292e206f08f7ff20eda9ca2d017","messages_hash":"9e5bd4348011a4bfd4f91b9ecfa75389c87204381308a38032ccbfd463529617","transaction_count":0,"txlist_hash":"cbe01ce5a4da72538e9310180de025f141ea8baf1b6eeede8164cac3488532fe"}',0,'BLOCK_PARSED',NULL,'76b8968f3b735ab237b5c624ef07a51f88fadb2345323187ad747dd9fb1c62bb');
-INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0a86e3176137b5c39deed69329d11a671bdd0bc2473277bcf0c7c39c021b04b');
-INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c5834a54b3ad7f9fdbb18a87c8cefe867eff2ba1ae5bff238a3a041431d0afdd","messages_hash":"907ed29694aefd86edfbc4a210f60db1de73085d1ef82b5eba6fed922ef2681a","transaction_count":0,"txlist_hash":"81bceadbd9f9b956ed25021e2e0a9f4217c7424522105f8a0ba41c9f78234fcd"}',0,'BLOCK_PARSED',NULL,'5e00d3b3a41fc3862f8edd5bb7143766eae8ff30082e885b433b096e29584b13');
-INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfb44926511519acc880fccf94049d96a9997aee125a045c76a8c25e3067b4a3');
-INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"5a4b3f29cb1554ae8f670955df4dde45fdcc57623a50ca7d8f2c78ad79186a7a","messages_hash":"dd328930abb087b56675e8122dc92a7dcd71162ee577f4d482fa176d2a88b3fb","transaction_count":0,"txlist_hash":"0ec430eb4c16f386b5abbd6586133741dfe6c19eb820d388810f3680442d363a"}',0,'BLOCK_PARSED',NULL,'362f6b6679069fc718b3d41cd641da54fb7267e9eed64269201747f8629b767c');
-INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74a3102a58f464e64ff45045f59f3a4c0bca73efd026f1aa4e51d68d3cc7ab57');
-INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b81834ed9e92514fe7d277378be72e1f81043a615a4b67cb67dbcf97e3c3b43e","messages_hash":"41db3179bc9788824037f2c6341e43178c2013baec35d5144cfd625349ca9b20","transaction_count":0,"txlist_hash":"a883860baff0c6dec150c9d80b8a640401e191312eeebd4e9f21914e7803c46b"}',0,'BLOCK_PARSED',NULL,'ea90f55080bb5aa62d13123b711fa9319ab9777b8f0bb7bb42b467357b615745');
-INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce33f7caabe31aac0e0a2be1ec6e46628ed65efd08216fed442bb9f7a612fad1');
-INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"736adff04611f10a4e384b5d5c44651bdf037c0caeb8dda5bedbbc6d18d04ca2","messages_hash":"e47efff42238d0792a847ce03c257ebc6a98df5b2ed2aa6794deb87bb1762714","transaction_count":0,"txlist_hash":"821ad697a76d9a35b14a7c388b65b4f3a86fc66c42e02af6d568f73e2586beec"}',0,'BLOCK_PARSED',NULL,'301c9974433cffd13c13a6e5f45d38232409344c0d2fc804b1987e7e0151e3c2');
-INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a5c9518a00be6c928e13fdd9d6b58efe3d0e7d1b4d880305bad80e1e06856ba');
-INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"34d49fb14a7ec85ebd02ffe04768f5aa7382ed0ac7f9ae903e71567dc5d9ab67","messages_hash":"c85db66d7f2fc6b8db0dc4a2290e79e34f961b84004b7d0260be4e17d645b209","transaction_count":0,"txlist_hash":"c5ff4e50b07b755c23a6d9ca6dd5efe71a2728c4c662418fab814993be455308"}',0,'BLOCK_PARSED',NULL,'73c90c794288b0d01d318e9afd11e04a05829d3cf8feaf5fa4ba67e82fb1259a');
-INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'886035d74b73249a98bb85efa78f4d5251b8641b203578b745ab40416a040d1c');
-INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"9bfc3bf0ed35dd256f0df04c813dab9dd818238163e6b01842e18815971e7010","messages_hash":"2c2e220375664b0c12fa86da7be19a292aa6fdd5ada46d285df190b50f5d3bb4","transaction_count":0,"txlist_hash":"8a2ea429a26990e70f9c8937d11c58c986f991c55f196416344847435c670849"}',0,'BLOCK_PARSED',NULL,'f2ebb45a9d56294f348215c16837ff28061319d11a5d47299cb32b2c2fabb6e6');
-INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528d4715909844771be41251023a68675df7ba0b3930a66509d27eba0141ce0b');
-INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"da7a63f22053d1713c805684d14695c31670eaf848bf23eee3331e679744f291","messages_hash":"b203f7b7b307a063a1d329553fb07b2b1dcece4111f3cd0c35b32c3af097d943","transaction_count":0,"txlist_hash":"9f186391b30cc438ae59dabfb18dfca8811193a8fe37cada73d513ad688a80f0"}',0,'BLOCK_PARSED',NULL,'a9683306c7ec63c66438cae0f7db791e4285429b822ec7e73ed14329e843ebf4');
-INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'344de810775cdf6ad8c1c95d8f0bedf6e638c10bf8906a6409733b6952d488ac');
-INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"ddb485115b64342bcb172cc3e77b20effb1294e635459119b59179f3b6a87d66","messages_hash":"c7ce0dc2cbfb4e01ad2d6ee56ba13aa9b1bb7ea41a814d918e62351b5f7e46d6","transaction_count":0,"txlist_hash":"f73c8b5e92181566aeee4ec42a1e50b950fd18680c69c58fe20b5288a915d7e9"}',0,'BLOCK_PARSED',NULL,'b0928f3fbadadb5953b608eb0ce5f8b80b48c89a867bef8949d1ac64c6493b30');
-INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89c45e7f63f0081ce7bd668da13516ff7d1b45bfbf64a7cacb46766e064be20a');
-INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"b58d05ae5f282f7904c7a759ae5624194b5cb091f43f05d738cb4002a999c26d","messages_hash":"93117028a2487b2bfcaf92829728572bd59794f0ecc6ab6108ad7e2dc620023e","transaction_count":0,"txlist_hash":"73ee837bac9153dbc94c23879192b6c2fd71a9a6148502e8c4693bd342c4feec"}',0,'BLOCK_PARSED',NULL,'544d0b7ce0b36b31ca0d9b3b8491fabed9c8e31678b72c5a414f17c06383cbc8');
-INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6be0f4a5ee6f324202c757bdf590df171d016cf103dc6ea947abbf93dde3076e');
-INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"c18e1989fccd8bc7168ebf2acc035c224a9010b428b81c814683b0ce1e244113","messages_hash":"2d222cb4b49a3a83535b2f026e13759f1ef6faf8ff833e79dfd218a8e2972a7e","transaction_count":0,"txlist_hash":"9ef577154ca6e451585e9dcc4c3690d496b8a666856987194c4e41414743945f"}',0,'BLOCK_PARSED',NULL,'88a8bd5f508082006f4aac906e5eb5e01309ee8008a93ba53ecde7d4e0e48d3a');
-INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de6e290948ebc269919e4c197cea4450a294160f43ef65d6bac0751097bbbbcd');
-INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"1a935492fce6a168d9aafd24246bba6f5615f53a47311549059b21adc6a67154","messages_hash":"2e99c026842fbb3d0096b55a09d137f21c59b1d5b1d9303b8c02d3e049e471ca","transaction_count":0,"txlist_hash":"29f3ff5d49a8c6ffbf0ddc41a5e45fd3b777fd7c9ea60a914191fc551ac46ea4"}',0,'BLOCK_PARSED',NULL,'af1b729ac94e59571aba05d4c2362bc6884158c3de17572d2a4933eb18faebb3');
-INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b91c675cd512946abfe71871fb8594a1876947fff0c642255ff1d7b888fa4dd');
-INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"536611cb3cb3005f8c4ffc5b8ed8271734448b5d6f49bd47eb0456bc4ee207e4","messages_hash":"f45c8d78c1854e9ff54aa0ea675ae1e5267a5b9ee5e41284fdf2bcc8fa49553f","transaction_count":0,"txlist_hash":"6f22c984234616fa84a474dc80c5d5e25ccdbec1a84b0cabb279505e93aa4d6c"}',0,'BLOCK_PARSED',NULL,'046027ddb80104e0c8e8eb813b74b836847a895f18f6f0aad8b99090bb12e566');
-INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1cf42905b3915c16d5d7d2809e8fad3704c269ae49801d06b443f3876206b2a3');
-INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"ebbeea29c073c61dad3e091302cd945a9926741db0dc6a918792c4c01b8cc30c","messages_hash":"f7e2e1530436138aa604ff4ab4fdf5199c0c14b1307aad7f53992963325b99b8","transaction_count":0,"txlist_hash":"a1d1a029c0bcbe481f8ba760714e266ff9e759844517ceef96bbaefb05652dcd"}',0,'BLOCK_PARSED',NULL,'f2005303ce07c7b5a035e6bf4183aead3a0b57dc3cc7c511b447de1e41931597');
-INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2842e8ddf5c9bf19ee5f6e9c67759d63728a54308c0cb7f742241aba2129891b');
-INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"d9baff8bec82f3c29f1fa69c9ddd456f1867f33a55d1648605ea7109270d8e07","messages_hash":"79f70931f48bb72ed75656a64ab2de397aa09047ac7609b22611c21b40dd754d","transaction_count":0,"txlist_hash":"26f6ea6c1e350b91f4757619dd52bb7a2b2bad7277497f0d4e1d61b363eb7a99"}',0,'BLOCK_PARSED',NULL,'feb38f3b727063ef0c0e95adc1d40ef91b729fd9a1fb9a16315f0628b3327ea7');
-INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3be410cfc72b4802c36e60e5b683d5e821f56c04fe4821d279fa7dd5be91a1ba');
-INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"09ad4a6bb3f671e6ac6d595bcbfb82371cc41f35c309142678eb5b7df97a5de5","messages_hash":"24e0e1b61be60f0a0078d5d1ac7e31c287354323e9331e2bf40021cc703358f6","transaction_count":0,"txlist_hash":"5e32dc4d14838fdf0460146fd87eeb59ece3416bb7104362d24fd6d2bf0fe963"}',0,'BLOCK_PARSED',NULL,'df9015a846a6eff39527fc4932a865b0477392b24e96cbad184dd54a12049b6e');
-INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'721b79abc1a3f883e61ec7131432812cacd28333c980ed1b7c0a1bcaa1cd889b');
-INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"208200708851a32b0ffaecade58f78f8ba7d5820457c582d5ca127e16fec0952","messages_hash":"2597361763116e4e99d7f8d7988dc1c3a1f1316e51703c09a1d02852aa1caa26","transaction_count":0,"txlist_hash":"c0a8253cff82f71d9a90c7b982e5d5093d5c2bbc2ee2859d9d7d09afbef56192"}',0,'BLOCK_PARSED',NULL,'f1221a0dee8528eff8390bd561ae9efdb85c54da45ec1b679105facfb709689c');
-INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeb2591bca3d0bb07f6f32ab356efc140fbd054b06e560d86af6f58eb9f3a148');
-INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"9d1a7335d989bb73b0363bc88da6dd82c0fbaf064b1d70708b0aa2f6a8a9958b","messages_hash":"17d15d7933015f793185bd1eae6e311471e2cdf3c15df12eef904447206625a2","transaction_count":0,"txlist_hash":"c07861a54cc9537b7a2486e5a7e6366cd04413fb1307712ec6af55588dd22cfc"}',0,'BLOCK_PARSED',NULL,'bfee905fd12cf32ebb1075460408bc21aa6c7fa53e61e39cef62d37771abe7f1');
-INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2437d385d7fbcca5bde8f233e7544fd82153d79e75b83ae17035ae9056c85b6b');
-INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"2fd9039e49fcbb070315defae275bed858cfbb539bc4db8f2ec5f5ff6d69ea25","messages_hash":"e9d18500e588b2ee026e997cf3bf94d83180495f1ed9a943591b63d99c379e1f","transaction_count":0,"txlist_hash":"0ae948495f47c1ad343052f786467c6236cd6ca23dce0c628503a44ada8f8329"}',0,'BLOCK_PARSED',NULL,'73d882842246a5604709b0027b877b9b5207644d3d3235372eaf00a842edafff');
-INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'807b3d97d19236d5d367e2a0bf89042896798b2591124ba0f7e9d6c73e07a1d1');
-INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"2e97864865a020b04ed60b22c347d9dbebce5d00abce86c2b3a5054a3184699b","messages_hash":"db5355867330ece23a480053220efc0a9c0e2adc29c43066b897db1f8be5ce5d","transaction_count":0,"txlist_hash":"986536c5e9cec38d9b78bef44e21e73f93a654b9c421c7822dcba475b14f2127"}',0,'BLOCK_PARSED',NULL,'ab5049c456e61ac9a684abd3435e72a9564979529cd55220087b06550a3c346e');
-INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09645b88e37226b59a73c8151fc4c6a0c953de5bfb417ee2671199f3c12ce24d');
-INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"f6a8e9f4cde78fbf6c9a5ea176312116f3813f2c0bcaee6c92f3beb13a8c3899","messages_hash":"d42146acaf047c28ad0bff965c05dcefaf06d898828e4a538d9fd1a7422e3e89","transaction_count":0,"txlist_hash":"4ffb95c683e1839d31018cc7ec92e978014b8cd32f308c2819ff2e79ff60fa2d"}',0,'BLOCK_PARSED',NULL,'f78585dc209ef868a7f726a5e94c7e19672ea546e1ba36c01f6d1fdbf1875a7d');
-INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0203e49f3924cf89a039d5012d34f0c3d654a4653b5b4674def978b58cfc927d');
-INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"1d84e4657febaa291b4873d808d9ab433370227976196fd6436a65839c3575d1","messages_hash":"cea5b93f173a27746ed90eb780446303b38fa611548f5641f24381973435570b","transaction_count":0,"txlist_hash":"0ed99730b61327cff9ed15d8585f70d7629b2b10150a717093dac4fafcc4e737"}',0,'BLOCK_PARSED',NULL,'415009e25a071a1c88021c088d55f1c11b4946cde599782bc984db03799d0224');
-INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f43e71762076dcacdf004fe71ee8d41fbd5c449bb108de4fdf5195084623001');
-INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"083f6b773191caaf1844f47c53077e8724e100d0b46461ddaa642b88d5265c9a","messages_hash":"73b50c51dd56dc45dfd626e0051250cdbebd9ce256952530fd0b6710a3cba150","transaction_count":0,"txlist_hash":"69aa5d1c74c026da7b7cebe352bd6d907a31174cfd6f346e09382b0cf3fb8239"}',0,'BLOCK_PARSED',NULL,'5ca98d67f65775361298588747f9b7b22bad89908c69957744631e01ba92d85d');
-INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90b27fb6b66dd56037b9ffe24af67526b3e7682fb7bcb66ef71349ab984731ae');
-INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"b1302087b804fc5753df5a4d8aaf8626e80ff99b429f52fed97767b051c24e8c","messages_hash":"7a31dd7f45427e5ed38234de010caee7ef9713c09191aedc7ce9279a4dfd9059","transaction_count":0,"txlist_hash":"e35d2a19e5b60e2534a36d8c1d0c14c6211d56c29b4aa4953a14bf0b83bcc405"}',0,'BLOCK_PARSED',NULL,'8021218069f86606deed4cb370f4755566df6db8c7e929b5a62afaea30d0abbc');
-INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92b78f7e3e647d253d34a5042c6ee1cfbe122eb29ae859ba7e511848da276d64');
-INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"956c9ca0b51eaba7343703a165eb96d5947fc764457ef3dde5ca90c18d3b2f3d","messages_hash":"7c37e4f5dcbb655f768081f89e89f74a8dfa368459e2c65c34e41f4904709f0b","transaction_count":0,"txlist_hash":"165a88d3d459ce6f4f37cc2ddb1c365dd01542b102dc68181d41b95ebde044dd"}',0,'BLOCK_PARSED',NULL,'09a8f17d249e16171db558976d97ea6af518a7c7194c3ee909fd15c2090e8aed');
-INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'601ec395faa9e955326fa0219d7ce6d5a7c25ec7dec4f61548f3dd7dbe90aea6');
-INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e86cae3e73aa13e8498a98de335ed0cbdb7899b24e91839bbf0f50aa22355ecb","messages_hash":"cb8ea0fe610cd5906ffe9de26da5d5b2635ddfc88ececfe465e2f9711bcfda04","transaction_count":0,"txlist_hash":"37394f57952a82ab5fb6ceb7323152d83f3c911a533e289c55b531fc83269268"}',0,'BLOCK_PARSED',NULL,'77546e95b5395b26816a0e3f0be699ef5b87b6415671e965da917ba98b9b744f');
-INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0f8b9671d9229faf6f17dd16c99f26d2a9ad79f0ab9e4bee87a5927778b0da0');
-INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"54bd5e4fc1bc17df27f9e6f22b5e1facd82229a877e09ec0136f878f2da81344","messages_hash":"34d713c9ef3e60d682f178fa7dbe1daf4f12a64fc8143a01e036666da1f4f46a","transaction_count":0,"txlist_hash":"ebd7b1c7c24aa51a0622e244d1b486d4bde8b1019d86e1d8845b6e90847ad09b"}',0,'BLOCK_PARSED',NULL,'0a5f15c24fa64322394dd0bf6b5682ea48af14f1e0820b978f8d40268664a4c4');
-INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4be743bec2a9ee0e3bea41cd45f9cb24f970083c77f850cd9c4d4f1e7daa2c73');
-INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"1403832427d4c482b0d2d925e08a72fe37f5aaa6af73e74f601f7e22fdad7662","messages_hash":"5d1b34371d873a0b08e072ba89187bf5f51e9d1bd9471b3a9ad8c3cc0374adca","transaction_count":0,"txlist_hash":"cb71b795988456a345fd21a3c729005ab802707d54311480012920f07db40bc9"}',0,'BLOCK_PARSED',NULL,'d8b8bb199f3fd00290c9c082f58ebb4af658fc12415031510670680d2fc34df3');
-INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab411f12d2dc374a5e71b13d39ebe8fce49e5e52057f1ba413dbf5b92e97d81c');
-INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"7b08f124a953d0e5511b0698d3314f5ec71ebba77b94c4d236ff9738d5a587e8","messages_hash":"e52e415923ef293e6c5a234251c4298558d2d739934fb7efdf6fc6c56c341ece","transaction_count":0,"txlist_hash":"cf47be21938b5a55ffb8eba6a9f63eb61b89e679b279d75080571832bf08c0e0"}',0,'BLOCK_PARSED',NULL,'c6191c56b8362b5e665d7bca3d22ce6cac7219315bc1d7e607e87e845eac61fe');
-INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6ce3654d5fe5e78f63d5b88a1c7289f6e1eca9fbd9b5c6e5a44c06da0c229e2');
-INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1de158dfd18413618b9800236a2aa265d2fab497b09a839be408da8871b0960a","messages_hash":"739ac804a6f6728dbb657d1c6e918b357b3bca5b468bd919a413f4c826737ac5","transaction_count":0,"txlist_hash":"a9c1a3c24a410649e701fc0b321b2030b6fc35de7a2538a10e75b482cbe96b3f"}',0,'BLOCK_PARSED',NULL,'d984d4ca54af2ef00d00a9ab8a719936f8cdf72d5b93f85b76ddcb6c69deb6f3');
-INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'448dd1bba2e8db5d6e465f5e7a7ec5f879b1d7d7722f735f6dcdf411326e487f');
-INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"aa4be540bad6cd762a02b77856c3d6a737d90245e71f61b63a426573bffb3a4a","messages_hash":"54d67ccdcc62ff368fd5344c672b89a1b1e70cab962fc124ff44562a8669bd40","transaction_count":0,"txlist_hash":"93d0499dcc4fc819927eed8d1eec8b094eb5a4323b70d2cec33d568e31737ce4"}',0,'BLOCK_PARSED',NULL,'c35b7b0d178fc89c6b28184351f41ad8389210edf7d632b14aa066670f5e0e33');
-INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'711d5519eb88c6f7e35b618272b24257ee51442f1ea22383cc76332ff17a18d4');
-INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"49edce8190c2480fe3c6b3df7c7c5f13d34f67c3aef3b2aa12eaea603153aa83","messages_hash":"6aaade6a270f9a62a4dcaac7b6f1c07cd511a51f0094be18b1c8aff23e7951ef","transaction_count":0,"txlist_hash":"a76d957ffb41dbfd83b8c92ad487582586cdf13ca49dc1dfc30e869afc8ca76b"}',0,'BLOCK_PARSED',NULL,'17ab0f9abeb51e5b2e2b9fcb8f15136d6e2629f5d396f1c576d9fdbc7560044e');
-INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ba091e6d06a17a62c9938c68197806d0b71d534b31572f2d17327ab5ba1f854');
-INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a2a8c9946cf45490858deb15c8f277ec545854dfc02dc9d248a684c0c3544d6e","messages_hash":"4c574f2119c32253047618cfd26249d088f1f78b7a3122be6132431db5812d9d","transaction_count":0,"txlist_hash":"0270a3faca0bc1a674fbd3632a1edbe8363d5115db8af56f135493f09a63df30"}',0,'BLOCK_PARSED',NULL,'d7342ce7a9dd3b7a40f72ca692d4b8763624c1b72aba594464685ce4a1d59035');
-INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58afc9322fb079abf5bdcfd9f2db4002d9dcf4b37f02caea5caaa9c35a27b712');
-INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"ca1e5d385fd9cec1184d28095a6f4a2ec2914d40cc016309fe322dbb335cf2c3","messages_hash":"917bc990738cda65cd360163d7a69a3d52acfa1d93ef3d39e0684dd323519842","transaction_count":0,"txlist_hash":"85484b37f06238496ca822d539fe09e0e2906d12cf5b6d77c6219af29ec7410a"}',0,'BLOCK_PARSED',NULL,'5d44544ef324c6aabbb702d279646166b429873eeac0642cc2218c2054a73a7c');
-INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6199b196f8b8c80f132cfe959954b180adf2f1af2d8a3b0ccc1bd95b36fc3674');
-INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"73519f53874cc8cbe9052bf8dd18c590e0a4bd5bdc2a286c4930e8cfd006a993","messages_hash":"a59263137511047b1accc2820a60c67aaee255e806d3850abeafe6a7de0ebb57","transaction_count":0,"txlist_hash":"9c360f75cdc0788ebf8a530fa967e8eaefc3876b19739dfef2f7307e1af414f2"}',0,'BLOCK_PARSED',NULL,'d25934544937ba0002073efd74ce82e42aa540c852c07276b03ae43728a1f2a2');
-INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'846a0356f1929aba7f93f8abda8c18fc17db884f328b5b44ed1a39398b00f518');
-INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"5de09a95e36480de84f9d3c8db3e18b7bf5145f8b6ee6bde57b5c3de11274cbd","messages_hash":"9eef7e51b0077440af3cdd4cd771c9639cc28f7c45baa6a9792e5310382a2119","transaction_count":0,"txlist_hash":"b4a32df829f1f913a9077d0ecd83362230bf893ffd654703538c5fc1c30a181e"}',0,'BLOCK_PARSED',NULL,'f71a3819f6574706c1124d733fc2f98e57dc16cf0acbd4d6bb4f8c2fa048ab65');
-INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d8589979aa557798c7bc58f3f1deb3a0dccba99bebe51b59459ecef62496694');
-INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"be6a452931358d500eda0fd2aa3a91b86483fa847a7bf350f23d33d85712592e","messages_hash":"3e98d5f18828f0025e9ae510f23a142b57d1801ea8d4f33426caba2d861be081","transaction_count":0,"txlist_hash":"fc4f551737950e1293a8718899c3b74c2ce76d8d1f58d6e22d10976ffd15eb24"}',0,'BLOCK_PARSED',NULL,'24a216b071bfe5092fa197456ef161db7587ac9703ed85dada5dd46eb44d1f8b');
-INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb22f2115f950238de60c958666d1020c5b6e6b0b31f3b457c0b59a8d6ebb194');
-INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"5940a47dfa1a1c8bc1e51f1e64100cd0604c74197c88b39f6f7a9d5b763a0b56","messages_hash":"6f2fcc910d98c607fb5b6373ae58afc4d60928eb6de15f43489fbd4221529157","transaction_count":0,"txlist_hash":"53ce1fdeb3b9e39930ad127bc86bc71e7b497f24cc34af2a022200db36ebfa36"}',0,'BLOCK_PARSED',NULL,'3d3802b172a9df64860e301d760dd4379980e41dd7c3556d094a6736712b8931');
-INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d3cf65167de732edeaa942361dcfc18c8bf9a4b1365538bbe00b5dfb857bf4e');
-INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"6aebe68545207e7cc81d68c3aca801f0b39e276ac86e8e0130d5029eefb60e2e","messages_hash":"b24b67a141d2b58200f8e59427c601292b3cf1ffe3b1459bd06984b224be6286","transaction_count":0,"txlist_hash":"0d482039b615aa55b721fef8ddaffcc2942838dbda8784940e9fdd8dba8b1465"}',0,'BLOCK_PARSED',NULL,'3c1088244710212c08c655ef414ec0d800c419c5abdf68f7c50417b774be17af');
-INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e443650a7bf8eb8f5b0699b10795995dd774010306701566fd06639e2568936');
-INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"d005aff752907b93e2dfe442896c8976203f0139fb67cda3ea1936aea495e008","messages_hash":"616dba0e803fd874755b060b0585ffa3bfe5777161671e5438501c82a61dd167","transaction_count":0,"txlist_hash":"8be094b2e99ec5c85a594d4a4059b7427ffbee3671190b84161fbf2fadb6f313"}',0,'BLOCK_PARSED',NULL,'137e551d040c5567b09bdbcb51ae65d9187c3ab4e2e96f8bc641071cf0c44f6b');
-INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b67eaf05a25fad87b022d85c4a27cc28755c7c89ac514ef802d3223e3b2454f8');
-INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"781f0ebe67964c25640f0bf5624e08cda546dbbb6648bd6e8d9f280c7f075f7c","messages_hash":"d49d67e76802bf51725be6edba18b0699a224052de810192c76e1780d6fdd23f","transaction_count":0,"txlist_hash":"9c5e049c1738beda53ffdffe18492b0af038a756278f2bdeaddaa1a726681ce5"}',0,'BLOCK_PARSED',NULL,'ed10aebee5be97527dbd76e27b68f6868e1b1e0715bf3dee0e9ae37058605c16');
-INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d9a268ecbbec63a21d311b44457bc60e6064d7fa9df5783d55eaff9e534629b');
-INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"83b5e1ca76fda895b144e8c03cda5fc3d18f6324b5413fd74923e51a94ccc53a","messages_hash":"d10c8c167ab11695802fabdfb86811f5e97dfd159eb48726599d1f6db6e8d79d","transaction_count":0,"txlist_hash":"a7199dd9b360cc694f85a81ccf72fd614e6c0400d753132cb517ca9da55df86a"}',0,'BLOCK_PARSED',NULL,'9d03e0bd55895198796606043ed8608fb042eedaff18e50f215d42cf45f60eb2');
-INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5d16df739bc345fc2469deb942bbd0f879092ea6d07334cd715c6001e6330d6');
-INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"4293be396327c0aa3c56c77a9152068cc32612692c76ba94e8961c59a9ad780f","messages_hash":"8ffe9a16041d01db32f197ac722248cc5a965f8b898b9993fd22a85eea5db562","transaction_count":0,"txlist_hash":"833f9d3ae03e5819eec47318d948999dfbe35fcbe66766f985b6ca71eccae54a"}',0,'BLOCK_PARSED',NULL,'448310394b05854561aac704738aa94c78ae370852a623a79eeace2a80a67ae8');
-INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74735dc02eea5d0fdec5a7f4c69f12e98588ef6b5b001b9279bca60ea2e6867e');
-INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"d08b93b609f1766534cb0c30502350b9e4ccc4a885ebff7633e9e5c5b52d8e90","messages_hash":"292b6736907d722669ccff7de41f5768bf856990f27bed1bc6bbae4d86a698b0","transaction_count":0,"txlist_hash":"7db8bbcaa76b087fbcdbd8f5b428b3587c494f0cd7d458a2d519abb0ef26f424"}',0,'BLOCK_PARSED',NULL,'90ba29ce561e4d8301c1ced54b45405da6fabc9fddc0b61bd4ed215300400236');
-INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d4366d9d9b4eafd8676d5c558875cfe4c982740fb479f20516a3523cd5952d9');
-INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"06c72d219df429f2873af74b6250f3d12996cce14496d151bf8bd4cf819532e4","messages_hash":"454f362796ec85e40ff999ad703786cb1566dc265cbad79679a21863df744616","transaction_count":0,"txlist_hash":"8f6a902dd8d5d573658f07e8ac598ccc46ed49bff95b2a9ed89a051c852215a5"}',0,'BLOCK_PARSED',NULL,'add3a8fb2bbf4bc6efbbc327993b7b014d5d9d99441162fab1af4727669ac883');
-INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5daa45aea7596b0a585b6b6bb6087d29e142ac59d0edec7d34adfcf02ef11ed');
-INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"0ff019cc4b9b8a394aad1b9f8f579fd5c4cc48a846e4fe71ab2f45226cec5a1e","messages_hash":"f1fd80fbd94b33058c5f6c79aba84481468967589830db3d32883d8543d32367","transaction_count":0,"txlist_hash":"e1ab0a4cbd4e60c5b1da333c5ef542bbc1d8bbd7709fdb35374c072a1f54d38c"}',0,'BLOCK_PARSED',NULL,'e623de8d7999537a2a77cb974d6d74f71dd588e6a14433611db052e5960aeed1');
-INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f19840fb363eef62ef4df4bcc02652e936474de51910d61d4cc9588bd8d0c50');
-INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"6ea40a02464725d0ba45b9969bdbb7529ae5e3ca794ae00abf4783bfc9667104","messages_hash":"ced300cd87e34fe62b096d945571be63ab5bba0fc53d62541a52f6c1274f6e3e","transaction_count":0,"txlist_hash":"be6f6965b6ba8aae157eb48f28bce3fa91c3bbc22b88fc3ee8d4f126c1538032"}',0,'BLOCK_PARSED',NULL,'bc48f0f98f00024f3a8b1667694f6a88434d56b8269ace7b17905fd4c1650b61');
-INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9de08dabe2315a9155fbe5020e7daf5dbe32081fe624b574fba89b63177798f');
-INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"076abf036bd51c47525fe4e638dbad403a8a1667a5b7c2f81ffc2a70e79b80a8","messages_hash":"dfd50e735f06f6aae4bcd58b484f39021e38ee290d41240b18b1744d3de653f7","transaction_count":0,"txlist_hash":"eb97110f496f9813e14f127af2cdcdb26d54e9745e274fe227fb0646cc132c29"}',0,'BLOCK_PARSED',NULL,'bbc392c90701403035c096bde49f012072030528bc28d49a0a8a20d7d579ff56');
-INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dc65624e436c6c67436e3759ae00a48574dd1e62485c539a818b739cdb5c753');
-INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"8cc2e62f7b3ae2c89977ee9e31acacff38f944d00a978e9b0e48678487cdbe27","messages_hash":"4b3120593291e81d0a0519478f45b1c17aad478f384964dadbb6631295912aa7","transaction_count":0,"txlist_hash":"93c6c5967f4d297df962f2853f2a2ba3870f5692c8835413c08528cf243985dc"}',0,'BLOCK_PARSED',NULL,'3f9b8acfa24e3fef301de507773ffac8b432e7fff54fc716362b07c40837ce30');
-INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae5932b1fe88234adeccbca90a8fd4450d13f9d81b74cf00e6adf8c63d73e1df');
-INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"ec86fa6786b598b091121fc2001650bc04668d26d88805efff7271312c76a373","messages_hash":"815500c2b55e7b9eadf7b1436407dc29d17fcbd5145aee3cc14b9559fdc38600","transaction_count":0,"txlist_hash":"e6cf70178316b3c594c60d10ac1ee3783f1dafe5054ce4c6fb932bf3c771f703"}',0,'BLOCK_PARSED',NULL,'5248a8b20c1b746cd42a371df9da1421a869e28116cd3816abcbe0bb0275882c');
-INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27c8f7167e0a9ef58500068be298feca9d63806b77354f3a5be09d5008ebca02');
-INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"6b720db96b2d10816e5022ab8c61fafba49cc6bf484909fb500295451e61f768","messages_hash":"33014d2d503328d843a057ed2d544af2dd00c7c7dfe923c4494d5f04a5e5ea2c","transaction_count":0,"txlist_hash":"254cf1d1ac865c611a3d9fbd78001152928a52ad94fd640c526e043ce7c0fdb3"}',0,'BLOCK_PARSED',NULL,'d1fe39106fea03538d7a566d5bc5cdf4c7ab1b026179e163a654a883891df599');
-INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'01ca0c10d1dfb861d8c4f11a738a41eb232638333a5c88392b0ff5bc8ec93bcf');
-INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"d8c6fabb9b9dff0f1f3ba35e75c08be55dc4ded8dcf54e51f0cd857625b87dc8","messages_hash":"7b5d4bd5a47db25e25b6fbfed91c263663202753248a1953369da64a782ac8cb","transaction_count":0,"txlist_hash":"a34f7e98c65b95becae5908e74cfedcb846366a83605f9d8685e98ac629d1278"}',0,'BLOCK_PARSED',NULL,'32be2c20f3e614660f10f5c2a2c9cdc6c4f9b55f419ce47ad67151a93d74bb24');
-INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de3149582588ba2184c0bd478f5a3d851aa962b368ceb8ed33812349614dde3f');
-INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"eba03194b13ca764dbfbb86f86d16841df4486f12c26a214f7f1020468b52d27","messages_hash":"b9ce189b79f426b6e6eb9d9bd6ea4272dee9713c93e9d842183ccb6ae66f9211","transaction_count":0,"txlist_hash":"e5a15333b0539a58bcf306d993b0be078d8dfd3cf3f5929a690da5ac534eff5e"}',0,'BLOCK_PARSED',NULL,'4090a3074950711135791275353718887633469649b41e21d56fac08d22bb100');
-INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'761801abbd0bce8f31fbfcc65df45f02604962308d1b921037656265b53c07c2');
-INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"d7fa8085722edc91ea5cb907e439649533e32ad5429b52bc10463629719af5ab","messages_hash":"20abfbccb4ae6786f1ef5249f27b96ce3a561e38705295ae96433606a9ee2f59","transaction_count":0,"txlist_hash":"bfedffe97e2bf812728130721dec204767d92ab05bfcf2c4596b5386fc6ea380"}',0,'BLOCK_PARSED',NULL,'369cf42413976da9b4dff99606b37f312c8629e427b04aeadd62d89a019d1b06');
-INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a756c6ceba2fbde8302b646e808b666bf31dc92b397e9544449e681bdc547a9d');
-INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e84e0b26a5a67af1bca0cdadadea17b52b79f160d8acc0281289de1c70bef248","messages_hash":"5f674cafe43098f7d91995019a4796221cb521683242efb9350aebd6f0962761","transaction_count":0,"txlist_hash":"2b4c3ff824d597cc1376a524f89bac6deef025a71395e848b51e9c06002d7f12"}',0,'BLOCK_PARSED',NULL,'726c057e8b155f274ca053c1756653c416ec072239739867f99435c26ccdc3ea');
-INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08f22f245ac6a9604e39ff1f50db4cf6848f7631c42b9a77b5c4aaf51f3d2920');
-INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ac3522ba0e8278bac956b5f9d7af271424f8e4eff23d57d2a5ff88416dd02ff4","messages_hash":"aa6c5e822ec3d28fab4b599a922cb46afe34d4d8b075d59266bd814704bf3b30","transaction_count":0,"txlist_hash":"2b3b181734d815e3cd024f6fd91b11de8cd457bdc5f833520af281a6c42ab391"}',0,'BLOCK_PARSED',NULL,'86eb057d6cd1797c5ff47d3e4906c839444510f18d76f060a1cbe699f5273d95');
-INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7d579eb92eed822018462fe85afdcefbcc15d4cc00537d95a8748b12584f65a');
-INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"86255a3e32e6c7a96d0f0a6e7815d61d9a970272f1df38bb0c29ee9f2051f2e4","messages_hash":"1aecea3bd5175ddda4a31d3ffc6dbc1873210b9191b76b4e12e77b96d7e4e53c","transaction_count":0,"txlist_hash":"9092b97fab9af004edd169f26446c6712e5e1ed1d5f94fc5ac0b49565fa65b4b"}',0,'BLOCK_PARSED',NULL,'7e19cdfd922b901a526ec16ae45a8b6da76f6c940c56027c19d98c60f6dba3e6');
-INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cabbcd1027825c71dc056641107204ae4dab3455f0a602eb05340bc73c9b972');
-INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"9694fd19263381693133a47584432de876ef1e0a32060d52c8db96811ff7d09e","messages_hash":"46153be228fa8f944bbdf64b72e4ab8089c93152fa4e70e99866e57496899e11","transaction_count":0,"txlist_hash":"06ae398816ea8ca96fa424903182c7df9ce93c5d1bdbc2ead089ee71acb90531"}',0,'BLOCK_PARSED',NULL,'677e3a5d33ae46f7c6dde7d3ecd71791767b15bb0dcbcb1a6937edf262e29ded');
-INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'728cff988191c845e8f7d69a221b57933bad1e2f13aafaea4ca6927518eb4ebe');
-INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"3cb1b469cc6627cbed3f0db1a00370d5c95edf9940f8a4c9406fc78076640d90","messages_hash":"1cb847cbd07a241995f1c2afa6efb8c9557104fae1b36048f241e7b1ff62b63b","transaction_count":0,"txlist_hash":"2c688b2021aa321432ae1bd5a60a9f65cdb6d3720512ca2c304bd2773e7647d9"}',0,'BLOCK_PARSED',NULL,'1d5fbd1fa30d7d337a5bd32ef664f8ddb93fc4c1dd96714ecdf4444d47ec1386');
-INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1b7518ec7772ffb9e77bbd5aa36beb7c06b54f1f59b65f70e1e76d517633da5');
-INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"cac7cc49c1d632aef2e9bcb3456f60df2ff11110c4e9980989ce0f2d8a5835e1","messages_hash":"e48ef422b958d8058d5cd6aa702072825fd190a03b58f569671ee58d6ca2306f","transaction_count":0,"txlist_hash":"2a7ce0455e84f973c078752f1c0ea93ffdbe993f239baeb7ed947e749c119dfb"}',0,'BLOCK_PARSED',NULL,'f55aaa9139db1e3014d997f76ba7ce97191ff10f0f5af468acebd059068d1a4a');
-INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dac81bb9df80519469e4057759b2bc893627377b6cbba20d58942c31a99499dd');
-INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"1614a317b1144c7f08fb2785bf468bb299b9f19450331b7fdfebd510fa07e574","messages_hash":"ac58d3aa1c81f62a3b39215d28d911e1d7b2c2b16d5fb942dc81c215231d9703","transaction_count":0,"txlist_hash":"270190f8eea6e059acfe66f7369986d3748f707f3ad0eaa2e396a190cc047a6f"}',0,'BLOCK_PARSED',NULL,'01fa061b60c8382c791f7527f5ed60de1763d3a4c16c749d8c18a3daa8480385');
-INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d25fc9e8d6501e87fcee1029f53a670bc4026bcdd1c84c16bca93399cfc763b');
-INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"631d42f4b3fb091a4c67f737bc2da60b8bf9820d27c758f5b9453b40813c5bc5","messages_hash":"af5aec74565edcf44587e0eb2782fc4fc4cf1506001b8a0e45401bc8186ed36b","transaction_count":0,"txlist_hash":"35ca62f9b66717328f41e23c80e72395f4ece758ce3ca9aabe1d1edd87d06016"}',0,'BLOCK_PARSED',NULL,'b32b83e3bcdf2fb38db32ed1f8d9df001189cab5b2972c8cddb8ab8059028d46');
-INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6efa7dd5f495110d5334815be2498c8a691f91526714b09569aef9ae345a9391');
-INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"2b3f460da72fc0a9b3a720abca80bff0c44654287de69567c43c62a5557144bf","messages_hash":"3184f5a18eb60486361d3987a39fe534d6d0a5e6fb450dcc8835c6c37e11ed19","transaction_count":0,"txlist_hash":"37d35cf95c6f102413739a672d5dc1c3b0760068de256676b336c631bdc94447"}',0,'BLOCK_PARSED',NULL,'527a9346c392be26e9fa0adc27491c6bba605add9cb1967f7014539770b59338');
-INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'419869bc7f1381b7350572e9db0136f0db5bc46d5c2d2eae2e7551f5c34ed5ad');
-INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"db62bf94ddb276cf55ddfe73f8023e760788647910807adff6e0672ce1d5e23d","messages_hash":"a73f6efcbccef38fded18f60759919ae1bcdcbb425eaff8b4225d1e6d411c59c","transaction_count":0,"txlist_hash":"2eec38760b106cf52b3bf0fa51198348cb611ae9bb75edd8e4a343e7fef1e042"}',0,'BLOCK_PARSED',NULL,'f3b64ac8b187e4e50ca2dcab4f9c9d4b1b032fde24f18c39044c3593f671fa49');
-INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df872ffc4ad43ba71cda736478d5ce77bfb1fd77554f6ea46c83d9fb9bba19c1');
-INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"1c427808f1eb1972df57b51eea9f3405d3d63a1d58c5a3faba616d7160e3a264","messages_hash":"c95f2aa93c30ec8c210a78b3439c66b1586e3eab75991b87296393289c1dbd07","transaction_count":0,"txlist_hash":"be57a1f4088437c89e3bdd7c9456b8ac9dc6011d15ada8d5432ab662f80e9a52"}',0,'BLOCK_PARSED',NULL,'c0be7314893d66777c4cff31618f45b14d985551fa410882bd87dbc4aadfd5af');
-INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ad57f0dfdb34bbc5cd40eef0acab56b99e8d45ae377eb928032b432092c60e8');
-INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"cd28b5ac0f80f8815467663c1e90b15ffe46ce067a1b2ce004b0d371cb0ceb16","messages_hash":"f36348ab193e851709e6f1e2977ff3b954bcfc208e81a1a2faff95014cbfc64c","transaction_count":0,"txlist_hash":"cf5fed759ba01d430d2e97ed6d52503a67c35688f02ad6742e87f1da1b468ae0"}',0,'BLOCK_PARSED',NULL,'60f3fc1535dbdb4649723d07513f786f30a759ef4e1b045ef3f99dee55d6b82e');
-INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36a3ec289beae5bfca41d49f183a71823defc18ccd9f833342befe15727411d6');
-INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"69adfbe756c116e395fb3a5170b57210ac2721b07144b3d7a35c4327f28e28c9","messages_hash":"ca4a3f93e7ffdbdfce2fdc86ab481462f5d9ea6c30968c939d784a837736b3ef","transaction_count":0,"txlist_hash":"528e0ea934cb95d328ad13fb3a3a47a1d89824ee44abbb2cc271d707bb6d62d1"}',0,'BLOCK_PARSED',NULL,'f07efad51659ce4839ad27e31f172427f0dc60bc0a508f9546ec1c9a6b6b179e');
-INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b4f0c8993dcff831e6c5dd071376fb93c031feed61128c678192e3f691ace6b');
-INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"d50cb66a25a410db360cdf749b5d10932410b5e37c3e5d3d834a65b5671dcca6","messages_hash":"a953aa10f4e569ce2037e817593575ae40b4423b9f857d5b38e09afbf07e1a12","transaction_count":0,"txlist_hash":"f0e0e40238d13f69c9c40cad5b8be218cb09af9bc061e728b56d74a42182788b"}',0,'BLOCK_PARSED',NULL,'5fd09c248cbefac2d44fa8561d91713ef5ac50c4741b480564dae272b54f4440');
-INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'156d8cfc222144e497fcbeafde8f874e67f77b6d069ce2ab37d76dc3cbe3face');
-INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"384f8d2eda5f1b7b8273ef149ac37fcaa9ae51865fd57bd348339579b8a078eb","messages_hash":"23ce68e6c5fde9490e384c6204ce16bcf645cb1fc006622de99beeb1b8ea40e3","transaction_count":0,"txlist_hash":"19ac618404aade5a0914a9a9c159ea229384be303a320b08b9915474beccf1df"}',0,'BLOCK_PARSED',NULL,'b970c693191d70522200a22dc9b40c6ba6b123b5219b299b52c32d7dafeb122d');
-INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12a699579d04c724ab6d701103ef8455529b6e77aa16b143906a5d89a70296c7');
-INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"5eff25450225c71f85f34466d6e359001eed8f05ea5042e7d65c30ccfeb6098f","messages_hash":"d85c0fed7144a53f31159f376756a35a8ce777d7dd174ed300eead63079bfdf0","transaction_count":0,"txlist_hash":"7d02630f0fbe3e5c3b16766f1d04dd1a83c305f74f0546276d970b36e870ba8e"}',0,'BLOCK_PARSED',NULL,'fbc70242d576392154e76c510d02055f2f05f350d6819290c376b3ad64821693');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1,"utxos_info":"5a1dd4e714aefe0a715c2b0ea6428c2e10cf3d3e3dc7e740cd0877c1e4edec24:0"}',0,'NEW_TRANSACTION',NULL,'ec843c72f0a1f609ce60d8876560100a721c7fda7a2cadc1732ee48aecd3f7ca');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310000,"calling_function":"burn","event":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','c342f6acc927cd0c65aefe04733179780a67aedf5fe69c0101c043e95f1ad275');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb","tx_index":1}',0,'BURN','5fde1c728d8d00aaa1b5f8dae963ceb4fd30c415eb0b8a982ba2d8d676fec0bb','2940e5d188dd6f67d631441917b52613d5195b263efe3f3c04b432a356f148c9');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"a16ae7423db132c887ae41cc33b7fa48a0cc6571d5a49e0963be25ec8a9769b4","messages_hash":"2f1739da6af89a64a270eb18f33e6b1d96587b44c2621ac4e660892efc5c182d","transaction_count":1,"txlist_hash":"b8fb4fb649dd315851564165b076d636e5a85e043d59c11877bdccced38f1b3e"}',0,'BLOCK_PARSED',NULL,'c7a331e2c9dcea0d6260cbf8af6b9d8657071d69c3e8ccfc2663fd1ee26a215f');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d088ffc8957c7d1ce3be94d8f1dcb3f3d2c6be093cf4aca8e95e10d8a4ea9516');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2,"utxos_info":"ba510a377d1e3a7b8ef283dbff7b885f86b7ae606773a85915618aacd3ff19ca:0"}',0,'NEW_TRANSACTION',NULL,'f1af9838aea6875a0b0f5f8f3b69125f810cb735b7a1c0e3a6ccad686ced24f7');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','9d16678660133a3c04915eb274142800e14615cffc50d63003f31c3d0df59953');
+INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310001,"calling_function":"send","event":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','c7caa2308f6c92bef36f362fbba7570dbcbc92649ab2f2cd358393f388a14ede');
+INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'SEND','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','ad31ac029ee18182ea87646ee6a8bc88fe66932ce72701fddc0ef0972daaabd1');
+INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3","tx_index":2}',0,'TRANSACTION_PARSED','eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3','02ae309c92680b8d76cadeb5eb30269b9933bfa6f56984968a5ff3637e79dc50');
+INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"0cda5c4a26f0b23d5b948142dcd226b2718c57c9c6a481250128a7a1c8ad30dc","messages_hash":"e9deaabf7fd801d95ffee56908c3914de322df83a1144013646e6187bb27cbb3","transaction_count":1,"txlist_hash":"1c009ff73127980e51ba6a7035bec5c2a9650b5a184da1d55c3d807fa658f8e7"}',0,'BLOCK_PARSED',NULL,'2dd7991ac219ddce5cff9fe307b2790e22d9cad14ba7f2b7984429b3463f37bc');
+INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3c27ff8d8aebcdff37565e7f33f585d0caac4c39f6f9452a380816422ec038a');
+INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3,"utxos_info":"56bffd88516cfd0d35b3c4fe49592a213cc276b1af94c73d4254f689dc408946:0"}',0,'NEW_TRANSACTION',NULL,'efdaaeb6b05ca34b9b26991f059cfb59f72be3592e22f4ff872ceedb92bab1ff');
+INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'OPEN_ORDER','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','8ca0268e3f3b3a8357f32c4ab070fe82955dd2fbcc91ff2eddf9a41bab2b5cd1');
+INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx_index":3}',0,'TRANSACTION_PARSED','025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0','b1e4af96fd68cb223716e9c2bef6c0a76415e80f5f0a6d946d9c929c45dd1cf3');
+INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"657c31576766cf1f8a699a14e6c7493498673f1948bea1be4f639247f4d52d53","messages_hash":"6e9bd4b7b0149368c0454b12e392ce277bede7f11ac07338bc4d199baa4606a4","transaction_count":1,"txlist_hash":"c674bb5077acb71ab19a6a4a8f779015846135e7b93a5006555fe1f4ad10c58e"}',0,'BLOCK_PARSED',NULL,'c36c5dc14582b5661438ba4a87464f0292f2b9bfc45461be5aaf51cc649b95c5');
+INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97cb829ababbd494f40fa4b353474d0a70e32db827e021b7901cf403cd2ab73d');
+INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4,"utxos_info":"db6a3690de6726ffb0fbfdb3e15c890ab7619b967b60b9e8434605070e0264de:0"}',0,'NEW_TRANSACTION',NULL,'650c44aec476a217b3acb001843a2587857d5996aea5c09cba2328daa6790c41');
+INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310003,"event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','57c685d1247cc1515ea3fc87788ef782a87306dd6c963efc427525baf503e279');
+INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'OPEN_ORDER','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','11ceb59f1955c32b5600ced078d10a573acaa62235c5e69afdcbbf55d07bcd76');
+INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','7faa1133a8e6da16ebfa0dd6b50a9f2f85a77d7fe23cc29b87a160c698438730');
+INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','1ceb96306ed52ae8df8fc232fffe3943f5b8a62746fc2bfd8070bb71839a25b3');
+INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx1_index":4}',0,'ORDER_MATCH','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','fdc9d1c6be22e8c52042fa36a7f0fc2df17c491c36710b56a6a98ac96cf75727');
+INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","tx_index":4}',0,'TRANSACTION_PARSED','c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee','fc27f5972499d271ff44f41f42ae16053bdb1b8834e46cd4c994298a2527a9e0');
+INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e11e7eeb21ff539c27324c94a407dc6f04c739f3ed9841f9f661bf4441e4d847","messages_hash":"35acbe7c58004be5eed9247725e54a9e62d9c12d1819f476b96438fe89ccee24","transaction_count":1,"txlist_hash":"105a5c9915547d3ebfe733d284d6e812cada8e86a904510fc196e2f0af5b50a4"}',0,'BLOCK_PARSED',NULL,'387b23ef13a912cc5ac2f6135fa7527953068f85e714401bcef31b70896a2303');
+INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9da4cf054046ea8c3ca603b2d0e40100f7d8100beb56887c0085f5708e3c4b75');
+INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5,"utxos_info":"85a2ebf947069bab0041ce8cdcbe9f0252300f8f02f46b5a8c688d2ca40f74a8:0"}',0,'NEW_TRANSACTION',NULL,'02e15d7c7ec9cd648eac86699322b7b31f66999777c2200548359a74270ed6a2');
+INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','3dee833f9acb5ca5419f2bf64a1d3b379c61956003c910cfbc2c081f88a9ff0b');
+INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","status":"completed"}',0,'ORDER_MATCH_UPDATE','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','44eb2dcbf051ab2501ddfce0465e54cf2ab17e65b4d226a907174615b804af33');
+INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","order_match_id":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0_c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'BTC_PAY','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','67af0330adfa5654eb03754932337e67efd0608b7f52d3d45933d848dbea2d68');
+INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2","tx_index":5}',0,'TRANSACTION_PARSED','b0bf5693ba52a5c6bda34671ba065606bd02277f281e9aa19d25778e26c2f7e2','c1f209564be8d40f575a368bd137de8ab8b9647a94f535a577de1a611766b710');
+INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"2742a3e99eed62c09d9ecdaf501aa69b0d0b21fc092ca061448d5016957f35e0","messages_hash":"4511574655e8ca48d331335647f4867eb537696f16a1e1967aa0d5eed9094011","transaction_count":1,"txlist_hash":"369b47f51b512708e680edc5ba459b91e2a514f5a5c7cb8435670a4b3ed34dbe"}',0,'BLOCK_PARSED',NULL,'6b3e222ccc61b2be62dd49de5d4723c5b93d6aea2fbd5bbf8b96bbcfe57cb5ad');
+INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4561b2edb90eff7006c0b5ca689cc2f04f8ccd6b8ddc5508b198fa05c1eb7ecb');
+INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6,"utxos_info":"adb8634c149c3b6052a0ba9800ce5fd4deb634cc1081ecb64da04a0c136ff9ab:0"}',0,'NEW_TRANSACTION',NULL,'9f212b6004e4b96aaf50aa94a65c248e9913e55ce5d094faa49766258b5e4443');
+INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310005,"event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','9ee11d186f7ba988894d88ee57246c732c3766ce38cc827d698086a581fc40da');
+INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','c01e72bbed0924c202c739b8d321c12a8d1537373c14d25dd77a02d92c7d5646');
+INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'ASSET_ISSUANCE','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','7c60c7116fc2b2be1ea660b77ef5aa481ef4d74522982e9f6e78fbe1fd99f575');
+INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','5ceba8ab01a6cf5dac53b1145d4e7079890e5c993e9eb4d55d04c10a90826a91');
+INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2","tx_index":6}',0,'TRANSACTION_PARSED','93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2','63f36eb3b3d62210b42258185709b744d6e26c42c012930d54bed788c6b37eea');
+INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"49f526a56f21491c797e8e2559f722ded6f6990b1f69c55dc38791d8d30f4048","messages_hash":"568c98891837d627aece7b98720a3c2e84ffac264b920c6a96c1bd3c2f839df4","transaction_count":1,"txlist_hash":"f0c2ddd7c39b14fc55d8518c65aa0811fe7807ebd1eebb4b66df8459f9e5352b"}',0,'BLOCK_PARSED',NULL,'a7395801319a6092679df4ee128cbda2f2177da4af2cd5dee790f7524086bdb6');
+INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c49f4b3dce2aa296e87faebe6b19707853dc0401ea2d0a07ac3cdeb30cb09f15');
+INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7,"utxos_info":"8c154a6d6b271e4a1d2778871fcba2f45cc455b1260f79ea08e031b9ad79c727:0"}',0,'NEW_TRANSACTION',NULL,'53c50a8a484e41956773eb8a5d62020140662398e90f7fb9ef382ea34aef4e42');
+INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310006,"event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','0a5f8d0421d706516388e9dadc57c44b1f99d6553f69160150bf86cdbc3c3326');
+INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','f5ffa8f186a80361cb14ef4cc13829afe538af471404dc03031939b3a5a20800');
+INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","transfer":false,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'ASSET_ISSUANCE','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','ef113184a5e3af4f18f4c434f297ed5d2624e72b39f59f94aadf76e6d87e99d0');
+INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','7265abfd9df8e3126573839203856a1644d0e8f3a10bf6f3c8685937a44494b4');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404","tx_index":7}',0,'TRANSACTION_PARSED','3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404','08966e8be9f86c47b4a754b7e68fe5d9fbe0fb32340bc382f91e4a07597e3130');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"78787c4c9537fc4db5d1dc7d31d4fab6b445d57021aab1a38d4bd6a9404713c5","messages_hash":"616a0d9bd0a91eacf780f74d009873b90c573644794634ebc9e956fdbea9a76c","transaction_count":1,"txlist_hash":"877117b3bd10ddbe6e46f417845085a6bdecd86a4961b99c80e991b4c51e0f5e"}',0,'BLOCK_PARSED',NULL,'4f035d2c60a021168ba81258ea9732f983e55bfdd0a70eb342b273c11f728778');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af6e1cbd088ec598455ef0ac0df917b0e8772b9c8187ee97eace56236452617');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8,"utxos_info":"51d85687c1c89962f2676b6beb0374e432835723638250959cc084f37ff6da88:0"}',0,'NEW_TRANSACTION',NULL,'58baa2a0533b9b177a4b773bd55b23dc4daf12be0c2984948fb7fd3fd31723bb');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','62122ef307fe04643e7aaa92123747d16d38dc4908035071ad65cb3afae32008');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310007,"calling_function":"send","event":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','34ff9e9755372676f4396a939fa87d24a15733de4eb6ecf22f3d2742f4c17f63');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'SEND','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','dbd4c418d534d28910866e3d79d8f181d2c8b09547193760579e56418f255a31');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe","tx_index":8}',0,'TRANSACTION_PARSED','e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe','c807f7f3091488d60d76e477bd69530999a812ce8d076208cbdde8583b1c46d7');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"5cc2599b63007433426c220c59a777b5c37b1165595f2ba239c3ce578c8055ab","messages_hash":"6812e7237e054268ea52058fcefef3f801d36bace225eb6d3fd95c93696c1a2c","transaction_count":1,"txlist_hash":"702a5772ce8529995f7a66a244e8be495e3f7cbedb7b09f47e3d5aa941c7f4c1"}',0,'BLOCK_PARSED',NULL,'4b7024d1391515a644130f4720e3be0789c815fa2de4d88a74cc6dc5d730c298');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd9d6d24e4f6adaffcb4186a1f7dc8fef80912489cf3fb33693932d2416e78f4');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9,"utxos_info":"6663a90d7ca7b4ea4ca5bf8c409457230bc427c7fc6a5d0fecba5ebb7a6758f1:0"}',0,'NEW_TRANSACTION',NULL,'93f48c6a7a447a53ef0c5ae1924a8a6895c9ab66817a01fcce08ad93129e5c19');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','59b3b209121cb1cce63df1e9cc4feec90f95d9af1ebe2b7dcbbe26a6e7db1d5d');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310008,"calling_function":"send","event":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','ecbc87450a6e007cc9f727a014f24dd10ccd86885ccf727da417d333acf13dc9');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'SEND','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','9fc2409dac3e7784b3145429547363c5a48ee52f6020fd1e0501d2985d257904');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9","tx_index":9}',0,'TRANSACTION_PARSED','7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9','3c67e92f649598fe35f09b905fa4eea8a8b80214eaf9e3c0b9538a3cee726996');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"9550db622e679ff3d63d814f9ffa743d57eb12491b213ef6474617a6c738c3fa","messages_hash":"4e94d7dadd588f5cbb2a3bfa338879bb835e63e0be3f29cc63fd7c9df3e6cb02","transaction_count":1,"txlist_hash":"6c536f7ae10567cbd91945e3e958640e6c65408f83e4a1d93e705950ba39de1b"}',0,'BLOCK_PARSED',NULL,'17563a82c00b5e690cfab4d69c680a08e9d545cda75294730148cc5bcc4e08ad');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a881ea3696dd2619be04336eadcdca80868451a0de5b5bcb3b173d67a057904c');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10,"utxos_info":"b0ff0b363dfa94369ca5a5c66e1cdb0b4417d879031471cbb14a371b58d26f99:0"}',0,'NEW_TRANSACTION',NULL,'0bd7c08b474d6b66e15c3d107e09cc37e89ab8e29027f83c82a17f3a411f2ddf');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','eb5604c65827cc866a192b92132cde69d31d99413e41dc76205b9fa661011ded');
+INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','0ed542ffd5c8de2a6eccc4c587e179b3f80448148735ed1301a4b196e0510d3c');
+INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','8dae99c2e5f22d08b30c02b1105fd0dddf4370beb10782dfc386952679010b8b');
+INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'ASSET_DIVIDEND','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','ff5f700d1882e84fc26c663d7c4908ed530a361d52092565aec27360f91ebc7c');
+INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81","tx_index":10}',0,'TRANSACTION_PARSED','cbc73bb03bae7cbaa0e88c9c16cb78fa6f315b9a6383f0f7efb63d0fdd831a81','4ace899803fea5da2f22478bd0a896a27148ce4fb2d6d332981da6b22cf8965b');
+INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"08c005dd5bae7f21ca27803d75318ac4b968c6d4dd2c275ef284c03fea43b189","messages_hash":"276a777ddf31320752e501401ac7cc87a15c6ce1495f1f6d4dabcef1126204d1","transaction_count":1,"txlist_hash":"8f8156aca3441754221fbf9cc21b0e7d877a533e00f63950be3f95d0a9305433"}',0,'BLOCK_PARSED',NULL,'bdb98a19297023402cafc3dcebd7187a8e53249dac8eaacff6ceafe0b58879ae');
+INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0fc97086cf37ee506a31da6bcba1bb7f9fbfcceb8040e92cb860bcbe44cfa14');
+INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11,"utxos_info":"f723e723c8b285dca6cb5d4ab84ad48be13f56e1f664d6b6a14833ca440019cf:0"}',0,'NEW_TRANSACTION',NULL,'5d37f6d58f42f0829a110a47dc3c43a477bd99fff27c00da30af475257a1f165');
+INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','179e1e1cd110d58612e3865d87813dddd3d685ac02685a4aa26f1c29edde65f6');
+INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','ca15a87f896b9ca37bc95d3f1a8ce029b0499d76178f7a37b899ea6a950beed7');
+INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','fb57a312a5b987647b3019b52098260114b1994d17fba96c864a21f4f599a6c4');
+INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'ASSET_DIVIDEND','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','7279f92b4ecee34a5b66eda4e3f321a76e1d56e91c5cbee7c0a4387ab5260238');
+INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97","tx_index":11}',0,'TRANSACTION_PARSED','c59e9803933740537b59928d19d2b65812e6f2b8d1ac811d9262353a19327b97','dee7a98d0c6ffb1d79047f1bed453081dad99680262a9d27bd7040858f162913');
+INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"07f48634d06e6be1d800e068cd213a648517fe167ed89c355d9db966897ed7b0","messages_hash":"89068f2acf4a0563d3d3f344fbe7e4dd63de7750c3a9a39b44205306fc404565","transaction_count":1,"txlist_hash":"c5956a9750e786639ceb4a252a219afef6abb753037888c90ebf17a5c5db079f"}',0,'BLOCK_PARSED',NULL,'a7dea40ff3aef58ca6c1b36fcb6d35eb7c6fd6e074dc77c599d34685f6ed64fc');
+INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a77c857f4dc4b11453a62f445ea8d1c8359b32ae62043d5504518272a66cdcf');
+INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12,"utxos_info":"1d08e7f0e0844e03e7ca4db4990dd81ba00b39cb05ab13aaf69fc990592f0f64:0"}',0,'NEW_TRANSACTION',NULL,'9c6eb01ac2b6d55688e9922c2d8c85fe48986f08a8b009615c73d5f03becd885');
+INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12,"value":100.0}',0,'BROADCAST','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','eadb543ac4675362fee5d82c9ebda0a393641773eae50a1f20e5e768776069cb');
+INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61","tx_index":12}',0,'TRANSACTION_PARSED','0a15cc28e58f28a690051e66e6c50ecb68826077d59b75d05590a1db453d9d61','bfae5e2f68cf996beff4b7be3327deddeb86d5255925982501123605f2492f1c');
+INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"8d0be0b3731bdd0d611e81b48efa6c706a983990f31bc563d57893f705b73aa7","messages_hash":"108d8251dae0667820f5aec7853c9352b69ebbb1ccec0e2ce3b9d845111fe9f0","transaction_count":1,"txlist_hash":"219d47523246e5c4ffa99ae9c29bdcfdf9f419bff3d21da76fdc91cfe99fc28d"}',0,'BLOCK_PARSED',NULL,'e4904afb2682349afc4137b61464cd6472783bc4610b55d019e373969b5c4253');
+INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'057e24e59cc4bfee5d3684f58920a1061b2cced482fc4f1f8a3b4f2f1caf1ce2');
+INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13,"utxos_info":"62a77d25a0ce892f3de8300271ca730514c843ad2e0d86cfbc9a0b092cc46bc8:0"}',0,'NEW_TRANSACTION',NULL,'a5c8a8c01d31d7601f74a6ad8fe30e7aa76eb4ed3510891c401a56b6af385feb');
+INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','ff9ddda0ff62005f5fc90b6a21987b86fac78703b918c9369de61ebecb7d67e0');
+INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','5ee94df8b89e6dd905ff3d88a7fb5bb8f334f46bf2cee6df5f557fde4d43ada1');
+INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx_index":13}',0,'TRANSACTION_PARSED','c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8','656904c4fc2081bc12101cf8f90de731689ebfb77f112e0e1a9ffc17a21eafa4');
+INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"e3de05180536ad40eb9007f19ccb819fee0586cb9e7c414dc560e506ae5c09b7","messages_hash":"b4422a845b0561883b59a4f9b510b5d280fc096482796017698996356d61383f","transaction_count":1,"txlist_hash":"ce6072bd562a52051fc530ec552aa343e4980a1b236f1cb8318c415d3eb2e851"}',0,'BLOCK_PARSED',NULL,'852a1fe3e871ea1ebf78f220fd16d7598cbb19ceb8cad3bb0810f0985c5c0374');
+INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce1d20285090dfcd1d4128931702bce6ba6faf3abdf586067a8dcb2edc5b218a');
+INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14,"utxos_info":"2edaae7a61984f1fb31cdbb4513d8523f5b5ff7feaa86390bc32b3463c55b656:0"}',0,'NEW_TRANSACTION',NULL,'b20e87d3f2bb93f074812b773584b930e6e8b1a372fcad9cd284c590a0056a37');
+INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0"}',0,'ORDER_UPDATE',NULL,'eea9471bc2cadf2f069ae622a0718d0a7ac24541f801323e778694a0af719742');
+INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"025ca2c1784ca3c9389b9f227a5a04445908337e21e2ef9411c890e20aff61c0","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'0f7d5f96e8755973b87251c75ed565cc83bac7d25d4241706f4aaac85a911b9e');
+INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','34646b63f8e5e60cdf5ca4dcb72d4b1b8a7702c267e29cd5782667cd47de5d5a');
+INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','5e3d91fbdadee11ae7dfac01d2d9f6912775f8fb79b8f56019985f80411ddab0');
+INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","wager_remaining":8500000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','b1d2c3b848e438ce1fe0c1937a637cd09152c61a9cdfeec9dbbc4e446c2e566e');
+INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310013,"calling_function":"filled","event":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','827ab869a5ad40eddbcbd5843a6740f7eaedb90173dcd01ea0edf76ae52d3d1c');
+INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","wager_remaining":4250000}',0,'BET_UPDATE','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','31cf42e7a15475653c227b3be2dd8ea0a65238c35e5e96180bda5d6ca3f288fd');
+INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":41500000,"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx1_index":14}',0,'BET_MATCH','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','083a5e3a524ff9e3f5cbb55de915d2c8a6488bc240f53361a64d4bf8d668cfd6');
+INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","tx_index":14}',0,'TRANSACTION_PARSED','23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1','b9b94f57c63054bcb9efb4d4fb2d15e0dd9feda9c93b98a81dbbaf33cdb76dc8');
+INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e521556db091cc726fb38cbebfd10923e37dab652c51dca73a646fe5bd81bb96","messages_hash":"04c93ab3e40fcc757d95d7d988100af4f8a3b8030dfc3bca00266e58e13c4f59","transaction_count":1,"txlist_hash":"1a1e24f2debcd4b5b1e350a71823758d3114335ac831367bc91c9e487b94c65c"}',0,'BLOCK_PARSED',NULL,'4c2e1fe681004ee246f635d41f44c673dcea3568b71001cd7ba58ea48a88efc0');
+INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cda397b9078a9ccd1dd08272151befa339cb0b101c944923942b5ee4afdab98c');
+INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15,"utxos_info":"36094f1d95f27bb5e6cb42a8174cc0fba3f39905d6cd6ac2140273c73d55e04d:0"}',0,'NEW_TRANSACTION',NULL,'d792f63b973ec9c184d24bc5f4630a64185a3bdf25f1987f13ab11c67fc41397');
+INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee"}',0,'ORDER_UPDATE',NULL,'a3c9e78ded6e2fcaf97b472684a318254fc99e8926f685b4ee4c39998397a136');
+INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'2ca31cc0c05a2cc178703bde22c943cb89fc355b21a46589a36546acb2bd4829');
+INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"c6881f7505bd7fe0742c2ce50490e21431705bf2df4368be43f423fa0c515aee","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'ce484a9d3afd2cd74966d35ac587ae26aee67df6e64eca38c41d8e12b9244400');
+INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310014,"event":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','7f2a246fb07bc2226ec2702d906b589cda9cf3403245ce2ecb3c298aefaa3ccc');
+INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','f2e2e85734256a8be32600bc53562bb17a292f2754e1a68386827d86bb50b3d5');
+INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx_index":15}',0,'TRANSACTION_PARSED','a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd','5d9ecf9655e3e74636914a7dfe83def8d69ec49d5904deb834c0cef85853cb53');
+INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"1cd6d92fbbca9266135a35f20a4328d510c8d209ba6161dc8c9e9bfa69032c57","messages_hash":"20ffb72682c5b27ecab3983388e6c375dbe0607f4c8f5e3dd070e00b7b58e37f","transaction_count":1,"txlist_hash":"80ee1bd354b8e1aa1c2f57926fbd36c0d9e2dbd3f77d8f2e43d59b29bd8175a6"}',0,'BLOCK_PARSED',NULL,'0649e60a280ade0c41daca1a8ed4f66772472bf747f35255da7c7e4f80d05197');
+INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c875bead17d47b5ad54370da5b0d4dd50dc5c358ae068a6bfd8208b08dbc8a0');
+INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16,"utxos_info":"e422a810d19bbe9a4215c706193e554053f06d80d74ab60aeaa519d01f2d8abb:0"}',0,'NEW_TRANSACTION',NULL,'26e329bc783db487c57ccd9b80d6602ff99ba2a9921bce3ca99a4a6c803b6757');
+INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','398542d32f50fa25148932ef96baf79a26c67789dce19786801ec95c4363dfb8');
+INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":0.0,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','55c0ded5bf1bad2fd46fd641b24434d2012cde9a2b08c2f34e438e7709b078e7');
+INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','e3f5d520bbaead8e1e9dc89ed45e01887020c9a6527733f4cb49958e7919628f');
+INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','ebf55c3076f6911d6ded4893315b9cf96d4aebf7d41510f2b6b0134bc8af4900');
+INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310015,"calling_function":"filled","event":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','3ed135ddefed25e945cee8d5b419fa81285616387e8b7347df41aedc30209335');
+INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","wager_remaining":0}',0,'BET_UPDATE','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','a470e7444abdf6f8523ceece1f510c68c31e1a9393e9b8e4ff5fe59e6f7f6c47');
+INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":150000000,"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx1_index":16}',0,'BET_MATCH','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','d15ed678f9efcab6f36f1efc7ae4fee65184a1aa1e62f97288c6903f074cf26e');
+INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","tx_index":16}',0,'TRANSACTION_PARSED','6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75','b6bfe7052360a7232e790b5ac6a33b643414beb996f8b4aa981e05474ad38381');
+INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"62759ea6d5070225bd30253a42b6c68fdaf2c4165b1b221b8e7bdddeb26e9737","messages_hash":"f3d086dfac0849706c5dd2047451ef87178f00ea00ad422051d0814b7843b47a","transaction_count":1,"txlist_hash":"30a124b4460d985c715c7bbd85cfbe972a5caf457e45844e0a54daa258ca3376"}',0,'BLOCK_PARSED',NULL,'4e41fd6c4f82169b4fdbe3cd5b0ec0dcb1789b068f5b89c95ec239be37e30788');
+INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8788ffd42680bbb35e8855dd8d1b8357de923922f952bf64f40fe9ab5c259cf0');
+INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17,"utxos_info":"bf409565cd591e16a2102fee4781a64681cbc79982ec5526ee17bf31c7a4403e:0"}',0,'NEW_TRANSACTION',NULL,'e1c4c113df27ea60d0e27ad6e414c218e48d1b58181f47f1a4afb678b085a243');
+INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310016,"event":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','4dc4ec091a3bfa042211ed659c4cf21ec6291a9b228b3fc2a64caba855a97d1e');
+INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','e1c66c08b28ee3f8a4e6b821d1634ce4e131a5518599b11260c02970036cf9c9');
+INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx_index":17}',0,'TRANSACTION_PARSED','91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1','c0f0fbca87b8a02a8576cf3ea415a492d8388d3c189336402e1c4b228a52d04f');
+INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"f9fc0dd4d98ac5e06e4f9673cf5678f9fc264cda23172e24427b833331b73c33","messages_hash":"fed2f51431618faaf65ac437f4e2ab09bad0f39f5c97b3ea62e2fedc91d6708d","transaction_count":1,"txlist_hash":"cdbbf3665287df62a1660198e00049d06f649f37c49cb76e9fb1eab12960e66c"}',0,'BLOCK_PARSED',NULL,'6744824e446e213326b567cb2284c668fc78a83560a089117189141c6654db5c');
+INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b0d653782bac1358b89afd05ddea6d7a7791be01b779964ed96671b8b5838f5');
+INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18,"utxos_info":"b7a480818948d8910e2cf2e6475aae1072be41ede27832fb8f99e3f14169f67d:0"}',0,'NEW_TRANSACTION',NULL,'618f5051c0520a4a8e0d709d479d37aa4c2d932d70a7e81d1f52b57baa024069');
+INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','7e8cc9156e988eb6c8e1b1412f439520125e874a61c826d3958d2d6e45ed195d');
+INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","target_value":1.0,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','42592eebcbf54756bb69ae00076f21798fc16b695e1cefad5ab504892e4c60ce');
+INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','a113d2d57b0d906c95859356456448d4508765b147367ceac8c8a2eb813c8d74');
+INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','dcd6f8bd95537e10fae34b65313fc8b32a9e29f04bbebcf2aa49e2cd36028383');
+INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310017,"calling_function":"filled","event":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','e370e498601afe71c1dafe44f054f7b9bfcc2c1252ae95a9d4be1bcea3e22c40');
+INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","wager_remaining":0}',0,'BET_UPDATE','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','c40c0b169322205aed7de59eb21450fcd7593351c8160d02488dfab12bcbec7d');
+INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","forward_quantity":750000000,"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx1_index":18}',0,'BET_MATCH','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','90a74adc37d752543f95faa8e0fed553234e6fa901cb7ebe1d7665c4fd546314');
+INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","tx_index":18}',0,'TRANSACTION_PARSED','c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a','e0cd0e272876853878958ea29498f44efd44613eaba7e27be930159886126d22');
+INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"4a355b8e80a902030f384f58700d05da9a6efaae3f3ce0b1a056dc1250d9ec63","messages_hash":"6e730d3392bf1313956c89d2323a4fdc27e3100c2842eea65bee8900f427000a","transaction_count":1,"txlist_hash":"355616d4b8b8408ea7061e787ca35918b6d0417895a2a2ff224d207f0f76e02a"}',0,'BLOCK_PARSED',NULL,'53681ea53db800787062052133a4f0eb6d3b1f7759fe9ec2b04003caa3cf856f');
+INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e29c84f114a8c4ffee657d91ce52d550bf314286664a3a8500c18c528961c8a');
+INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19,"utxos_info":"86676313d1f457055a16784cbf7dc0c9066499ed114d72535379ac4f9ca398f6:0"}',0,'NEW_TRANSACTION',NULL,'397ed61f8bf35f01c9409c28fd4e6171129032c86c9d250258af827669e1acf3');
+INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19,"value":99.86166}',0,'BROADCAST','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','3d73e5e98136df609439bb7d15d35902dab460f9fc55fab2bb70b473247ec71b');
+INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','d1b6e5a33a122caa6f45c017d07e21ccd404d08a52e2365a8129aadcacdf404c');
+INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','84b7b41734fcfcf645b7416f5166a6d6cbf1ae6783e027c5a1fadc41bcea531d');
+INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','4986c016c07995db32cf5b869f6af8cd279ad2b9ebc17a433076eab69d33987b');
+INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8_23f77ca0034c19aa841413edfde7f4a3dca8d8ef582ce939dfc2e170c7c811a1","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','721b9fe00fab63df6cd9fbe0a9c4bf641eff0c8ee8e1379f8d7132ea6ad282b4');
+INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4","tx_index":19}',0,'TRANSACTION_PARSED','c473921b7c5d877de55ef38b39935e149003d6fec701bea0c8b66b77255942d4','bfcce39cbf3d6968cc20421705178133bf79e30cc4787bf939de695edf753b82');
+INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"57aee8f9c9b63342ceeea3a3162998e9034a3d624d6d85b19782943ce170cef5","messages_hash":"3f2a2498095f847c8ee4dfff40c31a208f7018a1ccb785289c931be3bb856faa","transaction_count":1,"txlist_hash":"7987b849a43c706d33e421d45e99ca6593c9aa8c69079522888f746a8d4ff748"}',0,'BLOCK_PARSED',NULL,'11796584045c161bcc38a8b41822c775be3f5366a80007b0589f6c12e4ced027');
+INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2b9194156c3e6942f3b3587cdd4c8c236b397db5b9a2e4a49d3793610f1adf3');
+INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20,"utxos_info":"3b7b4a98830381c9af4bda05e9520bc30013663a4fb71081a094e1017c6cc7ff:0"}',0,'NEW_TRANSACTION',NULL,'834a1155bc8d0e6ecb0dc65dc4c6ba59b0bc4fc9db7ae421507ae5dcb03b7f41');
+INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20,"value":100.343}',0,'BROADCAST','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','7671e71bb7b18f67d5d46dcdc0d7b1e80aa518d0f7c03e53ddc9a13c59fd6fc4');
+INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','07451bc98fd992115714897c5dc11449cfc08e636830dc2758d40171e20b6c17');
+INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','0881d9fa3cadb5d5a4ad4105fae5bf2a8c120a925ac3f4b69d52d347782163d8');
+INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','8c21fddd52a0309499b3a0170b3b6b4c56ddde46ced6375be2745fbfd49ff1c2');
+INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','b7ede997e946b05a13dd701073afad9b1a5dd14b0fb081a50c2d80b180686e8c');
+INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"a5a1927a83521144a5aa751f61065b530c9447c5b2c35e35064de32dae9573fd_6aa4c5853aa9971d13c0291c4e91ee5cddd506521942377aca5c3b1a48780c75","status":"settled"}',0,'BET_MATCH_UPDATE','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','f3ab5e147b0dc3c9456504fd1bee3c8b008a1c715e495c504d46f1f0f8bf9ece');
+INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0","tx_index":20}',0,'TRANSACTION_PARSED','c9388ea12ab42ec1502dbb54e2da81beca5adee6056777559200aab28e5e1dc0','0da3f19ed517339fa5400e33140c3ffa79130e30458e3b1611ac1997bead2a6e');
+INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"d11f94528a9e0034365e4388ee455f02102d2024c65e1428cdee28b6e5aa7e1c","messages_hash":"c19f295295d5be4e3fbfb303d263903b04d6db9ecbfdcdcade7f55730ab5ec70","transaction_count":1,"txlist_hash":"14d0604fb6986f281715ae660221c79b7bfddf15cbc7da02c722e86b8e264d85"}',0,'BLOCK_PARSED',NULL,'cf2f965ac2e8e5b335de2ebb52e5a52cf7b3ee2a080a8d4ad6c90506c118eae1');
+INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5e391867ad4f481f23b75c8b0d6dee05a4c73da2b15cd60577097032a4837ea');
+INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21,"utxos_info":"0f06ac488c13977713320e18f2c2ed82d6efce5eefc2988cd4b2e4bd1220dddb:0"}',0,'NEW_TRANSACTION',NULL,'b76c5677182eb201e0509112dd06b652fd22b6247c900779c291744dacea003e');
+INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21,"value":2.0}',0,'BROADCAST','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','dcdb6e038cf82703a66090343452837dda6780b828db3afaf6eb129025df77a0');
+INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','e72a744c26e1f8f2b75b1ef2e8cc0985e765b1d22c41c97a26dccf22240f2e1a');
+INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','1c98cb31528aedd7bbda1503cb776c747b127f86d763ccf777374d30fe75bfc1');
+INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','e40a849c4c59a37e7c8d7a89c41ed7c76ad736c00a7f8c3ac3c04c905cfabab3');
+INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"91cea72c920a13cc450d14c92a81a318462300670308d6b1eb344ac06a72eda1_c345c2e6d9899c7729a0ca2ef13fab71ca5808854fb6be62e3b3dcd9225d1c4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','92ab3ed9232b65889b94c03be7b83035646bbdfade2534b31264d28751ffa4a7');
+INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e","tx_index":21}',0,'TRANSACTION_PARSED','54292b0676d266705f8dd0daa1194cff3d16414564f25c422309af75d8ca344e','2a837fa418ab40fd9a360a52e2146c621f923b6d7af2cc23f87d2d7f3463007f');
+INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"4397f5568bfcf8cc90d1e72b7c61e7cc6905a0d9d3b3890c33e2afb464a25fb9","messages_hash":"584336adb53629a35656fcd61eb8c4f646f69a3b7b87ad4e6dd86d49b965d7e7","transaction_count":1,"txlist_hash":"5483ead85237ef0ceb3486e3c3e6ee1e5080a5dd602f805b811cedf996b8dbaa"}',0,'BLOCK_PARSED',NULL,'2556ba3a437a45eb4bc52506d94637a32d601c1ed5d29785a9695005378ac5ec');
+INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4c499f4634fc6f9e703ce679c4ab891aa3669fef1923efd7acb2b606f659a1e');
+INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22,"utxos_info":"0b84fe823c78ce33db02a287f480ad6c2dac38de1bca142b10690dddd06b9429:0"}',0,'NEW_TRANSACTION',NULL,'347c64479ebf81a2280eabdde3620ae319d1018e69f14b3e43b2188d83dc6f0f');
+INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310021,"event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','ac2e1f50168ea77d2fbe0e537b7bdead796341f6588dde443bdd9c3624385748');
+INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"open","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'OPEN_ORDER','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','5cc9025a1facfbece5e202ec81201931e4a45d96504b34a5aefe20da1044cc11');
+INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","tx_index":22}',0,'TRANSACTION_PARSED','6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e','f690a666a836405380fbc8f1b823eb8bcadd8713a734b4696c37bece520a049a');
+INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"16b7018344f7a97695eb17dc5921c4955b3f8cf4d9e70bd8628041c4033886b9","messages_hash":"d08b542decc13c0df72de898facffec9edc2fbc1d055d5fce7c872eaa961b46f","transaction_count":1,"txlist_hash":"bd68fe9b7aef054c8a5925dff9ff140cb5c00eb611a8802156196ed486479ad1"}',0,'BLOCK_PARSED',NULL,'5f9ddc7541b71415d395b194ed1d384e28e3eb73be33b5572f5b0d8861ba510f');
+INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f20c440abd168cf85ebfc2447352f324093e7b5896a9c3218c5b9fa7fc83d0d4');
+INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23,"utxos_info":"fa714c345a1ad0cf699f33c9572c70e3a5d96c16be2ddaf0ad0a8580e99a3ede:0"}',0,'NEW_TRANSACTION',NULL,'bf8e93556a75e4acb71a0271ac428f376924cad5025665ece223fb23d6346c5f');
+INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310022,"calling_function":"burn","event":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','ce0c6d3c7a4e961e660e123a480a18b9050dac5aced6c444fce7dc361f541b01');
+INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1","tx_index":23}',0,'BURN','df080a76ceb263201901bc23c85c3e8dce4eca0e72c873131adaf2f46820e9f1','37e9705bfc5f2ac0479f3f9c9cf05e1d0328bd5a76a1cca90e7646489d88341b');
+INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c3c26212677f4aed4614b653f1e5da509f962c29502d22c84c1c5522bca0dcf5","messages_hash":"066fbe373bd1997fdb3c38d6023bd6e8f05f3e58461ad6a422cd4dfbeb0f2fb7","transaction_count":1,"txlist_hash":"109e820ac7d290ecec049098115ba6b467ba90ba624aa24326cc7e103e51b265"}',0,'BLOCK_PARSED',NULL,'2e1f888d62e696c0974db83b718038bdcf783df84f7dbd312ffba9d4479ded98');
+INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3737bf3c67de60f0d31d27bb5fd5625c3bab709f39c7b58ab4730cfd28b6dc5e');
+INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24,"utxos_info":"64b128fe57538b87e472586bc2efacc0d692f07bdb4bc4868ec66c3f2061b109:0"}',0,'NEW_TRANSACTION',NULL,'85e49b34c5b2196d1e6c612f0ea96234cdc229ad9c87d5448d0fea8a2e39d7fd');
+INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8"}',0,'BET_UPDATE',NULL,'4a78be9c412071b4419d5fcc53ffbc6d5b597058a4f4e2635a20aaa5411d6e91');
+INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'36b3eb4d9202d96ac663417ef5f7e5b065b827c7fa51f1c89ee9b4e3e96a048b');
+INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"c36b65e3d4c105739d5c8cef470c0878d2e8da138416e09cb499edcec343c0b8","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'BET_EXPIRATION',NULL,'0ef81821cd83d1a6d45e9daf0e652d5346456ff89d1f55353ed977c791ed5886');
+INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','fda2a1e701d22164250209263818b07a3c45c9270e2037bedb441fd01b6d400c');
+INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBC","block_index":310023,"calling_function":"send","event":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','b9eaa480b78fd13a6f83719323148f48a39e9cae72d5f10ebb120b6211710387');
+INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","status":"valid","tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'SEND','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','2bec64d1a5638cd0d1301a0fb8b19fe9517795d50d700a1e559f658a62455f5a');
+INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1","tx_index":24}',0,'TRANSACTION_PARSED','abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1','ae2d503271f53750f608768cc1321c681f0f551119e9f3ba4462f30619152cd3');
+INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"420b753d9e2a4ae5c00cf65efccb9a657d2daeb19159075d1671a076d8c1ade1","messages_hash":"32f524eca487a1118524f31bbd88b9e80384752bd324b9ed82a103f497722bd9","transaction_count":1,"txlist_hash":"8e03eae75b5f9306a0a8142296412f7271b17f8c751e9e8e1b1cbeca5418f4eb"}',0,'BLOCK_PARSED',NULL,'f8e951b92ba0568b116d7e83a518ce7a88217a6582327a6566530d2651da1483');
+INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fca0d1ef68e5bd9a14ecb0981001305c62c98527c84d987f95ffb86fdb5d60d4');
+INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"786e9c043df5025bb8d123322e2dd9cba30cc433ff90a44b7b7036369565835b","messages_hash":"d17f4a4249ff8894cbe38c53470a085c0b43f37af3def5827bdcbd512627975d","transaction_count":0,"txlist_hash":"6a80f89b076199d165801b34c7d292976e069920f2ae4184e09dad8411735b94"}',0,'BLOCK_PARSED',NULL,'3c61ddb86c2225e3d8958d826b39136d76ee6f509f2163ff2b94aa702700ef2c');
+INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6c42cf4a97f8783652aa91539c7006e8972de32140ea9a6e1ac42353aa8f5ce');
+INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"1a2e0585eb1a7f608b4ca4b1d252f555f87e7f16fff124ed869285ec17643059","messages_hash":"99e549c635c9de25af9aaff573b979b84e570faa4804ca23d16774af1a0667d0","transaction_count":0,"txlist_hash":"a2110149cc4e90d1474c53bdf91e24f8bbb8931548542a6afda94bc343fe3a7f"}',0,'BLOCK_PARSED',NULL,'6a711d4287e8822b53d0d8916913c3801fc60970e49793808be33b453089120b');
+INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7515a4234586b5a12e6a139e2ce92e08b4e37569f0b33b8d3d9573c5dd04d5c1');
+INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"44a1f10e2df25328c38e20c36029bff557c7a93784030ece591406df9c71ebd6","messages_hash":"593ae1a07859992830aa36425fd449b6d7fea9a58d2377c9c7fc449869fe1539","transaction_count":0,"txlist_hash":"d087d907b7af1ac1171c61f00c756754fc94e0edf0dc265d9eced163a07357c1"}',0,'BLOCK_PARSED',NULL,'8eb9d358b1a8e25a4233a37bba0e2b0a64e2485205b1ab8163deeda371585e17');
+INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8886b4d39f7cc8099f2a6b14200a1ceb2781d325cecab4630ed842d24a59e25a');
+INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"093f82c2b8e108242edc6dad72e5878700b9c33606c359e673bdfe65341db64a","messages_hash":"97b27836562b1c9153a00fae9035dfbf9ff10a7f36aa0a4fb3bcaf8103a95d7d","transaction_count":0,"txlist_hash":"5796b7de2e12cda876546b21e2a64e92b85792c201f39fe404e7fa6c395e78db"}',0,'BLOCK_PARSED',NULL,'88be5a20b2f580cacfe61fd7b93ee596689d2d11d1c33cfe7a45dd8f1c84d06c');
+INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'401e96b656d68a126a539b923eb1c001048aa9daafefd41466567fb098cc1b2b');
+INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"efac93e04f7cd9d3b1c0af3da102c29b50d940b4b5687fb0061b3b6e169290f6","messages_hash":"9936dc9a6205f83183b394d439ef19ec875b09b6818b3bec22e9ee9824158df3","transaction_count":0,"txlist_hash":"5daed82ccefd923a597451b918ece6172dbc75df5cd53ea0f7e40065e3d0d929"}',0,'BLOCK_PARSED',NULL,'71c90e712f1205710ba5c5740063c8a22aab11f79cd35c488f94d7ac69fb1375');
+INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1710f51e650fc9b281dd40ad80491000418b9b2e960274783820b3e00ee15f45');
+INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"1fa464e853787685a588de6dab287456de7a0efdcd76052a41ddaf5e2f85a648","messages_hash":"2fda1ff9913e7eaec6e0609c08119f99b5521f4acaae37f169d384154d833d5a","transaction_count":0,"txlist_hash":"818415429923b4a38cb65dddb4e8b8a17264cea0188e905d4a19db340e98ef82"}',0,'BLOCK_PARSED',NULL,'b37a2f52646d884c145a33e5c67686cbd17ef8f9fe8512780597caccb58df243');
+INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db1ee80666f1a4ac7461b5db800b889bd4c4b8625bd5a0eed8f29a1a38bfdcee');
+INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"fee866f1cf6e5f83010b97e0e9d88b54ce43fdf45e89081ba3b2fe07b62434fc","messages_hash":"b3650d2f7043b841e9ed73321a8136a8b16e31c59c814fb166c396607f944be3","transaction_count":0,"txlist_hash":"7e3fb0dc1ce885afb71be88ad0ca3b189202535d328ff70bda7cceaede6813bb"}',0,'BLOCK_PARSED',NULL,'b678f7f891d4f83036f6add1ea721acdea95f38403656a18378096736449a78c');
+INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1a9b78bf98d5c1c7196670ff63023c2122068e4ccc516c2e219d66f1384df35');
+INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"11ed526c46610698e7a4f102ae91755a541d668750ec3bc10decd0c1709d1115","messages_hash":"ed225e48b5d71bdf3a0225eb3745f6f823968ebb5afcfad54bd1ccc2f9efdccd","transaction_count":0,"txlist_hash":"e3044e5fc57d122eb707d271ca1f4248358a8f477a6466cedb739e7799351bb8"}',0,'BLOCK_PARSED',NULL,'c4e3cacb1a4cb597a6c8459b8b91f77c41303bb6afaab4e946f88de97c7ea748');
+INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fec95abb61ae23903053d1e44a17a494a445a1beee801d7a2f69f78165163ab6');
+INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e"}',0,'ORDER_UPDATE',NULL,'df4577eebc2741c2900f1e254f8da3a3433fd8a1dfb659b3066967a83bf98f4d');
+INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'1e5016bfc25aca53ea8bde87ff35e63e5130b943714d0836465b851723dd1c6a');
+INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"6d3c6a9ea36e82a0e8162f69c68fc8bb95d316ad5586a30553fbaf1717f4121e","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2"}',0,'ORDER_EXPIRATION',NULL,'050d40017ed30e0770b8071191c375ef744f0cc3a58aa90021e948ecb49a7d01');
+INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"7930e5a2c6150df64dfd995801aec68ce11df292e206f08f7ff20eda9ca2d017","messages_hash":"2fcd14de99cfc0051e32cb7575fe68f249435ea6e1fdf13995bb7b869310c8b9","transaction_count":0,"txlist_hash":"cbe01ce5a4da72538e9310180de025f141ea8baf1b6eeede8164cac3488532fe"}',0,'BLOCK_PARSED',NULL,'664aa00cf874fd57d39f8ea7f85d26a507434067697161331cded8cf3016a1cd');
+INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25bc7735fe27a62db83ae55236c4965e90b12f09b38f4c37081faf1169d70db');
+INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c5834a54b3ad7f9fdbb18a87c8cefe867eff2ba1ae5bff238a3a041431d0afdd","messages_hash":"c9f47c6da5068b7919a832cdf502e72fa2c792fb368ba9eae73728e8ecaf0941","transaction_count":0,"txlist_hash":"81bceadbd9f9b956ed25021e2e0a9f4217c7424522105f8a0ba41c9f78234fcd"}',0,'BLOCK_PARSED',NULL,'d9ad370b618930ebb0cd4298af25244e2f2cb58bd476210344b4e1f333d6789e');
+INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f99d03ee43b0ab27deac24de92d4bb8afd4d35e2b5d1fd2fea779fa338af2333');
+INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"5a4b3f29cb1554ae8f670955df4dde45fdcc57623a50ca7d8f2c78ad79186a7a","messages_hash":"aa253a5f5b5741edccdf5a5b002cf4bf2f469e378ee25dc7279229f144677104","transaction_count":0,"txlist_hash":"0ec430eb4c16f386b5abbd6586133741dfe6c19eb820d388810f3680442d363a"}',0,'BLOCK_PARSED',NULL,'08aadcb6f35b9fee8bfcd15903cc1908dc02a09e4d574c2fef70ddba5fd7e6b2');
+INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88549b6e3a2f5b62a513b6b18c6c47b95ed5a1a562afcee7837ed7a0c53451c0');
+INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b81834ed9e92514fe7d277378be72e1f81043a615a4b67cb67dbcf97e3c3b43e","messages_hash":"3d929d7479aba70da9c122bea1eeb8bdbfdcbf28998dfe4f72e49f9f92088360","transaction_count":0,"txlist_hash":"a883860baff0c6dec150c9d80b8a640401e191312eeebd4e9f21914e7803c46b"}',0,'BLOCK_PARSED',NULL,'c62850a468b49c392395e0d98bacf2df072731f0b6647a1ab8c7005b7dc9daf7');
+INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a74f27f678c924a172e2142d17937312fc2049bb51667849fb82f12f2e45d2a');
+INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"736adff04611f10a4e384b5d5c44651bdf037c0caeb8dda5bedbbc6d18d04ca2","messages_hash":"04df2e8a894e19473dedd9493069c49bcc1c57bece30ab85a94e4e85de076ff6","transaction_count":0,"txlist_hash":"821ad697a76d9a35b14a7c388b65b4f3a86fc66c42e02af6d568f73e2586beec"}',0,'BLOCK_PARSED',NULL,'e2fef27ec3a9da9a62280769fe263afab790360482b31c4812d512c803d27ed0');
+INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52fe772956b83efd02017843bd6e77e722659f2aa9e962d59a161150246a9ffb');
+INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"34d49fb14a7ec85ebd02ffe04768f5aa7382ed0ac7f9ae903e71567dc5d9ab67","messages_hash":"80ff1983d78ac09b5786d969122672922f34dc77570b9c1e3cc7877a739d6c62","transaction_count":0,"txlist_hash":"c5ff4e50b07b755c23a6d9ca6dd5efe71a2728c4c662418fab814993be455308"}',0,'BLOCK_PARSED',NULL,'770b68cab7763e86e432c9939d01b2972876b762039027bb7e526bc6037bd9ee');
+INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4791998cfee2e252ef4dabbedbd9f312a1cc85cf091e5b4daa4785f35b0560f');
+INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"9bfc3bf0ed35dd256f0df04c813dab9dd818238163e6b01842e18815971e7010","messages_hash":"c4cd65293538194afdf55ff89f59cb8067f83af62b3eb0040d3f7d922d745a75","transaction_count":0,"txlist_hash":"8a2ea429a26990e70f9c8937d11c58c986f991c55f196416344847435c670849"}',0,'BLOCK_PARSED',NULL,'fe0021a6e46cdf508412b2b9f267cae967d6aee62c1c86ad78d7530da7af1604');
+INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b23d7dd9067d9c819fa27a75f76aed7bfe181d82c1b2b9296b7adab7db814576');
+INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"da7a63f22053d1713c805684d14695c31670eaf848bf23eee3331e679744f291","messages_hash":"ed3a4d705697bf957f0e3e679f8636cf18074e7c3d5821404acd359e8c5e8c7a","transaction_count":0,"txlist_hash":"9f186391b30cc438ae59dabfb18dfca8811193a8fe37cada73d513ad688a80f0"}',0,'BLOCK_PARSED',NULL,'c7507b24ddd6808a92d0b81eece7f46409c7f37e032e0ab7dbd18c487e9fffcb');
+INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e6b0a653d405cdfab01d27500542aa525745a6def121ed88c3b8e3afb37a187');
+INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"ddb485115b64342bcb172cc3e77b20effb1294e635459119b59179f3b6a87d66","messages_hash":"4b8888c285233ef646619f95ba8b80393673659147e71b97002924c64ede9d3c","transaction_count":0,"txlist_hash":"f73c8b5e92181566aeee4ec42a1e50b950fd18680c69c58fe20b5288a915d7e9"}',0,'BLOCK_PARSED',NULL,'d6d6617cc7b49c671eb3ffc047a432e965cf2bd3912e5de2a9e4d7b04db6f62e');
+INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'900730c6ca82c9a84b28d5e8a8dda19b77270d21bdca2967c8f363f432707ad5');
+INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"b58d05ae5f282f7904c7a759ae5624194b5cb091f43f05d738cb4002a999c26d","messages_hash":"e66d0468081429a32e87dcf4480bfb96348560715ad3a6b0e342691f1403a488","transaction_count":0,"txlist_hash":"73ee837bac9153dbc94c23879192b6c2fd71a9a6148502e8c4693bd342c4feec"}',0,'BLOCK_PARSED',NULL,'328079d2d9fd39417f5dc467e7b4c8825290e4d8631aceba3941c6343ea3ef76');
+INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0f375399310f88c6927d05bd80b0aaf16ee92911be5b3c9a27c26defe6fbc72');
+INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"c18e1989fccd8bc7168ebf2acc035c224a9010b428b81c814683b0ce1e244113","messages_hash":"eb297e8409f08b38b5a5a86c98f636888cd7c893f58235c16d6385e211f20460","transaction_count":0,"txlist_hash":"9ef577154ca6e451585e9dcc4c3690d496b8a666856987194c4e41414743945f"}',0,'BLOCK_PARSED',NULL,'2cd821bc9e23b33ad53111013edae26ddd544eed9f1cbd42e8d1ed8705eeb2b9');
+INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'975d349dc1a9fca1057811a55cae0c05f9e7c09ed7b92a8f7deae548e265e9a3');
+INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"1a935492fce6a168d9aafd24246bba6f5615f53a47311549059b21adc6a67154","messages_hash":"b4623b45d79503405f544a3b246ef9f2aa5d3d3b0a7ea344228737146fc26120","transaction_count":0,"txlist_hash":"29f3ff5d49a8c6ffbf0ddc41a5e45fd3b777fd7c9ea60a914191fc551ac46ea4"}',0,'BLOCK_PARSED',NULL,'bbfe5d9ed4e6d5ef79e0a6a7a6c33a2636921ccbe80ad89ca116968a0afb2479');
+INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca049566a36372daf96c7bff3871d9a76845a5208f81ffe7f3f8b728f9776f2d');
+INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"536611cb3cb3005f8c4ffc5b8ed8271734448b5d6f49bd47eb0456bc4ee207e4","messages_hash":"6683f4f0bae39aa62af117279e5b65385d61a0104451f3e35a5fe0fd54b40fc4","transaction_count":0,"txlist_hash":"6f22c984234616fa84a474dc80c5d5e25ccdbec1a84b0cabb279505e93aa4d6c"}',0,'BLOCK_PARSED',NULL,'b454134769f36ee397b24a620fcdad37e9e702b4d3894db19818a7f517bd47c1');
+INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52dcff3038e27ab8b59d75f5f9f3d437bd8941552da4303c85cb7b2a0c666dc2');
+INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"ebbeea29c073c61dad3e091302cd945a9926741db0dc6a918792c4c01b8cc30c","messages_hash":"06fcb3429bb75337ac36ff2159d07b86b513a711b3e69abb5ac028c178f37e4b","transaction_count":0,"txlist_hash":"a1d1a029c0bcbe481f8ba760714e266ff9e759844517ceef96bbaefb05652dcd"}',0,'BLOCK_PARSED',NULL,'8e3ec63a23cd4243d1c72bb992403d4c2a0359ca70f4bf61eab9905277ed72c0');
+INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fa093c8bad5ccf238171bc0a2f7eb4b7039a8663add472168cfbe57873ae11d');
+INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"d9baff8bec82f3c29f1fa69c9ddd456f1867f33a55d1648605ea7109270d8e07","messages_hash":"2d092e5abe539c768cd52e2bd108fc9592c211544680e746faff1af941f833b0","transaction_count":0,"txlist_hash":"26f6ea6c1e350b91f4757619dd52bb7a2b2bad7277497f0d4e1d61b363eb7a99"}',0,'BLOCK_PARSED',NULL,'dff585de50070b96e03c3340bd1a2a93204d628d8bfdfb2bfb8bf517b0182fec');
+INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ff8646d1fe175e5b412b84440366456d17bb897ee163e8626a5726e91746a25');
+INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"09ad4a6bb3f671e6ac6d595bcbfb82371cc41f35c309142678eb5b7df97a5de5","messages_hash":"4a59838efe59a9dea7167e349a1ff3e322129d3cdbb9f4fb60d6b6553629f7c5","transaction_count":0,"txlist_hash":"5e32dc4d14838fdf0460146fd87eeb59ece3416bb7104362d24fd6d2bf0fe963"}',0,'BLOCK_PARSED',NULL,'1b6e32de441805ced602b29efe37fbcf08686e17825746ac11329b1d86be4c2b');
+INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a24d1289d796e1260e75255a6a6c48c91cf6f83b48647b69bd9d62d46b11a73');
+INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"208200708851a32b0ffaecade58f78f8ba7d5820457c582d5ca127e16fec0952","messages_hash":"b6994f5b5451c36854174318af39a43b3ffda255f8db3e7fda875fcf954e1d99","transaction_count":0,"txlist_hash":"c0a8253cff82f71d9a90c7b982e5d5093d5c2bbc2ee2859d9d7d09afbef56192"}',0,'BLOCK_PARSED',NULL,'1f1299d2337635543b9bf875c8af3fb2dc8d209c2d6d2c20ca9964f414837742');
+INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'decdb577817752e54af3eb69f191b3f6c445825c3ee673cd5c1833fdf6dbe5de');
+INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"9d1a7335d989bb73b0363bc88da6dd82c0fbaf064b1d70708b0aa2f6a8a9958b","messages_hash":"2c582e0398b9bc18f222d7af1f884b5eb8855cdf7209790a377ae57e86ebd1a6","transaction_count":0,"txlist_hash":"c07861a54cc9537b7a2486e5a7e6366cd04413fb1307712ec6af55588dd22cfc"}',0,'BLOCK_PARSED',NULL,'650bcfeb434f65aa2881f3c050bb9d870279aa00f3e3fa9323413822a4b22176');
+INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b71978a749b2e7bd3042589e6dba2701cad2a8e31cac1f4ff617d9efd3cff9fe');
+INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"2fd9039e49fcbb070315defae275bed858cfbb539bc4db8f2ec5f5ff6d69ea25","messages_hash":"26396bebf934270906e3d61a14c9174639beaf51d92249476006f7766fd0f022","transaction_count":0,"txlist_hash":"0ae948495f47c1ad343052f786467c6236cd6ca23dce0c628503a44ada8f8329"}',0,'BLOCK_PARSED',NULL,'ad3b8996dd375358df05aa7c8100e55776e309dba2469ba20ca5c61b4ffbf4dc');
+INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e23e6cff94d3a11c07dc11a0069d3d64f67b5a44b9902374b27a1ec2d2043fb');
+INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"2e97864865a020b04ed60b22c347d9dbebce5d00abce86c2b3a5054a3184699b","messages_hash":"0700cf8de8063fcd09a6131b1c8c974213d459a987bf0d750e773735206e1b15","transaction_count":0,"txlist_hash":"986536c5e9cec38d9b78bef44e21e73f93a654b9c421c7822dcba475b14f2127"}',0,'BLOCK_PARSED',NULL,'0355737e5b907c252623ee99c6f499916206d23a41dd860811f83a6f2f39901c');
+INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66ec6472c50dc8a0cb4d6830866c89a672898c72b23e6c90252d3e124e94b7a8');
+INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"f6a8e9f4cde78fbf6c9a5ea176312116f3813f2c0bcaee6c92f3beb13a8c3899","messages_hash":"0b2929cadbfd7a6678bf9776a4d55ee816dc97800e6c4e079826bfc3b57334c9","transaction_count":0,"txlist_hash":"4ffb95c683e1839d31018cc7ec92e978014b8cd32f308c2819ff2e79ff60fa2d"}',0,'BLOCK_PARSED',NULL,'aa0dd47558bb84c57967afc03818d866139fed945894d0b309af29f9a2671a55');
+INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'531e01c446b2d86e41dcd612ffecc7408d391143f81ae45fb00e433ba13f35a3');
+INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"1d84e4657febaa291b4873d808d9ab433370227976196fd6436a65839c3575d1","messages_hash":"1b25e91387df793334d9aada005b105dc2c1242acd739ea34a18ea1e5d5f5cb6","transaction_count":0,"txlist_hash":"0ed99730b61327cff9ed15d8585f70d7629b2b10150a717093dac4fafcc4e737"}',0,'BLOCK_PARSED',NULL,'0daae966cbf6455ace6fad679ae9326fb205facdae9ac1427ce9c582ca400d41');
+INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'266a774dc2106b2eaf5240d2751338b50a2fb050a00c6158594f28a810c8f209');
+INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"083f6b773191caaf1844f47c53077e8724e100d0b46461ddaa642b88d5265c9a","messages_hash":"b157f369d48b334ae12ea5c853aedbba8e8cad288ae183771e8a6e33bec299ae","transaction_count":0,"txlist_hash":"69aa5d1c74c026da7b7cebe352bd6d907a31174cfd6f346e09382b0cf3fb8239"}',0,'BLOCK_PARSED',NULL,'600e464d11f1d6fd5ce2630ab2581d881208dc621ab6c018b887afde43bef6e6');
+INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22a708d48c4e517301954c0bffad1af4c59e31e0a5f3a296a0485bc726210073');
+INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"b1302087b804fc5753df5a4d8aaf8626e80ff99b429f52fed97767b051c24e8c","messages_hash":"0eafdd35080661c9f45ecd3fbd30b94ffe647926ca046a5774e0db98817a6868","transaction_count":0,"txlist_hash":"e35d2a19e5b60e2534a36d8c1d0c14c6211d56c29b4aa4953a14bf0b83bcc405"}',0,'BLOCK_PARSED',NULL,'13c51e87d942e357ebdd84360838967df9e46840b40543299d90a3dcc6ec8b48');
+INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d72872311b7d0cbe152d5045b017d3005cf42a9bd870f664a4585f565a91c422');
+INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"956c9ca0b51eaba7343703a165eb96d5947fc764457ef3dde5ca90c18d3b2f3d","messages_hash":"397a62f4d919dd7a09bf1cce83560d51a067f9b938a905b79374c6280fffdeed","transaction_count":0,"txlist_hash":"165a88d3d459ce6f4f37cc2ddb1c365dd01542b102dc68181d41b95ebde044dd"}',0,'BLOCK_PARSED',NULL,'4cc3532183d1af87f904ef9f2b01e562b1ff416dc89b32649110d8954c65c11f');
+INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd4ef4ce6397aabd13abd6e9185bac65b6fd112ad3aeda6e739c6eb0798799ca');
+INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e86cae3e73aa13e8498a98de335ed0cbdb7899b24e91839bbf0f50aa22355ecb","messages_hash":"f837ddf62d133c68191de84b68fc2705a4cab57412d89fcf4f5bed131e2c3ed0","transaction_count":0,"txlist_hash":"37394f57952a82ab5fb6ceb7323152d83f3c911a533e289c55b531fc83269268"}',0,'BLOCK_PARSED',NULL,'731ff71ec03a6cbce95e991b6880b20f287d1ab90d5e77e11f3888066ea494f0');
+INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'733586d3f81550bc0be14c0b38268d130fefeb96df3a6fea44c789cb1bbf46f4');
+INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"54bd5e4fc1bc17df27f9e6f22b5e1facd82229a877e09ec0136f878f2da81344","messages_hash":"bfb4cf68e7b32b6bd342aaf45e0bd054f99e5ad06bcfb3576b90e12f4e4d7af0","transaction_count":0,"txlist_hash":"ebd7b1c7c24aa51a0622e244d1b486d4bde8b1019d86e1d8845b6e90847ad09b"}',0,'BLOCK_PARSED',NULL,'c0f2555af8d1926cae1de058b08b379ac062e9eea5baa253c83bb235f775c5db');
+INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8180117ec5071c7a1424a96bb8022261c0b357b30440753df5f78bfd7693ec95');
+INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"1403832427d4c482b0d2d925e08a72fe37f5aaa6af73e74f601f7e22fdad7662","messages_hash":"df0e6523af1c6569970513c07e9a30923c5c0cf212abe0d4163e2cdb972cbea3","transaction_count":0,"txlist_hash":"cb71b795988456a345fd21a3c729005ab802707d54311480012920f07db40bc9"}',0,'BLOCK_PARSED',NULL,'0038d7507b31973475dc04ca875548ee124305a2cb6997d37157cf64e780f8b7');
+INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f81a9356b9e3ff17bb6879fc0a65f291a2d49e13dc370c55e9a8a0cb7690ad8c');
+INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"7b08f124a953d0e5511b0698d3314f5ec71ebba77b94c4d236ff9738d5a587e8","messages_hash":"8d71dba32d92013399bb8f18e4f4eb87c9cfcb2aff4c32932573e2dfd822a620","transaction_count":0,"txlist_hash":"cf47be21938b5a55ffb8eba6a9f63eb61b89e679b279d75080571832bf08c0e0"}',0,'BLOCK_PARSED',NULL,'d9ad28d5c4850296d36075c53aba5f2848b11f1ae59a84b8f1d2748a967f5f80');
+INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aef7b6046abf1c95f95027c2e8a5ffd9576947fa8a83d8ad8c172837a00a4a1d');
+INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1de158dfd18413618b9800236a2aa265d2fab497b09a839be408da8871b0960a","messages_hash":"515fefec184d55e09a1f40afb966f020c444683cc63cefb38df33585004186ec","transaction_count":0,"txlist_hash":"a9c1a3c24a410649e701fc0b321b2030b6fc35de7a2538a10e75b482cbe96b3f"}',0,'BLOCK_PARSED',NULL,'e3735ecd3dbd5d190ab37f2228609a9f9b2858f0ccd596e4e9754eb1964c9f9a');
+INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c63111a6e4190bdf7504b1f575a633b85ef9ded290a833f9c73c7a0c918ea2fe');
+INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"aa4be540bad6cd762a02b77856c3d6a737d90245e71f61b63a426573bffb3a4a","messages_hash":"793060ef4fbf8ff5072973c0b32c21e6cfa993adf8d62784985f255a6f5c6016","transaction_count":0,"txlist_hash":"93d0499dcc4fc819927eed8d1eec8b094eb5a4323b70d2cec33d568e31737ce4"}',0,'BLOCK_PARSED',NULL,'aabba9e2b350875a998865dfe52869004e9fd11b811d4ec01c934c0a83900812');
+INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e17ef78d79cca9bb1327a92ef151ec678d80983ebebf7aa8ca6b6ec7967b8a82');
+INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"49edce8190c2480fe3c6b3df7c7c5f13d34f67c3aef3b2aa12eaea603153aa83","messages_hash":"54c31939735d7929d522d3ec88edc2d22ce84d382c5fc0da3f2fa3b3fab5a199","transaction_count":0,"txlist_hash":"a76d957ffb41dbfd83b8c92ad487582586cdf13ca49dc1dfc30e869afc8ca76b"}',0,'BLOCK_PARSED',NULL,'1480c4b20f193136c6f01d7ffcf518ce5f80359cac1cec38bedee3efc049edd6');
+INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52bd6bf83becdce6c2995a53e9d5d9f2e3eb7daeb4946c7ba657f649b6c7fe5f');
+INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a2a8c9946cf45490858deb15c8f277ec545854dfc02dc9d248a684c0c3544d6e","messages_hash":"fcd1038b34ea4065cf1aa061f22e225bb7ecf797c3afd06d7f7aba0b788413d9","transaction_count":0,"txlist_hash":"0270a3faca0bc1a674fbd3632a1edbe8363d5115db8af56f135493f09a63df30"}',0,'BLOCK_PARSED',NULL,'0a0bacd1c2fca3de7ca83675f99098b4d4524ef4e3608798bae92d1f0e3f9d77');
+INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21ae9d3c52f49dfe545868ad47d8c823bfcf0fec6236d55b4b23e19e5cb0bbdf');
+INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"ca1e5d385fd9cec1184d28095a6f4a2ec2914d40cc016309fe322dbb335cf2c3","messages_hash":"8bff6ea3bfb733a3b1f1282f9c7bbdb768a16b54d3f0d062d58c7ab838ca4e0d","transaction_count":0,"txlist_hash":"85484b37f06238496ca822d539fe09e0e2906d12cf5b6d77c6219af29ec7410a"}',0,'BLOCK_PARSED',NULL,'5d52c9815cc912e86dfd20bbd7127601ab96455c968125a8267e82ba679a62e8');
+INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1e2dd00fb220312256dad8f6babcf55e990ad6a6d2e8c001d666b20e2d9c4b9');
+INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"73519f53874cc8cbe9052bf8dd18c590e0a4bd5bdc2a286c4930e8cfd006a993","messages_hash":"3113db4f601a0a22f575e73f034b71ffc2cce96ea0c7e04d5231d7e6aad5e2eb","transaction_count":0,"txlist_hash":"9c360f75cdc0788ebf8a530fa967e8eaefc3876b19739dfef2f7307e1af414f2"}',0,'BLOCK_PARSED',NULL,'4707cc58771af50db9f8aa0207f07a6ddab5e53c8e964e12e7a32fe0d943bc7e');
+INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd3e71921b6692061ff303c058a32c9c6f034e95cf359faf3581e1e31291c22f');
+INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"5de09a95e36480de84f9d3c8db3e18b7bf5145f8b6ee6bde57b5c3de11274cbd","messages_hash":"bd0000bee542571f0ded86b42b37a80ce1ff645fc16ed10cbc8612a757dc37e9","transaction_count":0,"txlist_hash":"b4a32df829f1f913a9077d0ecd83362230bf893ffd654703538c5fc1c30a181e"}',0,'BLOCK_PARSED',NULL,'97067f73e59ac84ad2a1f751511fa730140ee64c76f678435aa13c152623483b');
+INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1c551c12674ba21fd209c1d5817babfd53537b11aee5b2f1541c24f83ec2a59');
+INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"be6a452931358d500eda0fd2aa3a91b86483fa847a7bf350f23d33d85712592e","messages_hash":"382e4621850d0db961e9c198c9fdb46ec461d20c61eb8e7327a796854735532f","transaction_count":0,"txlist_hash":"fc4f551737950e1293a8718899c3b74c2ce76d8d1f58d6e22d10976ffd15eb24"}',0,'BLOCK_PARSED',NULL,'bb259e702592973006ed9d68763fde8d11dcd725be897c766ab537a7c4a090db');
+INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe7261118516e57f99028491eff90e8bd5e58d929d20070efa864eb64b1eac03');
+INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"5940a47dfa1a1c8bc1e51f1e64100cd0604c74197c88b39f6f7a9d5b763a0b56","messages_hash":"56eef3f8075ac1b4622cf9b8aa2e2a693561e360428c0d8f7797ab56c0c5bcb3","transaction_count":0,"txlist_hash":"53ce1fdeb3b9e39930ad127bc86bc71e7b497f24cc34af2a022200db36ebfa36"}',0,'BLOCK_PARSED',NULL,'b1f3a057cf5e873c0c761b0c6b8a1ad7631a891b3f03329096dd8cca69c38a3e');
+INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'197be3a1cabf9412b1ce7ed274c0a60fc7ea146bf6c74a25ba51da278876826e');
+INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"6aebe68545207e7cc81d68c3aca801f0b39e276ac86e8e0130d5029eefb60e2e","messages_hash":"56deb2b09ef813d1575b12c373b198b0dd0a2708bc9d4cea9b32fbd7a512092f","transaction_count":0,"txlist_hash":"0d482039b615aa55b721fef8ddaffcc2942838dbda8784940e9fdd8dba8b1465"}',0,'BLOCK_PARSED',NULL,'584d0f77331aa4c49a96ed9f4f5664b1525039bd7ba270e8cfc4800308cc049a');
+INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0643efbe7be2b93fe2c88664c1342b8ccb99e01670223b276a49ea41ba2d42f');
+INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"d005aff752907b93e2dfe442896c8976203f0139fb67cda3ea1936aea495e008","messages_hash":"490813f31a900925671df46f758b7f1132867a465069c0269e6d45e486aecde5","transaction_count":0,"txlist_hash":"8be094b2e99ec5c85a594d4a4059b7427ffbee3671190b84161fbf2fadb6f313"}',0,'BLOCK_PARSED',NULL,'2f6a6268796d0d2c6bdd6fa3e2b40f173fe3d3ccb7bbfc6dc3b2c4d3179e1106');
+INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee55c9b79b3244be6c123e4450651ee663e19085c79f6ca577d04b40c3dc2abd');
+INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"781f0ebe67964c25640f0bf5624e08cda546dbbb6648bd6e8d9f280c7f075f7c","messages_hash":"a9673ee50d9f65eddccedc0b3e98382f57547f8b96316e443ac21f49c775a8f1","transaction_count":0,"txlist_hash":"9c5e049c1738beda53ffdffe18492b0af038a756278f2bdeaddaa1a726681ce5"}',0,'BLOCK_PARSED',NULL,'a30064a5e14f5b443488643916e40c68cac1926014fc6b00aa625b6b607a7b62');
+INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77c425c45652aea8baa1bb699faf9d76e4466bde85ef986177cc9469071fd2f7');
+INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"83b5e1ca76fda895b144e8c03cda5fc3d18f6324b5413fd74923e51a94ccc53a","messages_hash":"8892c734b6cb78ac0551dd5e0f39f1af27598ee2a829884e04ff1ad32c33ef8a","transaction_count":0,"txlist_hash":"a7199dd9b360cc694f85a81ccf72fd614e6c0400d753132cb517ca9da55df86a"}',0,'BLOCK_PARSED',NULL,'40a0e22cac8e6b297a8aec47b80a65eedc8a9d0f1415f820a4c0f2581d93f1fd');
+INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15f6efc780c34bce0d2754ec0240ec0f4c17642839469244f234bec7536e1d46');
+INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"4293be396327c0aa3c56c77a9152068cc32612692c76ba94e8961c59a9ad780f","messages_hash":"e2536800bbba398a97e38efcf5f4c2febfee15b735b57236a3ed34491126647d","transaction_count":0,"txlist_hash":"833f9d3ae03e5819eec47318d948999dfbe35fcbe66766f985b6ca71eccae54a"}',0,'BLOCK_PARSED',NULL,'23d6e085319f4ab272644d5d2a4ac94032b4e72bd921b989526e2fcbf73de298');
+INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5d8a7934033fb82f0a48cc95014db1e204717d6f0945cc3574388a93a78883b');
+INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"d08b93b609f1766534cb0c30502350b9e4ccc4a885ebff7633e9e5c5b52d8e90","messages_hash":"c9c37a11996ef89c4516c81d8bc8d2b3bb1a342f044bdf47dda4d9691bf46bd9","transaction_count":0,"txlist_hash":"7db8bbcaa76b087fbcdbd8f5b428b3587c494f0cd7d458a2d519abb0ef26f424"}',0,'BLOCK_PARSED',NULL,'f2108d1315b6edfca662681be8ca2e2be71ddda26eaecb1329882bb687bac742');
+INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55c142cd19820553c172582334b20afa5442cce056c89f3102ae838bb2f31f2b');
+INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"06c72d219df429f2873af74b6250f3d12996cce14496d151bf8bd4cf819532e4","messages_hash":"e5fc7d8debe247d68ba41b0287e7b8ad40b9b210ec62a8e6fb7111604b65a114","transaction_count":0,"txlist_hash":"8f6a902dd8d5d573658f07e8ac598ccc46ed49bff95b2a9ed89a051c852215a5"}',0,'BLOCK_PARSED',NULL,'b262e13ba9bb5659c4cf6c97b0f691a63b9ad5dc4af750ab3a9468b043ee4697');
+INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e61140363cd75d0cf81f0fb8517da71c194fcd2d36ef69e81eb6f99d38cff529');
+INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"0ff019cc4b9b8a394aad1b9f8f579fd5c4cc48a846e4fe71ab2f45226cec5a1e","messages_hash":"8234496edc47944c501573c82525dfb55fd7c614872379a059562d66b44a71ba","transaction_count":0,"txlist_hash":"e1ab0a4cbd4e60c5b1da333c5ef542bbc1d8bbd7709fdb35374c072a1f54d38c"}',0,'BLOCK_PARSED',NULL,'75f13dfed4e9eebfadce6c4fefc1be4843f619b103cb158578f0543dcdcd97a0');
+INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69b703be15b92303bdeef28c68f02e940a4d783dc8378750507e753e694423b5');
+INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"6ea40a02464725d0ba45b9969bdbb7529ae5e3ca794ae00abf4783bfc9667104","messages_hash":"5f55694254aeebeed7a8b70fe5bc347b4df6a966080f72d16262447e56b6b2cd","transaction_count":0,"txlist_hash":"be6f6965b6ba8aae157eb48f28bce3fa91c3bbc22b88fc3ee8d4f126c1538032"}',0,'BLOCK_PARSED',NULL,'4aacab05f7e74aa534a72bb156777953c3728d218587fbab6cdb3beb77c22a24');
+INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db284f08381e2191f49b32c87f2f2d3f1d36d52ceff901477a8d90332a6ba1fe');
+INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"076abf036bd51c47525fe4e638dbad403a8a1667a5b7c2f81ffc2a70e79b80a8","messages_hash":"9381a2652532f3ea053e1cb0f28a44bc8f6e98f04d51783651435fbe689c9891","transaction_count":0,"txlist_hash":"eb97110f496f9813e14f127af2cdcdb26d54e9745e274fe227fb0646cc132c29"}',0,'BLOCK_PARSED',NULL,'5e193280c5bb12795c7b70921e8145296d0285892d468b14efcd7d8d5074eb7b');
+INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0a5bfd2d83689e177831b31055b08e2158998421d34337aa2880fa52733bc8a');
+INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"8cc2e62f7b3ae2c89977ee9e31acacff38f944d00a978e9b0e48678487cdbe27","messages_hash":"16f709bb262ad8b0e6c048b5207b7514d2bb6e02cc385ffaf146dd03d4a04dda","transaction_count":0,"txlist_hash":"93c6c5967f4d297df962f2853f2a2ba3870f5692c8835413c08528cf243985dc"}',0,'BLOCK_PARSED',NULL,'cae5a6213ce4bc34da4afe7f9e28d0bd46a145db512cf7592f3c30a4e2675308');
+INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d88377bf43f2f29c28a91b259daa318693fcab28c4f2b7be9017298358f60da');
+INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"ec86fa6786b598b091121fc2001650bc04668d26d88805efff7271312c76a373","messages_hash":"9f1a7928095be6b7191d8a72d743d000d2b5040606789fb7b89d697b261a82b4","transaction_count":0,"txlist_hash":"e6cf70178316b3c594c60d10ac1ee3783f1dafe5054ce4c6fb932bf3c771f703"}',0,'BLOCK_PARSED',NULL,'8d105c071c43dac337967dafe8eb5a48713f8b70a05dd727c584a00a97378078');
+INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0916d2c67e5533ef71f96f24039208e28afc5d7b028f3e2fbd8af447b32bfdc');
+INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"6b720db96b2d10816e5022ab8c61fafba49cc6bf484909fb500295451e61f768","messages_hash":"923002cf1253a4d2229ecfab2b4a9b049d08cabedd9ca831de2de63a6addf730","transaction_count":0,"txlist_hash":"254cf1d1ac865c611a3d9fbd78001152928a52ad94fd640c526e043ce7c0fdb3"}',0,'BLOCK_PARSED',NULL,'722059c845c06943170931d1ccc990a8d6239d75aae5d39b49c6cbf5790c4a8d');
+INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0428a1308456efb1e4a7abbaf23cb86658773f0168e6c35041ad314c37de5204');
+INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"d8c6fabb9b9dff0f1f3ba35e75c08be55dc4ded8dcf54e51f0cd857625b87dc8","messages_hash":"4158c7703a1fe910acfb1ba2e9bce1d7298dcc5dcd9e8c71662136d6b5d31ed1","transaction_count":0,"txlist_hash":"a34f7e98c65b95becae5908e74cfedcb846366a83605f9d8685e98ac629d1278"}',0,'BLOCK_PARSED',NULL,'507dc833bf938e55bec74b509e6c319c2e11713e617573ca9abcac963bb3c7d9');
+INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a74299864c2db74aa64b26cca21424416d253d53099ee33fca9828bb7bd611b');
+INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"eba03194b13ca764dbfbb86f86d16841df4486f12c26a214f7f1020468b52d27","messages_hash":"ebe529dc2a9cf1491d2d5d1d9c3c58179025fb398aabd74b96c7e36e7707665e","transaction_count":0,"txlist_hash":"e5a15333b0539a58bcf306d993b0be078d8dfd3cf3f5929a690da5ac534eff5e"}',0,'BLOCK_PARSED',NULL,'fc1c79fcb77ddf8c42ed5e8680517a6469fdb0e96dc21dff131717a62ef77ead');
+INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c19015f259b00bb0d76d510ba58e287402eb95263ce80f0da9d2e474d0a609d9');
+INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"d7fa8085722edc91ea5cb907e439649533e32ad5429b52bc10463629719af5ab","messages_hash":"25013bbda0f976f456e9899c5e6f84515b61640e1ddd41d31f40aacd0354e1f7","transaction_count":0,"txlist_hash":"bfedffe97e2bf812728130721dec204767d92ab05bfcf2c4596b5386fc6ea380"}',0,'BLOCK_PARSED',NULL,'1a3bc7ea838fd5631e0d0a4cc20158c2109f59feb24e35cd9c91e640d609858a');
+INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d29f3d11079d692638b7fe400d48a57067f1fba62bb9c5e522ca437f4a020aa');
+INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e84e0b26a5a67af1bca0cdadadea17b52b79f160d8acc0281289de1c70bef248","messages_hash":"30b9d419bf1481515cac50b1152199544accd2a8c60be770efb9f5aa403ea5fb","transaction_count":0,"txlist_hash":"2b4c3ff824d597cc1376a524f89bac6deef025a71395e848b51e9c06002d7f12"}',0,'BLOCK_PARSED',NULL,'7905cd295852457b56f635fef5620986a0594182d0a5ae1a0f104a6deb1e0881');
+INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c950a6f1507a0d0b98021f05e1fefbb1c74c002aebb4e28b3ef5b33df26970bb');
+INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"ac3522ba0e8278bac956b5f9d7af271424f8e4eff23d57d2a5ff88416dd02ff4","messages_hash":"b62c5ddcc39b609c001c568e8a96b2d91de3fadba244635cc5aed05d35763889","transaction_count":0,"txlist_hash":"2b3b181734d815e3cd024f6fd91b11de8cd457bdc5f833520af281a6c42ab391"}',0,'BLOCK_PARSED',NULL,'2a6c511417a945c4b6a121c1c6cc1e6c9bedae63ab004a28706f83f4100fa8eb');
+INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dba7d8a252091229f62f761c336c5d95cac70910a8fe92de0e0b6bfcd1868fce');
+INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"86255a3e32e6c7a96d0f0a6e7815d61d9a970272f1df38bb0c29ee9f2051f2e4","messages_hash":"9f0ab7dfb41ef3180a08536fc0252e821991d592ec233ab048424419f8e0e799","transaction_count":0,"txlist_hash":"9092b97fab9af004edd169f26446c6712e5e1ed1d5f94fc5ac0b49565fa65b4b"}',0,'BLOCK_PARSED',NULL,'e63110e673f0a60eada8cb2e514687b5273a073e86343bc3550809b5b5a94391');
+INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dde92c6e355c7b47e7e220c4b5a2945a550a155be958f8e621deb2c0bfb727aa');
+INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"9694fd19263381693133a47584432de876ef1e0a32060d52c8db96811ff7d09e","messages_hash":"6551432da4efd50d021d5dc88ba8d6768fd40c0785ce93cdc0491f179d399739","transaction_count":0,"txlist_hash":"06ae398816ea8ca96fa424903182c7df9ce93c5d1bdbc2ead089ee71acb90531"}',0,'BLOCK_PARSED',NULL,'df1e7f569099e7617bbeee35b2cf99e3b8673859dc46a46d59577883458d4136');
+INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30f6d06ca8baa154e99d87ed3c3498a1df42c19a4f4bbf9815fdf7900395691c');
+INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"3cb1b469cc6627cbed3f0db1a00370d5c95edf9940f8a4c9406fc78076640d90","messages_hash":"ca6e8c9105d538b6872ea6f62f0636cdd245b17f2a382048a6712e1ad9f4b290","transaction_count":0,"txlist_hash":"2c688b2021aa321432ae1bd5a60a9f65cdb6d3720512ca2c304bd2773e7647d9"}',0,'BLOCK_PARSED',NULL,'c2345ad46576e9a1f55d81298d235746d9dd7c48d7b1c9a61daa07151ad51633');
+INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'422493891b68d7e2cdfd661f289af0f717b2029bb7d0519b8f18c4ef0262c3fa');
+INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"cac7cc49c1d632aef2e9bcb3456f60df2ff11110c4e9980989ce0f2d8a5835e1","messages_hash":"da5e150ff4f4000664421aa0506fb40a5a09bd0e67d00d2f1c94d4083d594472","transaction_count":0,"txlist_hash":"2a7ce0455e84f973c078752f1c0ea93ffdbe993f239baeb7ed947e749c119dfb"}',0,'BLOCK_PARSED',NULL,'ffdf992ded00ea4a6aa66bcf35c99844fda2be17bef086b4d52e888b4c18488a');
+INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41214c1a6ec967b390d19eb70d66ac5d342b62afe7bcb47e1fcc2957acce8e7e');
+INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"1614a317b1144c7f08fb2785bf468bb299b9f19450331b7fdfebd510fa07e574","messages_hash":"b2d1f80a9255751fb1fed53b2bc3b638c0296d95c6d2d34b5568a4689dd224a9","transaction_count":0,"txlist_hash":"270190f8eea6e059acfe66f7369986d3748f707f3ad0eaa2e396a190cc047a6f"}',0,'BLOCK_PARSED',NULL,'004b30d91fdb6cef81894321326a30da8b4155581173b15c1be6d61be8077858');
+INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36c2c1f8c0219357007d3a35bce9cfce4c63402f2d1f30f7385e345bf57f7cc2');
+INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"631d42f4b3fb091a4c67f737bc2da60b8bf9820d27c758f5b9453b40813c5bc5","messages_hash":"f079d3b7bdb4c56bfc3f61400a4092a75f9e6231f4a62bc00f476523ff679edc","transaction_count":0,"txlist_hash":"35ca62f9b66717328f41e23c80e72395f4ece758ce3ca9aabe1d1edd87d06016"}',0,'BLOCK_PARSED',NULL,'7a4efaae02870faeaa6936c94e8053746acbd7c656d227a998f12ef80ea275fe');
+INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe86937ae3263c98a12a01c673c38a0776c30fba6bf16deacabecf2c7e2e0b68');
+INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"2b3f460da72fc0a9b3a720abca80bff0c44654287de69567c43c62a5557144bf","messages_hash":"6198309a64cb0964437b25c3d2c72354f8ee78c81f0d525ef4ea92daa208eb5e","transaction_count":0,"txlist_hash":"37d35cf95c6f102413739a672d5dc1c3b0760068de256676b336c631bdc94447"}',0,'BLOCK_PARSED',NULL,'f672787e946a1664c7ab9588cbf59072274cf4c2c635ade425e2527070846e9e');
+INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a302edbd367b478d332760a823ce873c3ab011f6fdec7dfbc186549b75433ed');
+INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"db62bf94ddb276cf55ddfe73f8023e760788647910807adff6e0672ce1d5e23d","messages_hash":"9b09326d60df6598e7b742f971954a5ca84a154851c17fb0e52c0bf755b74959","transaction_count":0,"txlist_hash":"2eec38760b106cf52b3bf0fa51198348cb611ae9bb75edd8e4a343e7fef1e042"}',0,'BLOCK_PARSED',NULL,'37e4dd45eeac7861820f696136cdd0ab14cfee549f700241919d6bd641af1aa9');
+INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a99fc30d771c6f414a2dbbe59f524ab7299e98c398091453e24ef9c49f3ae60');
+INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"1c427808f1eb1972df57b51eea9f3405d3d63a1d58c5a3faba616d7160e3a264","messages_hash":"af0ec86d25140f5a952df3fe646f217de042ddfd8dfd085a6fb5d88e0888b13f","transaction_count":0,"txlist_hash":"be57a1f4088437c89e3bdd7c9456b8ac9dc6011d15ada8d5432ab662f80e9a52"}',0,'BLOCK_PARSED',NULL,'137653b4bee90842f2b22f572f323890fb5c6b1e27ffccc3faddd7bc2febf1eb');
+INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fb15099b15dfbcb6794f7598da4963c885a08eb1adc0bd855cd57c13049ff15');
+INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"cd28b5ac0f80f8815467663c1e90b15ffe46ce067a1b2ce004b0d371cb0ceb16","messages_hash":"a07a2f28740a4c0534b49158731d7a5ebdcc864a78f6a43712f0801df161b7f4","transaction_count":0,"txlist_hash":"cf5fed759ba01d430d2e97ed6d52503a67c35688f02ad6742e87f1da1b468ae0"}',0,'BLOCK_PARSED',NULL,'ea5bd189aa8d15c32ac9b738f6de6f757c347f70e7b1a2bebf1646adffca4a5c');
+INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'230989676b0d800ef04e5ed48084c74ddae62f07ed894c0b6b103597e9c010fe');
+INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"69adfbe756c116e395fb3a5170b57210ac2721b07144b3d7a35c4327f28e28c9","messages_hash":"22f0cc2c3132b52f202ac56a0f3b655a80749220c831f02962583c757681f799","transaction_count":0,"txlist_hash":"528e0ea934cb95d328ad13fb3a3a47a1d89824ee44abbb2cc271d707bb6d62d1"}',0,'BLOCK_PARSED',NULL,'b5ca13ceabc0ab3d03df5e2af4e450f960110811f528c83ec5786e4c2493f1ff');
+INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da632fef177acfa491ecaf00df2472808ca26ebb106b7ab0ae4ea345418d1697');
+INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"d50cb66a25a410db360cdf749b5d10932410b5e37c3e5d3d834a65b5671dcca6","messages_hash":"b02de37f697c714bb2e208429c8209346762735ae91f02c7a6bc88a65f970db0","transaction_count":0,"txlist_hash":"f0e0e40238d13f69c9c40cad5b8be218cb09af9bc061e728b56d74a42182788b"}',0,'BLOCK_PARSED',NULL,'3ecd1b2364e3e8c0a6c04575feb76de3e62537e903d7d0b70c09e04873a3287d');
+INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30c593ad895e309d89bcb3768b2c8cf5a45957ccda8a0dde5c3f81b048ec3b9e');
+INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"384f8d2eda5f1b7b8273ef149ac37fcaa9ae51865fd57bd348339579b8a078eb","messages_hash":"b93269658cde34c18f66e0b0243c38a6425d52a4cc55934972ccb78e0a0e0cec","transaction_count":0,"txlist_hash":"19ac618404aade5a0914a9a9c159ea229384be303a320b08b9915474beccf1df"}',0,'BLOCK_PARSED',NULL,'2bf148e80908f92d599cc7d5dc6ec1c1ea508754bd616ff426fb9007592a17fd');
+INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'435b70438805348beb8f84643a8ec420d6108a085c2af82d4fd19b8f676d5fc5');
+INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"5eff25450225c71f85f34466d6e359001eed8f05ea5042e7d65c30ccfeb6098f","messages_hash":"d37c9a6017c79571efd424729624af5c2bca215c2215fdbcf718de863ea10f89","transaction_count":0,"txlist_hash":"7d02630f0fbe3e5c3b16766f1d04dd1a83c305f74f0546276d970b36e870ba8e"}',0,'BLOCK_PARSED',NULL,'2487982af43113bfa0d2effb131c43add29387efa13ab9b8a5daddf24641e9c2');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -1418,31 +1435,33 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',0,310005,'BBBB',1000000000,1,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(6,'93599860b4a4a3b672a79c064812eb18d2e1b532613e08bd3ae1ee2a9979eae2',0,310005,'BBBB',1000000000,1,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(7,'3318c4b8b244fbc64f6894d28f7a1866db5671f04d2e4f5911d0fd688f804404',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -1482,14 +1501,14 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(2,'eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'valid',0,NULL);
-INSERT INTO sends VALUES(8,'e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'valid',0,NULL);
-INSERT INTO sends VALUES(24,'abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'valid',0,NULL);
+INSERT INTO sends VALUES(2,'eacd03b732d28924807d4f0cb1c1aa5720a78bf44d23660fb1658a5fd1b4e9a3',310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',50000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(8,'e43d2ab22a3a5fe1de032bdf042381fc1d6fc34794abc51a1b3db46ccf8cbdbe',310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBB',4000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'7b48b32b5373757d0bfa50358184117ca01b5ad564ca4338ecb021ae726a19c9',310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',526,'valid',0,NULL,0);
+INSERT INTO sends VALUES(24,'abc5e16e5a7a1a7dd7d38ff1351b252a3813d40a695ab798f6a26cb904f91ab1',310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','2_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','BBBC',10000,'valid',0,NULL,0);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -1689,15 +1708,15 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -1931,3 +1950,121 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql
index 7245c97eb5..190328d0d2 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.sql
@@ -19,108 +19,108 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cff3ba7c92f6b318eb4a4a5e2b90b655fc055d4e8a82101b813aef6e1c6152e4','9f6f20e36fd2b2b44df6e91fbfaeffc6d7fae9917b27d196245ee90c36d99ff1','f25f391e967671ba5a4efd1b0766b90d3d0443b51d9507f85125d9d1ef3a0308',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2281de0177f4fcf8d730e2751d7b9fb5da4df741196bbcaff470c7860a2ca0b6','49836952844fe3f887e718d236efa6b1f4cc0b81cfc010f79a6349562ebfc162','e3aa0380b1a456cdf8335e2c4dcf2bf5cd54a82bf155a91cf04c9ecc8ff63bdb',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'802742a55d8ab83de24c45efb86d1daa0ad4e565cc4db6dcaa5cedb16ec4125f','017a0ddcf461ffcc3c89042ba6a6337efcc276c8f144daad445ba0e4a36bab33','d8df33aece3f5184376a2f4a13cfb52ed09ab73cdbdffd84dadde3ca8e4d4b9f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'ed279c6a985256134cfb39f1283ec97c8dc800b7255a3e8243ca9846884d0378','8ec458bf08abe2f3634eafac5af321f02cf5d470c2a87301b8061efe3dcc644f','e8a8467421c8964ff378e119f97e7cf43ee424041b1d660cbd6493b23213f79b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'bba1ec90ee149be7d8a88ff9df1fca931e076e885be21bc822637829a8675e02','e2e334cb3c300e622a50d2c206fe532a3320f56c445dc1a9dec750417260fe9a','7942936fb941c33d235d0f95f868587159b956e31c7ebd591e09117f54faa9bb',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'5f8a9d465e686b3e9471041bd15d645b7fc8afee36ee890873aa6c3c51d87bb5','260ad7ae2e2b555f7adf9155fcb761e7ed7a2d22f128457db0f1ff363b498d64','fa485519e19f15670e3c2e14e5edf24ceb43f3716d9b941e6d553ed966890c50',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'153795f1c7ae2dbec7fc19bb25d03dd518f0664bca82b9bb92bb7c4f1e22f040','c047baa686f8bf24c406cf03687c0b4fe6b95e4afe0b396e0f507a694fb10245','91d3dd09443d1265650e148632f4de4352559fb4a2aa2dfbe161b1a83d7f51de',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'c5d21baa8c6949a8e9f0d73a37436d431bf4876ab3b60b82553877ec53fc4454','d9532f5bdd583968d88ed24feb95b50c5e319d36171dd7bc6067ddf3d13c623c','477c8a3efdb86228e5387e26f324d6db1de8d3d0269b61e5918c50e9099e27ca',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'579de8204446e9128076fd27a644a82da77ca5ff2793ff56815c24a11218af5e','5b37c224e5684c0b3a913793e7e97c4f88b26b6c6d7683de8e06bb9485fba409','e6077ca90d21f6c9bf673fddbfde5afa61ce76d3efdc19e3e98601ebe2659c69',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'c03a6e31f50f172c86029ce6a810ec730e1179ad3e76ba5d4290595ec414bb87','f81c6592f74098821e15c146c2a7e4a5be2cc743431d37a5fb6d4143b89907d5','6b1c0ca7b4fbde952b5729befc447a09d9e996f873f25757fc9fe6332799bdc9',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'804651f6571bb24ef7534c97116ae35fb0b6b31aa6a4574a419aae7fc2900b1c','3698516a21c2c590522e6419eae91ed8b469d922863141def1f3e295c4954dfd','68122cbe27346172664dc07f3c7cd823a2fd9ff5efdb47ed357fcf80ba43976c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'a9a18fcba1a83d637dcfd633f32848d55c86c5b499e0c15af6a626653b7424b8','deaaba2ecb1772901052ae6490a1015e75146af3b2707b1c148562deff91af49','3cb60f7ac2f1597df6cde54a9aea3c2dda78734aa723e408520d205af49c6c62',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'27298dbdb9026b5d54228b686b7a76f9d42479da79b38b9ef7cd13e4fee27159','e409e7c7435482a64f10aaaaa6e62d69a4f0ae3083922c91907d6f15393dbb22','49b0d12e30aae10622d9c04e4d7ae9c574020ad4471669bd37c5e5e3354f928e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'f5fbbb8870bb8253cfba52c58765b8c2493ceee6a2db5779a4212ed456bf892e','78b492a743e24d50541f29a1a8e476434e81961bd457552c55fcbbac68d68fca','0548d7767e52fe92fb48e9860a17d4d0aae87d90395c814f71a19418cb01f253',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'f1e77a7a4d28d64a0cfd878112074b6205ef09055b93b8923b0c6466a07ea500','475ee3563b60fa5bbf8f8db5eabf9bdfea4a2f1b5fc82aedc37fa7c581c5f065','1ec2ab1b175680972277d46d3c88eacd45939ff84545534192a4aae70b68bd1f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'014bcc839c0ea0d2fecd9aab3074528ffee3b2dce7f805e4d459e2dfb3d98a51','5d40b180a3f3b38eedd15c7f40e8585aaa5e2fdde3967dff443a74703fa45fd4','1c29ad09a0e553303984b97abf9b4a3a844defb01750cda96efc763eb7e0e509',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'9f72d6a84ee58e1e851a90a62b525dc257c3b1b0c7e9964f93a7e5df6a2e4007','e990e43e7272c9d971fcc782768bea70c71d45fa7d712a7195bcc4151617a57f','422aca1d53d6f1cdabb33311ac6416c777f51a0f2964e2c9f8ccd40f5894e98e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'5d1e195a7d313d703253640cd98be600b04a7d98aae69b5327a29e740573198d','443444009d5700747b2d345cc10a70bf5a48214bc279d811a311ef76e52abf04','51b88cfe43063411950072a1f9a3529859a893b57b1f10f578725b072279a25b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'f38538a4a2cba9bcf8821b56e1dc877990e027135d3f220338cd8cb11f3eb205','abe72d22a1fb28e1ce34bfe3f1fd012d5a41fe219a0c4ee96f3b4b0e49aea889','641798f65a211495512814860dc526be35f6887724547aa27a257203cc2b2e38',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'3a51f1f061d953c940ac7e53f8bb37df041f2d4f42a16f5c5d23707b8b0c0dc6','8bea2f5ef9805bffa4b23881f7635ec213525f8dfe98aa45e716e43a73ffe114','b59cc514a2948e9f942fb18aff5acbc5686a7021b67fd5fbb8c1cb2ee11bde4b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'cce3284c53fcf79ba268d925e32ab70e3d4df1e6f13dbcbe2920e93fc689128b','d0e8a123b3125a8e057d8504b7a96e77188895c86907c273922b80e7e9ca42d2','657db356d2ffcb7ba632c7144241fe250361e09d32b93f551768e31502d614ae',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'6ad5172a6dcaa6706d5a4f6fd8ada183e103b9faab58e42c1365613a26477490','1c207ab28dd2c5d297f47d5ac366699523cd97ccfc8a3e348dbf6fe900c32b5d','bee135735ca1d013383b5fde88988a6f7e0155ec16c2d5ffaae49d6f4e0d6905',NULL,NULL,1);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'c9361fea7f3dd2415969eb6ad7fe893381c9ca65ea391f2e47a966e342db3a90','c0867554bd3d50cd8ca4bb6e2d055250fa0c3c46f47b5f03ce5022b7090e07d4','bb9d4b79d020195079c817aac5ae98987b3e9db4889667e69dc62fe454c25a14',NULL,NULL,1);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'f63680db66cf963aaaebf64130629790e7492b5ea9396434c2179a5eb8774412','6a3cc06342da18a8eae7180bd93af2cc3a6f7c51916a19265365814f52a58119','9953f0483df04bf7651d41fb34e95ecf36ef2195b8508e8e1525e4d1e872beea',NULL,NULL,1);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'d69ea243fcd5e525ae03af680d5610b654a9d2bad17782e196305aaa110a6ba9','7e4a0076ce614d5b7bcb0a59c84e79d21702a3507ba88bc0d8ce9e644d7fe692','b68e0765ebe5e98e0972ee993eb7ae5fc1178de01b68aa2e33966fb69ea2591c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'721906ed4cbd1524fafdc8e3ffef27d8b03e0c798bbcbe3eee7bc7f14afe4e81','c1596eb8c172f2968ddd2ef70c1a8f125ab989c1a7bb012ab56f6c75cd96bb41','e1edd85efb3d8302b64133ce5edac3cc3047c0b968b295f864e61dadc65cdcee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'27912da2afa797876030dd0e50c31aea462d54c7bfa4f89d2f14fdb7b80db6b0','2d653751a75829265f2cfe2dd7bcc3a594be62492893d36642e3c8815d339fbd','fdb48d0418b6e97e15f1beb3e755e001eccc2217100606217e003c3a86a27997',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'cc0734ecfd2bdbd2d04d236b853f60e324feaa9115fae33a8add961c4a5f9436','3d5c1eb8dafccfee04f7d91b2819d9f51a9fe8df4050c025c19c29ceb18b3575','88a9b5e14c5f63905f30734c91a2bfb61efe8e62ba88cf36a5242495487885b4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'d3f5fbbe85d5a81fef8735c73349f61a43122f4b6f3f7aa61215323a683ce3aa','e6600d6d90725ce81afdd7b00220f8df650f85dc3a308d2486fab88edaaa8981','ba94bc00c1246e08a641038398acddf181d667a726e0a054a570a95a91407055',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'74d08f0d1cad9f7102d0cfe70f50614c7ae7f4844ca6d02390031e1e96c2b418','341aa44dcd4967cc3356ca23c97111b1cf3ee128c944493a0ebc6458c4f119be','f4f014290c00eb6d1df157e203d82ed4bdd52aaa758dabdf3fd32ec3880c2b5c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'753a1a8bb877851ae24dbc33884344f34ee18c6b0d70a4d909231448b943e8cd','b9385290e5bd72f2a1a5d2cc889108a6da0aa888fdcf76170b166888c6301407','db8ea86a15db96b17b2d85a213bb157e6044ef311d40258dcb4e2030ee91546b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'f7c62d08a4efc854dea6f47249786d3d00778d97223dd84de1d0fd1eef3e2ee7','6c27a0cb80d8602b9ccd126f53bb69727d358353b4c1299434c3472b0469d85f','108cd055eb0f1f50883615c29d1f2f7e58a3ed849b381d6a13f5249cf3339d6c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'833690f195e85b427b61890640fe8f0cc7419e0f4301b6f4738bab12be06dbb8','cb3ca17e5c792309fead54d49039ee0e00e7b17291868a3a2e86e09bb3dae80e','a6321cefb0ec463ccef9562be2387263feab779731c65626aeb393b2fdde3886',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'a1e118474a6f70b8f700a67b43ee0272c4609d3309603b5be6434ca587eaa704','2f097bb1b1dff2b4266dcb3b46d29255401e23a2fcfb75f28e9f7184733e14bc','039c4c914fb56800d197a5eba14ff51734a5f39e848fb6a3d41bf811c34a1582',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'3b6427f61fb59ffd674ed8e0af75687fc4ccf8b462011727d4dc4bdf4c794775','be05766d9a1c70d8907d523979a313ccec8cf2900335fd91800b4b90da3bee12','e33abdd943a38b791ea9eedd1fecb1b25e17fb11ca5f434d1fb9c1a52e014b25',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'d065384f739c52a718f656717f88eb2fecc10d8567a93ccf823434c003d28c55','41cb2236ce676fd45ae98593c9cac6291fa95479ec07a5af615ccb5fbbeab760','5be7215f264b8f7977200c67689ceff9e2f14035280d424ae973855a8e689d7f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'22cddc8dbfcbaf4b851fa5379c740a96294acc3d772dcf6d684881bef18d7fbf','0beb88a3d4adbf913601c2d5144599cecfd48886ca51f995aecfeb50c56aab1c','70668b938741ae0f0dc76997b78268cebb0960bfd43fa6d043b648d3de84cf72',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'93172c51a9c4cb5c33937a199a32ad3c13a40a60f4c194a1187e2c59a15c0ccc','ea276540d3637a9165f482c48e414467e3a78c2c25c6a70bbed0c38f7205920e','b23bd50542786f46b18658498e048f11ecd3c4bab73ace2b1d41e72b3ef921e8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'7a167a13f7e576c7e066035dbe2a2513659f1386c095a9e63afa494c043b7def','15ef5d6175a7ce1937554ed6c2b10be6555aa14f7179245b7b140d1a620095fc','d236c4cc61ab09e7b0a2b20a2d8358002b4cdd8528edfad746df5f4156ebb8a5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'4733d9ada3d4f60bc09f0a6eba3fdcdcd8e8b18adfd38c7bf06372259e2d38f3','4ac5fe346b8577626d58c9442c95fccd4955506ac712ee3f27b5df6b7ec1d0df','b001901e32d2be5ffcf6722ad12d238cba23d17cf5903818c35fc4f1e111ea45',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'b8021bbe3744e58cedfc3dd99220fce48f4e56a8fe8256d7894dd55c7312a76d','acbb3114dc5c7599eabdaec4833952c3b6de20dde616233f3945151977d5be16','bcfde45a33ace1870169520291256debd57cd92191055b02b067ca9b359459d9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'017b79a5fb34785dd39964a61a5bde69d676f75ee085c27bbc9e3381983c2dab','6cbdfb2d6b3677c91097b1e80a32dafb0172725fabff370adcf444321ee48509','fe7e2286d95c9fedb3f426879324acf58b6b818e79fb76f672d77d9a052f33a0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'cf5389c037b6c619025bf95d9718fb5548cd67978c3ebf26f76029873828162e','a091876d90aaf1dd5b0d53403a3a9b5788710bf3d0c1996184a91961a1f24aa0','cf30fc0d3b3fcad9aa91035bdab67237d66928cfaffd8c6e9d5747ba7e730295',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'df116ea1fcf5f968644dcc97c1149f0ef6061b188fd56c27152543256ce79009','eafb7d2cbbb2d1afe4a3eb65ca6bc7be653d7d824238264082d2c5e382757e54','3967234a887552a7a446b28b1d71be584efe09d346e735477726fcb803d3ea06',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'c12cfaa984bfb34e781ac93848a87cdc0318c45a1cd9f02d31f5c3a4abe8d918','61cb811c578f90cd6cc9f6963ff80c280f6ad0edb53fe53dd3075a8818404fe8','b96d11bc51e12584035a7a14072443ebb4ab62cb43903ce3f93183f4489708ab',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'999a9ed2673de2db7637e22eb8a1876e0c794e90f09cdd76d1442e56ae12b1c8','ce9e3f0524576a630ed0154cf69c7798065a001e6752c4f369c30b06aebbe378','3ba540abdfe5bec9c2b07cacfbec12fd67312f884073e3f7a2e0138fd4c1d5d3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'240c9a2f6dc918ed868abfb5de6838d7a17f02263fdda0ccd3c7481c09e155d1','4f83f9bc531841759d1071a92ccda5d898af693fc88db0de16b2d2ca09630d59','657eaa5a6ca03f35197b063eff359fdd5c08e369a9675a2f2aefefae93a8adf7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'79836105e355e25afd709d15632e2c0d1ab53ab251cd3750ffee9fea4a2605b8','b17c5d4fc0eef05c315095d265b324a0ea7dee28145d7b4e251a944b4b6a16fb','67b525e65cdf790966a30fa8980229402ca894d989c8e04b368b39710cb486a1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'6bf0789392e97311c4283d9f748b37effe7b0d1678076e30ce5725eff345a8c5','f9f7ec8bdc9301d4ea41a099d04f84631badad709fdbdf43582327f183102590','d1189f782de3e9769c05abd81d1f7e13ff72ebae99f271958b33b84c1cecfeff',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'1842c46a03800f5e191cb8d641aead6bc80e6d25c2ec826f3a5df426059cc1cb','458e51569acd6ef757e0b36ab3f558e76f239ea3bfbf1b0ce7824f39ec5ac23b','3840a6172bb14e16efef4402c3a4f81667c97dc4a5ce48d90e60982f5bbaecb1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'d424b02109320491b2d32388869d6468ab1fca26d4bf72374cfef729efad866d','53e0972193c4f689d3a7216f22607a9b0cb7b8a9f43f144469bfbf25f59edb09','4e38733346bd60ded8f95932eb85b68c170ab5e0e62dcdbd28b66901ac96c1d0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'d1db4181403136b41168ab7786831f2fadfc418a05b7477246ab097bab531859','89bbd06ca16ed2098ac6b7accd2296b4e0a2d8236dbf1cc14137e90ebad364e3','036a2c57db183169924f171a954a33d5ec1cd430b5916bf071a0b587afaa7147',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'97fdb6b2c8e636d23109a67af55ab4bb30955a84073274de3fdc788074dc1b6b','8b8739b799483eb556e0e32f92cc092c349bb2bcb87044e88e762d55d6f1b033','3db2edc06e57d225d363f733a6539fed037aee88e16888ed16da58b7b692707a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'0506be4f04a22058504406210af3f1475dbf6d6834c1c1b7f6ac0fe013b47363','05673a7bf2fc7e9a5daf3732cb03bcf43712df43ef7ecf1bfe89d18f54726b6b','aa9e8f3e3d6febd2672bcdb086a690d656bf47a8817fc555f139c786b2530fd3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'3dc7894c1368c9ef5d32a95fdc292e7de8237b73b61365a25b9d0da95eedc2e6','4651aab35442e5ec1d79ba6422ca0c2b0df02369ee49b33efe1ef54e2ebc7080','f94db2dd80cde70db18382dffac1ed812f3d2d03c4a2b1f9feb972247e212525',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'a9ef2c8bf3a88c326d2bdd722c3d82ed4f4c10b65620b136d4b893ed93174795','d826fea28c0f5e82a6fbefae4d6885a0a49a3180d3c16d6eeb4faff9f57d4d89','2e774913f25b35ed4864bc24fdd94ca25a67cd9779d0c59e652a7fd22607010e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'13b76edecb04a9733107d5c21420ee20424fd463dcde2ea98424ad99ed3383f0','fe620dd60bf5b6f3c610495735deca47cdbfcbb510975ebba2f68c7df6d32a15','2f5072254be3d1ca2cf2c871f75d90c7ff0158014b26e0803daadb7f8ea1430e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'41c8a47d7bc4e73aa2f09685acb9fac052c5c55764ec3a8250abbbcde40dbe90','553ea196d7a1045f71dc6261cbfe4b84c78b7dc37de89b8865f4d385cbb42863','8337aa5515901276b768ee119463ff5e7cdb251b8517b47006cc734d70c5311f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'0b8ec211d258206ab8c318c079d9deb33d444a7086d5a05aaba97abc0be137df','c3fd7824c9b8413f24feb96ca676285447a980d684f730d10b81c06a440fab7a','ac5c07af4e8057be82c39a551bf2a0eaf6d9acf57658e3d13383dd66014727c5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'f5c2686408577854893d11b02f52d8ea917e90777dddf67c98aabb36a3339b6f','3f73e1d36c82dfc8ee58f83502643d962ba6558cbf0fb46d83fea966b5cdfc59','0bc06f8d5a42655c32b9d0a2faf5a15b638e7529721c1fc07562b8445458e72d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'b80d446905550494f56f4f8240b501d593b0d0e63b5d98a09e180b1a0a68e3b1','f1995db5beea80756d509ddf79d3467bb14ae96b0d151175499030505d1f648e','121aeaa7099e55f66f61bf5597e6c277106987c914283bfe3de59757c9dc5a53',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'41b30d23becc727151698b29a1bb733e45ae5086683c5256d073a6f817baaf49','de6a4e6bbd49de2001ce26387040970beeb7062b4e16911757204d2745f6c409','ad3dc31b4ef463b328c95e834f9fb14b8b2c0ccdc009a7570aa10ecd18c7cc47',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'f873f47e89715e965c98e92616339f8ff4200f6b8ef5cf747e8de2d101cbde02','f2954d07588b07ffc063170f43afbb12548fe61584575a979526d28dd631edaa','f49c03b535f3622c285a0c30dc16b1ab768477a919617e94558a766e8b0dd783',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'14ce21ebfe6a00eccd7bf1aac2d5cf122441d2ebe8c0f5fd6dd14a95b5a209b3','96b5675e5c3a3b66d7e2bd3424316119cf795c17bbbf2c8677b66872e4659574','8abb5b763837ecbe0ee9fcc3f199e14e0a5b7d3af2132dcf24ad69971ccf83ff',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'adb05bac5e7f1e6a1679d5c51f252dc877ebd99c2b73a56df69a9c848cef98a7','243e437b3c00d8106e8c9c2cb08d22376e8a16bd3b62a8b62b86128ddd6d139e','fd8f02cc9a32ede97914e157560a3d68ee7106ca7e7d2ab80f2397e39455cb85',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'9065476b6b2cfb122888e036cea71d36f3d5f7d6c72451c63d770b40a4560fac','4af47a042289756821ffb0b14aba38fcc8c972fd254220d3991b05642df641e6','237fab9675ab9d7b81399d8fefb8678ffd4dc2424b7089ed9c107c2437a0f9b9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'7d5d369827ec0cd44743ed9a519d45003789ff8dc2e511191d2726e1482f58d2','4d61dab0197a7a3f452f3751a92cb1f5378106a13be0351f0f8942d011da097d','a6ef9c531563e09b7fa26c58ef497218dd993107540fe47bce76770a8a7f92e5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'301b22a9338d5dd39bbebf6bf518ac53bbb8e1cf7469322484cbcee2fee666ef','ae0cf0361293deb7b8903f20aca2410197db694ea3aff0aec3b635690168f5a5','409af4673120ac3029d09fdf1b20a59e4d86d8c1922acfc0dc94f120c79bcbfd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'fc281736e1dfe5a89a9a3dd098565c645904a4ad1626dd70ac8e9bc447dfb8b8','460295c507a33a24231d1f4c760e5987b54f29d1e17bc97959db2a712f0339bf','f410e3c9f4d3381177946edaae6b1db4c84eb0118f0ce0bbcd2cac11b15221a1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'b0249a0dfd008a4554adc24085d3c5f44278403cbccb44ba27ee354b23c5627b','d07500b12517493106b918ff5b6c96c371bc10bb3699eb279647539ea7ab1fd5','546c9caf6f78f49dc560850474c3354eb4c8a80b3775ec147f78700a9f117e0e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'d34051879c8db679ac5c49e50edf2085d0ce88dfc1adb971e7b097c0177854c2','874e494499820bcc0ba41ac5cd1bd153ac1772f730c9b842b77b289adbb2c2f5','3e6dba3cc0c763aa7ca983d8f815aae7c993a51ee1db7a058c764f76fc821c7f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'0186c5312af19576cc628a85014ce7c33892dc23b5352c8ff5a0f230adfe263b','01342c18caeaea6b35f2d815b9aeffbd92228f6ad285103faa13cb25171fdfc6','179740d814b3143f9f9243c1afc800cabbcce38f4a3bff20d372f08eeb6f0768',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'5376530512d61c3967f21cf01418d317ed072976119b8583fefaf3991b93d8b2','72a7d63ad0b15a401210b197da00ca549b6e8c80d8eda1650cf9017bcbc92532','290e9835fd502c57d1d3b10c512789133df5c6caa128f4e64f53b016d06dc3d2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'d15fe704fe5de58e9203ff5ded50218a1a01609b65a1a259aec510b8b9e6d690','924753a39229b5005b684c4b2dd111b6233347b89179f2fd2732d256b960ace0','6d25cf33e13bf22ab1e3e0aa9e92bc6c70dfd3af45e3f2c1435855289369c2d0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'61015667044d0dddac3bdb16db67faa6ebcb71758101bfad898fca8ed183e7c3','298ed692f21afcee61b06fd853cf07e5707dbd63a05f0caff6b6a177edc3b613','37a72ebc94288c1526b9dd7ffc91a59b9fcfeddc28c7848efe86bf44ed5eaa31',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'5dd06f32075c46b6e573d73f12c1c31cf82cac5d1588bbdf302b8fe95c4b948b','528e4b6aee88202f84f9f2b56611d0aba2336d925b8d8fe47039504e6eea1ebc','1bd5f8cc1ec863a1eabcbc0e89dd96b86cf0b47a76ea553fae27a1f9b44a78f3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'8e1782c2f35a07fcc4c57b34b2226b70cc4c7af2761386f38fc8fd74d53d5e60','76682f0ffbc6b86d16fbcec967a7562f6f12558c12aa3d9abd8779f51cc870ab','ae84d3a2b80f3efcb466d2371fd67160de7b6a832d122ee80403f9e966190814',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'6469ff80c3890d274817d30602f33d5d4b0a7c0a9e3b85100d21d7b38d894efb','187e9ae8428d46b7f8c8d652ab31dcf7c86a574cc781714a71784857dc0d1365','c3eaa5ca861b8b1f550baee63c8210fc3fcca2e8326b968478c7fd435959d700',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'3ca73c2bf37c694281938a0599335633dccf0284a027f5f3b8e17a9e68cbcdf0','f7830250755fc0566ee5162a06e7308b51c9c0a7a951752be6cff224806a90fa','4b53c5f3f79be4d81443e9c774ced97b5a945a4ea630ee39796a6f18784874cd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'ae4a36e1ce7d5e11f059301684573cddce85b70ba69188a116e0611ceba5c140','8d3b4ed30546c5f19f5522a0f57a86c29159ce27bf9e1e183a5ecffd9fbae8a2','d3fb445eb5f1998a4f0490b187079d82a2522179d7fabd4aac10961120e8de5c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'c2c0b96c64f1ed555c8553da976e0fcc3a5ef403819ceac49cf22b476281ced1','d9ecf83f3f9f40246bee151938855fce34e0f9c636a5c9c2c80c896eb59287b9','53f48ccfd392fea120503dc3305b1a2425316a48760bdbd9eca17c1cde959319',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'88d1b09f8141b90b44740e4618422298f8a64f2b3d11230c6b04084ef8d11b2c','49e2f64485ac3ef523a079732bce9b2197384e2abfb3a4ad9340bca5a7179e31','d66811b6b4438b65cf403dbcf382e0a41cfcfe9bd4f0f7b95c2e061564e81ea7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'dab22ae7a9216033777136cbbac87a3597cf6478a2fd008260caab3cad0cde3f','5406c6e3c63633910da82fc039c525dbeeb1aa818dc450a9d34d43084eef680f','a07058ef1ba8c2a825e497f04e76c526294e8a4bd8e999c96cd195fec2266738',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'a185e60dc97d19a211b0dfaa3f3da154956499b4af146751bf1d776fc68c15b8','76e009b37822fc739a1e4abccf9f908a5fcdbed7fac540a719efbff8ebc694b7','be8805302f4e3ff5944af2e51e0eeb84680ee2fe6c5a976ba576b347998d8c73',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'622c574321be176c535fde918f319e10cfacaab383978be51406334303d14a8d','f3a3c37d89eb008f2194267a1eb5a7a52e9443f8b1f5fe51267d93a57eee27c7','1182b2e349f88f2df5119e7cbbd3ff6d9893ab5e00be067bc47d35b3f986d041',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'5556084b92f51175d4de4097fcd820a3c367c2f0630d3a20081296e892462d84','f284f757d004154b6ab9b9ee9d18281e6f8dd51f25f3f1fc7cc58450e0ba5f17','3398a844add370aa0b7661ed80a3d7090f730a0b1bb0a5943ed5f1383ace9234',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'fc9dd8ef92fc7d47b187a75bd16e9698d61fa9ce6b4da7bba75982f59b0fbbc5','e5f9da1d98725423a240687ba2985b42f8acb274ba0122b4e31e25c57619845f','c6f8b9023f4fb14abf10b405dfe416bb91386d12667871c8b128528162b27df4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'21f7329fa27373fba176043db9081b0d9f95f75421e5adce87177a3edffcedc0','7935ee6c215a123367ddfae34507170148723d08f1963aad7e47b68520fa4e70','74446399df111b44c653465cc75327752e252ed8686373b7266390d50a6707a8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'19164a10a0602df57d1add2e3a31ad4eef9d3ef9e53e70174b44aa91de2d6296','d35a417416c712908cdfbeda76e261a55c605ff8091605a79d4d4fc986ae76cd','8f42f7221255861ee5bd5ba65b281a071fab20f79c483ef92460f8e7d79beb9d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'87f1c713c5f2cd84fab28b996008900f86bf9eaad25ceedac1507348a949be7c','44c73622e27c362abf0460a5e0d7b836091523b763b6183cb9815cee30d66bef','051ccde9020819e5b7aa2c6f95ab716f1ac0fb7a905d31c67ee5352c8572ab3c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'75264a6a628d669a60b4a8ca7e24b6b5ef1ad2c74d955b8325959f906c3bc337','c1771520c57b0c705c3a5f0d576622c8dd40c399e4946b63ba153af976b23b0e','883f97a60b66fb64c61c49b1d08bbe3245988443c8da0f04180aaafe1aabc6bb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'27914e38b3ca9d8444275e5c6d24b5cfe0b4093f7c645d5c1fc3c39e0d3a3c60','329ae5ae96b71b9a116cb82d9518110e63d32a9dfcb6fece911201ab6c3a78c5','063389fad33e69fb1a37535b082d7605ceb64e2a98f2c157c4f072e6254b8c35',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'eca83e762899ace4d990b8acb23183263df5f92be10b63aecab3518b340b975d','6183465e58c5e5ef0f359a032e98d12cd247ff080ae44dc7a90ee35006e74e9e','cd07af393f202759c9752fede344e7b96e08767be4525e4530690dd32961e3b8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'3544fab97fe90a35b1f52ba955f88a8149d90329986df38d97e12992201bb187','407c0451107403f827f434f3f8f8e3c9adb33362ab584802d87903afe3851f4d','54e1bbd5d34dc103464f9254d73b99e2bb240ebf2981fd5e78c1778492442c58',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'df1e6d8f1be344f78c0b58baf7260c2abdbed3175adc45a122947815c08fcc16','d4bc7124f8beb9fe04930a1b19a66aef57669e6bf790a5d38441beefcc001dbf','1b3956b84c9076fa22fdd3350a85b27e0ac949495e18dcc9c2187e07d7e4a596',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'8b9febcfe1a9447f6a820c060f503dfe6e5c02738df4d9d63b007fe03847a6c7','7038d6f46cc32e35793799e50fbce7bde13c52c379e3bea10da0e6443a221c62','c35d50219e30573b4346080b362836e7aa84dfa6f4ce548e3f5c94f891b8e5cd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'b927091b4cf42f8537058a9adbec3814b574c1e1ccd242fe44c5f3671a191304','7640d47e11233c9d27a8e868bec5595acd99b3c7326a480298f7ea38c4a66689','173e9852974eacbeb6084725c5e9f300ea1e0eec8ee89eb63f822cb1cec8976f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'649d094cfc74f90e06bb4514276aaf3b0a0ed45f56397a2f774cae9602d02e6f','ce9cdd6db6e1bbea3a9446b50b092e504bcc58900befb237580896e1c107eaab','c063131b7b3e526fcd0d32784dd33bfbde81aaf84860d2fd128538891629ba59',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'c9a9dec300afba2cc3f171f76ff4c07cbeb7a41a86a3f498f712e066a8acbd17','7153d6b86e3d8ed76bed0edd2dbd4fe6200e1e6d82d51dd3f812d6b43109f503','8ae79287158f94c84d5945cb8833435518c91dba4c8e95036198369ac548b610',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'3c7434887f9373b5370664180ba640fa63c2eb5b85569875105e4f4db67d8c02','adfefb6d18cdf44329bf9330e32f265145f60290f2a75db73fea8dd8ed2eb7d6','a3e5b0bb7df3e0ec5a9e23f7abb2cb779e266038bc8e99e5d99a54c7516e6642',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'7e6a09386c3d8552a0dcc25b75143876a3046ebac0ff9cb09d6224ea7e2f3df9','2776deb848ce539546aada2bc1756d9de92b23e0a8d513f5dbfb1b0bb3be3bc5','adc0156efd0d146d632eb6ce494f365b5c2d40acc8c22f2138ee64bce753567b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'6903c0c5941f334f1374aa731e389b010043fc5940d4e9ae8b94480fb4fca030','6612c5f602f26ccc2cf4961f27e64c188ba405870cc0d7cf881c4e0fcb9a54ce','6be3d97c2fd4c161f247215c9fe17df2747c2adf80b1292294705ef636ca4d40',NULL,NULL,0);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cff3ba7c92f6b318eb4a4a5e2b90b655fc055d4e8a82101b813aef6e1c6152e4','9f6f20e36fd2b2b44df6e91fbfaeffc6d7fae9917b27d196245ee90c36d99ff1','e34cf3d8f2969e78eef50d68dedd6c97c987cffb56fac320ccf7b444e954c813',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2281de0177f4fcf8d730e2751d7b9fb5da4df741196bbcaff470c7860a2ca0b6','49836952844fe3f887e718d236efa6b1f4cc0b81cfc010f79a6349562ebfc162','f2f12869b75da9f58a31c1156ee42571b4c060589ff6bdef01ec3851fa4a9d58',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'802742a55d8ab83de24c45efb86d1daa0ad4e565cc4db6dcaa5cedb16ec4125f','017a0ddcf461ffcc3c89042ba6a6337efcc276c8f144daad445ba0e4a36bab33','4d33dbdcf0af53fb34c19807641fdf4151a190bb14fe21ad3dab4bc53989a28a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'ed279c6a985256134cfb39f1283ec97c8dc800b7255a3e8243ca9846884d0378','8ec458bf08abe2f3634eafac5af321f02cf5d470c2a87301b8061efe3dcc644f','cb25217db7a4ae17a295f847aafda153adc24f67e8475354bec53aa1bbefdcef',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'bba1ec90ee149be7d8a88ff9df1fca931e076e885be21bc822637829a8675e02','e2e334cb3c300e622a50d2c206fe532a3320f56c445dc1a9dec750417260fe9a','deac111f81e769502b94500b9ef8626fd2c6203198f7fd51d82267a01184e7a0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'5f8a9d465e686b3e9471041bd15d645b7fc8afee36ee890873aa6c3c51d87bb5','260ad7ae2e2b555f7adf9155fcb761e7ed7a2d22f128457db0f1ff363b498d64','a505a66c740529cdd8a5b685ceb24cc403626ffb4f6e6e2ae126ee92ae1010b4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'153795f1c7ae2dbec7fc19bb25d03dd518f0664bca82b9bb92bb7c4f1e22f040','c047baa686f8bf24c406cf03687c0b4fe6b95e4afe0b396e0f507a694fb10245','74f1ec6a8af3bd659896a94080f4a95ba73e835962aefeefc169819c54c9f5d8',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'c5d21baa8c6949a8e9f0d73a37436d431bf4876ab3b60b82553877ec53fc4454','d9532f5bdd583968d88ed24feb95b50c5e319d36171dd7bc6067ddf3d13c623c','795e66c4657593332a2de8d7dc8d6d780ea60ce935a73972fd9be099cad85a07',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'579de8204446e9128076fd27a644a82da77ca5ff2793ff56815c24a11218af5e','5b37c224e5684c0b3a913793e7e97c4f88b26b6c6d7683de8e06bb9485fba409','6e9fcce8f6a3cb387e8ed0f75d4c34fdd2bd04cbacbf29e5037e86c1a02c5df2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'c03a6e31f50f172c86029ce6a810ec730e1179ad3e76ba5d4290595ec414bb87','f81c6592f74098821e15c146c2a7e4a5be2cc743431d37a5fb6d4143b89907d5','93015fad6abcaeec7e64b9ac939f3d686c365f2aa21ef25fe835aab70165c9f8',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'804651f6571bb24ef7534c97116ae35fb0b6b31aa6a4574a419aae7fc2900b1c','3698516a21c2c590522e6419eae91ed8b469d922863141def1f3e295c4954dfd','1c71e31d13a1db84d1d3210591a1282cfdc810d32b87c2bbefcc8154de7546a2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'a9a18fcba1a83d637dcfd633f32848d55c86c5b499e0c15af6a626653b7424b8','deaaba2ecb1772901052ae6490a1015e75146af3b2707b1c148562deff91af49','ef70b586c4bc6a9e3136b64db7b36a32bb394189a064a694eaf7108c79fab899',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'27298dbdb9026b5d54228b686b7a76f9d42479da79b38b9ef7cd13e4fee27159','e409e7c7435482a64f10aaaaa6e62d69a4f0ae3083922c91907d6f15393dbb22','99d83b7a7cb9db6487d3a10b0a3ee91690948667d7696042234cc8158ce30663',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'f5fbbb8870bb8253cfba52c58765b8c2493ceee6a2db5779a4212ed456bf892e','78b492a743e24d50541f29a1a8e476434e81961bd457552c55fcbbac68d68fca','c75ef478918bdcd77cd2229bf91ef2d7312fc67496b84e528673b94ef1efb0be',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'f1e77a7a4d28d64a0cfd878112074b6205ef09055b93b8923b0c6466a07ea500','475ee3563b60fa5bbf8f8db5eabf9bdfea4a2f1b5fc82aedc37fa7c581c5f065','0c5504f7347d832a83338fd2c82d0879e01e3cffcc12d577a2c5f1bce3eae18d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'014bcc839c0ea0d2fecd9aab3074528ffee3b2dce7f805e4d459e2dfb3d98a51','5d40b180a3f3b38eedd15c7f40e8585aaa5e2fdde3967dff443a74703fa45fd4','eab4a29dc8927c9a399e40c8dad77dc6345cf53a2f9223ae08cb2254b73fbe9b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'9f72d6a84ee58e1e851a90a62b525dc257c3b1b0c7e9964f93a7e5df6a2e4007','e990e43e7272c9d971fcc782768bea70c71d45fa7d712a7195bcc4151617a57f','1175f933af404b894d599928a88a44801ffb7c991de94956c7d05717e8353f36',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'5d1e195a7d313d703253640cd98be600b04a7d98aae69b5327a29e740573198d','443444009d5700747b2d345cc10a70bf5a48214bc279d811a311ef76e52abf04','914fb3d5fab479382e6c224e26ebcd36e867ed3c667e26bad314b9eadbbe18d6',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'f38538a4a2cba9bcf8821b56e1dc877990e027135d3f220338cd8cb11f3eb205','abe72d22a1fb28e1ce34bfe3f1fd012d5a41fe219a0c4ee96f3b4b0e49aea889','b9d6d30aaeee490537a249a73c0b95d56cdb47780d64756f878561838b785230',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'3a51f1f061d953c940ac7e53f8bb37df041f2d4f42a16f5c5d23707b8b0c0dc6','8bea2f5ef9805bffa4b23881f7635ec213525f8dfe98aa45e716e43a73ffe114','aa4fc446acca13213b02b43cbfac832be287d77d408ab0e5f569b202cecee307',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'cce3284c53fcf79ba268d925e32ab70e3d4df1e6f13dbcbe2920e93fc689128b','d0e8a123b3125a8e057d8504b7a96e77188895c86907c273922b80e7e9ca42d2','3da0f56d98f2d15804c762b1b7f178198303f193b2cd2e00384d4b44f1e5ffd8',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'6ad5172a6dcaa6706d5a4f6fd8ada183e103b9faab58e42c1365613a26477490','1c207ab28dd2c5d297f47d5ac366699523cd97ccfc8a3e348dbf6fe900c32b5d','623ead14481f2c23d69aed1859f23de624c9b8076ec139480aaee298c5134648',NULL,NULL,1);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'c9361fea7f3dd2415969eb6ad7fe893381c9ca65ea391f2e47a966e342db3a90','c0867554bd3d50cd8ca4bb6e2d055250fa0c3c46f47b5f03ce5022b7090e07d4','9e700f536526f3d8b732a6584ce850fa8450bd6c6709faad69f34acc77ad3776',NULL,NULL,1);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'f63680db66cf963aaaebf64130629790e7492b5ea9396434c2179a5eb8774412','6a3cc06342da18a8eae7180bd93af2cc3a6f7c51916a19265365814f52a58119','9155dc75056569d35fead5ca2325335d529dd3352a64706fa129aecd33c58dce',NULL,NULL,1);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'d69ea243fcd5e525ae03af680d5610b654a9d2bad17782e196305aaa110a6ba9','7e4a0076ce614d5b7bcb0a59c84e79d21702a3507ba88bc0d8ce9e644d7fe692','78864ce118a6b397e3e201f6a8bff45ac11133df639014347b69454996e5604a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'721906ed4cbd1524fafdc8e3ffef27d8b03e0c798bbcbe3eee7bc7f14afe4e81','c1596eb8c172f2968ddd2ef70c1a8f125ab989c1a7bb012ab56f6c75cd96bb41','6affc572ab0583b1653f09c452ac6aadd1be130bf5c07f06cdbbafd9702a3627',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'27912da2afa797876030dd0e50c31aea462d54c7bfa4f89d2f14fdb7b80db6b0','2d653751a75829265f2cfe2dd7bcc3a594be62492893d36642e3c8815d339fbd','c51e667f584517b4c96b7a3f784a1d508f588d0f203f20914ffda390a9955710',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'cc0734ecfd2bdbd2d04d236b853f60e324feaa9115fae33a8add961c4a5f9436','3d5c1eb8dafccfee04f7d91b2819d9f51a9fe8df4050c025c19c29ceb18b3575','827a7b7bfb702c7723f626adba352f625d232cbfb69069694c935c1c9c213427',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'d3f5fbbe85d5a81fef8735c73349f61a43122f4b6f3f7aa61215323a683ce3aa','e6600d6d90725ce81afdd7b00220f8df650f85dc3a308d2486fab88edaaa8981','e28265acf72abd9e2e1640e135cbca8d4bd04aec2de959f7dfd7177d2dbe5df0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'74d08f0d1cad9f7102d0cfe70f50614c7ae7f4844ca6d02390031e1e96c2b418','341aa44dcd4967cc3356ca23c97111b1cf3ee128c944493a0ebc6458c4f119be','fbd9b3a5e935168cd77253901e2e487144e18db8a9edb9c079653b61e141f584',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'753a1a8bb877851ae24dbc33884344f34ee18c6b0d70a4d909231448b943e8cd','b9385290e5bd72f2a1a5d2cc889108a6da0aa888fdcf76170b166888c6301407','636beda8065dced60a15b93f698312b1205303e89e440054f47f30d3806cae64',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'f7c62d08a4efc854dea6f47249786d3d00778d97223dd84de1d0fd1eef3e2ee7','6c27a0cb80d8602b9ccd126f53bb69727d358353b4c1299434c3472b0469d85f','0b089ba8e2c07f64e5275a19c72e23717c2f6615e41787e9fe484a3ad95ecd1f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'833690f195e85b427b61890640fe8f0cc7419e0f4301b6f4738bab12be06dbb8','cb3ca17e5c792309fead54d49039ee0e00e7b17291868a3a2e86e09bb3dae80e','0613fdf8179c40a496e175e4650066c352531c47db27800599c58aa367de8deb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'a1e118474a6f70b8f700a67b43ee0272c4609d3309603b5be6434ca587eaa704','2f097bb1b1dff2b4266dcb3b46d29255401e23a2fcfb75f28e9f7184733e14bc','2f23e44306cdf377f80b08b032eae1a1b4784abed44d12a2ac67a7a585565bb9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'3b6427f61fb59ffd674ed8e0af75687fc4ccf8b462011727d4dc4bdf4c794775','be05766d9a1c70d8907d523979a313ccec8cf2900335fd91800b4b90da3bee12','dec5e3a86f2072ce434785271240c70984fcaba5b19f7bc33755d1700f81fafe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'d065384f739c52a718f656717f88eb2fecc10d8567a93ccf823434c003d28c55','41cb2236ce676fd45ae98593c9cac6291fa95479ec07a5af615ccb5fbbeab760','05d70ee9655f79e42a6afe31be67c186c88cacb58a11c0ff890b1456bef081e3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'22cddc8dbfcbaf4b851fa5379c740a96294acc3d772dcf6d684881bef18d7fbf','0beb88a3d4adbf913601c2d5144599cecfd48886ca51f995aecfeb50c56aab1c','f18df71f40fed5ae0d51f0c9e86730bec7481f5f1d42edab3b43ac8432ff21bd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'93172c51a9c4cb5c33937a199a32ad3c13a40a60f4c194a1187e2c59a15c0ccc','ea276540d3637a9165f482c48e414467e3a78c2c25c6a70bbed0c38f7205920e','78e67095cf665c1de0b2af21f2165790b1417274feecd81456347f6cfb6c9ab6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'7a167a13f7e576c7e066035dbe2a2513659f1386c095a9e63afa494c043b7def','15ef5d6175a7ce1937554ed6c2b10be6555aa14f7179245b7b140d1a620095fc','c039524f327b7a85c87da066d6c888e7db7320268025a7c4848205af1420740f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'4733d9ada3d4f60bc09f0a6eba3fdcdcd8e8b18adfd38c7bf06372259e2d38f3','4ac5fe346b8577626d58c9442c95fccd4955506ac712ee3f27b5df6b7ec1d0df','a92cd8e4412d0da2a8c8f8004614b64b31a9393e1069d2a2bdab3838e176e76c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'b8021bbe3744e58cedfc3dd99220fce48f4e56a8fe8256d7894dd55c7312a76d','acbb3114dc5c7599eabdaec4833952c3b6de20dde616233f3945151977d5be16','f90e6dfbc029264f89c00090f608e58489bb9e6823efb114b2872114a62af866',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'017b79a5fb34785dd39964a61a5bde69d676f75ee085c27bbc9e3381983c2dab','6cbdfb2d6b3677c91097b1e80a32dafb0172725fabff370adcf444321ee48509','6ef27739cbb44fbec1f834c103cf6a7fdcf7a810a99d231ce6f7e2d1a308255f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'cf5389c037b6c619025bf95d9718fb5548cd67978c3ebf26f76029873828162e','a091876d90aaf1dd5b0d53403a3a9b5788710bf3d0c1996184a91961a1f24aa0','714689f948fd44867292f758edc7deb1d760d0436623b44a621f75bf4bca39d4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'df116ea1fcf5f968644dcc97c1149f0ef6061b188fd56c27152543256ce79009','eafb7d2cbbb2d1afe4a3eb65ca6bc7be653d7d824238264082d2c5e382757e54','603e460fd6b1161f30ba21885046af008af9b605159052f0e98e8825519ba2e7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'c12cfaa984bfb34e781ac93848a87cdc0318c45a1cd9f02d31f5c3a4abe8d918','61cb811c578f90cd6cc9f6963ff80c280f6ad0edb53fe53dd3075a8818404fe8','57fd0e4696e43a7d7bb8fa26f243319f1e82833ff1e1e3ef61761f4a1d6c1864',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'999a9ed2673de2db7637e22eb8a1876e0c794e90f09cdd76d1442e56ae12b1c8','ce9e3f0524576a630ed0154cf69c7798065a001e6752c4f369c30b06aebbe378','df129d2913a58f5186cd0b2b5b7f5d7769698ce730314dd80db18f10976381db',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'240c9a2f6dc918ed868abfb5de6838d7a17f02263fdda0ccd3c7481c09e155d1','4f83f9bc531841759d1071a92ccda5d898af693fc88db0de16b2d2ca09630d59','4e07f32943f702131817b662d2c3ffe3cd796368ef4f73e48439c9eb02939a4e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'79836105e355e25afd709d15632e2c0d1ab53ab251cd3750ffee9fea4a2605b8','b17c5d4fc0eef05c315095d265b324a0ea7dee28145d7b4e251a944b4b6a16fb','05fb8afd82b430088303ec8ad4e865c81b504b1443e524b67af7e09a83f9c086',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'6bf0789392e97311c4283d9f748b37effe7b0d1678076e30ce5725eff345a8c5','f9f7ec8bdc9301d4ea41a099d04f84631badad709fdbdf43582327f183102590','96ae5e483fa7eb49f9d1750aa0c19a550e24f9c157be12641d6ce9ffe7fc98a3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'1842c46a03800f5e191cb8d641aead6bc80e6d25c2ec826f3a5df426059cc1cb','458e51569acd6ef757e0b36ab3f558e76f239ea3bfbf1b0ce7824f39ec5ac23b','d08178883b6f4531d41d2e3b87bf8fc6ec60b894b457220f02c178e2f0e9ad53',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'d424b02109320491b2d32388869d6468ab1fca26d4bf72374cfef729efad866d','53e0972193c4f689d3a7216f22607a9b0cb7b8a9f43f144469bfbf25f59edb09','9c8ff110093c5f2dac33bfc29bff548774965b5c2ac9dd3db577d54d9ac8b877',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'d1db4181403136b41168ab7786831f2fadfc418a05b7477246ab097bab531859','89bbd06ca16ed2098ac6b7accd2296b4e0a2d8236dbf1cc14137e90ebad364e3','6f8f9e6db4aec069909f11ab4e236402bf83c5fcacd2d904e7efc22a67dea365',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'97fdb6b2c8e636d23109a67af55ab4bb30955a84073274de3fdc788074dc1b6b','8b8739b799483eb556e0e32f92cc092c349bb2bcb87044e88e762d55d6f1b033','1d3bf43cf1894650df05b52dbfefcee4890ec800b128c70a86e8ffdc142231f1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'0506be4f04a22058504406210af3f1475dbf6d6834c1c1b7f6ac0fe013b47363','05673a7bf2fc7e9a5daf3732cb03bcf43712df43ef7ecf1bfe89d18f54726b6b','bfd798abe2d6a96c3a49465159876cc1f1f24ac4726ee865e925b1d8a3c717fc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'3dc7894c1368c9ef5d32a95fdc292e7de8237b73b61365a25b9d0da95eedc2e6','4651aab35442e5ec1d79ba6422ca0c2b0df02369ee49b33efe1ef54e2ebc7080','1c61644d099e237a4f81be83ffa963fe9d6035f475fdc848c98564e2f54851b5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'a9ef2c8bf3a88c326d2bdd722c3d82ed4f4c10b65620b136d4b893ed93174795','d826fea28c0f5e82a6fbefae4d6885a0a49a3180d3c16d6eeb4faff9f57d4d89','a060cf630cb9ea9d3323991699ef1d3729615d3c5c96d88cd762dee0fd536702',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'13b76edecb04a9733107d5c21420ee20424fd463dcde2ea98424ad99ed3383f0','fe620dd60bf5b6f3c610495735deca47cdbfcbb510975ebba2f68c7df6d32a15','6a9de88b55f133208cb74555bc17202b2e369ae05317ac44b9609c6be277b894',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'41c8a47d7bc4e73aa2f09685acb9fac052c5c55764ec3a8250abbbcde40dbe90','553ea196d7a1045f71dc6261cbfe4b84c78b7dc37de89b8865f4d385cbb42863','0ebef95e7af00e825fed2b9ec7bfac3b75e2a4d6d4e8d2fcd1be32466e400314',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'0b8ec211d258206ab8c318c079d9deb33d444a7086d5a05aaba97abc0be137df','c3fd7824c9b8413f24feb96ca676285447a980d684f730d10b81c06a440fab7a','81b77dc97c9febc824bc9d8ab08c75d04ced65707c217066634dba9d655a79c2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'f5c2686408577854893d11b02f52d8ea917e90777dddf67c98aabb36a3339b6f','3f73e1d36c82dfc8ee58f83502643d962ba6558cbf0fb46d83fea966b5cdfc59','1517b49569ad5aaf4b3ada4f6b5d7c2f40be41ea51d477d6f705363ec22cc8b1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'b80d446905550494f56f4f8240b501d593b0d0e63b5d98a09e180b1a0a68e3b1','f1995db5beea80756d509ddf79d3467bb14ae96b0d151175499030505d1f648e','fbacb5df11579446cfe22910ca43521a0ba4f20c0ef4f50529c54718ec117c7e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'41b30d23becc727151698b29a1bb733e45ae5086683c5256d073a6f817baaf49','de6a4e6bbd49de2001ce26387040970beeb7062b4e16911757204d2745f6c409','dd05dc53bf40ea738bc520430a6deb25cbb7d5771d077d8e3a09cbea4446800f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'f873f47e89715e965c98e92616339f8ff4200f6b8ef5cf747e8de2d101cbde02','f2954d07588b07ffc063170f43afbb12548fe61584575a979526d28dd631edaa','0cacb3f54ca81f783e0ab0859b202c4addb10544083e7709a7cb3454ed8e8efc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'14ce21ebfe6a00eccd7bf1aac2d5cf122441d2ebe8c0f5fd6dd14a95b5a209b3','96b5675e5c3a3b66d7e2bd3424316119cf795c17bbbf2c8677b66872e4659574','5e6809578b7600188094c773afb02a8079d09f7be6dee3b8214839142ee65afe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'adb05bac5e7f1e6a1679d5c51f252dc877ebd99c2b73a56df69a9c848cef98a7','243e437b3c00d8106e8c9c2cb08d22376e8a16bd3b62a8b62b86128ddd6d139e','cd6aee357ca42dba8ff4250ed8bd069e4d0855cc6ea9abeba4fb07e46917ca8e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'9065476b6b2cfb122888e036cea71d36f3d5f7d6c72451c63d770b40a4560fac','4af47a042289756821ffb0b14aba38fcc8c972fd254220d3991b05642df641e6','8c59a14fd3231936199eba5628f8b3ef6ff898ec1dae67431ee574fff8ab6db7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'7d5d369827ec0cd44743ed9a519d45003789ff8dc2e511191d2726e1482f58d2','4d61dab0197a7a3f452f3751a92cb1f5378106a13be0351f0f8942d011da097d','5b94fbbbd4a8629cf7a25bbf42ab82b7860eecdb05cc8c7d3b6c3c09ec8b51fb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'301b22a9338d5dd39bbebf6bf518ac53bbb8e1cf7469322484cbcee2fee666ef','ae0cf0361293deb7b8903f20aca2410197db694ea3aff0aec3b635690168f5a5','4f3d0952941025cf22e983d89437b3c1edcb7da0bd3c919740235b095454178f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'fc281736e1dfe5a89a9a3dd098565c645904a4ad1626dd70ac8e9bc447dfb8b8','460295c507a33a24231d1f4c760e5987b54f29d1e17bc97959db2a712f0339bf','8c23ac2fd5238c72ee1ff3cc59553beafa800332aa3c2f839850f2f19d1fb742',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'b0249a0dfd008a4554adc24085d3c5f44278403cbccb44ba27ee354b23c5627b','d07500b12517493106b918ff5b6c96c371bc10bb3699eb279647539ea7ab1fd5','a469ec5f0bac890b8983e2c577e6f70aebea60fbf60110b3b9a0499ba143a31c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'d34051879c8db679ac5c49e50edf2085d0ce88dfc1adb971e7b097c0177854c2','874e494499820bcc0ba41ac5cd1bd153ac1772f730c9b842b77b289adbb2c2f5','f64c00b3803d4ed0897b2019ffc9a6ae6d6ff5ca900f901ff97bef9d32936c70',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'0186c5312af19576cc628a85014ce7c33892dc23b5352c8ff5a0f230adfe263b','01342c18caeaea6b35f2d815b9aeffbd92228f6ad285103faa13cb25171fdfc6','62bb2badcd7c376dd59f2bb55f1e5c439b32971cd54bb6116678251fe17a94c8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'5376530512d61c3967f21cf01418d317ed072976119b8583fefaf3991b93d8b2','72a7d63ad0b15a401210b197da00ca549b6e8c80d8eda1650cf9017bcbc92532','97df614eaef187b9cac1010ae8b47cf9e9a9b3071d2b5eb4ac07d4d5a2303255',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'d15fe704fe5de58e9203ff5ded50218a1a01609b65a1a259aec510b8b9e6d690','924753a39229b5005b684c4b2dd111b6233347b89179f2fd2732d256b960ace0','fc69b2a194e31e2c1bebc2f45c01768c1cb8020230be272b657450a4d0c3d185',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'61015667044d0dddac3bdb16db67faa6ebcb71758101bfad898fca8ed183e7c3','298ed692f21afcee61b06fd853cf07e5707dbd63a05f0caff6b6a177edc3b613','be820504eced707b7dc61f3725fd36d05b6264e89b1d465e8eec9e168fa81146',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'5dd06f32075c46b6e573d73f12c1c31cf82cac5d1588bbdf302b8fe95c4b948b','528e4b6aee88202f84f9f2b56611d0aba2336d925b8d8fe47039504e6eea1ebc','810e52710c97026f8cb61ee50f1368103e4df21636b9aa432397bdcc00b4bfa9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'8e1782c2f35a07fcc4c57b34b2226b70cc4c7af2761386f38fc8fd74d53d5e60','76682f0ffbc6b86d16fbcec967a7562f6f12558c12aa3d9abd8779f51cc870ab','ae25ca0277fc33f75f17767762036f55b49f6722743c7e4ecbfe72e09bc702e5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'6469ff80c3890d274817d30602f33d5d4b0a7c0a9e3b85100d21d7b38d894efb','187e9ae8428d46b7f8c8d652ab31dcf7c86a574cc781714a71784857dc0d1365','52e35a802a0df97ab70b4e1f2777aeadf40db5e127637964dc433641d0deb52d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'3ca73c2bf37c694281938a0599335633dccf0284a027f5f3b8e17a9e68cbcdf0','f7830250755fc0566ee5162a06e7308b51c9c0a7a951752be6cff224806a90fa','b84542bf35868e749c26374c6d49188f71646950df4c5e148b2794b7e12fc43b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'ae4a36e1ce7d5e11f059301684573cddce85b70ba69188a116e0611ceba5c140','8d3b4ed30546c5f19f5522a0f57a86c29159ce27bf9e1e183a5ecffd9fbae8a2','cf1e6d2f8230e4b520967669c5ecb25097cea49050928d9d43fd75e5df7d327f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'c2c0b96c64f1ed555c8553da976e0fcc3a5ef403819ceac49cf22b476281ced1','d9ecf83f3f9f40246bee151938855fce34e0f9c636a5c9c2c80c896eb59287b9','5cf30a3ceed0d709cb0b5c39eb5028531a9d80bfbd9cb5d7ea17581c3c069882',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'88d1b09f8141b90b44740e4618422298f8a64f2b3d11230c6b04084ef8d11b2c','49e2f64485ac3ef523a079732bce9b2197384e2abfb3a4ad9340bca5a7179e31','4482a13c9bea52d65ee94adfb69aac0bee89623b4520913934a7c9c6a5f3e1de',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'dab22ae7a9216033777136cbbac87a3597cf6478a2fd008260caab3cad0cde3f','5406c6e3c63633910da82fc039c525dbeeb1aa818dc450a9d34d43084eef680f','51101fc829c2b78e2d0593dc5773c73fb7dabaf514fcd7dee977cb08c9421b34',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'a185e60dc97d19a211b0dfaa3f3da154956499b4af146751bf1d776fc68c15b8','76e009b37822fc739a1e4abccf9f908a5fcdbed7fac540a719efbff8ebc694b7','9b392f76b8224d5eec7db732a198ee87b3260852f8baba95185b7ddb67a39a92',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'622c574321be176c535fde918f319e10cfacaab383978be51406334303d14a8d','f3a3c37d89eb008f2194267a1eb5a7a52e9443f8b1f5fe51267d93a57eee27c7','fe483b13911d5128e3cdf7fbf65c7d7b33e88ce236f61e8c371334188a0ee673',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'5556084b92f51175d4de4097fcd820a3c367c2f0630d3a20081296e892462d84','f284f757d004154b6ab9b9ee9d18281e6f8dd51f25f3f1fc7cc58450e0ba5f17','9d62620e8e0b2ebb2846ad244ea34458a8ef8031469188571dfeba769a3a5da7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'fc9dd8ef92fc7d47b187a75bd16e9698d61fa9ce6b4da7bba75982f59b0fbbc5','e5f9da1d98725423a240687ba2985b42f8acb274ba0122b4e31e25c57619845f','e36b2420ada93acbebb22a2b3d4fb8324af81f862a4f3bee9c16976ea9804c39',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'21f7329fa27373fba176043db9081b0d9f95f75421e5adce87177a3edffcedc0','7935ee6c215a123367ddfae34507170148723d08f1963aad7e47b68520fa4e70','b5f798a239f4152608d82265d035add67b2b8bc5a593024a87f3173d7ffc6007',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'19164a10a0602df57d1add2e3a31ad4eef9d3ef9e53e70174b44aa91de2d6296','d35a417416c712908cdfbeda76e261a55c605ff8091605a79d4d4fc986ae76cd','83f30b14f9a0153ad52089488c36a948017b2cd2abab7f2502b2c8a7f1e159dd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'87f1c713c5f2cd84fab28b996008900f86bf9eaad25ceedac1507348a949be7c','44c73622e27c362abf0460a5e0d7b836091523b763b6183cb9815cee30d66bef','3a95521b8d9fe32cf6061c904fae948e3a4ebd1a18d734d43fb944023ab92e4d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'75264a6a628d669a60b4a8ca7e24b6b5ef1ad2c74d955b8325959f906c3bc337','c1771520c57b0c705c3a5f0d576622c8dd40c399e4946b63ba153af976b23b0e','1ead8c1166b2720988979e2274b287f6409fd6f8b68bf7d9ba730d37be4ac3e0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'27914e38b3ca9d8444275e5c6d24b5cfe0b4093f7c645d5c1fc3c39e0d3a3c60','329ae5ae96b71b9a116cb82d9518110e63d32a9dfcb6fece911201ab6c3a78c5','4b5fe8d7693ddc79f5d2ba024807838779813bfe2dad8467ec90090a75abc8b5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'eca83e762899ace4d990b8acb23183263df5f92be10b63aecab3518b340b975d','6183465e58c5e5ef0f359a032e98d12cd247ff080ae44dc7a90ee35006e74e9e','f0bf250e00a2ac9cc3fb758f41cbcfdeb3828ad8c09a5e1b089335f97c686f8e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'3544fab97fe90a35b1f52ba955f88a8149d90329986df38d97e12992201bb187','407c0451107403f827f434f3f8f8e3c9adb33362ab584802d87903afe3851f4d','2647f9675bc9aef4c5810a0d37259488b99cf6eb3ff1c88164d30aac19df4a28',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'df1e6d8f1be344f78c0b58baf7260c2abdbed3175adc45a122947815c08fcc16','d4bc7124f8beb9fe04930a1b19a66aef57669e6bf790a5d38441beefcc001dbf','c6603b3ad9264f282f3f4c95b65a5bd68445c51847a44d5df2902f57ea7771ab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'8b9febcfe1a9447f6a820c060f503dfe6e5c02738df4d9d63b007fe03847a6c7','7038d6f46cc32e35793799e50fbce7bde13c52c379e3bea10da0e6443a221c62','586bba54ddbd352c7b58308253bcc354b178d99d988f9d2d0645acd1120c1f4b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'b927091b4cf42f8537058a9adbec3814b574c1e1ccd242fe44c5f3671a191304','7640d47e11233c9d27a8e868bec5595acd99b3c7326a480298f7ea38c4a66689','dad021e3e421756b962576b700d8a73ab057bcaa21f536d57200f38945612fc9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'649d094cfc74f90e06bb4514276aaf3b0a0ed45f56397a2f774cae9602d02e6f','ce9cdd6db6e1bbea3a9446b50b092e504bcc58900befb237580896e1c107eaab','9248b84e4d356487ee97784f5437a907150f76998f52b915f1265dff11c06e58',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'c9a9dec300afba2cc3f171f76ff4c07cbeb7a41a86a3f498f712e066a8acbd17','7153d6b86e3d8ed76bed0edd2dbd4fe6200e1e6d82d51dd3f812d6b43109f503','01c8951e997d5633836b621f7778099959f961cb95c443eb0ae310a5b5295311',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'3c7434887f9373b5370664180ba640fa63c2eb5b85569875105e4f4db67d8c02','adfefb6d18cdf44329bf9330e32f265145f60290f2a75db73fea8dd8ed2eb7d6','684ff321efef12a06017502ff5d3c288cb3fe021503127d9a805b96613224b6d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'7e6a09386c3d8552a0dcc25b75143876a3046ebac0ff9cb09d6224ea7e2f3df9','2776deb848ce539546aada2bc1756d9de92b23e0a8d513f5dbfb1b0bb3be3bc5','fc34584264cb48162482623fb22805123c6d42a309a1e3b717bbafbf5dda66f8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'6903c0c5941f334f1374aa731e389b010043fc5940d4e9ae8b94480fb4fca030','6612c5f602f26ccc2cf4961f27e64c188ba405870cc0d7cf881c4e0fcb9a54ce','53165a6a7eb5bef338ac5509678ec395a1821a1db21de30d49ddaffa33c58abb',NULL,NULL,0);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -149,32 +149,33 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1);
-INSERT INTO transactions VALUES(3,'c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1);
-INSERT INTO transactions VALUES(4,'89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1);
-INSERT INTO transactions VALUES(5,'f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000BC953EB18873CE8AED42456DF0ECE8E4678E13282D9917916E7A4AEC10E82837589A44A3314B298A83D5D14C8646900A5122B8A1E8F6E0528E73EA82044D1726A',1);
-INSERT INTO transactions VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1);
-INSERT INTO transactions VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1);
-INSERT INTO transactions VALUES(8,'b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1);
-INSERT INTO transactions VALUES(9,'592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1);
-INSERT INTO transactions VALUES(10,'f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1);
-INSERT INTO transactions VALUES(11,'a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1);
-INSERT INTO transactions VALUES(12,'9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1);
-INSERT INTO transactions VALUES(13,'ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(14,'ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(15,'6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(16,'10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(17,'caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(18,'67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(19,'e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(20,'1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(21,'dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(22,'4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1);
-INSERT INTO transactions VALUES(23,'181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1);
-INSERT INTO transactions VALUES(24,'f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1);
+INSERT INTO transactions VALUES(1,'15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'750ccad1bc0bfbf5a710bbafd8b462594ddfee190e3430bca7e8c8d270f2fd5f:0');
+INSERT INTO transactions VALUES(2,'121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,'a91d2e8deef46214f4c9b8aebb35b6d8807f2a400c2fb6fbf3fb47442d7ea39c:0');
+INSERT INTO transactions VALUES(3,'c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'4c3b65c423a0600af4c17f48fc9f8443e1e7918f419478a53d22f14b793ab4b3:0');
+INSERT INTO transactions VALUES(4,'89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'e108001c44f040df19f8e751538a100b2dfbe606f72e8e359794e9c05bc3f52e:0');
+INSERT INTO transactions VALUES(5,'f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000BC953EB18873CE8AED42456DF0ECE8E4678E13282D9917916E7A4AEC10E82837589A44A3314B298A83D5D14C8646900A5122B8A1E8F6E0528E73EA82044D1726A',1,'2fd391aa096ca17e07a6dd0f8cf70121cb8c7c542d17254f34d5c302093a4e3e:0');
+INSERT INTO transactions VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'c06c060767776b7f09c3eed96bea1466a3d9f49c4d00d16cfc4049bd45821fb3:0');
+INSERT INTO transactions VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'70e7cfe725accafbee3f35946c1a5d4ab2aa80adcfb17a0aed6af3e79278a848:0');
+INSERT INTO transactions VALUES(8,'b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,'d36f95f3a8fb5852f28ff84250bd92661ec31fce6d5b1505455279e2c9826ec8:0');
+INSERT INTO transactions VALUES(9,'592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,'f436cbcb20522b45ba9c40785725c876d3a520a4f3f683d08d6c24a4e6c1563e:0');
+INSERT INTO transactions VALUES(10,'f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'0d302299946d398d35a9735af378054a896a17db28edcc87586ec5ff530520e2:0');
+INSERT INTO transactions VALUES(11,'a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'3704b23673489a138f7021044edddab7f1d94a14e12aedfd5a736d331a7d4495:0');
+INSERT INTO transactions VALUES(12,'9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'23f74e8488b875442229dff279f819780d8051c845960fb4eb71585e8ea0ba47:0');
+INSERT INTO transactions VALUES(13,'ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'edbd203a595616cf0285a982c3f85d998f302ade18b011fd847adba54b508001:0');
+INSERT INTO transactions VALUES(14,'ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'70125234408f91cf05af61871ec76164b8676907ba299908cb2ddbaaa3cd2fb1:0');
+INSERT INTO transactions VALUES(15,'6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'e1eb255cd51ddda8caa319a7690a45fb5385f1ee33bfc8d5011e442434cd4e11:0');
+INSERT INTO transactions VALUES(16,'10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'534148dc2423208b93e138f110e12734d45b678bb534ad1aed2bd50f9d5e21a7:0');
+INSERT INTO transactions VALUES(17,'caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'0c3c3475ad1a79c2fe673603bb38447ee12b478094e9e51e99fa6c06f7e72ae8:0');
+INSERT INTO transactions VALUES(18,'67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'bf7acc19b878a8ceadfb1ea2bff6fa3a692e1e8599869a85e45ff316ecf0f92b:0');
+INSERT INTO transactions VALUES(19,'e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'17063806c5eeb2cc730ab380dc0ebd3ebeedd5fbe5c502eaaf46b065d901dd2b:0');
+INSERT INTO transactions VALUES(20,'1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'ff1c30c31e2e0b511c508c7111d22d77fdbb4f20379d49042bef4e231b9c098b:0');
+INSERT INTO transactions VALUES(21,'dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'2e07fb3dfdafff224b0cb92d718788af96b51014f621e726986b11b9113ae3f8:0');
+INSERT INTO transactions VALUES(22,'4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'168840008f0acd950b58778bb6ee9d625b19dde6fc5a85f02a787aa78d541341:0');
+INSERT INTO transactions VALUES(23,'181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'a64251be6598696807b458ee6811a35eefdcd8170ab68e36c37d1c5b0bb84350:0');
+INSERT INTO transactions VALUES(24,'f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,'806ec51cd29841b7bb12b0cb41cf9678b3e3e26f9a95d5aeba5e0868330b8e60:0');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -222,51 +223,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -278,6 +279,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -296,51 +301,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -352,6 +357,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -373,34 +382,34 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,'burn','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399',1);
-INSERT INTO credits VALUES(310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'send','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',2);
-INSERT INTO credits VALUES(310004,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',100000000,'btcpay','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6',5);
-INSERT INTO credits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,'issuance','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',6);
-INSERT INTO credits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,'issuance','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',7);
-INSERT INTO credits VALUES(310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'send','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',8);
-INSERT INTO credits VALUES(310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'send','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',9);
-INSERT INTO credits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',24,'dividend','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',10);
-INSERT INTO credits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',420800,'dividend','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',11);
-INSERT INTO credits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',4250000,'filled','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',14);
-INSERT INTO credits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',5000000,'cancel order','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',0);
-INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',16);
-INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',16);
-INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',18);
-INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',18);
-INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',59137500,'bet settled: liquidated for bear','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',19);
-INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',3112500,'feed fee','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',19);
-INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',159300000,'bet settled','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',20);
-INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',315700000,'bet settled','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',20);
-INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'feed fee','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',20);
-INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',1330000000,'bet settled: for notequal','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',21);
-INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',70000000,'feed fee','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',21);
-INSERT INTO credits VALUES(310022,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',56999887262,'burn','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01',23);
-INSERT INTO credits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',8500000,'recredit wager remaining','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',0);
-INSERT INTO credits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'send','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',24);
-INSERT INTO credits VALUES(310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',0);
+INSERT INTO credits VALUES(310000,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,'burn','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'send','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',2,NULL,NULL);
+INSERT INTO credits VALUES(310004,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',100000000,'btcpay','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6',5,NULL,NULL);
+INSERT INTO credits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,'issuance','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',6,NULL,NULL);
+INSERT INTO credits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,'issuance','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',7,NULL,NULL);
+INSERT INTO credits VALUES(310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'send','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'send','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',9,NULL,NULL);
+INSERT INTO credits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',24,'dividend','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',10,NULL,NULL);
+INSERT INTO credits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',420800,'dividend','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',11,NULL,NULL);
+INSERT INTO credits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',4250000,'filled','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',5000000,'cancel order','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',0,NULL,NULL);
+INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',16,NULL,NULL);
+INSERT INTO credits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',16,NULL,NULL);
+INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',18,NULL,NULL);
+INSERT INTO credits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',18,NULL,NULL);
+INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',59137500,'bet settled: liquidated for bear','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',19,NULL,NULL);
+INSERT INTO credits VALUES(310018,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',3112500,'feed fee','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd',19,NULL,NULL);
+INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',159300000,'bet settled','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',315700000,'bet settled','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'feed fee','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df',20,NULL,NULL);
+INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',1330000000,'bet settled: for notequal','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',70000000,'feed fee','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73',21,NULL,NULL);
+INSERT INTO credits VALUES(310022,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',56999887262,'burn','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01',23,NULL,NULL);
+INSERT INTO credits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',8500000,'recredit wager remaining','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',0,NULL,NULL);
+INSERT INTO credits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'send','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',24,NULL,NULL);
+INSERT INTO credits VALUES(310032,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -418,6 +427,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -435,26 +448,26 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'send','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',2);
-INSERT INTO debits VALUES(310003,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',105000000,'open order','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',4);
-INSERT INTO debits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',6);
-INSERT INTO debits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',7);
-INSERT INTO debits VALUES(310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',4000000,'send','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',8);
-INSERT INTO debits VALUES(310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',526,'send','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',9);
-INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',24,'dividend','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',10);
-INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',10);
-INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',420800,'dividend','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',11);
-INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',11);
-INSERT INTO debits VALUES(310012,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'bet','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',13);
-INSERT INTO debits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'bet','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',14);
-INSERT INTO debits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',150000000,'bet','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d',15);
-INSERT INTO debits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',350000000,'bet','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',16);
-INSERT INTO debits VALUES(310016,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',750000000,'bet','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc',17);
-INSERT INTO debits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',650000000,'bet','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',18);
-INSERT INTO debits VALUES(310021,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'open order','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',22);
-INSERT INTO debits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',24);
+INSERT INTO debits VALUES(310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'send','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',2,NULL,NULL);
+INSERT INTO debits VALUES(310003,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',105000000,'open order','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a',4,NULL,NULL);
+INSERT INTO debits VALUES(310005,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',4000000,'send','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',526,'send','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',24,'dividend','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',10,NULL,NULL);
+INSERT INTO debits VALUES(310009,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',420800,'dividend','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',11,NULL,NULL);
+INSERT INTO debits VALUES(310010,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'bet','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'bet','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',150000000,'bet','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',350000000,'bet','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',750000000,'bet','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc',17,NULL,NULL);
+INSERT INTO debits VALUES(310017,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',650000000,'bet','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c',18,NULL,NULL);
+INSERT INTO debits VALUES(310021,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'open order','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7',22,NULL,NULL);
+INSERT INTO debits VALUES(310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',24,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -472,6 +485,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -496,352 +513,352 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1}',0,'NEW_TRANSACTION',NULL,'a692c7b4970059da09038eb5806e292e9fddde2386153938682a9e71b4fe1429');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","quantity":93000000000,"tx_index":1}',0,'CREDIT','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','23ca0fd6163f76ba751402a7c16d60bda3367c3834ce1203af6cfc1aefeffc56');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1}',0,'BURN','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','66fb4a45bc8e3427255f016d120829dffab9dfc1710947eba057e312bfa6ade9');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cff3ba7c92f6b318eb4a4a5e2b90b655fc055d4e8a82101b813aef6e1c6152e4","messages_hash":"f25f391e967671ba5a4efd1b0766b90d3d0443b51d9507f85125d9d1ef3a0308","transaction_count":1,"txlist_hash":"9f6f20e36fd2b2b44df6e91fbfaeffc6d7fae9917b27d196245ee90c36d99ff1"}',0,'BLOCK_PARSED',NULL,'a93a965bf81157531e4081d5bba2739a2bdabf59b5a7a33a08f0525cfd538c0e');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a736321c3cd0a4faa69bc91a2b0bb32c7fc751415f551cb3045a673fb07248d4');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'NEW_TRANSACTION',NULL,'f1161d7b0274fe37486ee962c5405672ecab006d19921d16efb9b2eec9eb1ef4');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2}',0,'DEBIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','18e96c514ce8d1a9dbe746a90dec328bec99b77101b2e663d7e246cdd7798b22');
-INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2}',0,'CREDIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','3fd4848981cd862cb54a20c96dc2af7718193a9db9546a382138602047567ed2');
-INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'SEND','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','024ecd710a2aecad20168aba08add98759551c72d13477c9ea34b3b9bc8f6369');
-INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'TRANSACTION_PARSED','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','152ed11457e5f181e497d45c86d9b1851056e80be4bcefb152a2f8423dd14b0a');
-INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"2281de0177f4fcf8d730e2751d7b9fb5da4df741196bbcaff470c7860a2ca0b6","messages_hash":"e3aa0380b1a456cdf8335e2c4dcf2bf5cd54a82bf155a91cf04c9ecc8ff63bdb","transaction_count":1,"txlist_hash":"49836952844fe3f887e718d236efa6b1f4cc0b81cfc010f79a6349562ebfc162"}',0,'BLOCK_PARSED',NULL,'84789c17b11095dc2d79453de3e7f4070af48f56545182bff286f4e30fb746d8');
-INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5752b46861189b3bec2422269b1dbbe9c25d4a22ea99a42eadfe82d1ad692027');
-INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'NEW_TRANSACTION',NULL,'d634ddc58caa99d2486465fe227b1ba125ee0908d915bd142684448846c060cc');
-INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'OPEN_ORDER','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','583f2052bc398b5f5873620ea31b35766f25f726aa03b7db57c953c08b067cf3');
-INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'TRANSACTION_PARSED','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','a6309a51aef01233e96a66f632c4d6d35b6ff7bf5443854cd7adc085c36eb15e');
-INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"802742a55d8ab83de24c45efb86d1daa0ad4e565cc4db6dcaa5cedb16ec4125f","messages_hash":"d8df33aece3f5184376a2f4a13cfb52ed09ab73cdbdffd84dadde3ca8e4d4b9f","transaction_count":1,"txlist_hash":"017a0ddcf461ffcc3c89042ba6a6337efcc276c8f144daad445ba0e4a36bab33"}',0,'BLOCK_PARSED',NULL,'1da30b26ca72abc0feb2c237f3cfeb53f9bea54549e2c96516ed484f51035f85');
-INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1629f288bed816b2e8cbf944d0b060c059aa6621a60c50844bd5fe54e2be07f');
-INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'NEW_TRANSACTION',NULL,'0bdb60fc590ff1e7f98daaeb373f2cf8085583482ff9e84e6de29be97274ed55');
-INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":105000000,"tx_index":4}',0,'DEBIT','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','22bda003e580940cff884aedaf3d0ef0a842cda099391c545524daaebd9cbe7f');
-INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'OPEN_ORDER','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','865572457b12a6af37c63d3894858854369379864b2fc4444b7064351978ecbb');
-INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','a7e0503a559a60f1cc519d6c8ab07f50f6a0bdbc4935e4b4b72c052a5be00667');
-INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','462b59b51fa3ab1a3e423cc27b934f33893a14dda6afd276e4d3c4e9e903ee13');
-INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx1_index":4}',0,'ORDER_MATCH','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','cb52aae408fb434b35e417065a8a846eb24dc516d90f2c3ee208f06bbbeb7e92');
-INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'TRANSACTION_PARSED','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','c0758384a60dcdab2b1300ad7f1a731ab19b8c740d7959ed7c0e1d1960fca983');
-INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"ed279c6a985256134cfb39f1283ec97c8dc800b7255a3e8243ca9846884d0378","messages_hash":"e8a8467421c8964ff378e119f97e7cf43ee424041b1d660cbd6493b23213f79b","transaction_count":1,"txlist_hash":"8ec458bf08abe2f3634eafac5af321f02cf5d470c2a87301b8061efe3dcc644f"}',0,'BLOCK_PARSED',NULL,'9bd38923c2644717f98d0c57d1f0b45baa3d2117361ec109b2de5a1ef887cc51');
-INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e26805cdc31d883c75fc2d4c7b210add20a77a3407f22c46267243efafee8ce6');
-INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000bc953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e82837589a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'NEW_TRANSACTION',NULL,'6b6ca5e97df24605b63c4a61252c43983c3c1ff42ebae9cb051590e0498ff5e9');
-INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","quantity":100000000,"tx_index":5}',0,'CREDIT','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','949119a4b94217c61087329a04eb726ea51b4ca7e8e137c740ff4b9f50520e34');
-INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","status":"completed"}',0,'ORDER_MATCH_UPDATE','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','a8b1f9f57d6e4bd792c6fa72dce35d1216ca3710e2de2a1820a57b2867359864');
-INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'BTC_PAY','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','1bc67f13f71cd6ca8baec5c0cca6d99a655803e2658e4fbf97ae2e77643423fa');
-INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'TRANSACTION_PARSED','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','cfad9c54e8de91640400a9528776bd1d05227992111375f00bd072a7159da4d3');
-INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bba1ec90ee149be7d8a88ff9df1fca931e076e885be21bc822637829a8675e02","messages_hash":"7942936fb941c33d235d0f95f868587159b956e31c7ebd591e09117f54faa9bb","transaction_count":1,"txlist_hash":"e2e334cb3c300e622a50d2c206fe532a3320f56c445dc1a9dec750417260fe9a"}',0,'BLOCK_PARSED',NULL,'1ea98d16aebf6fa38b468334eec369967ae46ce2a85cdb7fc0eab34dfc2ef2ab');
-INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a0cf244a8599dbd798d2e3243485c5974a9fbd92ab1f1d8bd7a41a3b204646d');
-INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'NEW_TRANSACTION',NULL,'2cddfc0f9bf57b3b33c3b83f3f27f8a209096236d17313dc007421984db64990');
-INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":50000000,"tx_index":6}',0,'DEBIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','28a1ca2ce87a6d0eb735276d3ddf161a35a2ffea361c53b88f70dcd86027e4e0');
-INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','4d6d13f94469eed9d91a386ac630bfdc7c21f37d66601996af7faf2caafc0467');
-INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'ASSET_ISSUANCE','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','f08d9fa73ce09df345dee3aa0197957dfd3dca005721502b4ed6450bfd0c77cc');
-INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":1000000000,"tx_index":6}',0,'CREDIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','fd5fbbf706102dfec670016dc4b9224cca510d01e72094a5419c82a2d7c68595');
-INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'TRANSACTION_PARSED','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','99d7f29d40d273ade81013ba4c201c4db3174c2200c3f5423d57d1d9e486859d');
-INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"5f8a9d465e686b3e9471041bd15d645b7fc8afee36ee890873aa6c3c51d87bb5","messages_hash":"fa485519e19f15670e3c2e14e5edf24ceb43f3716d9b941e6d553ed966890c50","transaction_count":1,"txlist_hash":"260ad7ae2e2b555f7adf9155fcb761e7ed7a2d22f128457db0f1ff363b498d64"}',0,'BLOCK_PARSED',NULL,'50cd31d25880ec421f1f567fef196c415fcfcb16bfc1e2cd112adb4e6a9576f6');
-INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'843d1da6456ec3c85b5c90319bfabd3e9b103a4018a7efc13c8958fada3cddb2');
-INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'NEW_TRANSACTION',NULL,'18abc63a8ee36de2ed3e8e8e6f3517a106c3f8f909220b4c50ba418efa427525');
-INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":50000000,"tx_index":7}',0,'DEBIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','a63f58c4490c7aeaa109f4e4d90bb4aa2288ccd0b263c32bd2c29338f4e8a00e');
-INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','3099efe2776eec9c38979b7c1475016c62dbff77bd911c4b8094c52e21e3cf76');
-INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'ASSET_ISSUANCE','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','826fb0554fba5f6cdb5876a3174c8447660a6585c10a71ff534d2523443e835f');
-INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":100000,"tx_index":7}',0,'CREDIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','2a9cbb8ed03a7b94c2123bd47cc64400d81975f51541d4c9b9eb7f642650fc9c');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'TRANSACTION_PARSED','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','5c7c90f99c84cb39246e5416e52962d776417d5c605466cf1a5459eccf6ae5f1');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"153795f1c7ae2dbec7fc19bb25d03dd518f0664bca82b9bb92bb7c4f1e22f040","messages_hash":"91d3dd09443d1265650e148632f4de4352559fb4a2aa2dfbe161b1a83d7f51de","transaction_count":1,"txlist_hash":"c047baa686f8bf24c406cf03687c0b4fe6b95e4afe0b396e0f507a694fb10245"}',0,'BLOCK_PARSED',NULL,'4bf1bde07b445bba41314e4a9a271519fb62a7ede0698c4997d4100b5f7eac1b');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29dfbb4d7f96d55daa3f03247baa9276315a12f934a9c7453ff3ee584ce566c8');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'NEW_TRANSACTION',NULL,'048e186d7c0fde7b31a7dbd4885383b7db2f52928386c969ffc964721818dda5');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8}',0,'DEBIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','9d60b5aae959fb43b16c90e6dc9805f0e312650515a275be0fd4cfc194319c58');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8}',0,'CREDIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','3095b55220bc269dbd2158ab362fa058782863c99a0bd1a42a4205cd895b51e1');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'SEND','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','1c17ce69ee349eceb927105245eacd2aad47e8c2aa5e4a352444e8e46b978534');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'TRANSACTION_PARSED','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','2cd1e8fc54773469bcbdea82b303a6bdfb2d7db7b7a660a94a6625c61bd3cfd8');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"c5d21baa8c6949a8e9f0d73a37436d431bf4876ab3b60b82553877ec53fc4454","messages_hash":"477c8a3efdb86228e5387e26f324d6db1de8d3d0269b61e5918c50e9099e27ca","transaction_count":1,"txlist_hash":"d9532f5bdd583968d88ed24feb95b50c5e319d36171dd7bc6067ddf3d13c623c"}',0,'BLOCK_PARSED',NULL,'19907eff9ce13f2a69f34834e3433cbded4a979c520f08112583c1a2752deeee');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7b2884199ea2fb3889e4adb6a1e7b6969f08b0d684d1b079ee1359f37bf153b');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'NEW_TRANSACTION',NULL,'f09461ce2fd5724070291001726ce917157986b1ba0e5ace5adfc26ce308942d');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9}',0,'DEBIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','3fbd6c12201e8419b95c5761b194ecb7584827cb28ff30a38996e0f02a8292f9');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9}',0,'CREDIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','1c517f1d2d434b02b035b462a9f0917832b39b06bf2917a9038f8a32edcdfa86');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'SEND','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','d10d6cb81dad0c21c4a76bc90350f75c7c2f1ac8139a459233f09fba1f0c5eac');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'TRANSACTION_PARSED','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','6b70a2c293fe8d1499fade902f5decd54e3e5a843d4ef2916bf1173b5dc9a450');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"579de8204446e9128076fd27a644a82da77ca5ff2793ff56815c24a11218af5e","messages_hash":"e6077ca90d21f6c9bf673fddbfde5afa61ce76d3efdc19e3e98601ebe2659c69","transaction_count":1,"txlist_hash":"5b37c224e5684c0b3a913793e7e97c4f88b26b6c6d7683de8e06bb9485fba409"}',0,'BLOCK_PARSED',NULL,'a565ae2814c7f2b5eb45d0013c4e4370a9466fd4ce36c6da59167b4216a39e6d');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1afcd61ba9515b0b384b05bc2263c6d9eb1386f2d2a2247e5a7112368189c3f');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'NEW_TRANSACTION',NULL,'297ee8c2d2bedd030b519005da66f0090766c42c176025e99382986d6d3dd6d0');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','603d1847844d6ae292347d357bb69d15f4c7f6aee468af53c13bf9f9a23fc877');
-INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":20000,"tx_index":10}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','42eb20657375ffaf9646665d8f43f93ea5c4be61c4601c512cb5feae6a65f760');
-INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10}',0,'CREDIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','f78c3d1b54340c7867ac0857c2e869ca050366cf11456f24358254a3bbbd4d35');
-INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'ASSET_DIVIDEND','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','45bb8523a2c2b2482cdbaffc8b6b1ec1d47469ddb9a52d4dcfb692274f55b8c1');
-INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'TRANSACTION_PARSED','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','561e1a50ab23c7272b38947079c651cb3833647385015e26befff7e243036f1e');
-INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"c03a6e31f50f172c86029ce6a810ec730e1179ad3e76ba5d4290595ec414bb87","messages_hash":"6b1c0ca7b4fbde952b5729befc447a09d9e996f873f25757fc9fe6332799bdc9","transaction_count":1,"txlist_hash":"f81c6592f74098821e15c146c2a7e4a5be2cc743431d37a5fb6d4143b89907d5"}',0,'BLOCK_PARSED',NULL,'16275f7a84818444344034bb959c33cc47f03f197c73bee9ebe7dc7fafd5b4f4');
-INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82468f14ca075e871750c00a461c3403483b1fd5a10544695142dfb19c8dae76');
-INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'NEW_TRANSACTION',NULL,'dcf2c1d1da5db379e435848c8fd02663fa0346e859cc829f426fa7fa8488a7dd');
-INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','aaee4204c143848170b1b4e49fd77c706da9ec81a0a8d73fa588feac1417dba3');
-INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":20000,"tx_index":11}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','7da8dd765be66479e4cf198d8ed61f70826ef25e5ff325c1394515a3c78d8dfd');
-INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11}',0,'CREDIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','089a2423d1b5e2b2d2228d0cf06b4855b2f8e25c4ff619ed1a0fb798ef2d525c');
-INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'ASSET_DIVIDEND','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','42864c776573db38733e8c0b79d5e310fe87669da4325b126c67c5c92081ff66');
-INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'TRANSACTION_PARSED','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','40494a2049637618e47e8af8b4eb29b32704b45d8178a0b6a590b52bbf7dea59');
-INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"804651f6571bb24ef7534c97116ae35fb0b6b31aa6a4574a419aae7fc2900b1c","messages_hash":"68122cbe27346172664dc07f3c7cd823a2fd9ff5efdb47ed357fcf80ba43976c","transaction_count":1,"txlist_hash":"3698516a21c2c590522e6419eae91ed8b469d922863141def1f3e295c4954dfd"}',0,'BLOCK_PARSED',NULL,'07b5a63bd6c1ec9443d9c82ede23408cae784602faaa4b8ba3232f6b0036416f');
-INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d206c1e8ba8313901909d510efd3a10f2f4412d1d2b2cbdcfb55356429d59c75');
-INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12}',0,'NEW_TRANSACTION',NULL,'8666f4657380bc14f5521a6a07dc38c47c7763baae4df55b60b644a20dd3453b');
-INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12,"value":100.0}',0,'BROADCAST','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','956c0586671e4d3c09f819c20fcbc008da266d50079031621006e26eebe5ee5b');
-INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12}',0,'TRANSACTION_PARSED','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','e06a356c6d3dd08a05427fbcdebf109667331bbcab7e3741fbc4fbed95a7d6f8');
-INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"a9a18fcba1a83d637dcfd633f32848d55c86c5b499e0c15af6a626653b7424b8","messages_hash":"3cb60f7ac2f1597df6cde54a9aea3c2dda78734aa723e408520d205af49c6c62","transaction_count":1,"txlist_hash":"deaaba2ecb1772901052ae6490a1015e75146af3b2707b1c148562deff91af49"}',0,'BLOCK_PARSED',NULL,'2ce238d850570470d010ce2298447f724ceecda6f7f23e1b2283dc8bf008968d');
-INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8917e9b2709e66d7f1d9de8715998622eabf8eb19ed6c314d48ad4defa7be699');
-INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13}',0,'NEW_TRANSACTION',NULL,'35f148105e5079d40ea8b6e83985927e506e8a12413827b57e9455abd3c15633');
-INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":50000000,"tx_index":13}',0,'DEBIT','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','ba9c266465457663c2fdbcaab8971e52f036b6f482169f5842adc5613421e357');
-INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','5920b0b4056a299cb700c38ab0dc538897bdc188bb6c547e2703c7888495a9e4');
-INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13}',0,'TRANSACTION_PARSED','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','5d3658124d42cc9d74c487273c023350809773d69c7982ba18886adc4176edc0');
-INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"27298dbdb9026b5d54228b686b7a76f9d42479da79b38b9ef7cd13e4fee27159","messages_hash":"49b0d12e30aae10622d9c04e4d7ae9c574020ad4471669bd37c5e5e3354f928e","transaction_count":1,"txlist_hash":"e409e7c7435482a64f10aaaaa6e62d69a4f0ae3083922c91907d6f15393dbb22"}',0,'BLOCK_PARSED',NULL,'33b73b3b5843f03126de0a0480ce3be7e82030aa6f70dc5179a7b750e639a1f9');
-INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54a016a968fe80c9b6bbdf2fa8f1fb28fdd172b214d6dade2a2db6686e712839');
-INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14}',0,'NEW_TRANSACTION',NULL,'f5495779d9baebfc32dfc9de392561f556d2be77231ae307c327181562da9b1e');
-INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE',NULL,'a618c774b54a262ca51e17db4392623b209c48da0a0daf343b00fe207cf5aa26');
-INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'3baa18753ca30f5c48b4fc14e5c7ac42a6992a2b95fa67ac7eddb132a3d8d70c');
-INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":25000000,"tx_index":14}',0,'DEBIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','27d043a61b3f96ce1303dee34190bfa839d347c3a055528271b98629ccc66378');
-INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','bec5e056e65d37338edf50ec322f4f13ff51790324c39a0e2d37078f13dbdc01');
-INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","wager_remaining":8500000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','54090eed7e19606bf9a680ee27e8e6d62beff5cbb6440423459858fa363e9024');
-INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":4250000,"tx_index":14}',0,'CREDIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','8ec342b7275f343f4ab405acdc3d7a7c0a16453ba8945e220a5fd3e58f9d4714');
-INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","wager_remaining":4250000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','3f33e9a11c7e60d5fc5c61772a590d2d1d8f634bbbb1134f223bfe69c48f2a26');
-INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx1_index":14}',0,'BET_MATCH','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','5233b653dfb399af49759dfa6613f71a1a3f2311e5057a76c87838b3dc52ff2a');
-INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14}',0,'TRANSACTION_PARSED','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','c0e5ad4def277faddaa510b93c654324b2d1ef4504d030348af746ff973fb0e4');
-INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f5fbbb8870bb8253cfba52c58765b8c2493ceee6a2db5779a4212ed456bf892e","messages_hash":"0548d7767e52fe92fb48e9860a17d4d0aae87d90395c814f71a19418cb01f253","transaction_count":1,"txlist_hash":"78b492a743e24d50541f29a1a8e476434e81961bd457552c55fcbbac68d68fca"}',0,'BLOCK_PARSED',NULL,'585a42b6f65eedf38beb427c4d16c71850a709614810c22a4f99b3d82e834b52');
-INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3bf17faf88bb6d70b854d11934b1ead3254a528e94091bb172f53fea7783042');
-INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15}',0,'NEW_TRANSACTION',NULL,'6f0fc1a7d0a371223fafde784d1521cc06c7538972aab04f64caf6914d7a611f');
-INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE',NULL,'57672dda18b223909781f348162fc7fc1bfe062e9138e5fcdefae8c9b7c47077');
-INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":5000000,"tx_index":0}',0,'CREDIT',NULL,'691de22406a991131f2fb08db543e5d15444ae104c7f5ba926212ffa2368c60f');
-INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'2d30ec417fa09a59cd080febcfc4056209c59ce529565d5df89ab9a75fa9ed28');
-INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","quantity":150000000,"tx_index":15}',0,'DEBIT','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','de9c6194b51d0d94f37a4bcc79185a610f8b1c8d1e2280aeb6e7a2ed8be0361e');
-INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','09589aabaef85e9b6c52de3745cde782ddf137565114895743711080d711e071');
-INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15}',0,'TRANSACTION_PARSED','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','e1e9b3ad1d63f981894648a2cfcfaa3cc1e8447ceebbcdea31cf0569916e0628');
-INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"f1e77a7a4d28d64a0cfd878112074b6205ef09055b93b8923b0c6466a07ea500","messages_hash":"1ec2ab1b175680972277d46d3c88eacd45939ff84545534192a4aae70b68bd1f","transaction_count":1,"txlist_hash":"475ee3563b60fa5bbf8f8db5eabf9bdfea4a2f1b5fc82aedc37fa7c581c5f065"}',0,'BLOCK_PARSED',NULL,'e3f73bb2ae2f7bbae38f7912bf57fc477dd654db1d1ca029183427e659748815');
-INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad62eea71235b12f87f7f0af0131faef075d4c8ee93933deb4f07cb4c54d4263');
-INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16}',0,'NEW_TRANSACTION',NULL,'ff206a466bc0395de17f9522d2f76c5ff62cca206b84d9810037099fdcbd3a3b');
-INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":350000000,"tx_index":16}',0,'DEBIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','e5e3736b03f4a293ca00af4e3e302bab804cb922171d5568af0c3a64fb86ea1a');
-INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','ac8607245fd251636a7724e8a0a8067ac2be9c2467455362562a0b292d9b31de');
-INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','adef86cb145967abbabbeca15a13023f4eac9f2422324de20f7b190243eeaaf1');
-INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','c64ae093fdcecd51891682c936c866378c5d6256efbd4ab374737528f69830be');
-INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','a5a5115d8d942414401bd5dc5beb76afe024fe734fc0f8b20fbf2c7f489abc84');
-INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','4b0b0b8c366b48e4ea0b1d2388853dbec4e2ebd979e865db3f51e5675ceea217');
-INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx1_index":16}',0,'BET_MATCH','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','d40c1795a9e3163bd7e3f10a93d27d403e1b500ff65c10c7c59deb1cf6d6e8b7');
-INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16}',0,'TRANSACTION_PARSED','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','4a40d6d84e9c8b34d267c476ab234b2b657e827bbcf2f995cb650567b37c313c');
-INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"014bcc839c0ea0d2fecd9aab3074528ffee3b2dce7f805e4d459e2dfb3d98a51","messages_hash":"1c29ad09a0e553303984b97abf9b4a3a844defb01750cda96efc763eb7e0e509","transaction_count":1,"txlist_hash":"5d40b180a3f3b38eedd15c7f40e8585aaa5e2fdde3967dff443a74703fa45fd4"}',0,'BLOCK_PARSED',NULL,'70d55eb6e71563e72441abb1a6761ae0704b025da73ac453d84c47b7a8b159bf');
-INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78887d8446008aaf64b82bf18df2e519ccd806d0f94a730a0de84f7d6dcfec4a');
-INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17}',0,'NEW_TRANSACTION',NULL,'4cc3d7c1206d7501f9d2ac73603a12998b970c47327108afb76ec362a528053a');
-INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","quantity":750000000,"tx_index":17}',0,'DEBIT','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','1f849b99ee203a18ae0432339605d72cf53dfe51707eb534791365de927e92ea');
-INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','9d3af8782e7e16f4609370c38a10a0da33049007aab8a4cb1b0bfdda9724b5cd');
-INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17}',0,'TRANSACTION_PARSED','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','795241a747ccafe5b470c749bbf95d2c4c32ca4e9726951f41ae689885583545');
-INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"9f72d6a84ee58e1e851a90a62b525dc257c3b1b0c7e9964f93a7e5df6a2e4007","messages_hash":"422aca1d53d6f1cdabb33311ac6416c777f51a0f2964e2c9f8ccd40f5894e98e","transaction_count":1,"txlist_hash":"e990e43e7272c9d971fcc782768bea70c71d45fa7d712a7195bcc4151617a57f"}',0,'BLOCK_PARSED',NULL,'aa73587a9a89ae87d3359e284698196ccee38ae30c7e77c1a785f35a6f9f62c8');
-INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b6f9767d4ac90833705a354a49c76de108e558aa9ae367948b5e98d209b2683');
-INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18}',0,'NEW_TRANSACTION',NULL,'5133c5b9bc49e406cf2b136c6b43c6cd3671c0f181c658fce298bf4e6cd635f3');
-INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":650000000,"tx_index":18}',0,'DEBIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','2a91e1038e17524a4eadd51205c3b95acea288d5e7747e0eb2420ca4b3e23946');
-INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','a2d7545670153b668a459eef8e457b93d42a254f98d85bd9cd60b54c22305e48');
-INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','861042b2c1d2a4f06d4f6bc961bd8141b6973ea31db4ecc75379aef3231b9799');
-INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','c469dc1c57b9dac9a431b28911f7016130f6d8838b005975b2d057b5eb4a8640');
-INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','9020adc9ef8a02dae310a8ead181160673e1bde75c0171c4e3c0ae99130736b1');
-INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','1ca0ad2027764c7ff38e9f15683aee963a56ef6c5ce8dbb4cce98da168d9f680');
-INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx1_index":18}',0,'BET_MATCH','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','7ae9fa6e99cb60a4f1dba030c9e2f0a0a1659f492ec17e8e730a2bd337847472');
-INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18}',0,'TRANSACTION_PARSED','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','f40c6d2066e6f020a343b94a9fc42727ef8d10b23954ef767b16f28994049828');
-INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"5d1e195a7d313d703253640cd98be600b04a7d98aae69b5327a29e740573198d","messages_hash":"51b88cfe43063411950072a1f9a3529859a893b57b1f10f578725b072279a25b","transaction_count":1,"txlist_hash":"443444009d5700747b2d345cc10a70bf5a48214bc279d811a311ef76e52abf04"}',0,'BLOCK_PARSED',NULL,'10894fc2970580016c4af61ced559f1e2a4b446a2b024709b483d47f13ed48c8');
-INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd5647e832d9c05fa7e95853ee3c9e167ea4b333d09d9332182fd1264268fa84');
-INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19}',0,'NEW_TRANSACTION',NULL,'9bd153cca0ce67f91da18a22130c19ec22c3601e9f29ef2410cd5acd6b210f4e');
-INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19,"value":99.86166}',0,'BROADCAST','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','62a5f042ff9b611aa291b4cc3c496710bc6b5fe9c34f9c839af9601792780219');
-INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":59137500,"tx_index":19}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','94da494f2559dc2c3ba1fc2ec9dc92f56184bf1d1ebd3de489c3ba4b8cc6d2eb');
-INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":3112500,"tx_index":19}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','234b2359ae0fe5cb86c7277281a9855e8819f502e6c919132e19d9d37457a20d');
-INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','9efd3761664e31df0dffb5268c5f4c8538a1efa55289ba17346a40ce9fab9e89');
-INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','b1792ed203460708551a8ccf4871cfa5df0da66e6362e2257a399d714f3ad5cb');
-INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19}',0,'TRANSACTION_PARSED','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','60caeb7176294e428a4d58ca49492cdc7cd98c8c9264c64a07b4b51535e80753');
-INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"f38538a4a2cba9bcf8821b56e1dc877990e027135d3f220338cd8cb11f3eb205","messages_hash":"641798f65a211495512814860dc526be35f6887724547aa27a257203cc2b2e38","transaction_count":1,"txlist_hash":"abe72d22a1fb28e1ce34bfe3f1fd012d5a41fe219a0c4ee96f3b4b0e49aea889"}',0,'BLOCK_PARSED',NULL,'68bed14b7c8ae1934f1074a9833782d8828f76fcca4858f68d76c8953ab2117f');
-INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c59e59db938dc40e2bbb85c90e4bcf237233ff7cf6cd0ec7516355bf2d5329df');
-INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20}',0,'NEW_TRANSACTION',NULL,'63e60e9c59d78210024bed4f4b7cb122e1806101fcf99bb00d165f188487b55b');
-INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20,"value":100.343}',0,'BROADCAST','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','50de824c7f47888ff91aef4df9b518ea57c8770f24afb7617ce4616cc40f46e6');
-INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":159300000,"tx_index":20}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','a5dd47bafa6574c5b7c5f389092e527eeb4db176d556f3996ba36ac121a3eb2d');
-INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":315700000,"tx_index":20}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','373f2e8e90cd2664ab9061af06391f63d81cdbd39bdfe75759dab5588b486189');
-INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":25000000,"tx_index":20}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','7be74c4aed6a16fb8a561bcbefd113f77b98b01a53f04a0d10fe5878c8627a9f');
-INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','638434dc02c01c88463a7dbc7f9b2ee49fbf933a7f20737981f315470e8a7c46');
-INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","status":"settled"}',0,'BET_MATCH_UPDATE','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','863736711cdcb83f413ce803f9e02e4d144a0fbc62f9108728bc43fe3c29bbd6');
-INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20}',0,'TRANSACTION_PARSED','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','48e743ac8223424008e0bc4a4516de03f8d0e6ea14d9e976b68513ec4c8b7e58');
-INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"3a51f1f061d953c940ac7e53f8bb37df041f2d4f42a16f5c5d23707b8b0c0dc6","messages_hash":"b59cc514a2948e9f942fb18aff5acbc5686a7021b67fd5fbb8c1cb2ee11bde4b","transaction_count":1,"txlist_hash":"8bea2f5ef9805bffa4b23881f7635ec213525f8dfe98aa45e716e43a73ffe114"}',0,'BLOCK_PARSED',NULL,'97743d80f7964652ee7d7338c49a5aaa37b387424dff7c480290839eb2904754');
-INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6335e7a1245e213c8e76629665540a9b96fff35f9ebdb79cb5b409ac596519dc');
-INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21}',0,'NEW_TRANSACTION',NULL,'5b38bc7532e13a2f5b03d9c77cf505d54fdf435faaed6a92fd48278381bcf5f0');
-INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21,"value":2.0}',0,'BROADCAST','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','6539b668154ddc4d8b2da2287b80f626424540483fb32209653ae1c2b4ca2d87');
-INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":1330000000,"tx_index":21}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','60c30d8663e80a0bb68cd0b493b085c0260ae752cea0345a963d630102c1d2e0');
-INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":70000000,"tx_index":21}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','354b95702dc57e0e4cde1fbdf7be1fee00088bdbc4fd65e787b864b6f33a1639');
-INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','dec04b7704231f17515d8f2aeff9de1ef91e922666be5a36b01b58d1aa6659cd');
-INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','021bda888df3336715c2cd4a1bf345c0269a970329fc94956b72e47d7c8c5c43');
-INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21}',0,'TRANSACTION_PARSED','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','3d633d2a1ca48b0b97cdd1ee896acab88abfa6d5ee27515919aefa38907bf3a1');
-INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"cce3284c53fcf79ba268d925e32ab70e3d4df1e6f13dbcbe2920e93fc689128b","messages_hash":"657db356d2ffcb7ba632c7144241fe250361e09d32b93f551768e31502d614ae","transaction_count":1,"txlist_hash":"d0e8a123b3125a8e057d8504b7a96e77188895c86907c273922b80e7e9ca42d2"}',0,'BLOCK_PARSED',NULL,'e0512a3456be5f539147b3a76d403833d956c10351b17a7d1e93e6ccf039bd8c');
-INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ecf6a9505e2be2aabc1812b4c2b2bf1128ebc6175b05f265f9f30881a7e67b8');
-INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'NEW_TRANSACTION',NULL,'54654d6e4154ce632fb984d91f7e4890a9fb20efabd8ab33c7b7be91d95f9e5e');
-INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":22}',0,'DEBIT','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','e4ae0fee1c0c6070e366975d7daf8cfe8f3a8024d503664d5943772edf7b11ea');
-INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'OPEN_ORDER','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','64370fca77a8acb081b49df76d13935debc5940869aa12346c432abf1e707a00');
-INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'TRANSACTION_PARSED','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','e9a27f7358acecc7535747c191fd1aba35f1bf74ef90e710acef5c00c5a8ef3b');
-INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"6ad5172a6dcaa6706d5a4f6fd8ada183e103b9faab58e42c1365613a26477490","messages_hash":"bee135735ca1d013383b5fde88988a6f7e0155ec16c2d5ffaae49d6f4e0d6905","transaction_count":1,"txlist_hash":"1c207ab28dd2c5d297f47d5ac366699523cd97ccfc8a3e348dbf6fe900c32b5d"}',0,'BLOCK_PARSED',NULL,'8cb96fb6452d9141e6af4e0bf26a5ccb2cfc14f62c49818022486650f3ff068c');
-INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a9fbdb02282a226590f008694a85b76907df9e2a7573a464aabb8acd76c4a34');
-INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23}',0,'NEW_TRANSACTION',NULL,'f8cf47dbed15d20c45640051fa9b015e314d1d3abb8b2ce9678c617defe39317');
-INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","quantity":56999887262,"tx_index":23}',0,'CREDIT','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','e2cacc108f21b0147fc56418f8d699920ba5ad55870eb56fffe8726f194fa550');
-INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23}',0,'BURN','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','1a37edf08ac458001690a3baa7fcfb83043cb9a65e72e82e26ece3e070afe518');
-INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c9361fea7f3dd2415969eb6ad7fe893381c9ca65ea391f2e47a966e342db3a90","messages_hash":"bb9d4b79d020195079c817aac5ae98987b3e9db4889667e69dc62fe454c25a14","transaction_count":1,"txlist_hash":"c0867554bd3d50cd8ca4bb6e2d055250fa0c3c46f47b5f03ce5022b7090e07d4"}',0,'BLOCK_PARSED',NULL,'dcabbc583eeed866952ab8236c98d3ba1f0e79185877968a1849f72719e0d00b');
-INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b49047f71ebed1730434489c47fa8f00167856b6f87b4e35e357b758c0078f0e');
-INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'NEW_TRANSACTION',NULL,'8185c178de14ce23166001ae4e40f352b3bb8a2d000ebeb81c34e3b62fda84ea');
-INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c"}',0,'BET_UPDATE',NULL,'f4678e1712a450014caa0ff41747e0be17dfc05be5f4e0ce04e91206a636b4b6');
-INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":8500000,"tx_index":0}',0,'CREDIT',NULL,'d1edc61e2760471ee26753408addd6996653f444c8148e497491d76485272d70');
-INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'9aa824ddbbe11304b8991588f454be2a045b5ddb1faad6b6f50193049999139c');
-INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24}',0,'DEBIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','5deef324abcac55e37eafe28bfda9d9acf1f09ed67124534eeb602d6941385bd');
-INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24}',0,'CREDIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','d0175a099634a31f9fb35e0256a2a50129d4fc7be8d1c914419673d268c735e0');
-INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'SEND','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','755f4ee28cb45b9eaeb9102367df0ad248b31da6aa2ee423e0063b6807cb9ce7');
-INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'TRANSACTION_PARSED','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','004f688903ceb63a6e48e5ae0c34cff3ec2504402fc887445968134337f8336f');
-INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"f63680db66cf963aaaebf64130629790e7492b5ea9396434c2179a5eb8774412","messages_hash":"9953f0483df04bf7651d41fb34e95ecf36ef2195b8508e8e1525e4d1e872beea","transaction_count":1,"txlist_hash":"6a3cc06342da18a8eae7180bd93af2cc3a6f7c51916a19265365814f52a58119"}',0,'BLOCK_PARSED',NULL,'0ecb64d38c72d0a0ebd0252a4221172f066f4249130cc5916c8962a8d967a5e0');
-INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8402121bc9910aaf355b4140779b0eebccfcc998a0d08066d9781672a48fc47');
-INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"d69ea243fcd5e525ae03af680d5610b654a9d2bad17782e196305aaa110a6ba9","messages_hash":"b68e0765ebe5e98e0972ee993eb7ae5fc1178de01b68aa2e33966fb69ea2591c","transaction_count":0,"txlist_hash":"7e4a0076ce614d5b7bcb0a59c84e79d21702a3507ba88bc0d8ce9e644d7fe692"}',0,'BLOCK_PARSED',NULL,'df5e259782cb34d688f7a3edc79ace6cecc54196efb8faa1534d28020a0087dc');
-INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5620db927cac1ec7efe81aa241b71b2897fed89f56ba28a42cf6a052b7437561');
-INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"721906ed4cbd1524fafdc8e3ffef27d8b03e0c798bbcbe3eee7bc7f14afe4e81","messages_hash":"e1edd85efb3d8302b64133ce5edac3cc3047c0b968b295f864e61dadc65cdcee","transaction_count":0,"txlist_hash":"c1596eb8c172f2968ddd2ef70c1a8f125ab989c1a7bb012ab56f6c75cd96bb41"}',0,'BLOCK_PARSED',NULL,'556a615f805079a22e51487412b41768e39f0790689c7721e23f346728d8b1dd');
-INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8edd8ede61a410fd3e3b81f39a5b83a01ae4a0fcf2dd80efcd8edd6985b00da');
-INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"27912da2afa797876030dd0e50c31aea462d54c7bfa4f89d2f14fdb7b80db6b0","messages_hash":"fdb48d0418b6e97e15f1beb3e755e001eccc2217100606217e003c3a86a27997","transaction_count":0,"txlist_hash":"2d653751a75829265f2cfe2dd7bcc3a594be62492893d36642e3c8815d339fbd"}',0,'BLOCK_PARSED',NULL,'ee71986bd2bc338050338b357a887a3b4dced609a6a99f206c783cf5020d2718');
-INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d8263ca2209405cfa2135e7e803250ef0b1e28f139737b68749fa6a3c8940bd');
-INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"cc0734ecfd2bdbd2d04d236b853f60e324feaa9115fae33a8add961c4a5f9436","messages_hash":"88a9b5e14c5f63905f30734c91a2bfb61efe8e62ba88cf36a5242495487885b4","transaction_count":0,"txlist_hash":"3d5c1eb8dafccfee04f7d91b2819d9f51a9fe8df4050c025c19c29ceb18b3575"}',0,'BLOCK_PARSED',NULL,'0502fb9c06c8e90f6b958325505becee13c312d7153cbc46cb0873d2e7bc578b');
-INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4656a24b8eb6b22f37f4f3a715188ad119dff3ccfb1910ab540a6a25fd3b7ab6');
-INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"d3f5fbbe85d5a81fef8735c73349f61a43122f4b6f3f7aa61215323a683ce3aa","messages_hash":"ba94bc00c1246e08a641038398acddf181d667a726e0a054a570a95a91407055","transaction_count":0,"txlist_hash":"e6600d6d90725ce81afdd7b00220f8df650f85dc3a308d2486fab88edaaa8981"}',0,'BLOCK_PARSED',NULL,'f9f7e8b62948fe1d50c0dab61d65268ae6d09a62b5f64cd9af28c243f35d8a5c');
-INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'578bcb4bad68f1e5c2d04d8db0ca2762c499f39e681b054c99c5d19d08ffabf8');
-INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"74d08f0d1cad9f7102d0cfe70f50614c7ae7f4844ca6d02390031e1e96c2b418","messages_hash":"f4f014290c00eb6d1df157e203d82ed4bdd52aaa758dabdf3fd32ec3880c2b5c","transaction_count":0,"txlist_hash":"341aa44dcd4967cc3356ca23c97111b1cf3ee128c944493a0ebc6458c4f119be"}',0,'BLOCK_PARSED',NULL,'0ceed5cb2cd987cb81ad729efaac566b25630e432bf132bae52074464b98ff05');
-INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'986b0ad587ceddec71e41b121b506962a80de4a40f8d1e0d612dded122382233');
-INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"753a1a8bb877851ae24dbc33884344f34ee18c6b0d70a4d909231448b943e8cd","messages_hash":"db8ea86a15db96b17b2d85a213bb157e6044ef311d40258dcb4e2030ee91546b","transaction_count":0,"txlist_hash":"b9385290e5bd72f2a1a5d2cc889108a6da0aa888fdcf76170b166888c6301407"}',0,'BLOCK_PARSED',NULL,'abe6a51424e5892ffc469c432be897ea71cbeeb084f77b6eb82b0ccc5efff4cf');
-INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b29bcc4d72fde42e7f4ccb50346f08c21bc0e54eaf8a151550779b457391e8d');
-INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"f7c62d08a4efc854dea6f47249786d3d00778d97223dd84de1d0fd1eef3e2ee7","messages_hash":"108cd055eb0f1f50883615c29d1f2f7e58a3ed849b381d6a13f5249cf3339d6c","transaction_count":0,"txlist_hash":"6c27a0cb80d8602b9ccd126f53bb69727d358353b4c1299434c3472b0469d85f"}',0,'BLOCK_PARSED',NULL,'d32a61fc69c74b38c4c8de370cf8d567ffa4f37d71f095cb5ddff90832965db0');
-INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbb50511438d87c89ad3f6d60e212375627c1912405e6990eacfc0df9bef114b');
-INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7"}',0,'ORDER_UPDATE',NULL,'be9e5636a8308e0afa0296b80f8df6870aac8f095dfd8fd5d5659202397e46ae');
-INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":0}',0,'CREDIT',NULL,'ffda7a5b334ee56cfedf14d84b64eae617fbcfc4b0bcbf5f8c9ad57478ded28c');
-INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'f7ef207bd93d37207f829cee237fb9b94286c90217ab6724960f4a35bf672f6b');
-INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"833690f195e85b427b61890640fe8f0cc7419e0f4301b6f4738bab12be06dbb8","messages_hash":"a6321cefb0ec463ccef9562be2387263feab779731c65626aeb393b2fdde3886","transaction_count":0,"txlist_hash":"cb3ca17e5c792309fead54d49039ee0e00e7b17291868a3a2e86e09bb3dae80e"}',0,'BLOCK_PARSED',NULL,'1b21c1b504b77c6e4cb0b0a4614ca5a30f128a34259cbe7313b13f3f8228cd03');
-INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2914ef87bd99d1e888a6e1507c9f703a6ba9573e7b2a11a4c54e6125d1b747b1');
-INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"a1e118474a6f70b8f700a67b43ee0272c4609d3309603b5be6434ca587eaa704","messages_hash":"039c4c914fb56800d197a5eba14ff51734a5f39e848fb6a3d41bf811c34a1582","transaction_count":0,"txlist_hash":"2f097bb1b1dff2b4266dcb3b46d29255401e23a2fcfb75f28e9f7184733e14bc"}',0,'BLOCK_PARSED',NULL,'0016cf23c32915774de0dd5eaeca1aca45fbe8887d408d6b8665a9fb53a49200');
-INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e9d16173c63e5e327465e7feb167ba22fea08016f071ab5840592c59639ed23');
-INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"3b6427f61fb59ffd674ed8e0af75687fc4ccf8b462011727d4dc4bdf4c794775","messages_hash":"e33abdd943a38b791ea9eedd1fecb1b25e17fb11ca5f434d1fb9c1a52e014b25","transaction_count":0,"txlist_hash":"be05766d9a1c70d8907d523979a313ccec8cf2900335fd91800b4b90da3bee12"}',0,'BLOCK_PARSED',NULL,'f5e7418bb65363b5c5e22a71787301226030661d6ebaa18a63400f675481adc8');
-INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ab90a2098afbd83e73260c64789eafd3f11800582b0406526c805c7a15a1e08');
-INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"d065384f739c52a718f656717f88eb2fecc10d8567a93ccf823434c003d28c55","messages_hash":"5be7215f264b8f7977200c67689ceff9e2f14035280d424ae973855a8e689d7f","transaction_count":0,"txlist_hash":"41cb2236ce676fd45ae98593c9cac6291fa95479ec07a5af615ccb5fbbeab760"}',0,'BLOCK_PARSED',NULL,'29c99bfe58d350744e845f93f0a55cfb676e19763c0b5610f212a6b4a3fa3559');
-INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'002858ba7b64b2e2f4992f963e2f78d6ac558a3371ffbbe19fdaac6d31603160');
-INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"22cddc8dbfcbaf4b851fa5379c740a96294acc3d772dcf6d684881bef18d7fbf","messages_hash":"70668b938741ae0f0dc76997b78268cebb0960bfd43fa6d043b648d3de84cf72","transaction_count":0,"txlist_hash":"0beb88a3d4adbf913601c2d5144599cecfd48886ca51f995aecfeb50c56aab1c"}',0,'BLOCK_PARSED',NULL,'5c28f35fb2d4c7e7cf294b92d04ef92caaf25901f9f0456e6283a99dde8e89e4');
-INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2c1fbd97a96d2b288cf31c29e930835e24a036cbd8e7002d711c09528560a9');
-INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"93172c51a9c4cb5c33937a199a32ad3c13a40a60f4c194a1187e2c59a15c0ccc","messages_hash":"b23bd50542786f46b18658498e048f11ecd3c4bab73ace2b1d41e72b3ef921e8","transaction_count":0,"txlist_hash":"ea276540d3637a9165f482c48e414467e3a78c2c25c6a70bbed0c38f7205920e"}',0,'BLOCK_PARSED',NULL,'86bc22a18b01182bfca425ca9e06a1fbdd64f8bcd550366e1749fffbc3333560');
-INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8d02d02d27563d1650016b187c96c10d0686f143571bcf45a91919b6b426d66');
-INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"7a167a13f7e576c7e066035dbe2a2513659f1386c095a9e63afa494c043b7def","messages_hash":"d236c4cc61ab09e7b0a2b20a2d8358002b4cdd8528edfad746df5f4156ebb8a5","transaction_count":0,"txlist_hash":"15ef5d6175a7ce1937554ed6c2b10be6555aa14f7179245b7b140d1a620095fc"}',0,'BLOCK_PARSED',NULL,'a6cc538fd53fbcfb6a270f4cdfadf7ed18fc3b00b820f938ac9a2edf66d8330a');
-INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e73f1a62641170f0b03d494f2e86b249a447848989cdbc9afc6906729343810a');
-INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"4733d9ada3d4f60bc09f0a6eba3fdcdcd8e8b18adfd38c7bf06372259e2d38f3","messages_hash":"b001901e32d2be5ffcf6722ad12d238cba23d17cf5903818c35fc4f1e111ea45","transaction_count":0,"txlist_hash":"4ac5fe346b8577626d58c9442c95fccd4955506ac712ee3f27b5df6b7ec1d0df"}',0,'BLOCK_PARSED',NULL,'0ee260294537110b9d212c69d61ef093123413ef700bc45ce696cdc63b5688d6');
-INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcf3fedfcaffe6b68d8ed8bf14de9c9ac045f3061aa70e0d6c4511b5e6b71edc');
-INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b8021bbe3744e58cedfc3dd99220fce48f4e56a8fe8256d7894dd55c7312a76d","messages_hash":"bcfde45a33ace1870169520291256debd57cd92191055b02b067ca9b359459d9","transaction_count":0,"txlist_hash":"acbb3114dc5c7599eabdaec4833952c3b6de20dde616233f3945151977d5be16"}',0,'BLOCK_PARSED',NULL,'fb947f831d54938b6c39214122388099449c08684da71bbd546abb2745870eb5');
-INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91943f3866857d450c04f0b65c1ee2d266b1bf6735dc8ffc5f7077bb1ff6e2c7');
-INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"017b79a5fb34785dd39964a61a5bde69d676f75ee085c27bbc9e3381983c2dab","messages_hash":"fe7e2286d95c9fedb3f426879324acf58b6b818e79fb76f672d77d9a052f33a0","transaction_count":0,"txlist_hash":"6cbdfb2d6b3677c91097b1e80a32dafb0172725fabff370adcf444321ee48509"}',0,'BLOCK_PARSED',NULL,'8e1b2363cbf48fe545aadb4c3a401754f42d5ce0f8d3bcdad8bd9ad82bc8ed07');
-INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ef5ed91bf811bbe9c4529a92c036950fbb79357ff44483f59a772da2c92e4a1');
-INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"cf5389c037b6c619025bf95d9718fb5548cd67978c3ebf26f76029873828162e","messages_hash":"cf30fc0d3b3fcad9aa91035bdab67237d66928cfaffd8c6e9d5747ba7e730295","transaction_count":0,"txlist_hash":"a091876d90aaf1dd5b0d53403a3a9b5788710bf3d0c1996184a91961a1f24aa0"}',0,'BLOCK_PARSED',NULL,'a35ae37576d5e3acc59bfe950b0de98cf90771e7c4d00352228c6028d4859401');
-INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b4c2e8ae25a4f9d24ffd6e27159eb5342b356daabd67858e28f568c324d797a');
-INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"df116ea1fcf5f968644dcc97c1149f0ef6061b188fd56c27152543256ce79009","messages_hash":"3967234a887552a7a446b28b1d71be584efe09d346e735477726fcb803d3ea06","transaction_count":0,"txlist_hash":"eafb7d2cbbb2d1afe4a3eb65ca6bc7be653d7d824238264082d2c5e382757e54"}',0,'BLOCK_PARSED',NULL,'cbea2043f7eddd82b0621de2352057620bc4107d6fe3cc3f11cf9fe28691445b');
-INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab6737ddc8eebb9b2e1fe6c75ec79c430e299b602aba4c8539e4fb77569b8845');
-INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"c12cfaa984bfb34e781ac93848a87cdc0318c45a1cd9f02d31f5c3a4abe8d918","messages_hash":"b96d11bc51e12584035a7a14072443ebb4ab62cb43903ce3f93183f4489708ab","transaction_count":0,"txlist_hash":"61cb811c578f90cd6cc9f6963ff80c280f6ad0edb53fe53dd3075a8818404fe8"}',0,'BLOCK_PARSED',NULL,'7ede4d25258217447315b1c8327d44da30c1747549b4a86a34f85e0f79f67781');
-INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eedf777694b7e19abffc4b1f140e2fa2ab3d8e83227f5ae51846c9e480395e5f');
-INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"999a9ed2673de2db7637e22eb8a1876e0c794e90f09cdd76d1442e56ae12b1c8","messages_hash":"3ba540abdfe5bec9c2b07cacfbec12fd67312f884073e3f7a2e0138fd4c1d5d3","transaction_count":0,"txlist_hash":"ce9e3f0524576a630ed0154cf69c7798065a001e6752c4f369c30b06aebbe378"}',0,'BLOCK_PARSED',NULL,'469edbbd875bb4cb3c8671fa1442c8361be032b61e027263928a3b03c0419e71');
-INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c9214798ed4c4bcdd17eb1580e3c28b95724f27fc6b9c39c538bbf3c0cc7104');
-INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"240c9a2f6dc918ed868abfb5de6838d7a17f02263fdda0ccd3c7481c09e155d1","messages_hash":"657eaa5a6ca03f35197b063eff359fdd5c08e369a9675a2f2aefefae93a8adf7","transaction_count":0,"txlist_hash":"4f83f9bc531841759d1071a92ccda5d898af693fc88db0de16b2d2ca09630d59"}',0,'BLOCK_PARSED',NULL,'ad963d0e909ff1cb9adc9b597b49526011d6a079553d95326806af1015d12198');
-INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57f0d0ad76b0be1f4fd404ad818d64eb61e0131ede570663d57c7c5ed162f8c5');
-INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"79836105e355e25afd709d15632e2c0d1ab53ab251cd3750ffee9fea4a2605b8","messages_hash":"67b525e65cdf790966a30fa8980229402ca894d989c8e04b368b39710cb486a1","transaction_count":0,"txlist_hash":"b17c5d4fc0eef05c315095d265b324a0ea7dee28145d7b4e251a944b4b6a16fb"}',0,'BLOCK_PARSED',NULL,'b04b4cc939461126f769ef5469aa7ad9cbfc1f8cce656ef94908280ea9c7bb15');
-INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbf1a407cfb8feb72fa0486db86bc658772ff46c3950a03ee09da4d7d9439417');
-INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"6bf0789392e97311c4283d9f748b37effe7b0d1678076e30ce5725eff345a8c5","messages_hash":"d1189f782de3e9769c05abd81d1f7e13ff72ebae99f271958b33b84c1cecfeff","transaction_count":0,"txlist_hash":"f9f7ec8bdc9301d4ea41a099d04f84631badad709fdbdf43582327f183102590"}',0,'BLOCK_PARSED',NULL,'bcdfcff370688ee1bfecd37daf45d151cec2ff520b19653501ddae2473a64af2');
-INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a925c48994a0e74608511fb8a810c3bbe6c76b33d794c6dd940a073193e85db0');
-INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"1842c46a03800f5e191cb8d641aead6bc80e6d25c2ec826f3a5df426059cc1cb","messages_hash":"3840a6172bb14e16efef4402c3a4f81667c97dc4a5ce48d90e60982f5bbaecb1","transaction_count":0,"txlist_hash":"458e51569acd6ef757e0b36ab3f558e76f239ea3bfbf1b0ce7824f39ec5ac23b"}',0,'BLOCK_PARSED',NULL,'981f20533c45b9c6c11e84f21a6c8ae354d07a6296bd065960417e2adab30391');
-INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5e4b3007d82375f2efd86ba3e631246ffaffea53e8bc89ebd1da96c8eb21dea');
-INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"d424b02109320491b2d32388869d6468ab1fca26d4bf72374cfef729efad866d","messages_hash":"4e38733346bd60ded8f95932eb85b68c170ab5e0e62dcdbd28b66901ac96c1d0","transaction_count":0,"txlist_hash":"53e0972193c4f689d3a7216f22607a9b0cb7b8a9f43f144469bfbf25f59edb09"}',0,'BLOCK_PARSED',NULL,'5b4598aabd8a0f31a1ffa1e96a1468f6ae728757922a7134401670e65f485204');
-INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'834722e74805a5c29edb0b591478c5bf6284e8d1d43fe83e05e4a4ba93c190d9');
-INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"d1db4181403136b41168ab7786831f2fadfc418a05b7477246ab097bab531859","messages_hash":"036a2c57db183169924f171a954a33d5ec1cd430b5916bf071a0b587afaa7147","transaction_count":0,"txlist_hash":"89bbd06ca16ed2098ac6b7accd2296b4e0a2d8236dbf1cc14137e90ebad364e3"}',0,'BLOCK_PARSED',NULL,'0ae64b699cf278e2ee003841c7d2d830aa12654414ecf6541ea1939b519a12b5');
-INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d26fabc0db055e7514c3c4a1c83288d579f611b1ba1abb24ea758dacca24db26');
-INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"97fdb6b2c8e636d23109a67af55ab4bb30955a84073274de3fdc788074dc1b6b","messages_hash":"3db2edc06e57d225d363f733a6539fed037aee88e16888ed16da58b7b692707a","transaction_count":0,"txlist_hash":"8b8739b799483eb556e0e32f92cc092c349bb2bcb87044e88e762d55d6f1b033"}',0,'BLOCK_PARSED',NULL,'845c370dce8c23e96eefc59fe658a459513a41fb8b5bab77e8e02d28cf7adcd2');
-INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb44a4ab4811e29d89e44bb7b3e75007c0c37fbe9d2b943decc95b13d20f72da');
-INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"0506be4f04a22058504406210af3f1475dbf6d6834c1c1b7f6ac0fe013b47363","messages_hash":"aa9e8f3e3d6febd2672bcdb086a690d656bf47a8817fc555f139c786b2530fd3","transaction_count":0,"txlist_hash":"05673a7bf2fc7e9a5daf3732cb03bcf43712df43ef7ecf1bfe89d18f54726b6b"}',0,'BLOCK_PARSED',NULL,'312ece675c5e1ba8455f49f844d249f6a3b434cd450d19f5c72fd472e75a8d82');
-INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'299cfd7668411ae3ba86b98095768b08e712e2184b5c8b2d541324d79bb29954');
-INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"3dc7894c1368c9ef5d32a95fdc292e7de8237b73b61365a25b9d0da95eedc2e6","messages_hash":"f94db2dd80cde70db18382dffac1ed812f3d2d03c4a2b1f9feb972247e212525","transaction_count":0,"txlist_hash":"4651aab35442e5ec1d79ba6422ca0c2b0df02369ee49b33efe1ef54e2ebc7080"}',0,'BLOCK_PARSED',NULL,'e3c9741287f5347507e41423ae761c9957cc840040a697fa6e74e5f821c9c364');
-INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc7f59d450828ffcb92657fa91a759797bc16090d2aa0d3dd6e92aeaa4151bb3');
-INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"a9ef2c8bf3a88c326d2bdd722c3d82ed4f4c10b65620b136d4b893ed93174795","messages_hash":"2e774913f25b35ed4864bc24fdd94ca25a67cd9779d0c59e652a7fd22607010e","transaction_count":0,"txlist_hash":"d826fea28c0f5e82a6fbefae4d6885a0a49a3180d3c16d6eeb4faff9f57d4d89"}',0,'BLOCK_PARSED',NULL,'5dde5e666d13af215a78133001824e31d842b783d20039dbe2952c24babeef12');
-INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88caee6394eeadb9e0c8040c5e78382053eef08e8114d12f3016a67cf1448ad0');
-INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"13b76edecb04a9733107d5c21420ee20424fd463dcde2ea98424ad99ed3383f0","messages_hash":"2f5072254be3d1ca2cf2c871f75d90c7ff0158014b26e0803daadb7f8ea1430e","transaction_count":0,"txlist_hash":"fe620dd60bf5b6f3c610495735deca47cdbfcbb510975ebba2f68c7df6d32a15"}',0,'BLOCK_PARSED',NULL,'13ce908b4e4b850738ea4e54f03fd0b21ee41b957edd0350e89401b425e2f2f5');
-INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80e6bb3559a0f09f65beb52d2ae0324e02e82709669efed481c8d5ee5aa82887');
-INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"41c8a47d7bc4e73aa2f09685acb9fac052c5c55764ec3a8250abbbcde40dbe90","messages_hash":"8337aa5515901276b768ee119463ff5e7cdb251b8517b47006cc734d70c5311f","transaction_count":0,"txlist_hash":"553ea196d7a1045f71dc6261cbfe4b84c78b7dc37de89b8865f4d385cbb42863"}',0,'BLOCK_PARSED',NULL,'ba0ba4e5ad54a0ebc3c43ab4e324bb8d33a3d7a5b62372a3b682374423d9c516');
-INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c48be8e32f22a72ff737255666eb699c8209ef22f9b13f401f508f411283372f');
-INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"0b8ec211d258206ab8c318c079d9deb33d444a7086d5a05aaba97abc0be137df","messages_hash":"ac5c07af4e8057be82c39a551bf2a0eaf6d9acf57658e3d13383dd66014727c5","transaction_count":0,"txlist_hash":"c3fd7824c9b8413f24feb96ca676285447a980d684f730d10b81c06a440fab7a"}',0,'BLOCK_PARSED',NULL,'3882fe8800168df80be5e302778f60a97f6b250b1ab34d691ea17c9dda63f119');
-INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a42e4cdfd0c4e1db3736a7db0d28c4ea5780ed653a50707484a7c55fd923505');
-INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"f5c2686408577854893d11b02f52d8ea917e90777dddf67c98aabb36a3339b6f","messages_hash":"0bc06f8d5a42655c32b9d0a2faf5a15b638e7529721c1fc07562b8445458e72d","transaction_count":0,"txlist_hash":"3f73e1d36c82dfc8ee58f83502643d962ba6558cbf0fb46d83fea966b5cdfc59"}',0,'BLOCK_PARSED',NULL,'81cc1e65cc4f6032defe9666c6c85d355b428ca499088265422a6d33d66b7233');
-INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5b2d1c563755e68d3820925e1939a58c834cf72163006ca3000bba41f8f6f94');
-INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b80d446905550494f56f4f8240b501d593b0d0e63b5d98a09e180b1a0a68e3b1","messages_hash":"121aeaa7099e55f66f61bf5597e6c277106987c914283bfe3de59757c9dc5a53","transaction_count":0,"txlist_hash":"f1995db5beea80756d509ddf79d3467bb14ae96b0d151175499030505d1f648e"}',0,'BLOCK_PARSED',NULL,'fa554c3e0cf805a26b6ad634a57e3f6de9a5c69790d7e36e132602e2ed537dd4');
-INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b50fe2cddc8d34422adc4b20922e191fb1d569a0c1f2dbb8cfb6b9aebee8ba2');
-INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"41b30d23becc727151698b29a1bb733e45ae5086683c5256d073a6f817baaf49","messages_hash":"ad3dc31b4ef463b328c95e834f9fb14b8b2c0ccdc009a7570aa10ecd18c7cc47","transaction_count":0,"txlist_hash":"de6a4e6bbd49de2001ce26387040970beeb7062b4e16911757204d2745f6c409"}',0,'BLOCK_PARSED',NULL,'c4af7a91a37163994f8a990780e46f2d9b8ffdbce1a9e6d2344c015d2e9dbe93');
-INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'201a8ba978f6200bd5eb9a1cd9b27c5fe2bf68c8118dac6c0f1b152307cfab62');
-INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"f873f47e89715e965c98e92616339f8ff4200f6b8ef5cf747e8de2d101cbde02","messages_hash":"f49c03b535f3622c285a0c30dc16b1ab768477a919617e94558a766e8b0dd783","transaction_count":0,"txlist_hash":"f2954d07588b07ffc063170f43afbb12548fe61584575a979526d28dd631edaa"}',0,'BLOCK_PARSED',NULL,'489b2eda1f8f27dfce1ad1ebe919b1ec14f6a01262a8cc4d50217188900e0cfb');
-INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8807e6f661535ba02032c7dc2d5689a6a42a7d7782ea6dd3c2f640499b16c225');
-INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"14ce21ebfe6a00eccd7bf1aac2d5cf122441d2ebe8c0f5fd6dd14a95b5a209b3","messages_hash":"8abb5b763837ecbe0ee9fcc3f199e14e0a5b7d3af2132dcf24ad69971ccf83ff","transaction_count":0,"txlist_hash":"96b5675e5c3a3b66d7e2bd3424316119cf795c17bbbf2c8677b66872e4659574"}',0,'BLOCK_PARSED',NULL,'93b6154cd5eb563451db744b700d1f18a4ca768f76c34ba211c410b4e383033e');
-INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9f05d39876f44d796a24e0f918c5f308fc9aebd95cda266321694c52d772b92');
-INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"adb05bac5e7f1e6a1679d5c51f252dc877ebd99c2b73a56df69a9c848cef98a7","messages_hash":"fd8f02cc9a32ede97914e157560a3d68ee7106ca7e7d2ab80f2397e39455cb85","transaction_count":0,"txlist_hash":"243e437b3c00d8106e8c9c2cb08d22376e8a16bd3b62a8b62b86128ddd6d139e"}',0,'BLOCK_PARSED',NULL,'deea43450197f5b1c310d1d2696683caf204c5279b86681a8778204f25d0fc4a');
-INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6e78e8db28a31ad3b159a0fa7256272516120d53f052bb686cbd89416e93cf1');
-INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9065476b6b2cfb122888e036cea71d36f3d5f7d6c72451c63d770b40a4560fac","messages_hash":"237fab9675ab9d7b81399d8fefb8678ffd4dc2424b7089ed9c107c2437a0f9b9","transaction_count":0,"txlist_hash":"4af47a042289756821ffb0b14aba38fcc8c972fd254220d3991b05642df641e6"}',0,'BLOCK_PARSED',NULL,'7ffe41fa0b2113afa794469782586e83677d64cbaf07a6f87acdf4e86abdd9a4');
-INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e677ab2ad24864128dd8cac4cf4918dbb8c699c689c1d899355d18fa9613ae5c');
-INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"7d5d369827ec0cd44743ed9a519d45003789ff8dc2e511191d2726e1482f58d2","messages_hash":"a6ef9c531563e09b7fa26c58ef497218dd993107540fe47bce76770a8a7f92e5","transaction_count":0,"txlist_hash":"4d61dab0197a7a3f452f3751a92cb1f5378106a13be0351f0f8942d011da097d"}',0,'BLOCK_PARSED',NULL,'60c123d89548e8421e418461e420810bd81dbb7cbf6ec9e2ca88eea5188d8193');
-INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c720cb9b362f65db85a870b797fbd04355d247d6e9766fe30919c233d8818cc');
-INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"301b22a9338d5dd39bbebf6bf518ac53bbb8e1cf7469322484cbcee2fee666ef","messages_hash":"409af4673120ac3029d09fdf1b20a59e4d86d8c1922acfc0dc94f120c79bcbfd","transaction_count":0,"txlist_hash":"ae0cf0361293deb7b8903f20aca2410197db694ea3aff0aec3b635690168f5a5"}',0,'BLOCK_PARSED',NULL,'d4ebade4b7135c75ad28ae58dd5fe64b864d1ee39b4e0d8adfb0a77a31f8f614');
-INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3569dab704dc183b900cf39c8bf7bf915521bcc9c265ebbdc1f2886ed1cde7f1');
-INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"fc281736e1dfe5a89a9a3dd098565c645904a4ad1626dd70ac8e9bc447dfb8b8","messages_hash":"f410e3c9f4d3381177946edaae6b1db4c84eb0118f0ce0bbcd2cac11b15221a1","transaction_count":0,"txlist_hash":"460295c507a33a24231d1f4c760e5987b54f29d1e17bc97959db2a712f0339bf"}',0,'BLOCK_PARSED',NULL,'5cc12ada79ce22a98473d96443ed2bc09c35f1fac0e1c6a907b6d075c57e631a');
-INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'954964553a6ad4929c60961ce5c7070ebe743c3b3b59beb1ccd8b8862efc562a');
-INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"b0249a0dfd008a4554adc24085d3c5f44278403cbccb44ba27ee354b23c5627b","messages_hash":"546c9caf6f78f49dc560850474c3354eb4c8a80b3775ec147f78700a9f117e0e","transaction_count":0,"txlist_hash":"d07500b12517493106b918ff5b6c96c371bc10bb3699eb279647539ea7ab1fd5"}',0,'BLOCK_PARSED',NULL,'b32b301740ef65c8eacb29ae6c452a92bcccfd68049bb3dff8d9541acb954312');
-INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48e0053ca42aff8377c92f23001aa07bdef7c5c1c76dae73df4fb39292ab5c68');
-INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"d34051879c8db679ac5c49e50edf2085d0ce88dfc1adb971e7b097c0177854c2","messages_hash":"3e6dba3cc0c763aa7ca983d8f815aae7c993a51ee1db7a058c764f76fc821c7f","transaction_count":0,"txlist_hash":"874e494499820bcc0ba41ac5cd1bd153ac1772f730c9b842b77b289adbb2c2f5"}',0,'BLOCK_PARSED',NULL,'76425059bc3369d12a2e7fa73723ac3dd2d5499a394d4fcded04d269af03ad78');
-INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f10dd9f0fce367b680f9990cca429c36c719fe70c2f50eeb589bd3cc92a45a90');
-INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"0186c5312af19576cc628a85014ce7c33892dc23b5352c8ff5a0f230adfe263b","messages_hash":"179740d814b3143f9f9243c1afc800cabbcce38f4a3bff20d372f08eeb6f0768","transaction_count":0,"txlist_hash":"01342c18caeaea6b35f2d815b9aeffbd92228f6ad285103faa13cb25171fdfc6"}',0,'BLOCK_PARSED',NULL,'a2d18e264cd7fb85248d211f1b786b28c0917278cea7d01eda45dd91cbea76da');
-INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adb1460286ac52ed64d36fa54a20c537d17acad22a158823d6d2261dc3a6e145');
-INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"5376530512d61c3967f21cf01418d317ed072976119b8583fefaf3991b93d8b2","messages_hash":"290e9835fd502c57d1d3b10c512789133df5c6caa128f4e64f53b016d06dc3d2","transaction_count":0,"txlist_hash":"72a7d63ad0b15a401210b197da00ca549b6e8c80d8eda1650cf9017bcbc92532"}',0,'BLOCK_PARSED',NULL,'bba59e24b6d59cff80c63de364a856c2392d5eb02a0b278419922de689d872be');
-INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a9199486dec0e5fe71091adc40286d93a7d513a23873c912e4405ca9096b3f3');
-INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d15fe704fe5de58e9203ff5ded50218a1a01609b65a1a259aec510b8b9e6d690","messages_hash":"6d25cf33e13bf22ab1e3e0aa9e92bc6c70dfd3af45e3f2c1435855289369c2d0","transaction_count":0,"txlist_hash":"924753a39229b5005b684c4b2dd111b6233347b89179f2fd2732d256b960ace0"}',0,'BLOCK_PARSED',NULL,'79a25311cc082efb9ea5043110bcb2326de56f631df8ff5fa5e3502d27e80db2');
-INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbd2b74a6c565b8701e190ea3d975fa56baa667deb59d2f3e9b78c4446837c77');
-INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"61015667044d0dddac3bdb16db67faa6ebcb71758101bfad898fca8ed183e7c3","messages_hash":"37a72ebc94288c1526b9dd7ffc91a59b9fcfeddc28c7848efe86bf44ed5eaa31","transaction_count":0,"txlist_hash":"298ed692f21afcee61b06fd853cf07e5707dbd63a05f0caff6b6a177edc3b613"}',0,'BLOCK_PARSED',NULL,'a410266f417c53dc90d98b1728db7191e848f845a356ccba1c06c75e7eaee721');
-INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b609986993f626d003430b1743d689fe9ec5daaa7eca5051aac27c94768d67a');
-INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"5dd06f32075c46b6e573d73f12c1c31cf82cac5d1588bbdf302b8fe95c4b948b","messages_hash":"1bd5f8cc1ec863a1eabcbc0e89dd96b86cf0b47a76ea553fae27a1f9b44a78f3","transaction_count":0,"txlist_hash":"528e4b6aee88202f84f9f2b56611d0aba2336d925b8d8fe47039504e6eea1ebc"}',0,'BLOCK_PARSED',NULL,'62406c5ff9a5c8c3b54e76e907bf1e5a20048ca53d2c41467a6874d5b2e32ebf');
-INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15d84c05ef9feace16a847f53f7f2a4b1aa5c2d0c23e0f6acd1c1c404f2e7cfc');
-INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"8e1782c2f35a07fcc4c57b34b2226b70cc4c7af2761386f38fc8fd74d53d5e60","messages_hash":"ae84d3a2b80f3efcb466d2371fd67160de7b6a832d122ee80403f9e966190814","transaction_count":0,"txlist_hash":"76682f0ffbc6b86d16fbcec967a7562f6f12558c12aa3d9abd8779f51cc870ab"}',0,'BLOCK_PARSED',NULL,'293168bfd24d2438f85992a05899cdfd5ab777d499d67cd26a13e1d1658b12bd');
-INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f34ff0d53a88b496ec4bfcf06c5a2ed2271fbeef9659c0eed94a3dfe1c415835');
-INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"6469ff80c3890d274817d30602f33d5d4b0a7c0a9e3b85100d21d7b38d894efb","messages_hash":"c3eaa5ca861b8b1f550baee63c8210fc3fcca2e8326b968478c7fd435959d700","transaction_count":0,"txlist_hash":"187e9ae8428d46b7f8c8d652ab31dcf7c86a574cc781714a71784857dc0d1365"}',0,'BLOCK_PARSED',NULL,'a19472447b65a345acb9f31120c9437aeec17ecf770be488bd91803151fe8bd5');
-INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5d6d155462f593384e862be6b009fbf284be1edd250ef861f5863b4bba9868d');
-INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"3ca73c2bf37c694281938a0599335633dccf0284a027f5f3b8e17a9e68cbcdf0","messages_hash":"4b53c5f3f79be4d81443e9c774ced97b5a945a4ea630ee39796a6f18784874cd","transaction_count":0,"txlist_hash":"f7830250755fc0566ee5162a06e7308b51c9c0a7a951752be6cff224806a90fa"}',0,'BLOCK_PARSED',NULL,'25d227efd14fe1f72104c48b45601f7cad84b4e91d86a9ceeba46fc04a135633');
-INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b25ced93d4adfea8752031fa1fc1a32072dfa5c451d34c785ebc1d81d2bf8a19');
-INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ae4a36e1ce7d5e11f059301684573cddce85b70ba69188a116e0611ceba5c140","messages_hash":"d3fb445eb5f1998a4f0490b187079d82a2522179d7fabd4aac10961120e8de5c","transaction_count":0,"txlist_hash":"8d3b4ed30546c5f19f5522a0f57a86c29159ce27bf9e1e183a5ecffd9fbae8a2"}',0,'BLOCK_PARSED',NULL,'f41de6f50a98f6ea92c414edb693bae536ac8760e5d784dfc9c1aa4986b30cd9');
-INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b88367add927b38260bbc6b44aa35ced0c194833674d026a20f6bfc14e5a3e0a');
-INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c2c0b96c64f1ed555c8553da976e0fcc3a5ef403819ceac49cf22b476281ced1","messages_hash":"53f48ccfd392fea120503dc3305b1a2425316a48760bdbd9eca17c1cde959319","transaction_count":0,"txlist_hash":"d9ecf83f3f9f40246bee151938855fce34e0f9c636a5c9c2c80c896eb59287b9"}',0,'BLOCK_PARSED',NULL,'61ba70c88cbb054d606444f7b52e3d776b9238c23b9cb8041cd611e8ff750aea');
-INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a2487f041d9b8fd75e0cf176d7ac0156b8fb5fdbdfdcd2fea0c2de792ee318d');
-INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"88d1b09f8141b90b44740e4618422298f8a64f2b3d11230c6b04084ef8d11b2c","messages_hash":"d66811b6b4438b65cf403dbcf382e0a41cfcfe9bd4f0f7b95c2e061564e81ea7","transaction_count":0,"txlist_hash":"49e2f64485ac3ef523a079732bce9b2197384e2abfb3a4ad9340bca5a7179e31"}',0,'BLOCK_PARSED',NULL,'9dd8afdb811e74884639fefaf66f48f895f9b2cdf061e609edb26b81d4b3c808');
-INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f8b9b732f70eb673284b214bab967364e6616dbc3557048604d5c0ac9cbbb49');
-INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"dab22ae7a9216033777136cbbac87a3597cf6478a2fd008260caab3cad0cde3f","messages_hash":"a07058ef1ba8c2a825e497f04e76c526294e8a4bd8e999c96cd195fec2266738","transaction_count":0,"txlist_hash":"5406c6e3c63633910da82fc039c525dbeeb1aa818dc450a9d34d43084eef680f"}',0,'BLOCK_PARSED',NULL,'c5e3d7471e44e48156f6924cd65fe1853a305582f33e95107327e745e2f61d2d');
-INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81df69bffc908ddec12ec66056cefc6f1448b991c1567ff6ef4cbc82e3d9411a');
-INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"a185e60dc97d19a211b0dfaa3f3da154956499b4af146751bf1d776fc68c15b8","messages_hash":"be8805302f4e3ff5944af2e51e0eeb84680ee2fe6c5a976ba576b347998d8c73","transaction_count":0,"txlist_hash":"76e009b37822fc739a1e4abccf9f908a5fcdbed7fac540a719efbff8ebc694b7"}',0,'BLOCK_PARSED',NULL,'ab9477be98abd1ee3b159e6048ff436c7350a1b67929a003539f032c51eae904');
-INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3126ab56460a40d37f58d3a3da84ee4778ea46fb502bfb05e47b64405ebbb801');
-INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"622c574321be176c535fde918f319e10cfacaab383978be51406334303d14a8d","messages_hash":"1182b2e349f88f2df5119e7cbbd3ff6d9893ab5e00be067bc47d35b3f986d041","transaction_count":0,"txlist_hash":"f3a3c37d89eb008f2194267a1eb5a7a52e9443f8b1f5fe51267d93a57eee27c7"}',0,'BLOCK_PARSED',NULL,'a6714bfb387254079922259e557a464af3fb59d2c9689a91eee27f19343ac997');
-INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a853d25768ecefad9d25eca729b9075b4183727d13ef4dfa7d4d1d5b88180e1d');
-INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"5556084b92f51175d4de4097fcd820a3c367c2f0630d3a20081296e892462d84","messages_hash":"3398a844add370aa0b7661ed80a3d7090f730a0b1bb0a5943ed5f1383ace9234","transaction_count":0,"txlist_hash":"f284f757d004154b6ab9b9ee9d18281e6f8dd51f25f3f1fc7cc58450e0ba5f17"}',0,'BLOCK_PARSED',NULL,'4bdbcb71e34f588ccd578604af99b1d295f9da2d904d4f49fe99fac111e64fbc');
-INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40a60daed404b5fb4579fc107b621e00a54fc511c8b30445e3f7d54b20347a5c');
-INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"fc9dd8ef92fc7d47b187a75bd16e9698d61fa9ce6b4da7bba75982f59b0fbbc5","messages_hash":"c6f8b9023f4fb14abf10b405dfe416bb91386d12667871c8b128528162b27df4","transaction_count":0,"txlist_hash":"e5f9da1d98725423a240687ba2985b42f8acb274ba0122b4e31e25c57619845f"}',0,'BLOCK_PARSED',NULL,'b6b5083b6c3bece6a903792d3fb7cfbec54fefaa2ca988b49e46f3f11143c116');
-INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfecdd27cdae8f77e0af4fa8cd9c1a1c2c9ef96bc8a7ec0cb6cac134513656be');
-INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"21f7329fa27373fba176043db9081b0d9f95f75421e5adce87177a3edffcedc0","messages_hash":"74446399df111b44c653465cc75327752e252ed8686373b7266390d50a6707a8","transaction_count":0,"txlist_hash":"7935ee6c215a123367ddfae34507170148723d08f1963aad7e47b68520fa4e70"}',0,'BLOCK_PARSED',NULL,'7f5763bd3c32f203f99a2b366bdbdd1ea7ac22802b2e5513015c1cddda9657ce');
-INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94801e85e2f48e041d514a6017e53e1f6e5f6576e1b5ada48a7fd54a5a129fd9');
-INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"19164a10a0602df57d1add2e3a31ad4eef9d3ef9e53e70174b44aa91de2d6296","messages_hash":"8f42f7221255861ee5bd5ba65b281a071fab20f79c483ef92460f8e7d79beb9d","transaction_count":0,"txlist_hash":"d35a417416c712908cdfbeda76e261a55c605ff8091605a79d4d4fc986ae76cd"}',0,'BLOCK_PARSED',NULL,'a523958b566ea9f4cc2a64006554f7431933306e39182ff0a8b1c2e3c0bd417f');
-INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3753cd22aef08f1a5a897c277f4b7c85ff8b6c5646bc24f5cfda8ee252760cb0');
-INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"87f1c713c5f2cd84fab28b996008900f86bf9eaad25ceedac1507348a949be7c","messages_hash":"051ccde9020819e5b7aa2c6f95ab716f1ac0fb7a905d31c67ee5352c8572ab3c","transaction_count":0,"txlist_hash":"44c73622e27c362abf0460a5e0d7b836091523b763b6183cb9815cee30d66bef"}',0,'BLOCK_PARSED',NULL,'588facd2d0ae62c8ee6e28731d10601fa3b924a8fed50865ed390add0cdea93f');
-INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2efabb3ecf7ca7688154f18060a2e98d8e4d6aa95481d48cc78be338f0e9a44');
-INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"75264a6a628d669a60b4a8ca7e24b6b5ef1ad2c74d955b8325959f906c3bc337","messages_hash":"883f97a60b66fb64c61c49b1d08bbe3245988443c8da0f04180aaafe1aabc6bb","transaction_count":0,"txlist_hash":"c1771520c57b0c705c3a5f0d576622c8dd40c399e4946b63ba153af976b23b0e"}',0,'BLOCK_PARSED',NULL,'a41a20eb7431bed97a4f8d91765a2f48fabc8508e0caac642cea25e94b5bac45');
-INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a68637e68324ea1f0ecd077105f853c972d0d632ec96fb1539f33f7ed85bc047');
-INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"27914e38b3ca9d8444275e5c6d24b5cfe0b4093f7c645d5c1fc3c39e0d3a3c60","messages_hash":"063389fad33e69fb1a37535b082d7605ceb64e2a98f2c157c4f072e6254b8c35","transaction_count":0,"txlist_hash":"329ae5ae96b71b9a116cb82d9518110e63d32a9dfcb6fece911201ab6c3a78c5"}',0,'BLOCK_PARSED',NULL,'4254d05e5087676bb0471ce32b3498efe0fbe6e98396fe6dda6ad7d1a6487f3b');
-INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62593d1883bf5f7587e1cd226937de8cf34eda42febc3a761c19951c64c3e326');
-INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"eca83e762899ace4d990b8acb23183263df5f92be10b63aecab3518b340b975d","messages_hash":"cd07af393f202759c9752fede344e7b96e08767be4525e4530690dd32961e3b8","transaction_count":0,"txlist_hash":"6183465e58c5e5ef0f359a032e98d12cd247ff080ae44dc7a90ee35006e74e9e"}',0,'BLOCK_PARSED',NULL,'04b2336306e09ccab6c3da66b3f5df17cf0b0dd506db45ec845129918424317e');
-INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e4c217120f59b700246ae18b3736f26e60e5fca9e45a567fe8c3c7f2a14fb31');
-INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"3544fab97fe90a35b1f52ba955f88a8149d90329986df38d97e12992201bb187","messages_hash":"54e1bbd5d34dc103464f9254d73b99e2bb240ebf2981fd5e78c1778492442c58","transaction_count":0,"txlist_hash":"407c0451107403f827f434f3f8f8e3c9adb33362ab584802d87903afe3851f4d"}',0,'BLOCK_PARSED',NULL,'3a8598587b755a17a88d26f224aa0399ab82b722291298c23128936438fd5706');
-INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff3ee8bbcedea18d729d89289293496ebcb51effaf8eec55f54162e8f598c011');
-INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"df1e6d8f1be344f78c0b58baf7260c2abdbed3175adc45a122947815c08fcc16","messages_hash":"1b3956b84c9076fa22fdd3350a85b27e0ac949495e18dcc9c2187e07d7e4a596","transaction_count":0,"txlist_hash":"d4bc7124f8beb9fe04930a1b19a66aef57669e6bf790a5d38441beefcc001dbf"}',0,'BLOCK_PARSED',NULL,'cc857e00cb2bfdd96578b8b0035c274a0fdf31439d5a4cc7b29e268efb06c234');
-INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c552c84cd0bb4b0ee8820cfd9f75586e7bece7182b1fa989f23ca31e4e02098');
-INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"8b9febcfe1a9447f6a820c060f503dfe6e5c02738df4d9d63b007fe03847a6c7","messages_hash":"c35d50219e30573b4346080b362836e7aa84dfa6f4ce548e3f5c94f891b8e5cd","transaction_count":0,"txlist_hash":"7038d6f46cc32e35793799e50fbce7bde13c52c379e3bea10da0e6443a221c62"}',0,'BLOCK_PARSED',NULL,'9ac058b3f1652f100c5579b42bbd5eab895ddc30ef0f142aaba8b8685c744c70');
-INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af8419b3b290c8014249a25f89fff290fac710870abf88c2034c3cfd0d5ec86');
-INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b927091b4cf42f8537058a9adbec3814b574c1e1ccd242fe44c5f3671a191304","messages_hash":"173e9852974eacbeb6084725c5e9f300ea1e0eec8ee89eb63f822cb1cec8976f","transaction_count":0,"txlist_hash":"7640d47e11233c9d27a8e868bec5595acd99b3c7326a480298f7ea38c4a66689"}',0,'BLOCK_PARSED',NULL,'a03c94bc815c2abeed3228baf4b4102b9e75c4fb31869c705f6b2bcfbf7be70d');
-INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f9c78927b82a6d615ee66e3242940b9d3ffb1b4e2e3ccdce4530d74ebb7af88');
-INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"649d094cfc74f90e06bb4514276aaf3b0a0ed45f56397a2f774cae9602d02e6f","messages_hash":"c063131b7b3e526fcd0d32784dd33bfbde81aaf84860d2fd128538891629ba59","transaction_count":0,"txlist_hash":"ce9cdd6db6e1bbea3a9446b50b092e504bcc58900befb237580896e1c107eaab"}',0,'BLOCK_PARSED',NULL,'671fac2fb0bf28fcefc848ee3226f98a99adcc30ffd0e7a354242488a6db0d6c');
-INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eaad0e6cca1e428d80fd7ec0c30bfc099ad127032d2faa374134764dfd8ce3a0');
-INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c9a9dec300afba2cc3f171f76ff4c07cbeb7a41a86a3f498f712e066a8acbd17","messages_hash":"8ae79287158f94c84d5945cb8833435518c91dba4c8e95036198369ac548b610","transaction_count":0,"txlist_hash":"7153d6b86e3d8ed76bed0edd2dbd4fe6200e1e6d82d51dd3f812d6b43109f503"}',0,'BLOCK_PARSED',NULL,'3c7cd82dd1ae343c3c43ab37e1997ffabc6f7b67da85204ab31bc23d9629380a');
-INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba15c1711aec0a59fb84fb9fc42d52f24416adcad77f637a629897666a223483');
-INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"3c7434887f9373b5370664180ba640fa63c2eb5b85569875105e4f4db67d8c02","messages_hash":"a3e5b0bb7df3e0ec5a9e23f7abb2cb779e266038bc8e99e5d99a54c7516e6642","transaction_count":0,"txlist_hash":"adfefb6d18cdf44329bf9330e32f265145f60290f2a75db73fea8dd8ed2eb7d6"}',0,'BLOCK_PARSED',NULL,'ea90732d82459539003690f7bb8b22fad2e7c305819f1ec419efa3f039e6db77');
-INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ed20466e4e09496cddb75f9b6726cb52d698d8077e1d1c13710a04e8588ac36');
-INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"7e6a09386c3d8552a0dcc25b75143876a3046ebac0ff9cb09d6224ea7e2f3df9","messages_hash":"adc0156efd0d146d632eb6ce494f365b5c2d40acc8c22f2138ee64bce753567b","transaction_count":0,"txlist_hash":"2776deb848ce539546aada2bc1756d9de92b23e0a8d513f5dbfb1b0bb3be3bc5"}',0,'BLOCK_PARSED',NULL,'6d7a70e14037e474075699617144f79614f6b0f7d7e1d94a2d2ab50b0e74f1d1');
-INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'094aa3b6f3679575870665e0c75b197da3f0640be5936a96465f787a2768ed91');
-INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6903c0c5941f334f1374aa731e389b010043fc5940d4e9ae8b94480fb4fca030","messages_hash":"6be3d97c2fd4c161f247215c9fe17df2747c2adf80b1292294705ef636ca4d40","transaction_count":0,"txlist_hash":"6612c5f602f26ccc2cf4961f27e64c188ba405870cc0d7cf881c4e0fcb9a54ce"}',0,'BLOCK_PARSED',NULL,'cf7a02ff7dd26e083075c51c6259c7b9fce202acccd2237502f8667e8113b7cb');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1,"utxos_info":"750ccad1bc0bfbf5a710bbafd8b462594ddfee190e3430bca7e8c8d270f2fd5f:0"}',0,'NEW_TRANSACTION',NULL,'81bb5fc1f1b00277d322e23562aea335ad9dbcddedc72dc9084e7b8cf0b381c8');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','422bb4a8d52843822cd798abacdb25c2943a41ff758a99943acf8ff0db30b23b');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399","tx_index":1}',0,'BURN','15b35d5497f454c43576f21a1b61d99bde25dfc5aae1a4796dcf55e739d6a399','f7c4870ea0675c8871a1e497835094e1e9a6fe94cf4ccb24bb199450887adc82');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cff3ba7c92f6b318eb4a4a5e2b90b655fc055d4e8a82101b813aef6e1c6152e4","messages_hash":"e34cf3d8f2969e78eef50d68dedd6c97c987cffb56fac320ccf7b444e954c813","transaction_count":1,"txlist_hash":"9f6f20e36fd2b2b44df6e91fbfaeffc6d7fae9917b27d196245ee90c36d99ff1"}',0,'BLOCK_PARSED',NULL,'3e5a5de437afee4d9df7081910401023b5e3a1f6de392bc546949bf42fab9db9');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'131f0a050cd5ff6dcf2abe121c143858728e7086db222d0c4bb5a96c73046a81');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2,"utxos_info":"a91d2e8deef46214f4c9b8aebb35b6d8807f2a400c2fb6fbf3fb47442d7ea39c:0"}',0,'NEW_TRANSACTION',NULL,'2b339d60998c043c666cf39927e282f1e361eaa6fb8ac3f602cd5ca9436cd649');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','0eb129619d5d71523693a06129d7094198266c40b26193b2d26d51160b13b062');
+INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','1291e0990735d8aaf441a4c0abec428f907ec10145b451cc9fded19c414a0387');
+INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'SEND','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','ab38c012dd323d30890029c17c85f8ed6246c01dec8d00c2d5b7c992dbac97b6');
+INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f","tx_index":2}',0,'TRANSACTION_PARSED','121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f','2e2239ba6d7f52c2ac4dcb9294808144ee642b7b59b5a0f6ffe66b4bd5518360');
+INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"2281de0177f4fcf8d730e2751d7b9fb5da4df741196bbcaff470c7860a2ca0b6","messages_hash":"f2f12869b75da9f58a31c1156ee42571b4c060589ff6bdef01ec3851fa4a9d58","transaction_count":1,"txlist_hash":"49836952844fe3f887e718d236efa6b1f4cc0b81cfc010f79a6349562ebfc162"}',0,'BLOCK_PARSED',NULL,'fc7ec74b438bc9b87ed35b076ad6e4a6faa6738ed6d92e1a4b112e2193bb001e');
+INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f30f2b87e6a47261d95142bc23a1b69e8ac57487df5bba08a83c71377edbaef');
+INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3,"utxos_info":"4c3b65c423a0600af4c17f48fc9f8443e1e7918f419478a53d22f14b793ab4b3:0"}',0,'NEW_TRANSACTION',NULL,'753aa9d874607da70bbe0d9cdafb1395fe3f71ce24b96583c964a304e05f34d3');
+INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'OPEN_ORDER','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','1213dcbb65c4251934b422cc30d6b77916b52c3bcc666943e99adee4a6047d12');
+INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx_index":3}',0,'TRANSACTION_PARSED','c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375','c4d4d2bdb766862b824143322ab9eea491eeeeb397360fa18cfe96d138ab079d');
+INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"802742a55d8ab83de24c45efb86d1daa0ad4e565cc4db6dcaa5cedb16ec4125f","messages_hash":"4d33dbdcf0af53fb34c19807641fdf4151a190bb14fe21ad3dab4bc53989a28a","transaction_count":1,"txlist_hash":"017a0ddcf461ffcc3c89042ba6a6337efcc276c8f144daad445ba0e4a36bab33"}',0,'BLOCK_PARSED',NULL,'600640b111220318005ad02f1af1087e29962ace34c35ccd52c37b0332aa78ce');
+INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f5c48372c458bb85f97ed5ada7495d2c8a2898f221ad5731cc301ee32c4d4f8');
+INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4,"utxos_info":"e108001c44f040df19f8e751538a100b2dfbe606f72e8e359794e9c05bc3f52e:0"}',0,'NEW_TRANSACTION',NULL,'2d0e3139de28cad2e860b2058fff99532945a6b8a5819547594a6f50177059ba');
+INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','bd759105560f205b6c2c40d827b4c769a4bf0444f49c6d3c72eeda7601c250df');
+INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'OPEN_ORDER','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','11ecf20823aeb4ef0aa6d76602d56ce296d6f5d0f75747f8901579599973b569');
+INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','412325bacb790f4e63716baacdde3a354b985c0b7255df42326e00a3247e4c93');
+INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','cd09095b7b5580497f70ef92c6910e1450b7601c0ebb7fd9f10633660fed9fab');
+INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","match_expire_index":310023,"status":"pending","tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","tx0_index":3,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx1_index":4}',0,'ORDER_MATCH','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','b28dce002a5ad7cf7a9effcda0dd88f769f0be9e5cde8131448b65969d8f44ee');
+INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","tx_index":4}',0,'TRANSACTION_PARSED','89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a','abd7f728a441c2975d3a1dfb0b1d04b09fab83184e1e15b43ce198f8757874f7');
+INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"ed279c6a985256134cfb39f1283ec97c8dc800b7255a3e8243ca9846884d0378","messages_hash":"cb25217db7a4ae17a295f847aafda153adc24f67e8475354bec53aa1bbefdcef","transaction_count":1,"txlist_hash":"8ec458bf08abe2f3634eafac5af321f02cf5d470c2a87301b8061efe3dcc644f"}',0,'BLOCK_PARSED',NULL,'f30e47f7277255cf7fa6d2e972e30d87a7486cfef4853ab78c2cae0ec1e9aea8');
+INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea2bbe9e6d693715d673a5edfceee19395b3817f1b01dac954d9c7fdf0915c20');
+INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000bc953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e82837589a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5,"utxos_info":"2fd391aa096ca17e07a6dd0f8cf70121cb8c7c542d17254f34d5c302093a4e3e:0"}',0,'NEW_TRANSACTION',NULL,'ec5d79ec839e0ee023ca43d7841fcce9d1044647f6409156a83e0ce278ee602e');
+INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','8c57d8f347d9c61c846cc7dc3753213f844f6c095e447ac18277322b6c3daa6f');
+INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","status":"completed"}',0,'ORDER_MATCH_UPDATE','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','f7bd0d8e2205f224e13e4062568fc9c35ef62e26fb51132daf3b5417e5076b6e');
+INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375_89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'BTC_PAY','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','9b2e7d1a7d33b3952230a859af70cad124499ef37885389a084e99ab11e3bdca');
+INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6","tx_index":5}',0,'TRANSACTION_PARSED','f0c58099c1614dcf2b8fd12be01c63427a5877b8c0367ecadea31ae9eb9714e6','96ff490bafeb30ccd0236e81f07a16c8ae35138a9eb0cbeb505bd685910fcc86');
+INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"bba1ec90ee149be7d8a88ff9df1fca931e076e885be21bc822637829a8675e02","messages_hash":"deac111f81e769502b94500b9ef8626fd2c6203198f7fd51d82267a01184e7a0","transaction_count":1,"txlist_hash":"e2e334cb3c300e622a50d2c206fe532a3320f56c445dc1a9dec750417260fe9a"}',0,'BLOCK_PARSED',NULL,'a12c8875d1e06dbe35670b5f25ae3962723151818687ed177c960e49268eac2f');
+INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae03d1734ffebd3a9c51a2c16032a0f2beb87c8dae55230ced177ddd9c213224');
+INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6,"utxos_info":"c06c060767776b7f09c3eed96bea1466a3d9f49c4d00d16cfc4049bd45821fb3:0"}',0,'NEW_TRANSACTION',NULL,'9554a20a6fea6c401f9e2b93f2ffd7644ef50846cd0a33a60078e4e8ee4cf845');
+INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','df26040d6f775cac5bb47af521fd1dffaeee14ebb00b93b0b6a0c59c5136ab6c');
+INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','885b46b03d1be647dc71a668639bcc5c99096243fe494dc52441e35e45230115');
+INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'ASSET_ISSUANCE','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','ed102188e7444943ca2fcc625e349ed26301841b0d8f86718f68ba1e7a56102a');
+INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','4141e35d9e66064d8a12dbf827e551c6553eca716efd40e85756a39bf194b602');
+INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9","tx_index":6}',0,'TRANSACTION_PARSED','9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9','d65de20b5db30a2f926cc5c599a562bb9ae625170fa5bcfcb41efab469fa1043');
+INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"5f8a9d465e686b3e9471041bd15d645b7fc8afee36ee890873aa6c3c51d87bb5","messages_hash":"a505a66c740529cdd8a5b685ceb24cc403626ffb4f6e6e2ae126ee92ae1010b4","transaction_count":1,"txlist_hash":"260ad7ae2e2b555f7adf9155fcb761e7ed7a2d22f128457db0f1ff363b498d64"}',0,'BLOCK_PARSED',NULL,'e163e06861bd5742cbeb168c441d169e7f2cf27ddd46e938528cdb44a17c319a');
+INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd92272861e89534cdac5b426360dda7cfdddcc96e42ac62eda0e1746524e464');
+INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7,"utxos_info":"70e7cfe725accafbee3f35946c1a5d4ab2aa80adcfb17a0aed6af3e79278a848:0"}',0,'NEW_TRANSACTION',NULL,'0d5f962aa19ff92dd703cb51b7efaa49921c1c681b2d1703bc04db4bd621b1f9');
+INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','fdab52767add9dcc80f1465166f10e0ab0fcf9cc9547e7f376a77b3d0318642d');
+INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','3df6069e4c791f7465f571de27e373d9c13d4c821af367d10be1315c39ffa95b');
+INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'ASSET_ISSUANCE','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','3b43e3c2919716c652f6d615e29659fa0e69e3ad2d4748d2491fc1c9451daaa0');
+INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','f24438d18124f352257179b4d3f9ee991e988aad43dde3518104ac90f6019c2b');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8","tx_index":7}',0,'TRANSACTION_PARSED','19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8','311f2412a1d38a9dcf7b6e1f8a78c807e04e640509966eb30ab5d64490f11414');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"153795f1c7ae2dbec7fc19bb25d03dd518f0664bca82b9bb92bb7c4f1e22f040","messages_hash":"74f1ec6a8af3bd659896a94080f4a95ba73e835962aefeefc169819c54c9f5d8","transaction_count":1,"txlist_hash":"c047baa686f8bf24c406cf03687c0b4fe6b95e4afe0b396e0f507a694fb10245"}',0,'BLOCK_PARSED',NULL,'72ab77dda90a0e3b00ca193c1419b6fd83304c30eafbe2ac1c749828c1e73783');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24ca08f170f07832b94f087c999ebc84c6684a02496643c6ec9a133acfe8de27');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8,"utxos_info":"d36f95f3a8fb5852f28ff84250bd92661ec31fce6d5b1505455279e2c9826ec8:0"}',0,'NEW_TRANSACTION',NULL,'0ffadc6a6dea4447895992694bff971eff6af9d5477fbf72e623707fde2cd09d');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','83cf5c17064c463be009256450f96eb675874e01e4759245731ad3f6ed1ff9ed');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','ed2e15099f7669cec6be3ae829942c57896e10c5ed8a7bb6a5fd8501fc7353a5');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'SEND','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','dc741d4a40330b7525929d7aeeca1ee5b124d3a2bdcfac7349d9bf6d4b829349');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0","tx_index":8}',0,'TRANSACTION_PARSED','b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0','5fc82f509ea726e7b41e1dcd3ac68ced514444a4c1c297fa374aaa8e675e2336');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"c5d21baa8c6949a8e9f0d73a37436d431bf4876ab3b60b82553877ec53fc4454","messages_hash":"795e66c4657593332a2de8d7dc8d6d780ea60ce935a73972fd9be099cad85a07","transaction_count":1,"txlist_hash":"d9532f5bdd583968d88ed24feb95b50c5e319d36171dd7bc6067ddf3d13c623c"}',0,'BLOCK_PARSED',NULL,'d4be71177cef578036e2733d7bc99643b4f95beea9abba3ea32c79ea9d2aef76');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac775a02c14d2dd47e63aaa2746de02a8c90abf712d17326ca482402df7b5d95');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9,"utxos_info":"f436cbcb20522b45ba9c40785725c876d3a520a4f3f683d08d6c24a4e6c1563e:0"}',0,'NEW_TRANSACTION',NULL,'7fd71648e3b36f63b805cefa0591322abf652eb3d7fe4781101acddf47d67a2b');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','5f1304abe6c97386b85cacde8500929acabe239f7726e8561882ed439c06bb5f');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','2e6ef615872253fd22674d78abd042f2a32aaa3df43369dcc6d4dc25b6d214ae');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'SEND','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','88e1896b4b2d02a82353b1e5e8a8db0fee1d4df9e797bb2a9504e7b3e582f61e');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11","tx_index":9}',0,'TRANSACTION_PARSED','592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11','ca3b12902fef2c1ef99dee615be6d3004e024ada2867b53d1af2207730f7a0c8');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"579de8204446e9128076fd27a644a82da77ca5ff2793ff56815c24a11218af5e","messages_hash":"6e9fcce8f6a3cb387e8ed0f75d4c34fdd2bd04cbacbf29e5037e86c1a02c5df2","transaction_count":1,"txlist_hash":"5b37c224e5684c0b3a913793e7e97c4f88b26b6c6d7683de8e06bb9485fba409"}',0,'BLOCK_PARSED',NULL,'aad4e1a1789b41a99f546589e95660f81a366f91a18af1ef1644b2642f300a76');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c99dcf28723416f6a544552a0305f3a5e084348f1aabcfe2f19ae5c0c106b94');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10,"utxos_info":"0d302299946d398d35a9735af378054a896a17db28edcc87586ec5ff530520e2:0"}',0,'NEW_TRANSACTION',NULL,'dd632f2d80b252f963eba57b32108bc178f68814cf58c428aebefb08e1254af7');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','f088869d07db077f9ffc914cae0abfe86a996fb8caefcb34e45fb33db633b37a');
+INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','260804ea8c83d85018f05b4baa695a6764f323f376b26f1d1315850638f785c1');
+INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','16243a7ad087945a17a66fb1d5aa2da26ea2017a03f1f56eee86e2b173d8fc46');
+INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'ASSET_DIVIDEND','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','01ef93a87eb13b42765dfa1f7459351c98b0f5df0626827bf5f7bf4419314c2d');
+INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a","tx_index":10}',0,'TRANSACTION_PARSED','f2f6db13d6bda4def4f1bd759b603c64c962f82017329057a9237ceaf171520a','b705e441e567c8d42766cfa07888da220784ec944f2d4330f27d9815fae630b8');
+INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"c03a6e31f50f172c86029ce6a810ec730e1179ad3e76ba5d4290595ec414bb87","messages_hash":"93015fad6abcaeec7e64b9ac939f3d686c365f2aa21ef25fe835aab70165c9f8","transaction_count":1,"txlist_hash":"f81c6592f74098821e15c146c2a7e4a5be2cc743431d37a5fb6d4143b89907d5"}',0,'BLOCK_PARSED',NULL,'74f66c6751798d10c48439f94bea854a8f5ca8206c74913d4a92c7b78a8181f1');
+INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6e599c75d20fb2fdacb8976c9b3a6ce29059bebcf4a5c97e5938dd927acee88');
+INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11,"utxos_info":"3704b23673489a138f7021044edddab7f1d94a14e12aedfd5a736d331a7d4495:0"}',0,'NEW_TRANSACTION',NULL,'ae7f59ac23d9b2c5a40d7004e9f1e4bea1964cb1505a584c3e76ab40ac0b9eff');
+INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','c0cec06b0d972fb2d10a7931bc81b8276a37fc72dcc78b1ab0f38050e525302f');
+INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','0670f88de64111af2329a9fc3526920c0f6d9cc198158912f2cdad34a1b8d100');
+INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','44548570196e55c43b43cee9d7b19db231332e1c373b0ebf0dd1468dc666f396');
+INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'ASSET_DIVIDEND','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','e86d91c818e9a4d342242c05470c52304d4c80c4aef31942a31ab6a9f0aebff4');
+INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8","tx_index":11}',0,'TRANSACTION_PARSED','a4353c6bd3159d3288f76c9f40fdbde89d681b09ec64d1f2b422b2e9e30c10d8','516746c3e639c53c49a9d65710017d82f59ba0dc14a2ea5bdfc0969f58d83e1a');
+INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"804651f6571bb24ef7534c97116ae35fb0b6b31aa6a4574a419aae7fc2900b1c","messages_hash":"1c71e31d13a1db84d1d3210591a1282cfdc810d32b87c2bbefcc8154de7546a2","transaction_count":1,"txlist_hash":"3698516a21c2c590522e6419eae91ed8b469d922863141def1f3e295c4954dfd"}',0,'BLOCK_PARSED',NULL,'e1cd66984d1b0e0229c0b39a0102a440c60324266c3f4f3616560453a2576e87');
+INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab7782bf6bea5441ff776926263cf080b44e76a37dd1072f975e166a395d27db');
+INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12,"utxos_info":"23f74e8488b875442229dff279f819780d8051c845960fb4eb71585e8ea0ba47:0"}',0,'NEW_TRANSACTION',NULL,'8ca8bb74a522289c1fe82e32454d86333a6c841d894c32eaaf8d72a3e496fa14');
+INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12,"value":100.0}',0,'BROADCAST','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','51fe9c0cfb21e77a041f9f3ec662d4c0a894796133f7745fad9e7c0c60ea0ec9');
+INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084","tx_index":12}',0,'TRANSACTION_PARSED','9ec74a4822710f9534a3815f0e836a09219f6c766880a57767c7514071d99084','a407fcb751919a5954f92c010ad6c2b4bc4cc2b382e0f7cd17a2204c9c7072e3');
+INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"a9a18fcba1a83d637dcfd633f32848d55c86c5b499e0c15af6a626653b7424b8","messages_hash":"ef70b586c4bc6a9e3136b64db7b36a32bb394189a064a694eaf7108c79fab899","transaction_count":1,"txlist_hash":"deaaba2ecb1772901052ae6490a1015e75146af3b2707b1c148562deff91af49"}',0,'BLOCK_PARSED',NULL,'182476e43d6c547658b2eb459a29e6d47303313651a5def991e15a51c706bb08');
+INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b3340885736a9545566fe9ea1cab90fe38fb6c36800068efba9c66ef5e4f62c');
+INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13,"utxos_info":"edbd203a595616cf0285a982c3f85d998f302ade18b011fd847adba54b508001:0"}',0,'NEW_TRANSACTION',NULL,'1867dfad7312518a3016fcaab7e7963bbcb3f0b677da2fa472504f7b2548eeb5');
+INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','51ce8afd13c192bf9fe77df626088f9a855554a060de420bb6c32a98fba8a8dd');
+INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','f13ca990f408a0e04dc493c97fd1925e46c1bdd1b358375c6a8f749c5b455617');
+INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx_index":13}',0,'TRANSACTION_PARSED','ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c','3c8bb2861b99f9768e877b03fddcd6cce9bbb1af989a5c5a75ed9695b850c772');
+INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"27298dbdb9026b5d54228b686b7a76f9d42479da79b38b9ef7cd13e4fee27159","messages_hash":"99d83b7a7cb9db6487d3a10b0a3ee91690948667d7696042234cc8158ce30663","transaction_count":1,"txlist_hash":"e409e7c7435482a64f10aaaaa6e62d69a4f0ae3083922c91907d6f15393dbb22"}',0,'BLOCK_PARSED',NULL,'06d8841c7fbc02d0a065f63b2b0b7b9e72a5fcd616c07e55c42347245f2969c6');
+INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b672db45d53eb5ad69efb876664f263f9386f3d5d54e89c32b2165763e287208');
+INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14,"utxos_info":"70125234408f91cf05af61871ec76164b8676907ba299908cb2ddbaaa3cd2fb1:0"}',0,'NEW_TRANSACTION',NULL,'e371957a06673372e813fd5295fd03ac2fd8e015998f238b7da45674c05594a6');
+INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375"}',0,'ORDER_UPDATE',NULL,'7a8778914d8b93122fa2fb84ebb5f0a35bcdb69c8a6280e5d368c35f7f53aab1');
+INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"c953eb18873ce8aed42456df0ece8e4678e13282d9917916e7a4aec10e828375","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'32e2b1e4ddeef09235a96477f62fbff5cf432370993ba7a494d2058ce5625aaf');
+INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','15969df1e5208f18a177a56fa8bf65f31962dff1ee46f27438ca86b635a82244');
+INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','c81bbc3c0dcc0c1969f8defbb96c2b13970f60d760f5e12aa28c800986798086');
+INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","wager_remaining":8500000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','f9e8c94904144759950550098ef75aedc895c6e14047f3a0474b1d05dd8a2f91');
+INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','4af2cfc35419ae34f0560d00ab5f08c0c89c33fc196f1edad89b9de83670b493');
+INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","wager_remaining":4250000}',0,'BET_UPDATE','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','a7a58f0a19fbe366181496f21adbdc7c11393d1fa83d8e04b8478bf4e1dcc63d');
+INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","tx0_index":13,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx1_index":14}',0,'BET_MATCH','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','4496f13918dd6531d551b11984784a16b126aea20f25eb02c5ab6f2b5d0a15aa');
+INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","tx_index":14}',0,'TRANSACTION_PARSED','ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943','520dc23772d97c99b5243012384f8d44725c37cfeff3d749e41cc6b77fa93c7c');
+INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f5fbbb8870bb8253cfba52c58765b8c2493ceee6a2db5779a4212ed456bf892e","messages_hash":"c75ef478918bdcd77cd2229bf91ef2d7312fc67496b84e528673b94ef1efb0be","transaction_count":1,"txlist_hash":"78b492a743e24d50541f29a1a8e476434e81961bd457552c55fcbbac68d68fca"}',0,'BLOCK_PARSED',NULL,'7d4a10f8fd7316259a76181e9a607715a598a03dfa00d915ac3bc5e9597f67a2');
+INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab977955b06940d866ae02cc5781962fa1b65c5e7a265cadbce1ff21c2bc76d7');
+INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15,"utxos_info":"e1eb255cd51ddda8caa319a7690a45fb5385f1ee33bfc8d5011e442434cd4e11:0"}',0,'NEW_TRANSACTION',NULL,'ad5af093dffad32a251a3cb005c69f32bdfc96375db204ea3017575bcd72d603');
+INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a"}',0,'ORDER_UPDATE',NULL,'351518e57a2e6c0c710ba020e59b3f3962e442031ec1ac7888597b669d7d4d17');
+INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'243254e9bf861385a73caebc7b9fe5230b7a4ad25162395ce7eacb4ae37fe204');
+INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"89a44a3314b298a83d5d14c8646900a5122b8a1e8f6e0528e73ea82044d1726a","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'3fb88ffd0ef10ec620a082e6a2652ef50b0d54a3a16ddf4713f8f8f4099ab5cd');
+INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','38ea49e219d077286d22ec5dc5a79e72aab77678a1f426ab6e9bb7b4d6b374e3');
+INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','6632661c43c1d4727cd28e6b774e963beeafa3d8a1881e8f24b3c7e2a833adee');
+INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx_index":15}',0,'TRANSACTION_PARSED','6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d','44a01d8a7c74d2c26bdd287e405fd6228434fab135728309f388219e6f6d14d0');
+INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"f1e77a7a4d28d64a0cfd878112074b6205ef09055b93b8923b0c6466a07ea500","messages_hash":"0c5504f7347d832a83338fd2c82d0879e01e3cffcc12d577a2c5f1bce3eae18d","transaction_count":1,"txlist_hash":"475ee3563b60fa5bbf8f8db5eabf9bdfea4a2f1b5fc82aedc37fa7c581c5f065"}',0,'BLOCK_PARSED',NULL,'610ffe80a8911b8ca1a86c9e33a28841229c27e6e6628c2a482669ce78546b43');
+INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b81164679a83eba9f69de00505f15b844d9d9fcfb8dc02a733bc2a3757701ee7');
+INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16,"utxos_info":"534148dc2423208b93e138f110e12734d45b678bb534ad1aed2bd50f9d5e21a7:0"}',0,'NEW_TRANSACTION',NULL,'eb7eb01c8ddd646209044fd1cb49033f2057ce2df18679676942cd0de960ac9a');
+INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','7b64c7b1aec1a03871dfd8db9995ff62009a419bff690f187364c01c29f78165');
+INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','bdd476056ba401b43b2be0cd8b5ac562377d84ba91adff6d65719f8d7107e2e0');
+INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','267e7a05fd32e33616b105fc616590f3a3951567c863b2fae7ce216e7827b259');
+INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','837cd0ef6c6836326301c83636de5f99a4c182912bb4e368bca90433d2ea4332');
+INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','e317db0512faf054efda870d71953532445bfccaab28fb5a3e7a4fd0e73b5a4b');
+INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","wager_remaining":0}',0,'BET_UPDATE','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','24095d2233a116ab30589a51b12325a00114761041f83c0af8b0ab085228cd39');
+INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d","tx0_index":15,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx1_index":16}',0,'BET_MATCH','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','932475f17038b216cbe20f6644301f8f3bb25033a1841cd297e38be6eb0d42aa');
+INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","tx_index":16}',0,'TRANSACTION_PARSED','10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd','d07e6c2cc2fe4b6c594392eaa6b60e4e6fefa5542702d137829745a4c5a0db9e');
+INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"014bcc839c0ea0d2fecd9aab3074528ffee3b2dce7f805e4d459e2dfb3d98a51","messages_hash":"eab4a29dc8927c9a399e40c8dad77dc6345cf53a2f9223ae08cb2254b73fbe9b","transaction_count":1,"txlist_hash":"5d40b180a3f3b38eedd15c7f40e8585aaa5e2fdde3967dff443a74703fa45fd4"}',0,'BLOCK_PARSED',NULL,'ea422cfc30fa90ed9170acfa14e722172b5df8626fc6f6b46b96193ec965d9b1');
+INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d50e2b03b5c84419663d0e237bd961dbd9c08832c21908ed4443628a7c9385b2');
+INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17,"utxos_info":"0c3c3475ad1a79c2fe673603bb38447ee12b478094e9e51e99fa6c06f7e72ae8:0"}',0,'NEW_TRANSACTION',NULL,'636364b8459145f22de0698bdcae0060484fa075969a096f78ac334687554fa9');
+INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','9011dbbdb6c69f623e6fd097b4f077effec8694b2073b47e25ab825264b5c794');
+INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','96cceee512b03fd24c7426acbb39e5c2831c8c9a5934b9284e48199708666caa');
+INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx_index":17}',0,'TRANSACTION_PARSED','caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc','ed32f618bdd08d6deafd0d02252656543bc703dc43c8d05261403f0028b3d666');
+INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"9f72d6a84ee58e1e851a90a62b525dc257c3b1b0c7e9964f93a7e5df6a2e4007","messages_hash":"1175f933af404b894d599928a88a44801ffb7c991de94956c7d05717e8353f36","transaction_count":1,"txlist_hash":"e990e43e7272c9d971fcc782768bea70c71d45fa7d712a7195bcc4151617a57f"}',0,'BLOCK_PARSED',NULL,'fac00c36e52bf18418444a420efb38d99361e212b9724a1788eb6450b812e935');
+INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78b5cf6aeaedab0f109c4b535541fae32aa6341cc1f76c14f19071f0f51292f3');
+INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18,"utxos_info":"bf7acc19b878a8ceadfb1ea2bff6fa3a692e1e8599869a85e45ff316ecf0f92b:0"}',0,'NEW_TRANSACTION',NULL,'2f899644b3900474ce6353a8acd2f75a0fc544a65faeac547c968be4841d64fa');
+INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','9f06c9dd734740eaa74af7947ab950f6f1a395d20fdbbb1adbcca08ad7518d2d');
+INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','5df06d8060d48b7551ae4f51eaa76effd75559825c4f8d87c1aa59d29047541b');
+INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','0e10d4133b2fd8cfb81dc6ed0fa9eec8ad2552b0ec381a711246533753965fe3');
+INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','208848600cd43c8182e12fdb498b46f7878815a7df5eea5056f0131c2e49dbaf');
+INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','2f44e784d143a5e3f56272667bf3b0930e543004bed867fa35ae441d86955656');
+INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","wager_remaining":0}',0,'BET_UPDATE','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','691983f567f30a1e38f30c6e07afe1e7f42721d68e47b2cbbb5b92a595cd0e63');
+INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc","tx0_index":17,"tx1_address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx1_index":18}',0,'BET_MATCH','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','fe8c99bb7e03ef4f9fa799536fd26065bdeef750e87904eb0e589fff995840f3');
+INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","tx_index":18}',0,'TRANSACTION_PARSED','67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c','ecd74ee6a5ec104e7e14298e74202e1e9e2851569e7a2778bf6735952f1f730b');
+INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"5d1e195a7d313d703253640cd98be600b04a7d98aae69b5327a29e740573198d","messages_hash":"914fb3d5fab479382e6c224e26ebcd36e867ed3c667e26bad314b9eadbbe18d6","transaction_count":1,"txlist_hash":"443444009d5700747b2d345cc10a70bf5a48214bc279d811a311ef76e52abf04"}',0,'BLOCK_PARSED',NULL,'b42b4484d226ab0844b95ddc1853c7fd4148ac1c5d3e50f9f94bce0352e41f6a');
+INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18ad499896e7adba60d5759338050b0ef5c44d1debe55d47856879b3c76fc5ed');
+INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19,"utxos_info":"17063806c5eeb2cc730ab380dc0ebd3ebeedd5fbe5c502eaaf46b065d901dd2b:0"}',0,'NEW_TRANSACTION',NULL,'756c8ce8b0b97db738cc30c07461a3566226a7cdc17d478c334040899dcad276');
+INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19,"value":99.86166}',0,'BROADCAST','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','6f6052cde88c559458db760599602fb644bf4f1435d8a7f82598b35d87abeb88');
+INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','6aae5f153de925d876d6382d28d1a90021b6976a951ceec5790c3f1061e9c7d7');
+INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','b6a41617ecb5228b0b4ecfd4e12b16ffb766768c9c61b11f40113a7bb4710b67');
+INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','a70a96f10e2cc2ca42f60c9041ebfb676661393cc411712c2cda298d28a2cae2');
+INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c_ce9d3a5ea18ed454ddee80b75bd12abdd47de8e176d9c9dfc768c1233e729943","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','b3fcdb1b0e2e2c9daa02bf19e435a4fd58c70b45e5f918cd24ae98d412fb02f3');
+INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd","tx_index":19}',0,'TRANSACTION_PARSED','e87bf8dfeda7df143873ff042cc7a05dd590a6bef6a55c5832e22db1bd5e3bcd','a238f1e9d9f4e274ebef168089226fda7c5c0a0c22a083a8df40175c2d149b9e');
+INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"f38538a4a2cba9bcf8821b56e1dc877990e027135d3f220338cd8cb11f3eb205","messages_hash":"b9d6d30aaeee490537a249a73c0b95d56cdb47780d64756f878561838b785230","transaction_count":1,"txlist_hash":"abe72d22a1fb28e1ce34bfe3f1fd012d5a41fe219a0c4ee96f3b4b0e49aea889"}',0,'BLOCK_PARSED',NULL,'86c99a86fcc2ce5c60fc37db9c06694bb7bd28fc95f3aed970925e282fad852b');
+INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce951ce9e657b74efcb990a5907aa7c04effceda445d70c2fb0244f5d5fb299c');
+INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20,"utxos_info":"ff1c30c31e2e0b511c508c7111d22d77fdbb4f20379d49042bef4e231b9c098b:0"}',0,'NEW_TRANSACTION',NULL,'9893a2b87ed3eaa1a16f9904338d3fdcad6b388469ffc8162b06599b927e9bc5');
+INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20,"value":100.343}',0,'BROADCAST','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','6c75402c2602707da954b7000ff4789bee15e7be82d8ed6a54e2c7909ba7594e');
+INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','150eb73ed50d228818a61bc2db91612ddb91216b046a5f693c715fdf16ca7cd5');
+INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','2aa1376a07368189c0f309ac962a22497ea07fb3f5eba4f35f264c4687b459eb');
+INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','2f0d85a546668de1c842dbbb8884e6c75467f0f97389abfb6ac0d71e326df2e1');
+INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','3fb326a357388ab9f2b8744373e9748340f872d395e9b1fb49cee415496f2ac1');
+INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"6722884208180367a60c5c96ae86865dad3c63525a9498d716e98b5015ec2e3d_10c669ad89d61e1a983e179f66f355b1dd21e53d520fd4dc3bb5a6f9e5e24fcd","status":"settled"}',0,'BET_MATCH_UPDATE','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','21520e1e0c6a93d4fd264c372ea6c01a50edd7ff709bb34ab2c48638c27f98be');
+INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df","tx_index":20}',0,'TRANSACTION_PARSED','1fcd2de64aabc6c05796e28cbea31df45a25928c2cd8dd30d774c9e70c4e97df','43a2b39e7fbdb824e44e089e83b6b21ef14e70f12947dff318fd08798359e8e0');
+INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"3a51f1f061d953c940ac7e53f8bb37df041f2d4f42a16f5c5d23707b8b0c0dc6","messages_hash":"aa4fc446acca13213b02b43cbfac832be287d77d408ab0e5f569b202cecee307","transaction_count":1,"txlist_hash":"8bea2f5ef9805bffa4b23881f7635ec213525f8dfe98aa45e716e43a73ffe114"}',0,'BLOCK_PARSED',NULL,'9d13a9592da3e0589cc592eb0e6dbd6119eb18612e29d75fdda5c8ddc2762c4d');
+INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5696cd0b0341f4dc76f4c25de35d23438047975c5fb4046b9d1cedef0d030b4');
+INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21,"utxos_info":"2e07fb3dfdafff224b0cb92d718788af96b51014f621e726986b11b9113ae3f8:0"}',0,'NEW_TRANSACTION',NULL,'779048396bb7525e0e0d07d2ad7abe18bd692912c317a62b47e071bcdda581ba');
+INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21,"value":2.0}',0,'BROADCAST','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','31154da92399a934e96fd5fdf7a5a165466b55b058822684a658cd87f7961206');
+INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','a79cd626ffb86fc9cf798b02d0264171a0db9a4088b3b8e713a57657fcd0c0ac');
+INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','2123823d3ef924961ed02e6a8bdfee04088e6c802db86fc209e449f7b5a964cb');
+INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','404e17b34abbab0cf018ef2c3d0f665b68b1fa4c88a1c58cc835afe7e89f7bf9');
+INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"caaceb9160747bd86fa4b3b4d090c9e1617285fae312eac2152bf3fabedcd2bc_67497105b77192af401ec8024ad34de211592877dee8532dbe216d8a8f17dd0c","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','a20146a244f60d1c55e754ea8ec0aee0a88f88395ffdcdf6edc23dc96adfc3bc');
+INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73","tx_index":21}',0,'TRANSACTION_PARSED','dc4b57ad8a0b23dbc7ffc03f51e8076cd2418edf256b2660783bb0d1be0b8b73','e08887547d7a235a1a99968f5e260a984647c6134a245e0f89a806c52184f5c3');
+INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"cce3284c53fcf79ba268d925e32ab70e3d4df1e6f13dbcbe2920e93fc689128b","messages_hash":"3da0f56d98f2d15804c762b1b7f178198303f193b2cd2e00384d4b44f1e5ffd8","transaction_count":1,"txlist_hash":"d0e8a123b3125a8e057d8504b7a96e77188895c86907c273922b80e7e9ca42d2"}',0,'BLOCK_PARSED',NULL,'1d2050bc466b8a926b8e624210e6bdff85484571d3b7897ee313362a184bd8c3');
+INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2451c052517fc725f09a3e8ab8b4dcf942c8267d739a7d56c7f598cc0ce6306');
+INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22,"utxos_info":"168840008f0acd950b58778bb6ee9d625b19dde6fc5a85f02a787aa78d541341:0"}',0,'NEW_TRANSACTION',NULL,'baf1cc5449b233437e10bacab4ad9e9887cfde8a883361dea0e4c6d8b2991873');
+INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','4fdbd857b1abeccb983a90cb0de8075cf663391723496ef31bca8c5642dd9de7');
+INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'OPEN_ORDER','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','07f5316ee8e61d11c19f51d5aea18d26af92227cbebc7f87873941c096d3cf43');
+INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","tx_index":22}',0,'TRANSACTION_PARSED','4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7','17faf60330016af847f7277523d64b71198f7b6abfb4cf99c151ea01c85d2b5f');
+INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"6ad5172a6dcaa6706d5a4f6fd8ada183e103b9faab58e42c1365613a26477490","messages_hash":"623ead14481f2c23d69aed1859f23de624c9b8076ec139480aaee298c5134648","transaction_count":1,"txlist_hash":"1c207ab28dd2c5d297f47d5ac366699523cd97ccfc8a3e348dbf6fe900c32b5d"}',0,'BLOCK_PARSED',NULL,'6ea0407ce1882f119af91125d1e2b97da60c2b362b3a7b0d9f2089a4b4bf1a55');
+INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a17bd8d82c62ee08795fdb5a8e2d35f85465e1c5767312edb96a6ab8d85aa2f5');
+INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23,"utxos_info":"a64251be6598696807b458ee6811a35eefdcd8170ab68e36c37d1c5b0bb84350:0"}',0,'NEW_TRANSACTION',NULL,'fa1bfc376be55ef0dca415e3c6ecac14da9e3f8606fe5c1d58cd3d1af2d1699c');
+INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','56b8ee9995f16399bc9d8bd00e5dfb207993dafb93620e2f29dd65a1232dd17a');
+INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01","tx_index":23}',0,'BURN','181709b341ec136f90975fdaa362c767ebd789e72f16d4e17348ab2985c1bd01','65c49a8db05834392d2fa2648ea9db7d3f8930dc23a12bee7fe7a08631205ffe');
+INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"c9361fea7f3dd2415969eb6ad7fe893381c9ca65ea391f2e47a966e342db3a90","messages_hash":"9e700f536526f3d8b732a6584ce850fa8450bd6c6709faad69f34acc77ad3776","transaction_count":1,"txlist_hash":"c0867554bd3d50cd8ca4bb6e2d055250fa0c3c46f47b5f03ce5022b7090e07d4"}',0,'BLOCK_PARSED',NULL,'d1ce65f683b83c60adf314c88ba525ffc9a10ae43d7756f43287f22fee0d2c62');
+INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6892899c0adb0f06d843a74484fd45b786321baca8c4b2fe6070ef8ac89c1c94');
+INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24,"utxos_info":"806ec51cd29841b7bb12b0cb41cf9678b3e3e26f9a95d5aeba5e0868330b8e60:0"}',0,'NEW_TRANSACTION',NULL,'b50c21edd3ba441283b5b9e40bd5f5a8ee9ca1e330d915bfc9a248523c1537eb');
+INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c"}',0,'BET_UPDATE',NULL,'dff861c9cb1a5fe3428002934a86e90d1aea6ce8b94324446e59935acf4ecd05');
+INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6be32e41f1ca6a2019711aa245dcd90f641caa758ee87c85424d189ea2dc089d');
+INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"ef92dc4986fdfb4ccb6e101ee949d5307c554e8dd1619307548ec032a973f19c","bet_index":13,"block_index":310023,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'588ce3b83f005fd8c5381024745d36de97136babcab409c26c139b757ba9168d');
+INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','3a5bfdc8aeda0761d550d4793e80d943ce0a6bfadfdb890018d86397df228d20');
+INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','93a7b6b752b375b8252681178437353b32881647a8a4733c493135f070817cdd');
+INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'SEND','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','1147cb214a7eabc6b7bec15eba485b8e257a1d5520ad2f7a31fecb960397ee5e');
+INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831","tx_index":24}',0,'TRANSACTION_PARSED','f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831','80d3019f61b537f6402915b753b7c73fc175a23d983d1b8f6a91139eabf6c30a');
+INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"f63680db66cf963aaaebf64130629790e7492b5ea9396434c2179a5eb8774412","messages_hash":"9155dc75056569d35fead5ca2325335d529dd3352a64706fa129aecd33c58dce","transaction_count":1,"txlist_hash":"6a3cc06342da18a8eae7180bd93af2cc3a6f7c51916a19265365814f52a58119"}',0,'BLOCK_PARSED',NULL,'6381c53f866998187730df7989107b47f0a61fd59dacaf1af7a44d00bd7b85e0');
+INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d89a10bfdb2fe57d393bd103ad9570326110a2abe86298832ae6eb245125294c');
+INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"d69ea243fcd5e525ae03af680d5610b654a9d2bad17782e196305aaa110a6ba9","messages_hash":"78864ce118a6b397e3e201f6a8bff45ac11133df639014347b69454996e5604a","transaction_count":0,"txlist_hash":"7e4a0076ce614d5b7bcb0a59c84e79d21702a3507ba88bc0d8ce9e644d7fe692"}',0,'BLOCK_PARSED',NULL,'294bfe4b2cba49253654fe08c06da82636e3e8c8c9f5cbe62031c33dc0815c2e');
+INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be20226cde568907cdfd3a77a8e0fb5c152389818b5b2306f8715833721c614e');
+INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"721906ed4cbd1524fafdc8e3ffef27d8b03e0c798bbcbe3eee7bc7f14afe4e81","messages_hash":"6affc572ab0583b1653f09c452ac6aadd1be130bf5c07f06cdbbafd9702a3627","transaction_count":0,"txlist_hash":"c1596eb8c172f2968ddd2ef70c1a8f125ab989c1a7bb012ab56f6c75cd96bb41"}',0,'BLOCK_PARSED',NULL,'8c59359fe2e7f40fb0491af6d24e42809d246c69e8a75fb4d1b89da952f531ba');
+INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'771005aa2b09a90e1e5fbb9557033bfd6d27ce6c52a8a463ee78122281088ac2');
+INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"27912da2afa797876030dd0e50c31aea462d54c7bfa4f89d2f14fdb7b80db6b0","messages_hash":"c51e667f584517b4c96b7a3f784a1d508f588d0f203f20914ffda390a9955710","transaction_count":0,"txlist_hash":"2d653751a75829265f2cfe2dd7bcc3a594be62492893d36642e3c8815d339fbd"}',0,'BLOCK_PARSED',NULL,'bb35cce6a9c5e5b4a4815e74f89ab7fa1c335221c5cff88d8b80076da2b1134c');
+INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9869b869e2121eea0947369e1213d98ef2580181f81dc7b786f650ef48d34333');
+INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"cc0734ecfd2bdbd2d04d236b853f60e324feaa9115fae33a8add961c4a5f9436","messages_hash":"827a7b7bfb702c7723f626adba352f625d232cbfb69069694c935c1c9c213427","transaction_count":0,"txlist_hash":"3d5c1eb8dafccfee04f7d91b2819d9f51a9fe8df4050c025c19c29ceb18b3575"}',0,'BLOCK_PARSED',NULL,'a2414ff5120024965c709c3aa0426f60cff620822a8f06d5f10240e20763c958');
+INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa4844a8b0d3104120c86594c934393df563a28f6fcf970a8e23eb3e67ec70c1');
+INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"d3f5fbbe85d5a81fef8735c73349f61a43122f4b6f3f7aa61215323a683ce3aa","messages_hash":"e28265acf72abd9e2e1640e135cbca8d4bd04aec2de959f7dfd7177d2dbe5df0","transaction_count":0,"txlist_hash":"e6600d6d90725ce81afdd7b00220f8df650f85dc3a308d2486fab88edaaa8981"}',0,'BLOCK_PARSED',NULL,'fbc7df30cda98187e304408f126fef60607fd0f6fa690adcc7e90a86070d2ebc');
+INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2695cd576b622cfc14ae614af18f59c990308f241a94a86d162d96a10f66d5ba');
+INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"74d08f0d1cad9f7102d0cfe70f50614c7ae7f4844ca6d02390031e1e96c2b418","messages_hash":"fbd9b3a5e935168cd77253901e2e487144e18db8a9edb9c079653b61e141f584","transaction_count":0,"txlist_hash":"341aa44dcd4967cc3356ca23c97111b1cf3ee128c944493a0ebc6458c4f119be"}',0,'BLOCK_PARSED',NULL,'e9f193506a9f196897e999c08435f6ce3db6bac318a055e046ca943b4fdea939');
+INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f11e8ff0842bce51fbc1b020fecda5958b49775980d953c552aa62f87930c48a');
+INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"753a1a8bb877851ae24dbc33884344f34ee18c6b0d70a4d909231448b943e8cd","messages_hash":"636beda8065dced60a15b93f698312b1205303e89e440054f47f30d3806cae64","transaction_count":0,"txlist_hash":"b9385290e5bd72f2a1a5d2cc889108a6da0aa888fdcf76170b166888c6301407"}',0,'BLOCK_PARSED',NULL,'b584972f89312f88e1e5660784d43740ff145f8a69ad1b4c885979949e89db3f');
+INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fac8c66c5aee7b69d99d9a0becc53ac4b11324f927aca223a87aea95d9babec');
+INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"f7c62d08a4efc854dea6f47249786d3d00778d97223dd84de1d0fd1eef3e2ee7","messages_hash":"0b089ba8e2c07f64e5275a19c72e23717c2f6615e41787e9fe484a3ad95ecd1f","transaction_count":0,"txlist_hash":"6c27a0cb80d8602b9ccd126f53bb69727d358353b4c1299434c3472b0469d85f"}',0,'BLOCK_PARSED',NULL,'35f06da986e46f25ba514ec7a1324df4ed45a77369b0f40d65c9e5f1b02b0e0b');
+INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d87b1d63c148edebde48ca09667bc5558c08db9096df0e182af11281b8334994');
+INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7"}',0,'ORDER_UPDATE',NULL,'8112087ed716927df15bf5adfcb3a867a4a884b90458c8a8eb7bfd61cb71b856');
+INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'beba383bc23f7a1b5e89ac9c8a384f3c64db819ea1ccb285c4a8e658534a0678');
+INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"4408350196e71533e054ef84d1bdc4ba4b0f693d2d98d240d3c697b553078ab7","source":"2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'ae72c1360791145838966f35d30135162b0d15320604d40e0a0b6e9ec00705f6');
+INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"833690f195e85b427b61890640fe8f0cc7419e0f4301b6f4738bab12be06dbb8","messages_hash":"0613fdf8179c40a496e175e4650066c352531c47db27800599c58aa367de8deb","transaction_count":0,"txlist_hash":"cb3ca17e5c792309fead54d49039ee0e00e7b17291868a3a2e86e09bb3dae80e"}',0,'BLOCK_PARSED',NULL,'a39452cfed1a203bf13caecb232d468430bbd71be3461d31ea2f1708870acc29');
+INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e441ffbbb3b03182c0f9ef2f60d300f59ee39efa92b55e43c0addd6c935d015e');
+INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"a1e118474a6f70b8f700a67b43ee0272c4609d3309603b5be6434ca587eaa704","messages_hash":"2f23e44306cdf377f80b08b032eae1a1b4784abed44d12a2ac67a7a585565bb9","transaction_count":0,"txlist_hash":"2f097bb1b1dff2b4266dcb3b46d29255401e23a2fcfb75f28e9f7184733e14bc"}',0,'BLOCK_PARSED',NULL,'a5296f0aab6e148307c5d8efaf68f791229a70454df459436f1e5f88602e3075');
+INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'462d7d7c95110cf62332378d09b3fef62f3d1a9bfb2d6a5c6302831d051fcb6f');
+INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"3b6427f61fb59ffd674ed8e0af75687fc4ccf8b462011727d4dc4bdf4c794775","messages_hash":"dec5e3a86f2072ce434785271240c70984fcaba5b19f7bc33755d1700f81fafe","transaction_count":0,"txlist_hash":"be05766d9a1c70d8907d523979a313ccec8cf2900335fd91800b4b90da3bee12"}',0,'BLOCK_PARSED',NULL,'81968e93dc050bc6fb405aa391a048112c16300e8f3f0cdbe22b001c3a112477');
+INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a69b81934106f4291f2abfd1d124eb3d604482271b41139ee35b1f25b4e50bef');
+INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"d065384f739c52a718f656717f88eb2fecc10d8567a93ccf823434c003d28c55","messages_hash":"05d70ee9655f79e42a6afe31be67c186c88cacb58a11c0ff890b1456bef081e3","transaction_count":0,"txlist_hash":"41cb2236ce676fd45ae98593c9cac6291fa95479ec07a5af615ccb5fbbeab760"}',0,'BLOCK_PARSED',NULL,'4ee17bfa29c7fb5b45b12d6b5d7de6458684ef24e6337a7fc36caec2d2195c47');
+INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5db5cab22cb8fbb376ecf8eb533dec304e9405a51349596cd934360985b2675');
+INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"22cddc8dbfcbaf4b851fa5379c740a96294acc3d772dcf6d684881bef18d7fbf","messages_hash":"f18df71f40fed5ae0d51f0c9e86730bec7481f5f1d42edab3b43ac8432ff21bd","transaction_count":0,"txlist_hash":"0beb88a3d4adbf913601c2d5144599cecfd48886ca51f995aecfeb50c56aab1c"}',0,'BLOCK_PARSED',NULL,'34a9a04091fb5b2245f54d1c541b62231ff3e5ba7e38a9645a1656b6069cdb23');
+INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a09079bbe3f8e38444b854c91fb56d39c9b3b459213c2eb90135218eabec0980');
+INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"93172c51a9c4cb5c33937a199a32ad3c13a40a60f4c194a1187e2c59a15c0ccc","messages_hash":"78e67095cf665c1de0b2af21f2165790b1417274feecd81456347f6cfb6c9ab6","transaction_count":0,"txlist_hash":"ea276540d3637a9165f482c48e414467e3a78c2c25c6a70bbed0c38f7205920e"}',0,'BLOCK_PARSED',NULL,'ac44a1fd465e15b46fd727ecd58d51dfaf36fd67bc17034b3f914cd978b14da7');
+INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7685564a2c9009780f55596b42fdd7492c1c7f8ffdfb8b1e4e12aa9d1f2c4404');
+INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"7a167a13f7e576c7e066035dbe2a2513659f1386c095a9e63afa494c043b7def","messages_hash":"c039524f327b7a85c87da066d6c888e7db7320268025a7c4848205af1420740f","transaction_count":0,"txlist_hash":"15ef5d6175a7ce1937554ed6c2b10be6555aa14f7179245b7b140d1a620095fc"}',0,'BLOCK_PARSED',NULL,'ed66a03a87607142f73d729dd6e4eaf871095dd125fba0177c5c618614f0ce98');
+INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'744ad686516ce58d5e6b160a2dec408d97554b50a607a9e22b6b7e0188671082');
+INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"4733d9ada3d4f60bc09f0a6eba3fdcdcd8e8b18adfd38c7bf06372259e2d38f3","messages_hash":"a92cd8e4412d0da2a8c8f8004614b64b31a9393e1069d2a2bdab3838e176e76c","transaction_count":0,"txlist_hash":"4ac5fe346b8577626d58c9442c95fccd4955506ac712ee3f27b5df6b7ec1d0df"}',0,'BLOCK_PARSED',NULL,'6f2631cffcca29a32cda486c27050a1e952b5fb41e0a4a84befca336e4da57c8');
+INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'debdd12fca785c1037935e75385400b7c7f5235627483e8cfdff9a5ce44eec20');
+INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b8021bbe3744e58cedfc3dd99220fce48f4e56a8fe8256d7894dd55c7312a76d","messages_hash":"f90e6dfbc029264f89c00090f608e58489bb9e6823efb114b2872114a62af866","transaction_count":0,"txlist_hash":"acbb3114dc5c7599eabdaec4833952c3b6de20dde616233f3945151977d5be16"}',0,'BLOCK_PARSED',NULL,'83479527585f6231c56ded72e93eaaa504dfc33edcc9c77625b165ca4b45d2b0');
+INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3eeb20810460c53f32f15adb66c95666fff8aeb89cd17f968170cee24a3a6ea');
+INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"017b79a5fb34785dd39964a61a5bde69d676f75ee085c27bbc9e3381983c2dab","messages_hash":"6ef27739cbb44fbec1f834c103cf6a7fdcf7a810a99d231ce6f7e2d1a308255f","transaction_count":0,"txlist_hash":"6cbdfb2d6b3677c91097b1e80a32dafb0172725fabff370adcf444321ee48509"}',0,'BLOCK_PARSED',NULL,'dd90eb7a036392db94e68e2370ff87acc2824253ab93168576030c5ea9112337');
+INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76016efd11c761462e8e676c92a926584c9b1bbe5626a1e5e884d93ae0f302f4');
+INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"cf5389c037b6c619025bf95d9718fb5548cd67978c3ebf26f76029873828162e","messages_hash":"714689f948fd44867292f758edc7deb1d760d0436623b44a621f75bf4bca39d4","transaction_count":0,"txlist_hash":"a091876d90aaf1dd5b0d53403a3a9b5788710bf3d0c1996184a91961a1f24aa0"}',0,'BLOCK_PARSED',NULL,'b44d0deb35d9380ab87b1e2e4ee64d08a0ca7c8bc5d7cc380ac5f2b6079e2df6');
+INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8fdb1c6194415be609d237de75afdfbc93ed28646384143b8018cf8d2725ea1');
+INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"df116ea1fcf5f968644dcc97c1149f0ef6061b188fd56c27152543256ce79009","messages_hash":"603e460fd6b1161f30ba21885046af008af9b605159052f0e98e8825519ba2e7","transaction_count":0,"txlist_hash":"eafb7d2cbbb2d1afe4a3eb65ca6bc7be653d7d824238264082d2c5e382757e54"}',0,'BLOCK_PARSED',NULL,'b29937d0dcb87d02f88328818c6a597dfa12d6ad9d28b04e5fbc755466cb0a5a');
+INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff780a65ca67144aceb8114b723fcffdc641844788b297fec4bb542cdcc0ab97');
+INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"c12cfaa984bfb34e781ac93848a87cdc0318c45a1cd9f02d31f5c3a4abe8d918","messages_hash":"57fd0e4696e43a7d7bb8fa26f243319f1e82833ff1e1e3ef61761f4a1d6c1864","transaction_count":0,"txlist_hash":"61cb811c578f90cd6cc9f6963ff80c280f6ad0edb53fe53dd3075a8818404fe8"}',0,'BLOCK_PARSED',NULL,'2b4cba729855959af33c1388d8074b1303f23a3a7ae0cac3bb0e48b24664d392');
+INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe915a73cf36f2f623d469bff3e2bac469d2eac33f7fef4909fa22b56da940b8');
+INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"999a9ed2673de2db7637e22eb8a1876e0c794e90f09cdd76d1442e56ae12b1c8","messages_hash":"df129d2913a58f5186cd0b2b5b7f5d7769698ce730314dd80db18f10976381db","transaction_count":0,"txlist_hash":"ce9e3f0524576a630ed0154cf69c7798065a001e6752c4f369c30b06aebbe378"}',0,'BLOCK_PARSED',NULL,'b8d744a099b4bf12c824d3d9e46b867b076da82d96934131be933e4659b227de');
+INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b0e8a09ae4b563acae98f45a81a7d5c181c7de25f5a080a42549dcbff13f967');
+INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"240c9a2f6dc918ed868abfb5de6838d7a17f02263fdda0ccd3c7481c09e155d1","messages_hash":"4e07f32943f702131817b662d2c3ffe3cd796368ef4f73e48439c9eb02939a4e","transaction_count":0,"txlist_hash":"4f83f9bc531841759d1071a92ccda5d898af693fc88db0de16b2d2ca09630d59"}',0,'BLOCK_PARSED',NULL,'4548e442dafb0232418ce16ab790b79454ccab558aae52e3e5b07f0a26043ab7');
+INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf3a23fd9ace01b188c5133bba6c755ff008d5bebda1047879b802e84f5543e4');
+INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"79836105e355e25afd709d15632e2c0d1ab53ab251cd3750ffee9fea4a2605b8","messages_hash":"05fb8afd82b430088303ec8ad4e865c81b504b1443e524b67af7e09a83f9c086","transaction_count":0,"txlist_hash":"b17c5d4fc0eef05c315095d265b324a0ea7dee28145d7b4e251a944b4b6a16fb"}',0,'BLOCK_PARSED',NULL,'157a0870d933039755f1a711640ac133c3de144f66e9399ac3aba99d19c33624');
+INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58ed692c4041251c89076e96500b6595e73eb16f5b9774330d38d0afac12e0ca');
+INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"6bf0789392e97311c4283d9f748b37effe7b0d1678076e30ce5725eff345a8c5","messages_hash":"96ae5e483fa7eb49f9d1750aa0c19a550e24f9c157be12641d6ce9ffe7fc98a3","transaction_count":0,"txlist_hash":"f9f7ec8bdc9301d4ea41a099d04f84631badad709fdbdf43582327f183102590"}',0,'BLOCK_PARSED',NULL,'f8528c655a4a4d2f26b7c0b2c1ac74ded1df4ba45cb9a5c7ae3e6aa419f7f321');
+INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec1dea8ad5dd0905cce2a6fa010485f8bb8078152f1930f2535ab7609f080589');
+INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"1842c46a03800f5e191cb8d641aead6bc80e6d25c2ec826f3a5df426059cc1cb","messages_hash":"d08178883b6f4531d41d2e3b87bf8fc6ec60b894b457220f02c178e2f0e9ad53","transaction_count":0,"txlist_hash":"458e51569acd6ef757e0b36ab3f558e76f239ea3bfbf1b0ce7824f39ec5ac23b"}',0,'BLOCK_PARSED',NULL,'3fc0bac534eaa99d48d9ab3e66b152b0e6ef4ddcf4f48799e2da4a0c5ca7c95a');
+INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'749641aecc5db096b232614a8f7f720a83e18a2220f84b1857edcb80f708e323');
+INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"d424b02109320491b2d32388869d6468ab1fca26d4bf72374cfef729efad866d","messages_hash":"9c8ff110093c5f2dac33bfc29bff548774965b5c2ac9dd3db577d54d9ac8b877","transaction_count":0,"txlist_hash":"53e0972193c4f689d3a7216f22607a9b0cb7b8a9f43f144469bfbf25f59edb09"}',0,'BLOCK_PARSED',NULL,'815240bff1fae8db18915778418d278f7639ac86eefaba6e371340ee96678f94');
+INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6f1a33297712bfc2bcf5170043a6b4f7df5c16e6f0b3840d7694077aab5165b');
+INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"d1db4181403136b41168ab7786831f2fadfc418a05b7477246ab097bab531859","messages_hash":"6f8f9e6db4aec069909f11ab4e236402bf83c5fcacd2d904e7efc22a67dea365","transaction_count":0,"txlist_hash":"89bbd06ca16ed2098ac6b7accd2296b4e0a2d8236dbf1cc14137e90ebad364e3"}',0,'BLOCK_PARSED',NULL,'de2227fd06a3d0c92d09149a5ce156c365a59d10f3df839b40713f1d078fe2be');
+INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55c2970a70c8d1d61341bc8f5345f198c54cea39e3235f0b659ba919d99b55cb');
+INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"97fdb6b2c8e636d23109a67af55ab4bb30955a84073274de3fdc788074dc1b6b","messages_hash":"1d3bf43cf1894650df05b52dbfefcee4890ec800b128c70a86e8ffdc142231f1","transaction_count":0,"txlist_hash":"8b8739b799483eb556e0e32f92cc092c349bb2bcb87044e88e762d55d6f1b033"}',0,'BLOCK_PARSED',NULL,'f110964a0abbc3deffc818c7dd16b7603044ef5c733d8ba3e795fcca6ba9fb11');
+INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'747a808a2f482e4d441019e7b0cd7c55f1b7082408f601b28fbd99e9781943b3');
+INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"0506be4f04a22058504406210af3f1475dbf6d6834c1c1b7f6ac0fe013b47363","messages_hash":"bfd798abe2d6a96c3a49465159876cc1f1f24ac4726ee865e925b1d8a3c717fc","transaction_count":0,"txlist_hash":"05673a7bf2fc7e9a5daf3732cb03bcf43712df43ef7ecf1bfe89d18f54726b6b"}',0,'BLOCK_PARSED',NULL,'fc0a6937f71b39713877201aecc9215fd0d905dd118e9d979cd5e4a3e4592500');
+INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'116f9a17d1127ec0c4b28992fd7f411be7bc7daad76d34ac07bb288f2e5fd19e');
+INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"3dc7894c1368c9ef5d32a95fdc292e7de8237b73b61365a25b9d0da95eedc2e6","messages_hash":"1c61644d099e237a4f81be83ffa963fe9d6035f475fdc848c98564e2f54851b5","transaction_count":0,"txlist_hash":"4651aab35442e5ec1d79ba6422ca0c2b0df02369ee49b33efe1ef54e2ebc7080"}',0,'BLOCK_PARSED',NULL,'4ebbea7556fda914f19ec2f0057130e2dee1b61946959ace77c4a4a8980d7dea');
+INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'524bf0ab4602b6a80c6319bc4358ad08ab1eca3a29961aee9ac944d4135f2d1b');
+INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"a9ef2c8bf3a88c326d2bdd722c3d82ed4f4c10b65620b136d4b893ed93174795","messages_hash":"a060cf630cb9ea9d3323991699ef1d3729615d3c5c96d88cd762dee0fd536702","transaction_count":0,"txlist_hash":"d826fea28c0f5e82a6fbefae4d6885a0a49a3180d3c16d6eeb4faff9f57d4d89"}',0,'BLOCK_PARSED',NULL,'cf55873c1068aaed0b8a8beff085668253c75a9e878494dd6f8de8acb16407d1');
+INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cbeda4821095696640b37c5bcc27e37ace49c6a79583c377eb7962899350112');
+INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"13b76edecb04a9733107d5c21420ee20424fd463dcde2ea98424ad99ed3383f0","messages_hash":"6a9de88b55f133208cb74555bc17202b2e369ae05317ac44b9609c6be277b894","transaction_count":0,"txlist_hash":"fe620dd60bf5b6f3c610495735deca47cdbfcbb510975ebba2f68c7df6d32a15"}',0,'BLOCK_PARSED',NULL,'ca5595407073ddad60cc7cb2235efcc6e4746ffd26bbffba08bbc95979daca9e');
+INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d51c4d116d5fe238b9c13499db0be3b911887244a8becb605e3bcea970ef6b56');
+INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"41c8a47d7bc4e73aa2f09685acb9fac052c5c55764ec3a8250abbbcde40dbe90","messages_hash":"0ebef95e7af00e825fed2b9ec7bfac3b75e2a4d6d4e8d2fcd1be32466e400314","transaction_count":0,"txlist_hash":"553ea196d7a1045f71dc6261cbfe4b84c78b7dc37de89b8865f4d385cbb42863"}',0,'BLOCK_PARSED',NULL,'0b8a52e916b27743d75512ecec59af6ced0d4a8bd45c4b2c1ae4eb2e63436ef1');
+INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76f85a78102cbaf31ff9d4c65b31287ff12a2e117d44b736c5a7daa1745c886e');
+INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"0b8ec211d258206ab8c318c079d9deb33d444a7086d5a05aaba97abc0be137df","messages_hash":"81b77dc97c9febc824bc9d8ab08c75d04ced65707c217066634dba9d655a79c2","transaction_count":0,"txlist_hash":"c3fd7824c9b8413f24feb96ca676285447a980d684f730d10b81c06a440fab7a"}',0,'BLOCK_PARSED',NULL,'693b624fcce7150634aeb79a7e78cb38bb67ab9acce1cf992f6f3aa2643c525e');
+INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb2fc66100c9d4b3414cde0ce4928ea0b4aab054f2109b7ff6e1e69eb56ed305');
+INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"f5c2686408577854893d11b02f52d8ea917e90777dddf67c98aabb36a3339b6f","messages_hash":"1517b49569ad5aaf4b3ada4f6b5d7c2f40be41ea51d477d6f705363ec22cc8b1","transaction_count":0,"txlist_hash":"3f73e1d36c82dfc8ee58f83502643d962ba6558cbf0fb46d83fea966b5cdfc59"}',0,'BLOCK_PARSED',NULL,'f492ee4c97d6a87e0ac1dc8781030cb53d6df65e7807184bd636e7a34960f4ea');
+INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'921e16ebcf11497a14d94994704de3e85b721c9b47a0c6ae5c4c19d30496791a');
+INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"b80d446905550494f56f4f8240b501d593b0d0e63b5d98a09e180b1a0a68e3b1","messages_hash":"fbacb5df11579446cfe22910ca43521a0ba4f20c0ef4f50529c54718ec117c7e","transaction_count":0,"txlist_hash":"f1995db5beea80756d509ddf79d3467bb14ae96b0d151175499030505d1f648e"}',0,'BLOCK_PARSED',NULL,'9400e3e5e0b8c0b498e0c4af329a773e513f3b55eb25fd4df3a5f64824f8f0a1');
+INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dafaf554f697fb43692bae83acc98f83289d7d81ed3fb8f0a47cabf427f3a812');
+INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"41b30d23becc727151698b29a1bb733e45ae5086683c5256d073a6f817baaf49","messages_hash":"dd05dc53bf40ea738bc520430a6deb25cbb7d5771d077d8e3a09cbea4446800f","transaction_count":0,"txlist_hash":"de6a4e6bbd49de2001ce26387040970beeb7062b4e16911757204d2745f6c409"}',0,'BLOCK_PARSED',NULL,'9d487e703f59a3acbb60cbde78a1cbc7a8d7ede9fe6eaee6e5c1acd79cdc6e3e');
+INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a59e375c82290d91032193a6a430e3340a8047ab48e7ab41569f472a9105cd60');
+INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"f873f47e89715e965c98e92616339f8ff4200f6b8ef5cf747e8de2d101cbde02","messages_hash":"0cacb3f54ca81f783e0ab0859b202c4addb10544083e7709a7cb3454ed8e8efc","transaction_count":0,"txlist_hash":"f2954d07588b07ffc063170f43afbb12548fe61584575a979526d28dd631edaa"}',0,'BLOCK_PARSED',NULL,'ad9cdc58621b59c170d1ebec6e1586c06e392379c770b3d9308fdd837c0d0a94');
+INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22223d43e6d97b647e2bb02d7b86284ff3939958f7ced987dee9c2bae3af974e');
+INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"14ce21ebfe6a00eccd7bf1aac2d5cf122441d2ebe8c0f5fd6dd14a95b5a209b3","messages_hash":"5e6809578b7600188094c773afb02a8079d09f7be6dee3b8214839142ee65afe","transaction_count":0,"txlist_hash":"96b5675e5c3a3b66d7e2bd3424316119cf795c17bbbf2c8677b66872e4659574"}',0,'BLOCK_PARSED',NULL,'bb5c26b97b2553516b49a83acbdad6124b69fb18009f7f38be059d526efa414c');
+INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f4e32163e5c1e33601a0b984eb882d45d6a52010392c98f332eaccdb6bb1c03');
+INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"adb05bac5e7f1e6a1679d5c51f252dc877ebd99c2b73a56df69a9c848cef98a7","messages_hash":"cd6aee357ca42dba8ff4250ed8bd069e4d0855cc6ea9abeba4fb07e46917ca8e","transaction_count":0,"txlist_hash":"243e437b3c00d8106e8c9c2cb08d22376e8a16bd3b62a8b62b86128ddd6d139e"}',0,'BLOCK_PARSED',NULL,'2e80cdca057cbd7abc3d750944ee59e0dd36bc73182480b6318efa92f1bacf8d');
+INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab483195ba5fd411566f315f10cdc85b391ef75efea43493c08ce320b2a96019');
+INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"9065476b6b2cfb122888e036cea71d36f3d5f7d6c72451c63d770b40a4560fac","messages_hash":"8c59a14fd3231936199eba5628f8b3ef6ff898ec1dae67431ee574fff8ab6db7","transaction_count":0,"txlist_hash":"4af47a042289756821ffb0b14aba38fcc8c972fd254220d3991b05642df641e6"}',0,'BLOCK_PARSED',NULL,'b712ad56c5c6d505de95d50bc39793ec24c1528329c53bed837c0ab4f27eff51');
+INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59357f19c8482dfb7de91da284a26d538568e359ced687ab005c9c946f2de24');
+INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"7d5d369827ec0cd44743ed9a519d45003789ff8dc2e511191d2726e1482f58d2","messages_hash":"5b94fbbbd4a8629cf7a25bbf42ab82b7860eecdb05cc8c7d3b6c3c09ec8b51fb","transaction_count":0,"txlist_hash":"4d61dab0197a7a3f452f3751a92cb1f5378106a13be0351f0f8942d011da097d"}',0,'BLOCK_PARSED',NULL,'45eb8ea178fffc707a1f28b7b1549637bd70c51e29190aae9432f333f77872c0');
+INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cdc02af3449aa2c34b93516a7b4ee73d36134e8b6d1f423557dc4c0ce9aa29f');
+INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"301b22a9338d5dd39bbebf6bf518ac53bbb8e1cf7469322484cbcee2fee666ef","messages_hash":"4f3d0952941025cf22e983d89437b3c1edcb7da0bd3c919740235b095454178f","transaction_count":0,"txlist_hash":"ae0cf0361293deb7b8903f20aca2410197db694ea3aff0aec3b635690168f5a5"}',0,'BLOCK_PARSED',NULL,'8ce54cecf5227072e73e6d80a034072200c8ebbe39e84fb3baef497a10654953');
+INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f142ccb82d7007dd0e2f21043d5145e965aff97daf922ed32f409ff04289eba');
+INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"fc281736e1dfe5a89a9a3dd098565c645904a4ad1626dd70ac8e9bc447dfb8b8","messages_hash":"8c23ac2fd5238c72ee1ff3cc59553beafa800332aa3c2f839850f2f19d1fb742","transaction_count":0,"txlist_hash":"460295c507a33a24231d1f4c760e5987b54f29d1e17bc97959db2a712f0339bf"}',0,'BLOCK_PARSED',NULL,'adde1fcee590a75cba26a4be28e67d6fa767da3441a7264819c0d0b4a659c6e0');
+INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1af156fc4987f0b625c4107d1606a89ddfaf01b2581857b486cb5114489adf5b');
+INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"b0249a0dfd008a4554adc24085d3c5f44278403cbccb44ba27ee354b23c5627b","messages_hash":"a469ec5f0bac890b8983e2c577e6f70aebea60fbf60110b3b9a0499ba143a31c","transaction_count":0,"txlist_hash":"d07500b12517493106b918ff5b6c96c371bc10bb3699eb279647539ea7ab1fd5"}',0,'BLOCK_PARSED',NULL,'409e368ecc6e9e0ec22d59380664279c8c263cc0921c42a9aaadb32feaf7719b');
+INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'128f7ec460f099e665c6c0f79a336d65222c65861f402ea0bc936ae1b5f65bc6');
+INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"d34051879c8db679ac5c49e50edf2085d0ce88dfc1adb971e7b097c0177854c2","messages_hash":"f64c00b3803d4ed0897b2019ffc9a6ae6d6ff5ca900f901ff97bef9d32936c70","transaction_count":0,"txlist_hash":"874e494499820bcc0ba41ac5cd1bd153ac1772f730c9b842b77b289adbb2c2f5"}',0,'BLOCK_PARSED',NULL,'decf342626bf556ae2208564253fde54cfd3833abd9a7200a52759a1ab77e6f1');
+INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7dc637fd3022e4f24d35a778acba6163ac4f4fe623acb20b35540371e5d9266');
+INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"0186c5312af19576cc628a85014ce7c33892dc23b5352c8ff5a0f230adfe263b","messages_hash":"62bb2badcd7c376dd59f2bb55f1e5c439b32971cd54bb6116678251fe17a94c8","transaction_count":0,"txlist_hash":"01342c18caeaea6b35f2d815b9aeffbd92228f6ad285103faa13cb25171fdfc6"}',0,'BLOCK_PARSED',NULL,'137d690f0d70e8c6fd5b82e941ec1e77fd030cfd1024c02f6640ef5b2286f0c3');
+INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba3474b86724f899ada91b470699f5b5ff5a8a7a7ee34f7c886d385d565deec9');
+INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"5376530512d61c3967f21cf01418d317ed072976119b8583fefaf3991b93d8b2","messages_hash":"97df614eaef187b9cac1010ae8b47cf9e9a9b3071d2b5eb4ac07d4d5a2303255","transaction_count":0,"txlist_hash":"72a7d63ad0b15a401210b197da00ca549b6e8c80d8eda1650cf9017bcbc92532"}',0,'BLOCK_PARSED',NULL,'b3fc58e7a8ef5f53e64eb12cf769d4dfd1aac174a3b7435c7a9eb181402afadb');
+INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'469ae64bf0867eb72447fc858467dabf7049b7b93a31c56d2a2e8a329e4d53c9');
+INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"d15fe704fe5de58e9203ff5ded50218a1a01609b65a1a259aec510b8b9e6d690","messages_hash":"fc69b2a194e31e2c1bebc2f45c01768c1cb8020230be272b657450a4d0c3d185","transaction_count":0,"txlist_hash":"924753a39229b5005b684c4b2dd111b6233347b89179f2fd2732d256b960ace0"}',0,'BLOCK_PARSED',NULL,'a911711caed5bb90dc2e089cad6fe19d98428208dfad114b46c6d33c099b6d0f');
+INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd3daeaadf0d33634a00023a444204189aacac138c5a2722e253788650824873');
+INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"61015667044d0dddac3bdb16db67faa6ebcb71758101bfad898fca8ed183e7c3","messages_hash":"be820504eced707b7dc61f3725fd36d05b6264e89b1d465e8eec9e168fa81146","transaction_count":0,"txlist_hash":"298ed692f21afcee61b06fd853cf07e5707dbd63a05f0caff6b6a177edc3b613"}',0,'BLOCK_PARSED',NULL,'57e3632eea9ec1a81f1da6fd778a4ecf50c99a1adfe2c299d8fb6862ca8df927');
+INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bb50d31522019000c7cdc399772f6e5fb7efd3574f9985ff2b3ba2b59ad23ac');
+INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"5dd06f32075c46b6e573d73f12c1c31cf82cac5d1588bbdf302b8fe95c4b948b","messages_hash":"810e52710c97026f8cb61ee50f1368103e4df21636b9aa432397bdcc00b4bfa9","transaction_count":0,"txlist_hash":"528e4b6aee88202f84f9f2b56611d0aba2336d925b8d8fe47039504e6eea1ebc"}',0,'BLOCK_PARSED',NULL,'d72ef8edbb094b2df661912097dd0d3dc7fd4b8d6707b0fb42e73edb84cee10b');
+INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33c7542ce69e9aa3dc915d712ef0d1d46c627993d7c4419bacb54f53d17a883d');
+INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"8e1782c2f35a07fcc4c57b34b2226b70cc4c7af2761386f38fc8fd74d53d5e60","messages_hash":"ae25ca0277fc33f75f17767762036f55b49f6722743c7e4ecbfe72e09bc702e5","transaction_count":0,"txlist_hash":"76682f0ffbc6b86d16fbcec967a7562f6f12558c12aa3d9abd8779f51cc870ab"}',0,'BLOCK_PARSED',NULL,'b759e266b98531f218a657dc3eb0358c7d2286427bb2cb5560cc4fd8eb479b41');
+INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'474af56a571cac940479b6ab165cbefb447ea2dc22b201816327608ff348471d');
+INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"6469ff80c3890d274817d30602f33d5d4b0a7c0a9e3b85100d21d7b38d894efb","messages_hash":"52e35a802a0df97ab70b4e1f2777aeadf40db5e127637964dc433641d0deb52d","transaction_count":0,"txlist_hash":"187e9ae8428d46b7f8c8d652ab31dcf7c86a574cc781714a71784857dc0d1365"}',0,'BLOCK_PARSED',NULL,'4b8ee9d58727307cf60b569a8c9370153ba839f515cffcddeaa12bf7501d498e');
+INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c253a267f23c519166f54f60cceddbb150cd8f26fabe04e4211671242746579a');
+INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"3ca73c2bf37c694281938a0599335633dccf0284a027f5f3b8e17a9e68cbcdf0","messages_hash":"b84542bf35868e749c26374c6d49188f71646950df4c5e148b2794b7e12fc43b","transaction_count":0,"txlist_hash":"f7830250755fc0566ee5162a06e7308b51c9c0a7a951752be6cff224806a90fa"}',0,'BLOCK_PARSED',NULL,'34c03d90ea8df10593393d498e6ab22348ec85721abefc363f452fac4710f074');
+INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ff122f1043eb359df2ea5bfeb49b838efaf49f9552882c1148cd6cd0e51acca');
+INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ae4a36e1ce7d5e11f059301684573cddce85b70ba69188a116e0611ceba5c140","messages_hash":"cf1e6d2f8230e4b520967669c5ecb25097cea49050928d9d43fd75e5df7d327f","transaction_count":0,"txlist_hash":"8d3b4ed30546c5f19f5522a0f57a86c29159ce27bf9e1e183a5ecffd9fbae8a2"}',0,'BLOCK_PARSED',NULL,'99d8ae204bb612231b56af8f5878085f029fb1ed5875838836abf73c718901aa');
+INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'827c84a152c74ad40b348ca58fa7e84b1df68bc8b63081394cb5cecad150d229');
+INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c2c0b96c64f1ed555c8553da976e0fcc3a5ef403819ceac49cf22b476281ced1","messages_hash":"5cf30a3ceed0d709cb0b5c39eb5028531a9d80bfbd9cb5d7ea17581c3c069882","transaction_count":0,"txlist_hash":"d9ecf83f3f9f40246bee151938855fce34e0f9c636a5c9c2c80c896eb59287b9"}',0,'BLOCK_PARSED',NULL,'45920cf09fe37c117b64dae946f357cba9e9c3e41e051bd28358856d220a932c');
+INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da2414121ffb69699393057d0aec072a970de0befcf807e225803fab618e3ad2');
+INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"88d1b09f8141b90b44740e4618422298f8a64f2b3d11230c6b04084ef8d11b2c","messages_hash":"4482a13c9bea52d65ee94adfb69aac0bee89623b4520913934a7c9c6a5f3e1de","transaction_count":0,"txlist_hash":"49e2f64485ac3ef523a079732bce9b2197384e2abfb3a4ad9340bca5a7179e31"}',0,'BLOCK_PARSED',NULL,'ee3eaa2abc3b754d4565e9867ccdfe7c09f0f7e4cd311eafe0ea03c2c5b30081');
+INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c09ecef31f3073feb9e750b6dbda118228ecd5bf5ff0e3fc1357185b6cb5003c');
+INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"dab22ae7a9216033777136cbbac87a3597cf6478a2fd008260caab3cad0cde3f","messages_hash":"51101fc829c2b78e2d0593dc5773c73fb7dabaf514fcd7dee977cb08c9421b34","transaction_count":0,"txlist_hash":"5406c6e3c63633910da82fc039c525dbeeb1aa818dc450a9d34d43084eef680f"}',0,'BLOCK_PARSED',NULL,'bf7a4dee780ae3bf21d5d8639745b05cb8d6ba17324355557a6112da0356b36f');
+INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20c023dbbbde1afe7a67dae36e01805975823bfdcf5016c4894f613c59977e3f');
+INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"a185e60dc97d19a211b0dfaa3f3da154956499b4af146751bf1d776fc68c15b8","messages_hash":"9b392f76b8224d5eec7db732a198ee87b3260852f8baba95185b7ddb67a39a92","transaction_count":0,"txlist_hash":"76e009b37822fc739a1e4abccf9f908a5fcdbed7fac540a719efbff8ebc694b7"}',0,'BLOCK_PARSED',NULL,'bddd278a474199241fe7e9bc203a76358f6f407150c3e92781f8e42b982c62f9');
+INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bd0ca305a6ec36673f0e92a7654a3c493a94d8d96f2d8a41b5fff91280537b0');
+INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"622c574321be176c535fde918f319e10cfacaab383978be51406334303d14a8d","messages_hash":"fe483b13911d5128e3cdf7fbf65c7d7b33e88ce236f61e8c371334188a0ee673","transaction_count":0,"txlist_hash":"f3a3c37d89eb008f2194267a1eb5a7a52e9443f8b1f5fe51267d93a57eee27c7"}',0,'BLOCK_PARSED',NULL,'6ddc4ff391c2f78edcc73c6584893ae9cb40d7549216fc78635922da0e609323');
+INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0b17598239beee4569118518c593fdbfa1d7e549d043c7a5e2d169bf6376513');
+INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"5556084b92f51175d4de4097fcd820a3c367c2f0630d3a20081296e892462d84","messages_hash":"9d62620e8e0b2ebb2846ad244ea34458a8ef8031469188571dfeba769a3a5da7","transaction_count":0,"txlist_hash":"f284f757d004154b6ab9b9ee9d18281e6f8dd51f25f3f1fc7cc58450e0ba5f17"}',0,'BLOCK_PARSED',NULL,'a819c1cdfb89edbc8c23460255785ee5caa8069f49e1b0e710a8535ef9aff77e');
+INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd4e18635599072e7311026c1e4d274304ffa5f371be8237abb709d523478482');
+INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"fc9dd8ef92fc7d47b187a75bd16e9698d61fa9ce6b4da7bba75982f59b0fbbc5","messages_hash":"e36b2420ada93acbebb22a2b3d4fb8324af81f862a4f3bee9c16976ea9804c39","transaction_count":0,"txlist_hash":"e5f9da1d98725423a240687ba2985b42f8acb274ba0122b4e31e25c57619845f"}',0,'BLOCK_PARSED',NULL,'257c124f9fd3d943862aa9e36bffdbec9333ce63ea958a8bb7613b45b1eca331');
+INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84c8ab3d20b55f7fe929695e3665a724e8bd99036adc1912e599a3a1f19e0e7c');
+INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"21f7329fa27373fba176043db9081b0d9f95f75421e5adce87177a3edffcedc0","messages_hash":"b5f798a239f4152608d82265d035add67b2b8bc5a593024a87f3173d7ffc6007","transaction_count":0,"txlist_hash":"7935ee6c215a123367ddfae34507170148723d08f1963aad7e47b68520fa4e70"}',0,'BLOCK_PARSED',NULL,'f9bd0cf34e50f47da281236091930a9a01e65d1e3d3c43c88fbfa4d41b05f1ab');
+INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe9d84ef5d109bb7d138c271c6205efb91d8b79d6d2392122e79493198860470');
+INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"19164a10a0602df57d1add2e3a31ad4eef9d3ef9e53e70174b44aa91de2d6296","messages_hash":"83f30b14f9a0153ad52089488c36a948017b2cd2abab7f2502b2c8a7f1e159dd","transaction_count":0,"txlist_hash":"d35a417416c712908cdfbeda76e261a55c605ff8091605a79d4d4fc986ae76cd"}',0,'BLOCK_PARSED',NULL,'73d14cf178c769464cc3d3a34f27992e6bf0e5a2a706f1911fc59a296a16b1c6');
+INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8d630304f13d8589aba86af1ed405ddb6f59e819dc5b15c8816e42229284982');
+INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"87f1c713c5f2cd84fab28b996008900f86bf9eaad25ceedac1507348a949be7c","messages_hash":"3a95521b8d9fe32cf6061c904fae948e3a4ebd1a18d734d43fb944023ab92e4d","transaction_count":0,"txlist_hash":"44c73622e27c362abf0460a5e0d7b836091523b763b6183cb9815cee30d66bef"}',0,'BLOCK_PARSED',NULL,'d74f908e688dbccd2fbdfdb8e27745adc8817058413a36aa58708998667a0cef');
+INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d90f4dee03cab575b41662f826f8a06f9582d1ac240c5f25f92f8f7ec1bdd8fd');
+INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"75264a6a628d669a60b4a8ca7e24b6b5ef1ad2c74d955b8325959f906c3bc337","messages_hash":"1ead8c1166b2720988979e2274b287f6409fd6f8b68bf7d9ba730d37be4ac3e0","transaction_count":0,"txlist_hash":"c1771520c57b0c705c3a5f0d576622c8dd40c399e4946b63ba153af976b23b0e"}',0,'BLOCK_PARSED',NULL,'0b1e32f28099d25ab07f72559706300b7d4043320979032e0cdfbdc6be622bc8');
+INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbd1917d3946c47b2ab98debc61841d8a88350944e4b0a55d73dc931a4427d8f');
+INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"27914e38b3ca9d8444275e5c6d24b5cfe0b4093f7c645d5c1fc3c39e0d3a3c60","messages_hash":"4b5fe8d7693ddc79f5d2ba024807838779813bfe2dad8467ec90090a75abc8b5","transaction_count":0,"txlist_hash":"329ae5ae96b71b9a116cb82d9518110e63d32a9dfcb6fece911201ab6c3a78c5"}',0,'BLOCK_PARSED',NULL,'4d9ef59cd64eb23baecf87eadfb35d60b5316168619468e719527d38d8e98c34');
+INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d575851891e149764903a7308d9b00c69545ac726c3035b05e22cff18ffb6a7');
+INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"eca83e762899ace4d990b8acb23183263df5f92be10b63aecab3518b340b975d","messages_hash":"f0bf250e00a2ac9cc3fb758f41cbcfdeb3828ad8c09a5e1b089335f97c686f8e","transaction_count":0,"txlist_hash":"6183465e58c5e5ef0f359a032e98d12cd247ff080ae44dc7a90ee35006e74e9e"}',0,'BLOCK_PARSED',NULL,'866d35ce09ba0fe8eb40a5040bd6a02c6cf206a6cd1dc476d8692b291e13f59a');
+INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e121637482b06f9511757e0165451b6f9335e6764830f4f28f5a0b3dea326d9c');
+INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"3544fab97fe90a35b1f52ba955f88a8149d90329986df38d97e12992201bb187","messages_hash":"2647f9675bc9aef4c5810a0d37259488b99cf6eb3ff1c88164d30aac19df4a28","transaction_count":0,"txlist_hash":"407c0451107403f827f434f3f8f8e3c9adb33362ab584802d87903afe3851f4d"}',0,'BLOCK_PARSED',NULL,'20efc5616eeaca9b30e9733e52e42d10e1c0666c4bc59c120842ed92e44bc786');
+INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62409a15e8f7e4af5316c4d250e2d2bae42b0152dfa3d1460633d5123fa99a4b');
+INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"df1e6d8f1be344f78c0b58baf7260c2abdbed3175adc45a122947815c08fcc16","messages_hash":"c6603b3ad9264f282f3f4c95b65a5bd68445c51847a44d5df2902f57ea7771ab","transaction_count":0,"txlist_hash":"d4bc7124f8beb9fe04930a1b19a66aef57669e6bf790a5d38441beefcc001dbf"}',0,'BLOCK_PARSED',NULL,'4779a5d42e14d8b170c4e49ec2e26b50075d395f124ae134874dd87ddf4489a8');
+INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58e8d09687bba6ee3101c9f9f74ff5cca920e6acd7ff054ad3e6b867413fe938');
+INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"8b9febcfe1a9447f6a820c060f503dfe6e5c02738df4d9d63b007fe03847a6c7","messages_hash":"586bba54ddbd352c7b58308253bcc354b178d99d988f9d2d0645acd1120c1f4b","transaction_count":0,"txlist_hash":"7038d6f46cc32e35793799e50fbce7bde13c52c379e3bea10da0e6443a221c62"}',0,'BLOCK_PARSED',NULL,'c1be51165c4df479ab4ee6a5a2767f900d238e5395b2703f104112fcfd8dc88b');
+INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59cd8e39c4318f486e58f24e70fc41c9221a781f5d20c0170e76c0df55040b6');
+INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b927091b4cf42f8537058a9adbec3814b574c1e1ccd242fe44c5f3671a191304","messages_hash":"dad021e3e421756b962576b700d8a73ab057bcaa21f536d57200f38945612fc9","transaction_count":0,"txlist_hash":"7640d47e11233c9d27a8e868bec5595acd99b3c7326a480298f7ea38c4a66689"}',0,'BLOCK_PARSED',NULL,'afb222b88e343bed9ad1acff02788c84dc67284b895d36381c57587392302411');
+INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc0286b69642ca045e355082e9533110b2d3cafb9c865e994a49c47057ae0083');
+INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"649d094cfc74f90e06bb4514276aaf3b0a0ed45f56397a2f774cae9602d02e6f","messages_hash":"9248b84e4d356487ee97784f5437a907150f76998f52b915f1265dff11c06e58","transaction_count":0,"txlist_hash":"ce9cdd6db6e1bbea3a9446b50b092e504bcc58900befb237580896e1c107eaab"}',0,'BLOCK_PARSED',NULL,'19b969f927c71fddfb3886b27a31d378c54d0bd59f249defbef20100680e8935');
+INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8654c63ab3a3ac3466b556be17adc3387dec054b75024da363ed6dba1442daac');
+INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"c9a9dec300afba2cc3f171f76ff4c07cbeb7a41a86a3f498f712e066a8acbd17","messages_hash":"01c8951e997d5633836b621f7778099959f961cb95c443eb0ae310a5b5295311","transaction_count":0,"txlist_hash":"7153d6b86e3d8ed76bed0edd2dbd4fe6200e1e6d82d51dd3f812d6b43109f503"}',0,'BLOCK_PARSED',NULL,'70f8f109fe295ab943d09dd2c5eb77c9f8c113b2a2d4a072f2c6475abad416bf');
+INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17afa1a15927452f3be86757c7af4b473946b3e95b98488dc87ae4bea8a4d929');
+INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"3c7434887f9373b5370664180ba640fa63c2eb5b85569875105e4f4db67d8c02","messages_hash":"684ff321efef12a06017502ff5d3c288cb3fe021503127d9a805b96613224b6d","transaction_count":0,"txlist_hash":"adfefb6d18cdf44329bf9330e32f265145f60290f2a75db73fea8dd8ed2eb7d6"}',0,'BLOCK_PARSED',NULL,'65320804717a4b08e2aee2fd4164f8842ada19542297b6a70517e8f9f7fcaa16');
+INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2259fed12efdac03fbe56f82083e8c6409e7087b452422993e9f80fd4a965a32');
+INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"7e6a09386c3d8552a0dcc25b75143876a3046ebac0ff9cb09d6224ea7e2f3df9","messages_hash":"fc34584264cb48162482623fb22805123c6d42a309a1e3b717bbafbf5dda66f8","transaction_count":0,"txlist_hash":"2776deb848ce539546aada2bc1756d9de92b23e0a8d513f5dbfb1b0bb3be3bc5"}',0,'BLOCK_PARSED',NULL,'f02572dbcb8e0d3834293ef5abf6b3c13d70ae6e735213ab3dc0a3dc88db8320');
+INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d478c5eb631fba6438ccb8d173e35cad0b65936a62a66f64b799e03499968d08');
+INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"6903c0c5941f334f1374aa731e389b010043fc5940d4e9ae8b94480fb4fca030","messages_hash":"53165a6a7eb5bef338ac5509678ec395a1821a1db21de30d49ddaffa33c58abb","transaction_count":0,"txlist_hash":"6612c5f602f26ccc2cf4961f27e64c188ba405870cc0d7cf881c4e0fcb9a54ce"}',0,'BLOCK_PARSED',NULL,'cb0999f8df583e8668fb76e866735a9aad626e8e170b57718688e9cdf8d3e41d');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -1418,31 +1435,33 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',0,310005,'BBBB',1000000000,1,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(6,'9238105e39efd4b7d428ad14011ad0c0f366bdcd150afa954e1f25c0cf4c2cc9',0,310005,'BBBB',1000000000,1,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(7,'19d9d6059edf351635fa19ad867ccfa1db3959a5109fc63729430110a661b6e8',0,310006,'BBBC',100000,0,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -1482,14 +1501,14 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(2,'121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'valid',0,NULL);
-INSERT INTO sends VALUES(8,'b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'valid',0,NULL);
-INSERT INTO sends VALUES(24,'f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL);
+INSERT INTO sends VALUES(2,'121285e4ce5c17fbd6e0b0277702af982cdc14054735154a9043beecb247b84f',310001,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(8,'b25659252f68f162d96cf2cf3070b30e5913b472cbace76985e314b4634641a0',310007,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'592e248181970aa6f97f2cfe133323d3ffb2095dd7f411cfd20b1ab611238a11',310008,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'valid',0,NULL,0);
+INSERT INTO sends VALUES(24,'f4a0c2582fb141e9451a7c00fa61afc147b9959c2dd20a1978950936fdb53831',310023,'2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','2_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL,0);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -1689,15 +1708,15 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -1931,3 +1950,121 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql
index 694628ca90..3934e00256 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.sql
@@ -19,108 +19,108 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'09fa44ed277cd9e448baf3d4a2accc520d57c77fed0d97379ba9bb804e3dda71','7d9cd23062d78e9eb1a892f69b154410935e9675ede8e05fe9c1269cd3c54b12','6be4f08fcd898cb64f0378531dbe611a612627b71163bcea29aab0653610dcc6',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'b2237a0b0b29b2198355f47d38cb995e013c0e074c29dcbf1b99ed4c0f459c8d','adddb3e1b9020e7ef190f661823c79abbc5951801b15469ad9f483c512af002a','e9a2d21a205d237a9db00044b47594e52ddef4e0ce7a8502602d1d763541949e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'a3c393a285361d2981551f0a903d45847e7a0142779692d384bc77bac420db18','6fddb621bb8a1e2d10cf0ec8f507ada12be28578223ee53997aad614097bb35e','ab4f4ad0d5abb5f36804c6b59a1ef3005b283e6718eb3b9ef279e64753216d4a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'f96ba90a471ab5524a574cc4ff72a228a8dc7019824482a664569dcb41c126c7','d6756ca2a0f2a403b0a1714964ddb71bc773e0a18c049008f78670efb7137e18','cc9e415b3deeeffb07fe65b558b262e958c9688fda29829a128fc002e7ea07a5',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'943a23e317f71981b24d636cae98f495b2bb00c949b1603a778eb7500894c844','be04682401f137d4d02c7539d1c776bbc76263dea1bb88fc95197128ec1a700f','9f6909b8c5d78e55d34f7745c22743903c3f785b1ef283554b5f878dfb56c07f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'0c5f3dd2d439a571eec03583442fb051bedf5bc0b0ede92012922b27847af2a1','03c8d26098b8e49a297c104f22af44a622378afa711195bd8b91d46f01d68d65','14056368108692b234d1f9b7f65cf905ea4ce658789e0a79a3032a9e16bb4ab9',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'377fe894d79d60b011958ed747908b6009c5e0261fa177caefc664cb8db4c74b','079ec7423e2fe87820626aee8980e236a78e7d51b453a739fb5768d9d520bef6','bd4d9db136434d836e9c7e435e56e44fa3ff5c3b1cf93fd0302f617a4b812347',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'4be55eb54e78e829306dfa31248b3073d311f49da420d9844f9aedabfbd296e3','d57db7ce89eeea61f270e7c676b38d3574c52166322cb0e287f1857a7d085e5a','0483b397712a1597fda79b43b8d2e320e19089c073d98a94f8f31d4bda960bc0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1248da848479b90f9dada38eaa02b9fe1226859e6ed1e3c4a121172786178dea','8727f3f9af7958daaecda9f2cef1bad0303d631cf9f8418636cf130581e4bb79','1090df77ae250c237887d69ec32aa9ce3978b820f31f257743be73497a03e395',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1e1b07f218127eccdfab98a4bc127ce185cda15314e72328dfe10eb8f2f18726','baa3b08e70e0db5ecf913bb99da662ec3dc04a5650f99d2d36408eb8ed6cc4ea','74ca0349f3017a1f66ef461140c650f4d543dcd443ee6557fc2b5644f1617400',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'03be7c3d8dc521277625164e3e828be106672cba205129c014ce7771a3b8730f','5def9d6ed9fcf82c7ec9dbc2247657f349ec4df0b75dac4444f7ff90e24f0955','3d53dacffbd01aea7f6de2017803318dd4f2e3dd68c172d073608c058c185089',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'db6d49ef7cfb461f9431b2e712f694f0747012ae28f3684e0d41476f77fab667','f6d1a346abbb2adae7dd7fe6ddd94061bcdae3ed30bd091958d445c8b5f57f4c','7ecbc512ec95ddd61fcdc326dd0a773a627a329892228506a957c54bf3bf6a9e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'ac399d193def488d3457876edef42dd651b30c976025c3d6f810e4d37c88c822','273ce70d30b249ba5afb8382ddf7ded2d0849044d519fb48224a6ea69b7ba6dc','9c6c273607bbb6fed258f56ebdf7090ee5a5d45fa7e6736a34197663771cc343',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'f6fd6f6280b1c580abe8e31de28bfa0f269d453068946733cad69d29f6874936','ce4d93afd619a9f22326d72b5ae6c10b24d3075399374184463f65d489a57c51','d31725c5efb73972745475a8c76fa70e0780d81ab89ecd2cbd38c1e2dc128e21',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'0c52d56c6f7c25da7b757aba30e890e9eff402155b5497a5420e13e69b7cb54b','7df6ac77f91e828339a1f92ce8197c74ff120f6c00d180bdb19a91f7da14a83a','b20b444de969c080c6a742769b8fc09fb899f7a962d04930fdb1eb91f2a8565b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'03cd020f708d5f082f5b63e3c1f58e5f25d564a60699ae0f23471115d9e37d5e','45379e27de14058cb9100cc29417da1e5b2534e4434bfcd074c811324e46fd06','d8c072c161c3ba901c9d2b06221e5e36b47cc66cf910dabc2aa7d75927ad0c9d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'d95cf7b2af3f578fc64450d484323075e81999a868918d3dbf89160269d68980','92ed43fd80e4e254ebff7dc725c32962beb79be51dfe8d62d12bd8e123320532','684fde58a199a4d55bc79612e1f970b2b6b819a513762defdd2629c99fe494a1',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'725783dab777f54b11be66fdf47280852fd6b4d8a9b9f2fbba9e92056538ce73','f21d857139bdc083724362346aeaa455f82caf0fdf13f2ca880db6dbc6e047b2','141e4de5d1572c6001982c0d980d2276a7b805bc6e95b8520cd66edf8a97b593',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'05ad248fa836b50ce72a2f61c7465a455cc48ac92f2c0ff9bb9f94e69081d1e7','3e8a8361086aee82a316c2a041d8f4e1d7b4000c3e18263ca84a3267a811ee7d','502d5a096e80766d8d947d832fb1e88e57357b2feaae0912ec783ce3147a85b1',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'0ab8707bce7b77beecc32ad6124482cb561776ed245ce6dce08f5318e2cf396f','d66ff9e099bc707b866c2595b0bb642657601a36ab06cafa070f18e9f3ad30e3','445f1951bd294004e2343cfc7561599bcf0488901a051e4c2cf5dee8f4474eb6',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'198edc4bf109549538a2f8f96714536a99a1568fe16fe4254881520474adc68d','3bd8ef01a2be7a5d817b535f19e456325bcf2d684ac25f09124d4582040fde54','ff432d16380c967282cd5222c8626af85bacf13e3d85aef97b632192956598c1',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'52482033c5c11ad24257707137b090606305497618e29050b2fdd3e13bc822ce','7d74bbdb4057dc5d0e9b568e983df362b87bdacdddf2724b1ee4c42b6602bd47','20a39f221845b6f4e0eaa1ad4bc3a6e735d487cd6fba54ed30714d93ceededdd',NULL,NULL,1);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'85d639cc8147885470da26d3c0470dba0eb8b6870d5941b12bcc4afb8fcd9af1','568bbeb4d12090c110442540d6f12734602dcf84ae5e331f0391a4a47857d059','a5a389ccb25f814327dbdf5f424767cbb80be0d0c05d0e7752d3fbe6164f071f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'eb62ce47d68491a84b9a29b92db2742021881f0274072f1bc39dfef08cd7a590','877a4d466f5f780e8103a42fb7771935ef57486ed7d74aa77757b9cb434893b3','7076a1e5280056ffbed986360f5e6985ef94abce4aed7cf01c3625ddb9c8e6f7',NULL,NULL,1);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'45e73afbc34855b5cbd342a6fb77545e01f3ff4601a04c6dd25dff665aeff484','b16082c8d932618c9bd89f7b8d6372190cab18b274ed8dbc1b4f04e5edc2bdbf','c00cc576f5d36432e15347902f18fccb316e0222d3890019d1ee381bb7936b63',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'714702b25559325c7bacffdf28e0af30c47bf48e6b4fda053c21ea31c7604128','391a822509e48a899634f3b8a6b0c99fd298eefd97230b401b40c301dd7e6052','801eb76b5da9f7d5c76f0bb146caaa3fd6b6dbfdbbd244d6fc9ae5befef65527',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'b305741a1e277ba0ce8436b914784ea0156616ac308282a7f29dbca62a54cc82','16c8d91265aaface472342f436e376984d576675529de1f58a188f994375dea0','c548b86b7154b71f57f48a7ca09daf1c4a85238e447c78027e00e2da8f47684e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'1f833f7396917e02b4b65b0a05d19754b6a53b030b659514d0c21cad062d45f9','d7a61a46b4f6da78607245b9fdd4e0b1d7499b5687805939342a431ef570711d','207882040c07bf4f53de0d18b2cf8195a8eae75423aee1b9c091cea5ce3b3d27',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'47b38906beda7ad735a86b9fd63669b0357b7ae0a0c1a54c9827bc8b90185626','a8a0b67ddb47a15f89fd14f227e118bd374dde04f4bce3205d5ee07a8c7509d7','822023de35329c7abf80e0bfb4982def648716fe0d577705aff5b9f4e7de4440',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'e69f6c9b649ac04920be70f9b076f7909bcebd8312afa715be3d8922794a72e7','355199be765ee2db25308e58d6cdfd22c6941a296b51800e8f937cea1afedbdf','fe7adc1d1add270a2a72656e295146d97f02906127422a837a999878783f7e54',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'c51828b04433b000787c92eaa7e5abd5cc0bc31c619cb8479aff675af6e00c55','b4bb7325ae90ccf0095b0970cb4828c98915a2e6694723ca8af1e9f77523d540','c6b5b98f91407d3fe485e52acccc248f30baa792a5fa385eb6568c9531a1d9f4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'26d91568af76b5ad4b357693ecb0b9341aabbf5de5d5c83f9998dc2f95d76e5e','b13328f7f6011c05736a1c728af4726f63f557ae1eafab7d70b6b7fd60025616','3628978fba600403d80a4664c770a72885e2a071bb6fcbcc6123870602c6b3a9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'21f8da71c386ec1e5e31a35c1190b895f2df52529ea028d5fba25e0d57616952','80980b4466ca949fa21a42ffb8c22a2f5853722c4fa02bf0cb962e97365384f1','904c8038bf8b7f23c529b8df31b2f8c19713fd76de70d62d87435402068957ff',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'1c844a38fc28e83406c8019615d0c24a1ea84e6ffe4da392d29f353ca676001b','0c2f46b4f4d5f345399be6073d2f72bf689f6a3a20e57c41ccd541cc0bae76d3','0166e273e9fa7ffc4d82e225994c190babf5f835df2b0025c10f6c5ef43799c3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'0533bc0d3bc008b5d65932c569e9f85e3217ea9efbb8937935be93b7a01ec2a8','9f5f89f0c9821b7de30388b2a0891011612096ac158a70838d4479059a4bfc50','3a3a230f7a95b060a2b17b8482e7d7100c58fcbf490502c90d512a6e02108231',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'b5f0b7406fe3b6dbcbb5c3b28fb8fb119e237f07532f500b422058ba898e5b22','5847c5ec7d8ad0e27d47b3b6ff7df903c4a67a269aa248e69ee918062e58976c','4c78ac34d5f492cc396c93c5fec07d489dce0734a3d660f92ea9d77fdc2d3762',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'7519ac8cdf4c13b25929d913e3858855aca68bcf3fe6d3636e7371894af27f04','46fea446096a8d96f1f990374d94405f358ef5a3a8bf09aeba2f76977cf867b0','2bbe9ed724b1fed2ced169ed3c8b73c85e3b907942d63d410034062016d9fde9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'f417da67da0c23d4bc44bbb864de5b94057916e28502641ba70764f44165a1fa','e372a6531d2f206be5cca17be0f42a75e2e6617499a6dec377c274f7738620df','2ca69d6d57ff41bd714ec175e6467480a69e5a62055c216350cce6cbb7d2571d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'098eb6f2b0a1c584d969167f50bb55383ab71593ed1f0ca61d83c4513a209107','da7704f6d661aa255af6e2d3ad713fbca0a0e6296b16e3a364989bcb5a4e38ba','c015b324f177d23f9dfafef324c000fb4e4397b80e91e663c00b51ce0421d4cf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'a4aa60a1320e47c975628f6650d8fdc44b6a729d26a3178031e32fcb48b59491','02eb5dc168a03d3cd067677480b22185a8ad6731e467c0b3bd5a907834e01013','1ddc1eab822609f46aaa413f870738d386600cb5f92477029f3321538a8f3425',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'cc5b2af6948531b635b18a4b6698efa318190762c8e4419aa9ca3634e7ed5d1e','f6ba96a6e3e2e3442722bbc1bd770d3f6f0f4a4ffe57d0858586539f81e868b8','d1204fb3f4fc48c21af8226bc45388f0b6eeac8a9f4fd47126f80c6572a5469e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'7ad02b4853bde78025942e9f58c212a76c1828337610347e516d4a359af804b5','d8089b22bc20979dce133885c84c5babb754ff0522d7f2193e1d3157c5251631','9436001b6251917c4b69c00921901c387330125c720ccf2c9e576599d8dafa83',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'64a91735950113c13603e49ca549fae9b30092a9fc02d53a32a20eaef64ab6ce','554d6b2a2182d87b00111b748a5d904aef85a56b92f1d076ad4f866f0d054041','517bcde57fab2adad83570b2609cee487bb5705e176f400106ff69ecb4746b6d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'68107847c7a9dd19612d8b47c1a39cdc446c752f2c05ea8fcd961a42f835d155','f2b1800a73d98a15428bfb5289f7ccbb9d3c66b98fb0a36f00ffce8a78279801','912b1b96d379d1fc64b209c7d2e5312ba4ee269eb530b04eb7bbeb0537e4c21a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'64d4d51adb6994360b3dbf04663c4f067ba223e62912fe1c5a96a190225bb54c','ce4365857faa29eb04e638064e4810620f434fe515efe63eb2ac49c3adce6581','1600a9735c13014eb519bd322dde80f84ab675df322f6decfcdffd1af54504d1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'3ba2d7685f63962f576e9fa94e4d6709ace95249a3064804c3822078c982d11d','94729a0956e8c1b095c9181e01c220b94257ff582e35d87923e3c5ddba3a3566','56d227f3edb62b974dac1362b79eed46bdfa1e91f69065d83c8d7c61c1129ba3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'6502f277568bed2705c5f496e278e5d99310ff6705751a3999cb4b2bc7d725bd','0986f1e944c39e36fe955ff092028c51647a9359492f17a76c682b4346be714e','63397d50f0c1aa35c11c76609beac1cca925f3ba6835f096137952b6411609bf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'5dae29289f36e64b87d56f9870af0bd5ad77ca45f1093c1a41140ea397945130','f14e3c5de5e186beaed6835c7c61fe2274603bb73e62ebea5899ae2a998e26e2','6b46b89049da0cbfe2d00b6901b5a8954ad60532e57d14ca35967167c73ba625',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'d5dee49d7b78e2ce4dd2a648e345a52bbfa7e0e76de9e970b1dc0b6aea66c130','e31cb01f21f653217b3bff72061a63f3778f45a72a8419988a496d8f388cac1f','c57c5d45c4cef74d650721928f3dbe8f0d83b310cba367170b79381a7ba21ee8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'2b4c97a93933b8986ebb061d47f2e8bbb1672206058ae3c3ae388bab36b8cbc8','eb45cf1a49da1dfd4ce7231e8f6da96b7241b0b034884cb2de57dc107723b7a5','7f8534be109485517c9459dfb5222b8f541b468bb4f7aa58220db663d7f8d243',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'115913763ca7ef5691512a5c6d47cbd49203aee8a3242928f62640912c935872','db0d0812374555812015a2058ea7f6bc8aebb8aa7d2824eeeb26b7b42d75f97e','3e82c3cebfd5dc148f738ef6d03270bd335fdb9f897d7c38ec08de99bd2029dd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'72f24dc53c759a08aeb447d826bf64aad71ca8f4ab9640e30e440e6bc050a0eb','b3834012ddc576765f337d3dd8b3c916f66711481c0bfa2464f6ec2678d1512e','988ffda502c528af98f0a02d190e1b79b50362938e53feea5d16c3bb9d6efbd0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'07846004f2da033bfd113e13040b0d0d605375370b7437e2ca2ea9467fc80c1a','35357fb0ca94373955c3cdf08be75d20e9665a9632be0df0c90b567875594049','a2a135fe3fb63d0eba7fbe099dd2b528a757d64babba95166aad63f1524d6ad3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'7bf9a701337c043a7268cecca5ff765c24600a2056137cd03e3ead9d64ef2348','d177ed9e0bb4b3d77bc5b1a044e724cabb92dee3189747bc1c01d1fee7148fa2','cd278dc9fcd6af0b08770e3ae24d6cc06035a808521a27d30f52f740c92013b9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'d544aec17018203fe2f5c9bda52a5da53d41d3364b8026770d1f620aa53e6c36','8a3b92aa200f79e8aff4a849618914f7d39c34ef2ed636d3b5633a2ad2f647ea','11bdddd1a775214ace919b5cb8b05153a029d3afc0d4fc76aa6fa3745c2be51b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'bd3044c66f7e2c24944a9c938b8f162ac8f566a1338444c219396eadf5179d3e','59ce208e69d4e1427791ae237a6db6a05efcd50fa386f4f8f56862c6cc3b12d5','c8fe4a422a254591a8fe091f3ac0a188b49f241298ab1548edc31dbce7e09734',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'b19346f726636aa9da55af6106a471c596a7f7b93289b70d3d33b45334bca9d3','8e9d4b1d3ad7c5e8e479640da0ffd8b7423aee810ff6adc4ae2d37d545169579','1f6fb5ab52976782a48b7530e23aa9dfbc640325a72cbb0c7db1247c7a0b4031',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'35c2ad9ccd3bd68cdb0c4d8fd4e30938521b8559c1cec331a29b1802d649947a','e14484629fa3aa2e8ce54505b3983d0f33e7727d3dacc5de57a574c2e0c69baf','e850532831c45f4cae14c9bcda7d894dea4a93934ce7afc38f256def03ba1c4f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'e9a705d6661f0345ffe0f45ae26c0d6ba6bd5a125eef2f0e9558d0702ee6d63f','cfbb1995e2c28020dabca30e98f72afee01b64fe276acacee7e104b22772de65','047adfb7ad69518a1b2a78af1eb8222168b0865300be9a50e37075c7e1948c9c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'61efe4d33a7f70cae34df86753532aee25fb0b153744acb962142691f6979482','401b057e48ae9e423f354f7ddbb11e70c0ec2209ef1a26dc7ffd0bf6003f1335','8eb894c4a10a9bf7669b8376b5e09663b9e4ccf35adf18de9db07a33315b7ed6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'59d9785e783c59c12783977087ad439b2dacad9ae1ef2be6384bfc9036da9804','6010ccb1d9476ce07d8b50633bccb97ecff1a229a0ea7701c802aad32f961be9','e932e980d4a231aa6c0b641cf4df7178dee3d08ba746c32f4db844090938d7e8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'e257d59ab5dfb01b8396bd12d2fd169f9ac7629365b90bf6e593e627738d3754','bda63243caec3f70173e1e93a16867ecbcf45d987b6a5f72d1bea54d361f0ed2','e1c03b783d99b6d377dc00755feda0a6939daa86e393e26a5a68f714300fb554',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'0dc0317a88a6fc4ac791cd4d45edcf2a142fb83aa2e8a2f299fcac48a2c2e04d','ea9f3db44eb05a8ba1c860cd0a13ea662f84715b59e78a87f49c78377cb6b2c3','fbddf6eee66e1c7b1df8e81372ee1d62a5ef71db7b7dd4baf4d5ef016bdf7c4a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'892d6a49aebb262f2a626a35c0806c488c836c04d33122c2d65ecd8904fe3d85','3fc1380f35c9123d16b9ffbeb23c44f24e4d6001406a484ce30ee5758b8ec965','8d2ee1a5f97490c82f97f7cfa52fd6e3b8e4cddae27d1aa5084d19006427fef6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'e345abbf8dc42737a9f2dd038534409200d63a9ebf5d1cbf3344ea9413c388c0','be23706267b965eb38fa15ec1ce8c17ed5727bfedba0ca4d4be3db2fd703744f','1557b98be10d0eeeaf1e47f46d632cfa065aa77760ab38f1e81ed16bcc28e405',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'84ec781d054c0602ed97384cd32cd060b938627ea490a7635fa3ac0babba94cc','1f7417cf7a3d9f07e5a8faf658b166c288aff136ee56f244797ef589f9cf98c5','3a160d03c922d16d4defefc07987a5d7d6c87958f1040c9058f4810c5dfd192e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'3478612a8bb95c2966891fb4d1b35493a1342364a6f08404b83ac9fdda763aa2','7b4317e7c2db815ced2d81aaf8efaa6331e475a7a9b3a59041640d43484b1a89','f6bd82018fec6aef410ce22ae9453985c47d112327ac79467b1b58b5459b88a6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'c532c4c5f5e2ae1026ec2582645d9aef06afee46cb9781427a1f40667378ed67','89699fdf437b96128d7eb89a45d58e45d0b829789c6e0b29e8972b48ce5e62de','534d66483e451478608cbb2ede9587088e10efd2e0e700f59eef272e91423c46',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'5508189396fa6dfe63a7d06fe97a3073e986eb305bcb49430157f99e3848cd69','4c49d9334c909f728f3b06a0ef613fb09f6369dd431b7078db5d269cdf9dd4bd','0d2642a45e69da6ca9f71855222603189bd602ecd7ccfa1d5a08fc602f2d83bd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'9b0b5d09dc7aaffaf5a3603fa2b914c54b04755a5ddbf83476320149f802292a','ef4759403c17482a8f8042fb93a5cae1b741085cdbf73e839638fee316044571','8d85103885918d2f0cb3653b55615111561cef1defb3f57a52aa7efc3f2343d3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'2e40d398c2eb131e195a667f1b2b5e8de29e80423a2d0dd3935fad6dd7cc919c','18e3230ce4fdaca025887c118a2f2fa6bcbe81fba5c968301a90b43e27f2c7aa','0e52d3a43ac7fe4e49c1ac354ad2cf71668253207b461713d045dcc82e247575',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'763d3d949dc16a797f5b8a2f5a27fd34b4636fa3dbf33eabed5db048e1a848b4','7b10cd9561d4a33c7771570925e5a9a879a501ac503004eccc5e60074d2dedab','44bf78b7251f514af029c657853ea438db6a6f19e126dfe21efc7987e3415673',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'d9b9d6a52f757604a5652aac64c343a47a928160790963521ce33d125486cb0b','deda10c92f292c186698b9b4d371727688a9c0ea194963464fd1c5b429fbbff1','6af984b5ea8eef37a8be2d9aa7ce6a686827604fb285e0632a61ed653f753ceb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'9c1a650b6029cc982e9e617b619da6d88878453ccea68ff82047581d5cc74e9c','26e4cfa82a9ed189ffafa596c7022cab40002c8099b48814f3e7fbc48b01b0fa','af4dd5f282ecaa21596b2eb8b5aa0cfff6e0400cc3641fdd58964dc8045bf214',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'32d648a0d0b99f6826376e8badb278c06f95a0ab781cd873e2f7f55219953b01','f10d714905f2e84a57e0c792ebf0dd67158f19f352176a571278dce49aaf778b','5e1a75ec243b0a826cb040effbca894d0efbcf88dcdee8133e97cb700f5f9cbc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'67cd615e67e397cae8195fc8753403563e9100ecd623b2796a46b137ca553be2','d0c0ffcafa826685b59ef036c4315e79cc688ac1ee43097143debf445f6e638b','22127fbab598f700c53a834ddafb92a9325055467b24256455dd998de58d9fd0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'d636f3831cd35437271557e6299024d70c4be6b9a685a4fed61e7d67e61540dd','fb11ef8957cdc599585372679a59440580acb37458ed3da092b22974a4857bb6','16ff09b6f1392469f352a23d614830752e85e9ed7c39dca2dcac1cfe75249db8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'abf96247f6b99a24e518d89162c23cffc821d5cae5703f5b7c7c4587e34cdf98','67d8b52c93c5d07ce1a335ea3572f0015a971effdecf921193cca273553466c1','823ac2dd7bd746deeab41d20c2f7a28ae22e1240582b31108d980814ee7e9a73',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'06aeace2e79321c6776dd1098982e71bfc0baadc55470721022db67a03bd4478','2e148e6946d39fee7c6d1b320122beb1689903e929397821a63e612d5216326d','0235009ba1b7b4829cb22ad87c8295f613951a2e5d99fb9b732e734115f72a0a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'ba2c7078ee940b14e584459985a5a4785156762135541d40a138c31ff9bfe4fb','63832ac6186f8a8e8091579221ada474b43c36f465ae25ddae4ead963207150c','fb33e505d3b178a8d5abae4c7cb9c40e6810b6633d5ad576ec373529a8a4e6a7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'af327b161ed9fa8022f3efd81b695d25ad9ae8f250a6d08739a40b0883262045','47bdbc4933d69cd703c277d9a5e156951ef57791f87f92d16b85c15ab3194061','bd5b04fd2a333d10ee6dbed807e153fa483cbc0e272dfb146a9c8144420d2e45',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'2c4d6568a9c77737c5942fab33613a1ef055ce21b9f0a9b4a42fcdf6e9536a59','7d57db6fdebb83dc0fbd1746eb328a94403f4a66e7e003593fe90c95fdef3e5c','22d1d0053667443aae83fa579cc48b0814338c7b4ec567f88955d9ff37cca0c7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'0b8dcdff637e5e60ae045d4c7646bd47e6047fc992860c99dd422477b9a90d74','61316fca3bd986c2398fa5dd92a8b874f4a64095691626d695e82e3c30849e27','e236d1ad78134a4a1f0eafeb382709f1f9db74313f22bc17d44df9053826be59',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'eec6578a8bc1f5766427f4753ded18cb97c53e710f5fff8918bbdadb59678f64','bc5cabb9579b79f03b329c0e5e3c8652d8b0eccde9563d838890218bcc8bd932','3dce816512e26be7ae36f3f8f32dc9ad25504c8b08c59c5a3f4d0206096d0e25',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'a2b2ed6a61f1c9a3d322a050178c6be119b89d1a0795fa9c9d7484ad8edfcecd','86e50073092182d9a5b37cd2453dd5a7a1af175ad0a1150492d5001510b05e6e','80bcccb657ee818f010373641e90d6a1353a15d95a576ea5c83eb41d96832b33',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'02828eaf91883ad16beb5563f9c84cb226269c655a886857b31e5e150a1053ec','bf59d4fe42c11ab04792ba5c95cfd811a6ddf18e125daebb93695bdd829736c3','5f930a16ea9b174ea0a1a549f9d094dba36a469572e4094855e3b9e935e94bd8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'5427b45ed778796c26d0d2ddf73e975856cc9ae081c36762e78d046f6cfc376c','ca0801d366e8dc44c01db11f67594bcb3ea3e81a3031cee93d24683b82185461','36eb11de51610eff7bd985bd603d208ea6308f292233c12aa8ce4c71f4a8f6ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'34c2664f81b1bbb53c728636097bc4b7cede67bb318ddcc5e5e6b5735bcc55a7','321bd59dc3c2996a1a2a6f74905f89a8db172b3b2b35a2d1cbfc6d06f49d09c9','8f1616a4b99b0017b45f187fe0153199d4afdcc18180b89d915c9a658d22a9ea',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'14615dfa6194665d43cf2f495b8f65fb9efa04c2e90885172d229ad4a9dd2358','3ef6f8bdf30073f297852db2b7036374e3d2c1e91b0d087cb2c6c88e400de110','ab83027e5a67ed9d64eed651a88ee64bf025e741c22fb00088a06b3a73d971f3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'fc0f077548225d481384a1aba2d91ed4ec8b2df0f0a57ab603305c615672b25f','0788356af4b45cc44c143c457d069e64d54aa12703f8c376cf3b98827052c173','28e50e9e6a0cc748d1752c2ee636936f7f0cacc0154cc3f4e2341f99b99da524',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'5749263295014a597071acf2293fcd185d02a6a7b3a96df859aae3bf146b276e','02938682157ea8b10c49e9d87ed444c1303a952a00f6acfe33a1661e84868cc8','24e5630de6254178200271f1a404a76830763d87367530c928ca78fa481ad450',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'ae369a1ec3e4f2aea602eab8c7ab1181cacd6b8d01582c96c4771fdd7b3de771','04aaa17c2a3dacf6c38b16ed63d70aea7b9546dc7e733dd51a3c08248ca13eb1','021342bdaccc173aefff413c3400cb85b7eaa5e9aa5fe5b7fc0e5177f5d8b928',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'06a2ac591c418d2b01c74edf2524100afd1140c3933f32120c4cc3180c1de3f0','421eb90f1258261c97512745b3543fee15ae8d17769d523646033851abde9c75','75fad188405897ce4a94e9a47109b57f4425efa2ce794da636a5ef6bc1282167',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'cdf0ae4d5d06b8735e3e62f5a76a902fee40742fc760578dae98b43635f2e57a','cbe924452487ba251291d1bf1ec518a7233eda0aa956d002bc2e0933d0057c53','a412013457b63881cbe03936adcc9a6d413ed3f85e8c9f15bcd91238f126d3e4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'77d836433add0cf3f7691884ec1607dde9a3996df00128703644527fb096bab5','2dad9d43a8612157867a046cc0dbc8939f30c41cc8f527a1e184c93004cca63e','3f9caa3a0efeadd13a5442e94e78c8202aa5d9a036c1e0d780bbb4708709ec90',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'770a0187b5c98725dc32e15a414b9323030f407749fcb0652b1e1f2e4e762e7e','251e12514d80ad256c13398d257708ad2dfb3b70db674695a8d72d977337ac90','39c7215611beaf69e4ff95e35d7b363ba065b5c67c8d46cfd6e5aa36ee831d51',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'567e91f9456ecd020fbd2fe940d796ac976981485f870db8cb0bc41d77a0fd0f','48924c125c80fbe8887ff318ebbab0edf8629e604eed0561dd48444bc4acdab3','bd51e820948048543ee33b42759c0936b74471c6ca9f9271395261e6ed825f48',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'447ceafb93aeb346eb98d87db46f07f4d1f51ffde3d44adc6056a624bea3b0c3','213f5672119909ebcda9f987e3bf69dd0404134584b36c56acdd3596a1ea6881','67f40bcce0e0c78c223929650f7ce85a0410790fbf93f5d0e269fd29161b4b65',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'f510ec6201f4eb850d4f62b399d0d360d0d8cca7e3d955f849ad59a22fba1677','e504e97b361e32b0256aeb1640291eeda547dc564043835013086c87f5e637c2','eb8d0c00e10de227ba487e5a1a42828227b0764caee0d5c827833c5de1f108a3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'1f956e2c07defac832b7c90982c1e7a1192988c4d1e622b54b40b78065deafef','891969418c97f41be742eeb562f39cfe92543c159095f58c5f58c8c2b0274423','bc047032c040c11436d7a1c9e7e33d12be7013f1a3df3d2c87a766fda09b0d28',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'ac4cc3e01feb10ba2211afdff4ec43a4ce13a12e1a90dc6f675c390e6395b1e3','71e61b2d7aca45ccd7cfb6bda957b18fa076cc16bcbbfb63668e4c4f2749b7f3','6886fd77ef7eb785c257933ea5b6f1008311559a1d350b5ca1a7e2c1cb18cb50',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'0a4bb35bf922a8175ef5559e74084d32caa16f599df84adb5e255de26b92c1c4','e716e04989e254c2ed5b1c4b81026153d5799edb5a676adea5b7efb930940b30','283b91394c3e8249e7023df44632f72659fa20b0a8f030c82287f59c3579e514',NULL,NULL,0);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'09fa44ed277cd9e448baf3d4a2accc520d57c77fed0d97379ba9bb804e3dda71','7d9cd23062d78e9eb1a892f69b154410935e9675ede8e05fe9c1269cd3c54b12','cdd7cfb36849df06cdb98cf660d9e802a268d8bd4cf3604cb545bdb3545114b4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'b2237a0b0b29b2198355f47d38cb995e013c0e074c29dcbf1b99ed4c0f459c8d','adddb3e1b9020e7ef190f661823c79abbc5951801b15469ad9f483c512af002a','46cf1a2ec6b4f9f129397cd5b4bae808c2afb11ab272b11c3c82a190f6e379dc',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'a3c393a285361d2981551f0a903d45847e7a0142779692d384bc77bac420db18','6fddb621bb8a1e2d10cf0ec8f507ada12be28578223ee53997aad614097bb35e','a60dc5b15a8402865bc6620eb24f3d1d0db59aff0c18fe1fe324ba57589ea442',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'f96ba90a471ab5524a574cc4ff72a228a8dc7019824482a664569dcb41c126c7','d6756ca2a0f2a403b0a1714964ddb71bc773e0a18c049008f78670efb7137e18','025dc5067a0a78c67086cf23c504d129cd15ffd77cbc5f49a30b76f263961e04',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'943a23e317f71981b24d636cae98f495b2bb00c949b1603a778eb7500894c844','be04682401f137d4d02c7539d1c776bbc76263dea1bb88fc95197128ec1a700f','9ef44afa61d3b04ba3ce97bed19bd1e81c821d8f105694004169abe0f281f6fd',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'0c5f3dd2d439a571eec03583442fb051bedf5bc0b0ede92012922b27847af2a1','03c8d26098b8e49a297c104f22af44a622378afa711195bd8b91d46f01d68d65','5302cc3a2aad2a99620fe17d4f7db57bd319bbca22220d41c4bc88abc87220dc',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'377fe894d79d60b011958ed747908b6009c5e0261fa177caefc664cb8db4c74b','079ec7423e2fe87820626aee8980e236a78e7d51b453a739fb5768d9d520bef6','cf3561843277a8d426214eece828a4da68a2c3faf71210a295a19a17bf396729',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'4be55eb54e78e829306dfa31248b3073d311f49da420d9844f9aedabfbd296e3','d57db7ce89eeea61f270e7c676b38d3574c52166322cb0e287f1857a7d085e5a','df1a18d5f84035f4c65a30c493efda958e28f39ebbeebab8277ca1584e97aa4b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'1248da848479b90f9dada38eaa02b9fe1226859e6ed1e3c4a121172786178dea','8727f3f9af7958daaecda9f2cef1bad0303d631cf9f8418636cf130581e4bb79','70aa51fd28706c9e79bbf9c6102d1122f3a01fed4b84c8a98364cdebc7467748',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'1e1b07f218127eccdfab98a4bc127ce185cda15314e72328dfe10eb8f2f18726','baa3b08e70e0db5ecf913bb99da662ec3dc04a5650f99d2d36408eb8ed6cc4ea','acdaa5ea197e782c372f9a8b8e6c0ac96011cf331ebbbe7d53001f78de9e43ea',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'03be7c3d8dc521277625164e3e828be106672cba205129c014ce7771a3b8730f','5def9d6ed9fcf82c7ec9dbc2247657f349ec4df0b75dac4444f7ff90e24f0955','8a5519cdfd678d31631807bbe5f96516c8896d8ed7022d917c7ae9bf80075fc4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'db6d49ef7cfb461f9431b2e712f694f0747012ae28f3684e0d41476f77fab667','f6d1a346abbb2adae7dd7fe6ddd94061bcdae3ed30bd091958d445c8b5f57f4c','3df854741f72fd68821490fd6d11941f9c5c70a3f2db77309a8e6dd23e93b029',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'ac399d193def488d3457876edef42dd651b30c976025c3d6f810e4d37c88c822','273ce70d30b249ba5afb8382ddf7ded2d0849044d519fb48224a6ea69b7ba6dc','ef104201a8351440eabcac45c06be81af901d6f0243cf3fd4777583ad87ef380',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'f6fd6f6280b1c580abe8e31de28bfa0f269d453068946733cad69d29f6874936','ce4d93afd619a9f22326d72b5ae6c10b24d3075399374184463f65d489a57c51','f5578fa7619c659bfec7ceb2ebb3a18461f889f8ef7e15bae9fc450ddb9ec828',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'0c52d56c6f7c25da7b757aba30e890e9eff402155b5497a5420e13e69b7cb54b','7df6ac77f91e828339a1f92ce8197c74ff120f6c00d180bdb19a91f7da14a83a','63c5ff402dc15fc0fdf0849146c0a8fc18b4b7f7c7409dabaf3d3bb46a9f5dea',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'03cd020f708d5f082f5b63e3c1f58e5f25d564a60699ae0f23471115d9e37d5e','45379e27de14058cb9100cc29417da1e5b2534e4434bfcd074c811324e46fd06','48076abc31b5f8dca92d2030012b8ad17dd7805e245dcca0d123ddd35c0cf85c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'d95cf7b2af3f578fc64450d484323075e81999a868918d3dbf89160269d68980','92ed43fd80e4e254ebff7dc725c32962beb79be51dfe8d62d12bd8e123320532','4955dceda957cf6323feff202bbb6cba3b8a439f29294775bbd8166a13c0a73e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'725783dab777f54b11be66fdf47280852fd6b4d8a9b9f2fbba9e92056538ce73','f21d857139bdc083724362346aeaa455f82caf0fdf13f2ca880db6dbc6e047b2','7b823a53dd39b7ccea7c1a7c4c7789754bad84cf2c0e5e371113733fc1c2b95d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'05ad248fa836b50ce72a2f61c7465a455cc48ac92f2c0ff9bb9f94e69081d1e7','3e8a8361086aee82a316c2a041d8f4e1d7b4000c3e18263ca84a3267a811ee7d','5e62f70801f3b2129dfd23282d32d903c77fd54118061c40ef159ceaa660fd2b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'0ab8707bce7b77beecc32ad6124482cb561776ed245ce6dce08f5318e2cf396f','d66ff9e099bc707b866c2595b0bb642657601a36ab06cafa070f18e9f3ad30e3','aba9048e5807f1d3db7db36856e9b2c80f734c42247beee1bba2853f56cd6ace',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'198edc4bf109549538a2f8f96714536a99a1568fe16fe4254881520474adc68d','3bd8ef01a2be7a5d817b535f19e456325bcf2d684ac25f09124d4582040fde54','737b668f687cfb8851e94bb1db0a9fd112ee191da880c68f100fd3638e4de83b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'52482033c5c11ad24257707137b090606305497618e29050b2fdd3e13bc822ce','7d74bbdb4057dc5d0e9b568e983df362b87bdacdddf2724b1ee4c42b6602bd47','e2b4dd145c9cee2d10a246962b4a93c266bd6b4b983fd5cc7c529d542fade04a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'85d639cc8147885470da26d3c0470dba0eb8b6870d5941b12bcc4afb8fcd9af1','568bbeb4d12090c110442540d6f12734602dcf84ae5e331f0391a4a47857d059','3dfae7363b9faa49ecce0cfed4e84027ba2d6a879951a3cbb8ecd659e4c7e193',NULL,NULL,1);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'eb62ce47d68491a84b9a29b92db2742021881f0274072f1bc39dfef08cd7a590','877a4d466f5f780e8103a42fb7771935ef57486ed7d74aa77757b9cb434893b3','50a70cb61673f43e37c40122dcea6d876a18b0750c4b60b97cd70ad522d0f1ed',NULL,NULL,1);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'45e73afbc34855b5cbd342a6fb77545e01f3ff4601a04c6dd25dff665aeff484','b16082c8d932618c9bd89f7b8d6372190cab18b274ed8dbc1b4f04e5edc2bdbf','7064f6aa2fab1df1994fecb94ec0fc2aa3287c19afd6d56ff907bf37e77d4e29',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'714702b25559325c7bacffdf28e0af30c47bf48e6b4fda053c21ea31c7604128','391a822509e48a899634f3b8a6b0c99fd298eefd97230b401b40c301dd7e6052','738c93eeaffb0fcd540f90e0283f8d6c8b1117d792311d9f998a0f93122d16d1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'b305741a1e277ba0ce8436b914784ea0156616ac308282a7f29dbca62a54cc82','16c8d91265aaface472342f436e376984d576675529de1f58a188f994375dea0','3849411409b69075a3729c55adfbf460f3c784712275625a7bfbdd7900e57cbf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'1f833f7396917e02b4b65b0a05d19754b6a53b030b659514d0c21cad062d45f9','d7a61a46b4f6da78607245b9fdd4e0b1d7499b5687805939342a431ef570711d','ba8229f11c3c9d602c755f34071edcd92a5f1faf7d095e65055b0e690de58314',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'47b38906beda7ad735a86b9fd63669b0357b7ae0a0c1a54c9827bc8b90185626','a8a0b67ddb47a15f89fd14f227e118bd374dde04f4bce3205d5ee07a8c7509d7','4276937d9996f1bb75edab14c7af1d00e860e61be3ded18378103e1f8f4e8835',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'e69f6c9b649ac04920be70f9b076f7909bcebd8312afa715be3d8922794a72e7','355199be765ee2db25308e58d6cdfd22c6941a296b51800e8f937cea1afedbdf','4a104128be63cab6611ce387dae35f1a85aef88e4cca422517f90d6c89574bb1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'c51828b04433b000787c92eaa7e5abd5cc0bc31c619cb8479aff675af6e00c55','b4bb7325ae90ccf0095b0970cb4828c98915a2e6694723ca8af1e9f77523d540','3b1037567473a39c6691c30254bce767e05eb91329a44a3afbb1d2a10daf0077',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'26d91568af76b5ad4b357693ecb0b9341aabbf5de5d5c83f9998dc2f95d76e5e','b13328f7f6011c05736a1c728af4726f63f557ae1eafab7d70b6b7fd60025616','1a57f0fbf111707d2e3acae2cf0b66ca1b467f9f50f194799e51131678df6aa1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'21f8da71c386ec1e5e31a35c1190b895f2df52529ea028d5fba25e0d57616952','80980b4466ca949fa21a42ffb8c22a2f5853722c4fa02bf0cb962e97365384f1','8591a73d500a1e48ddb372d274ef4e049768600d6ee3b6c94023825de8f14a38',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'1c844a38fc28e83406c8019615d0c24a1ea84e6ffe4da392d29f353ca676001b','0c2f46b4f4d5f345399be6073d2f72bf689f6a3a20e57c41ccd541cc0bae76d3','c0cd2e695e46640cee105806ff2881a413d0ecf484c26bc15566f3e6886c3ac1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'0533bc0d3bc008b5d65932c569e9f85e3217ea9efbb8937935be93b7a01ec2a8','9f5f89f0c9821b7de30388b2a0891011612096ac158a70838d4479059a4bfc50','70c4d884c1952c33c4251085f3488422194bb9b47bb1b5265295114264c00694',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'b5f0b7406fe3b6dbcbb5c3b28fb8fb119e237f07532f500b422058ba898e5b22','5847c5ec7d8ad0e27d47b3b6ff7df903c4a67a269aa248e69ee918062e58976c','342784db7d2956e0158cf91a69d31e7d5b75bc60d3170f8feb4494ddefebf58c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'7519ac8cdf4c13b25929d913e3858855aca68bcf3fe6d3636e7371894af27f04','46fea446096a8d96f1f990374d94405f358ef5a3a8bf09aeba2f76977cf867b0','f986bffba5ab909aa33bf7dddaa130aba86e37212bca5a0205e838e912a546f2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'f417da67da0c23d4bc44bbb864de5b94057916e28502641ba70764f44165a1fa','e372a6531d2f206be5cca17be0f42a75e2e6617499a6dec377c274f7738620df','b47dec27e998db5107a8296f6bf8bf7a8494534d490a4e0fe532fb9ed5ef0fe3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'098eb6f2b0a1c584d969167f50bb55383ab71593ed1f0ca61d83c4513a209107','da7704f6d661aa255af6e2d3ad713fbca0a0e6296b16e3a364989bcb5a4e38ba','1c8849a2bac5e6d1a16423b91c4a79da1d9d5901fa78cdf514132690ea110e6f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'a4aa60a1320e47c975628f6650d8fdc44b6a729d26a3178031e32fcb48b59491','02eb5dc168a03d3cd067677480b22185a8ad6731e467c0b3bd5a907834e01013','db21a59f978f14a7dc6bc79e90bf519d2f6f9977027f16dd4b829a46bfa9f88a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'cc5b2af6948531b635b18a4b6698efa318190762c8e4419aa9ca3634e7ed5d1e','f6ba96a6e3e2e3442722bbc1bd770d3f6f0f4a4ffe57d0858586539f81e868b8','b1f5bbf3497e30f219b506f25fdbb4f4da88f45ae1d21e77d40c6258d4c8ac34',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'7ad02b4853bde78025942e9f58c212a76c1828337610347e516d4a359af804b5','d8089b22bc20979dce133885c84c5babb754ff0522d7f2193e1d3157c5251631','d126df6eaca69d43425049467657ff6ef20226bf3de2c49d35820a3ff5bde37f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'64a91735950113c13603e49ca549fae9b30092a9fc02d53a32a20eaef64ab6ce','554d6b2a2182d87b00111b748a5d904aef85a56b92f1d076ad4f866f0d054041','00e2758c956e96027b43ad138f0f52d3868b580a0d978c3d887916dcfbf8fd60',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'68107847c7a9dd19612d8b47c1a39cdc446c752f2c05ea8fcd961a42f835d155','f2b1800a73d98a15428bfb5289f7ccbb9d3c66b98fb0a36f00ffce8a78279801','8cb4014c4047b62f3992f4cfa56ca3151d04cdccaa5e572f08b767190c4c7911',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'64d4d51adb6994360b3dbf04663c4f067ba223e62912fe1c5a96a190225bb54c','ce4365857faa29eb04e638064e4810620f434fe515efe63eb2ac49c3adce6581','7e7c1245270ca9ce6913330ffa09cbe29cc4e9fd7453347f80cf5938c67cf493',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'3ba2d7685f63962f576e9fa94e4d6709ace95249a3064804c3822078c982d11d','94729a0956e8c1b095c9181e01c220b94257ff582e35d87923e3c5ddba3a3566','72c3e96325e91dc4e9b305fe54c177a92f30e8d54e8566f324e8fec9971fa8e7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'6502f277568bed2705c5f496e278e5d99310ff6705751a3999cb4b2bc7d725bd','0986f1e944c39e36fe955ff092028c51647a9359492f17a76c682b4346be714e','5619b736e0174a0015cfd92a5f5af15de2e7fc72f2ab671919fd0098be505d29',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'5dae29289f36e64b87d56f9870af0bd5ad77ca45f1093c1a41140ea397945130','f14e3c5de5e186beaed6835c7c61fe2274603bb73e62ebea5899ae2a998e26e2','dd620615ab2f575f38019c823903090c58f24160d1201830adda43416539ef0e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'d5dee49d7b78e2ce4dd2a648e345a52bbfa7e0e76de9e970b1dc0b6aea66c130','e31cb01f21f653217b3bff72061a63f3778f45a72a8419988a496d8f388cac1f','666bbc7cc6aab4534cea6e2a9c499bf54c8cefc5034ff0a53a76ca8c60f5b37e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'2b4c97a93933b8986ebb061d47f2e8bbb1672206058ae3c3ae388bab36b8cbc8','eb45cf1a49da1dfd4ce7231e8f6da96b7241b0b034884cb2de57dc107723b7a5','ea70be9299ef9e4094626af518ae72220b18076905f64f7e9f1bd35e9dc4a6af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'115913763ca7ef5691512a5c6d47cbd49203aee8a3242928f62640912c935872','db0d0812374555812015a2058ea7f6bc8aebb8aa7d2824eeeb26b7b42d75f97e','049f466d37e49b3984a1bb79b489466b989d6e894619f33f4a9e9447581ef4d3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'72f24dc53c759a08aeb447d826bf64aad71ca8f4ab9640e30e440e6bc050a0eb','b3834012ddc576765f337d3dd8b3c916f66711481c0bfa2464f6ec2678d1512e','56b473eeef05a1e50b4621085980de48ed4f8031c976f125dddc99afb946d55e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'07846004f2da033bfd113e13040b0d0d605375370b7437e2ca2ea9467fc80c1a','35357fb0ca94373955c3cdf08be75d20e9665a9632be0df0c90b567875594049','8d9d1aa551568452a11231eaf33094e8a235fbf2b368ff62f22d64eda80d1b59',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'7bf9a701337c043a7268cecca5ff765c24600a2056137cd03e3ead9d64ef2348','d177ed9e0bb4b3d77bc5b1a044e724cabb92dee3189747bc1c01d1fee7148fa2','ba934fd3019fcfb08be9bfe75bbea568e6f594e4a99222e4c71e40fc97141f15',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'d544aec17018203fe2f5c9bda52a5da53d41d3364b8026770d1f620aa53e6c36','8a3b92aa200f79e8aff4a849618914f7d39c34ef2ed636d3b5633a2ad2f647ea','7c3d102d83354cec29f653350391e7e695863e5c1f7706dab61b75095fad5406',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'bd3044c66f7e2c24944a9c938b8f162ac8f566a1338444c219396eadf5179d3e','59ce208e69d4e1427791ae237a6db6a05efcd50fa386f4f8f56862c6cc3b12d5','2a075e52bf4f6fa252522292e30bbb2f4700f4274d771b78a42afc5c21d1b681',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'b19346f726636aa9da55af6106a471c596a7f7b93289b70d3d33b45334bca9d3','8e9d4b1d3ad7c5e8e479640da0ffd8b7423aee810ff6adc4ae2d37d545169579','a6dd9ca3664581c6a79302ed3fb193e342f0c4ef12713e4ba7e60fe274bec1bf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'35c2ad9ccd3bd68cdb0c4d8fd4e30938521b8559c1cec331a29b1802d649947a','e14484629fa3aa2e8ce54505b3983d0f33e7727d3dacc5de57a574c2e0c69baf','2501b5b9bbc8db7856863b97c8d7a815a8defb26969e6a86da9d04b8926d1ec5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'e9a705d6661f0345ffe0f45ae26c0d6ba6bd5a125eef2f0e9558d0702ee6d63f','cfbb1995e2c28020dabca30e98f72afee01b64fe276acacee7e104b22772de65','d77a5fb5bd075ade951f84581f0cac8f23c244edb445c0ccfbe6cfb36e810b94',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'61efe4d33a7f70cae34df86753532aee25fb0b153744acb962142691f6979482','401b057e48ae9e423f354f7ddbb11e70c0ec2209ef1a26dc7ffd0bf6003f1335','73b8d193cd509a77b44763af64d122a1a318f18d9a955fed0d192c71db8ec009',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'59d9785e783c59c12783977087ad439b2dacad9ae1ef2be6384bfc9036da9804','6010ccb1d9476ce07d8b50633bccb97ecff1a229a0ea7701c802aad32f961be9','0a71078c193648bfd3c53f4c03b76b6086eea50b06e9fdf7c9c681ecb22d3351',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'e257d59ab5dfb01b8396bd12d2fd169f9ac7629365b90bf6e593e627738d3754','bda63243caec3f70173e1e93a16867ecbcf45d987b6a5f72d1bea54d361f0ed2','e8f32321ce75ec4726e63d32b3dcc62dfea38a9eba6931db9516d0b230d63793',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'0dc0317a88a6fc4ac791cd4d45edcf2a142fb83aa2e8a2f299fcac48a2c2e04d','ea9f3db44eb05a8ba1c860cd0a13ea662f84715b59e78a87f49c78377cb6b2c3','ddbb9f74d5a313dcff0f4f0a6f7da3d88cad299c1df4e59b69a69a6993c47876',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'892d6a49aebb262f2a626a35c0806c488c836c04d33122c2d65ecd8904fe3d85','3fc1380f35c9123d16b9ffbeb23c44f24e4d6001406a484ce30ee5758b8ec965','4eb612191aff721560d90bc875a9a3289eb2996cbd4917814761b169ecdcd671',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'e345abbf8dc42737a9f2dd038534409200d63a9ebf5d1cbf3344ea9413c388c0','be23706267b965eb38fa15ec1ce8c17ed5727bfedba0ca4d4be3db2fd703744f','2d2adf98878851493ebd8d2982c2b0903e2c0f452532db7db44d259c1d7eb2a9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'84ec781d054c0602ed97384cd32cd060b938627ea490a7635fa3ac0babba94cc','1f7417cf7a3d9f07e5a8faf658b166c288aff136ee56f244797ef589f9cf98c5','952a765cac09e551860b43599e11d9b4e04cceacfa62b2e8d527575e037571d7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'3478612a8bb95c2966891fb4d1b35493a1342364a6f08404b83ac9fdda763aa2','7b4317e7c2db815ced2d81aaf8efaa6331e475a7a9b3a59041640d43484b1a89','af4e2ab9d9894c27831f4fc9b95ebe600de27038b17cc4bc3c4e347a800fa94b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'c532c4c5f5e2ae1026ec2582645d9aef06afee46cb9781427a1f40667378ed67','89699fdf437b96128d7eb89a45d58e45d0b829789c6e0b29e8972b48ce5e62de','1689c8152ecef02d7d34ee885ede78233d791f27acb74010c6c15a27406e5dd2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'5508189396fa6dfe63a7d06fe97a3073e986eb305bcb49430157f99e3848cd69','4c49d9334c909f728f3b06a0ef613fb09f6369dd431b7078db5d269cdf9dd4bd','70e9092b45626b7680d4f0a97b314a32224b637918c6018adfe3452a10486d01',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'9b0b5d09dc7aaffaf5a3603fa2b914c54b04755a5ddbf83476320149f802292a','ef4759403c17482a8f8042fb93a5cae1b741085cdbf73e839638fee316044571','98f06025cd293f2f32530f64a676d771b33c139b78979986a9963b470d460986',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'2e40d398c2eb131e195a667f1b2b5e8de29e80423a2d0dd3935fad6dd7cc919c','18e3230ce4fdaca025887c118a2f2fa6bcbe81fba5c968301a90b43e27f2c7aa','892dac54a3b4e00c51537282af26b89399d21ec8a9afcf74fb08bf3eda858a8a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'763d3d949dc16a797f5b8a2f5a27fd34b4636fa3dbf33eabed5db048e1a848b4','7b10cd9561d4a33c7771570925e5a9a879a501ac503004eccc5e60074d2dedab','8b5a82627b0b7c25ac15f51a92fa81a56b4376432ab534d06b7c6de998ea4078',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'d9b9d6a52f757604a5652aac64c343a47a928160790963521ce33d125486cb0b','deda10c92f292c186698b9b4d371727688a9c0ea194963464fd1c5b429fbbff1','e7829389ce15ba35b7933839e9778132fb84f4e096aec8bfe04c81afbc256d19',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'9c1a650b6029cc982e9e617b619da6d88878453ccea68ff82047581d5cc74e9c','26e4cfa82a9ed189ffafa596c7022cab40002c8099b48814f3e7fbc48b01b0fa','c9bda4cef6bede46f37e9016c462a01a75fbcc0a81239cc5937b8d11b429250d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'32d648a0d0b99f6826376e8badb278c06f95a0ab781cd873e2f7f55219953b01','f10d714905f2e84a57e0c792ebf0dd67158f19f352176a571278dce49aaf778b','d3dd198acd7b8a59dec75034fa800d231eb43b0ec02c3a05b35b7fca372366a6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'67cd615e67e397cae8195fc8753403563e9100ecd623b2796a46b137ca553be2','d0c0ffcafa826685b59ef036c4315e79cc688ac1ee43097143debf445f6e638b','0b7efc03ac30e551e385334d021b23c632ce7d89a19d7d44bda65fc353e77f07',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'d636f3831cd35437271557e6299024d70c4be6b9a685a4fed61e7d67e61540dd','fb11ef8957cdc599585372679a59440580acb37458ed3da092b22974a4857bb6','d3a4beef978d32248d6ae339d8cce33ebb5bd3168fb9b68a4ba2739021bbe5e5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'abf96247f6b99a24e518d89162c23cffc821d5cae5703f5b7c7c4587e34cdf98','67d8b52c93c5d07ce1a335ea3572f0015a971effdecf921193cca273553466c1','d8d5bd36c915e726bdbe2dc54bdb44eea9ea6303f602b3700ed0e76466ea26d6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'06aeace2e79321c6776dd1098982e71bfc0baadc55470721022db67a03bd4478','2e148e6946d39fee7c6d1b320122beb1689903e929397821a63e612d5216326d','b92bc5b22e71e91261e73a83d4519e63be236cfcfe9348b68c387dead5eb394f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'ba2c7078ee940b14e584459985a5a4785156762135541d40a138c31ff9bfe4fb','63832ac6186f8a8e8091579221ada474b43c36f465ae25ddae4ead963207150c','1134bdaddebf9c5382218910e1f0b419cfee0e527ce676fa98e0e06a14c367ac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'af327b161ed9fa8022f3efd81b695d25ad9ae8f250a6d08739a40b0883262045','47bdbc4933d69cd703c277d9a5e156951ef57791f87f92d16b85c15ab3194061','da3a0dc1215829eac78f5d767a670170f757f03b6718e1d9a8d3c1632b900de3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'2c4d6568a9c77737c5942fab33613a1ef055ce21b9f0a9b4a42fcdf6e9536a59','7d57db6fdebb83dc0fbd1746eb328a94403f4a66e7e003593fe90c95fdef3e5c','01655101834f1c5a4383e57d422fd3597e2598a231bf693c83402f53ed1eecc9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'0b8dcdff637e5e60ae045d4c7646bd47e6047fc992860c99dd422477b9a90d74','61316fca3bd986c2398fa5dd92a8b874f4a64095691626d695e82e3c30849e27','be358a0b7e3ee4d406e3ee14b9cd404a8fdb6972555a8598d9cb228ad54e965e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'eec6578a8bc1f5766427f4753ded18cb97c53e710f5fff8918bbdadb59678f64','bc5cabb9579b79f03b329c0e5e3c8652d8b0eccde9563d838890218bcc8bd932','445b80511aa1c8629c79f60af11be51474e24316a549d98ce14cc8099d771f29',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'a2b2ed6a61f1c9a3d322a050178c6be119b89d1a0795fa9c9d7484ad8edfcecd','86e50073092182d9a5b37cd2453dd5a7a1af175ad0a1150492d5001510b05e6e','b7d972e703eac857c7b4f2bb8bb5f36d3d6d61e2183015c6d5063658f09d4a3c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'02828eaf91883ad16beb5563f9c84cb226269c655a886857b31e5e150a1053ec','bf59d4fe42c11ab04792ba5c95cfd811a6ddf18e125daebb93695bdd829736c3','c2da16dd7a9273b89014ec20a155a1d94a37019824b1bf07a60f23e0d98fc291',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'5427b45ed778796c26d0d2ddf73e975856cc9ae081c36762e78d046f6cfc376c','ca0801d366e8dc44c01db11f67594bcb3ea3e81a3031cee93d24683b82185461','24b5b1c411dd1205b672a30c52c6202bbf70ec884e3e3d3ea383c557e6028d99',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'34c2664f81b1bbb53c728636097bc4b7cede67bb318ddcc5e5e6b5735bcc55a7','321bd59dc3c2996a1a2a6f74905f89a8db172b3b2b35a2d1cbfc6d06f49d09c9','84baf6fda414c991518e6ccd0f5a7ab75c8026e5283f9383f10dcb5fa2dcee9b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'14615dfa6194665d43cf2f495b8f65fb9efa04c2e90885172d229ad4a9dd2358','3ef6f8bdf30073f297852db2b7036374e3d2c1e91b0d087cb2c6c88e400de110','2e0a9f989a77873aa89e50cd308c8772bf827c6457d596ce10718374dcc0771d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'fc0f077548225d481384a1aba2d91ed4ec8b2df0f0a57ab603305c615672b25f','0788356af4b45cc44c143c457d069e64d54aa12703f8c376cf3b98827052c173','7d3ff97e27c84b8070f94368ec21ce817e2e8724f3ce9ed0e912579485760812',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'5749263295014a597071acf2293fcd185d02a6a7b3a96df859aae3bf146b276e','02938682157ea8b10c49e9d87ed444c1303a952a00f6acfe33a1661e84868cc8','17fc977fc701a764e28139fdf1e0094c2409da1b483a07b2cecdabc66d1bbbb9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'ae369a1ec3e4f2aea602eab8c7ab1181cacd6b8d01582c96c4771fdd7b3de771','04aaa17c2a3dacf6c38b16ed63d70aea7b9546dc7e733dd51a3c08248ca13eb1','116f33c905cf1981ab7da9781d643891b2c36cc82730c370a7a389c5f1b2e898',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'06a2ac591c418d2b01c74edf2524100afd1140c3933f32120c4cc3180c1de3f0','421eb90f1258261c97512745b3543fee15ae8d17769d523646033851abde9c75','98a0547c308e122d7c8af33fd866af798f6834286399f5472a67cc3fe92b3767',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'cdf0ae4d5d06b8735e3e62f5a76a902fee40742fc760578dae98b43635f2e57a','cbe924452487ba251291d1bf1ec518a7233eda0aa956d002bc2e0933d0057c53','6b7cefdfa2550e8d99ed1c5f0baa496e496a47ca5e4dd3f709643c5f4d907a43',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'77d836433add0cf3f7691884ec1607dde9a3996df00128703644527fb096bab5','2dad9d43a8612157867a046cc0dbc8939f30c41cc8f527a1e184c93004cca63e','a41e690e1bc931a48c6420fec2999266a6088e6b6a6eb6043d045abfd6223860',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'770a0187b5c98725dc32e15a414b9323030f407749fcb0652b1e1f2e4e762e7e','251e12514d80ad256c13398d257708ad2dfb3b70db674695a8d72d977337ac90','67c11e93a9c14e402dadc5dfaff7e53e83df98c16c6486d25c6f6255b534916c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'567e91f9456ecd020fbd2fe940d796ac976981485f870db8cb0bc41d77a0fd0f','48924c125c80fbe8887ff318ebbab0edf8629e604eed0561dd48444bc4acdab3','1d47d96274fb003456daf8f428e980a27f74975735c87f37879ed0c5fb717354',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'447ceafb93aeb346eb98d87db46f07f4d1f51ffde3d44adc6056a624bea3b0c3','213f5672119909ebcda9f987e3bf69dd0404134584b36c56acdd3596a1ea6881','d73f9168822ea96d7e310145ff303035693ca29a9be5089dfc77a1c98caa0554',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'f510ec6201f4eb850d4f62b399d0d360d0d8cca7e3d955f849ad59a22fba1677','e504e97b361e32b0256aeb1640291eeda547dc564043835013086c87f5e637c2','08d4d7f19122d0e1a8e63fb9d5c2cb883d521a48c51f6234029e630abc1b7397',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'1f956e2c07defac832b7c90982c1e7a1192988c4d1e622b54b40b78065deafef','891969418c97f41be742eeb562f39cfe92543c159095f58c5f58c8c2b0274423','e58313adb26c4265bdd393efbfe363dcaf1c2c1bd219c55ebcecbd1219c9b152',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'ac4cc3e01feb10ba2211afdff4ec43a4ce13a12e1a90dc6f675c390e6395b1e3','71e61b2d7aca45ccd7cfb6bda957b18fa076cc16bcbbfb63668e4c4f2749b7f3','31c7403032ae032349b6685314b783b829940fd5f843b25e39e5d672689bdb79',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'0a4bb35bf922a8175ef5559e74084d32caa16f599df84adb5e255de26b92c1c4','e716e04989e254c2ed5b1c4b81026153d5799edb5a676adea5b7efb930940b30','1b2b42ed277c3eccf500db635ee0cedbe6ecd9226db87a8e1ec54b94865652c3',NULL,NULL,0);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -149,32 +149,33 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1);
-INSERT INTO transactions VALUES(3,'1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1);
-INSERT INTO transactions VALUES(4,'a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1);
-INSERT INTO transactions VALUES(5,'06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B1385519CA199F1B39BB89CAAC062FE3A342F18E393D301D7A56C150A8AB84093A2E93083B871E68CB89E216F9A99C4C6AEA1EB92CBDBAFC5B4B0E160C19C517E',1);
-INSERT INTO transactions VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1);
-INSERT INTO transactions VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1);
-INSERT INTO transactions VALUES(8,'8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1);
-INSERT INTO transactions VALUES(9,'3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1);
-INSERT INTO transactions VALUES(10,'6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1);
-INSERT INTO transactions VALUES(11,'8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1);
-INSERT INTO transactions VALUES(12,'47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1);
-INSERT INTO transactions VALUES(13,'5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(14,'813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(15,'33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(16,'22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(17,'5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(18,'07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(19,'5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(20,'0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(21,'2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(22,'19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1);
-INSERT INTO transactions VALUES(23,'3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1);
-INSERT INTO transactions VALUES(24,'72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1);
+INSERT INTO transactions VALUES(1,'c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'2d81a3468670b6532dcbc5d7e41697ff15aca083d5e3780778e2f6cba4d7c856:0');
+INSERT INTO transactions VALUES(2,'8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000000010000000002FAF080',1,'6ec80f30ffb172559eb7d1af7ed17f317a4128ca3525dbdb86d1bfacc818a5e1:0');
+INSERT INTO transactions VALUES(3,'1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'70047c0e0eabacdc2f575666720317b02d31d0fb0c0dd12ff8399c9997b80671:0');
+INSERT INTO transactions VALUES(4,'a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'cb9968e5706e6aa44a68604e6aed6701eeb63316ab175efc0fa5fa8a080561a4:0');
+INSERT INTO transactions VALUES(5,'06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',50000000,9675,X'0000000B1385519CA199F1B39BB89CAAC062FE3A342F18E393D301D7A56C150A8AB84093A2E93083B871E68CB89E216F9A99C4C6AEA1EB92CBDBAFC5B4B0E160C19C517E',1,'836b1d6d96f5b1d0c93cca1e36df45a881c8e240bd43d3d690056eb2480a6f56:0');
+INSERT INTO transactions VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'b5a95d7d655cb40e81800c2006891e40b1e0db52eb074d8bc6bc6eadee0cc255:0');
+INSERT INTO transactions VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'d5e0055606dccdcfbb5a605326bf35341ff6fe56c7fedb31fb17fe0cdc39d905:0');
+INSERT INTO transactions VALUES(8,'8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'00000000000000000000476700000000003D0900',1,'00d442dc4662614c34b1627d2d88b504afe410cedf903547fa0776f7645afa90:0');
+INSERT INTO transactions VALUES(9,'3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'000000000000000000004768000000000000020E',1,'e1fc13f6ea93f3984c4ad70bfe66968407b6e926ca8433d153e3347c505d3cd6:0');
+INSERT INTO transactions VALUES(10,'6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'72576f13d48e27ecee32624b00990b0f161c782a80abb4f57b4da1f5a517c2f2:0');
+INSERT INTO transactions VALUES(11,'8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'549177a785a6c389185b1b6cf035323f787879bdb7baa3159ca5f92a00c6e6e1:0');
+INSERT INTO transactions VALUES(12,'47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'07532d3c2a9697cdcda1ff358b2f4381439deffe5be06598da2cac861a79fd8f:0');
+INSERT INTO transactions VALUES(13,'5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'3563ce8b45e350880d0a051b0b157f99ec551fc1ee230a1c8843d21f1682a5f6:0');
+INSERT INTO transactions VALUES(14,'813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'0e99c34d5f3649841d71c8c34ed4f5aa1c5ce38c45cda20bf500ad28a260df40:0');
+INSERT INTO transactions VALUES(15,'33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'820d199eab44dc21110b89e5210bc07d83a257d5d0c7595d0410d5cc9dfc7bd3:0');
+INSERT INTO transactions VALUES(16,'22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'d72265fd12f4ecd9c417122e366bbe23bd1835d99d2554a20e9252d41291fa5a:0');
+INSERT INTO transactions VALUES(17,'5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'f203086e1289aef19494acb2a48a734ecc0bd65149ee60cec66f839cdb37ff9f:0');
+INSERT INTO transactions VALUES(18,'07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',1000,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'f7c3acafbffbae86eb37a0334e4440425dd54628c1ffe103aaa4332f612b0d5f:0');
+INSERT INTO transactions VALUES(19,'5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'74fb288e8ceaf5f9cdeaefe2cbdde99ec1eafb8ea3b80ab96725cbc6913ef266:0');
+INSERT INTO transactions VALUES(20,'0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'9ff1232263d22ec7f8d8fcd4fa194620e14b9bb67f8704cce671114867664a4b:0');
+INSERT INTO transactions VALUES(21,'2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'5d2638e1c58ffa4055d6ae17293c34a353e57c7c019a5b1a90fab83747fc6113:0');
+INSERT INTO transactions VALUES(22,'19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'322ca39f1c6a4e524868c74a1bc3ca8d5db6448e33db2511a9989643810625c7:0');
+INSERT INTO transactions VALUES(23,'3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,5625,X'',1,'ce8432a1b0579faf1ec3f8b93b7bea7fa3dd3a8b1a3b74b1bda7d3030e701e58:0');
+INSERT INTO transactions VALUES(24,'72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3',1000,7650,X'0000000000000000000047680000000000002710',1,'5769ce4243e3d2e898a792c556ec8da59a8f8a1f262af59569e2b617e5867776:0');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -222,51 +223,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -278,6 +279,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -296,51 +301,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -352,6 +357,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -373,34 +382,34 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,'burn','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5',1);
-INSERT INTO credits VALUES(310001,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'send','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',2);
-INSERT INTO credits VALUES(310004,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',100000000,'btcpay','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac',5);
-INSERT INTO credits VALUES(310005,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,'issuance','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',6);
-INSERT INTO credits VALUES(310006,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,'issuance','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',7);
-INSERT INTO credits VALUES(310007,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'send','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',8);
-INSERT INTO credits VALUES(310008,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'send','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',9);
-INSERT INTO credits VALUES(310009,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',24,'dividend','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',10);
-INSERT INTO credits VALUES(310010,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',420800,'dividend','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',11);
-INSERT INTO credits VALUES(310013,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',4250000,'filled','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',14);
-INSERT INTO credits VALUES(310014,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',5000000,'cancel order','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',0);
-INSERT INTO credits VALUES(310015,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',16);
-INSERT INTO credits VALUES(310015,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',16);
-INSERT INTO credits VALUES(310017,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',18);
-INSERT INTO credits VALUES(310017,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',18);
-INSERT INTO credits VALUES(310018,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',59137500,'bet settled: liquidated for bear','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',19);
-INSERT INTO credits VALUES(310018,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',3112500,'feed fee','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',19);
-INSERT INTO credits VALUES(310019,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',159300000,'bet settled','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',20);
-INSERT INTO credits VALUES(310019,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',315700000,'bet settled','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',20);
-INSERT INTO credits VALUES(310019,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'feed fee','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',20);
-INSERT INTO credits VALUES(310020,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',1330000000,'bet settled: for notequal','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',21);
-INSERT INTO credits VALUES(310020,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',70000000,'feed fee','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',21);
-INSERT INTO credits VALUES(310022,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',56999887262,'burn','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22',23);
-INSERT INTO credits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',8500000,'recredit wager remaining','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',0);
-INSERT INTO credits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'send','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',24);
-INSERT INTO credits VALUES(310032,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',0);
+INSERT INTO credits VALUES(310000,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',93000000000,'burn','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'send','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',2,NULL,NULL);
+INSERT INTO credits VALUES(310004,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',100000000,'btcpay','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac',5,NULL,NULL);
+INSERT INTO credits VALUES(310005,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',1000000000,'issuance','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',6,NULL,NULL);
+INSERT INTO credits VALUES(310006,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',100000,'issuance','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',7,NULL,NULL);
+INSERT INTO credits VALUES(310007,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'send','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'send','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',9,NULL,NULL);
+INSERT INTO credits VALUES(310009,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',24,'dividend','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',10,NULL,NULL);
+INSERT INTO credits VALUES(310010,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',420800,'dividend','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',11,NULL,NULL);
+INSERT INTO credits VALUES(310013,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',4250000,'filled','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',5000000,'cancel order','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',0,NULL,NULL);
+INSERT INTO credits VALUES(310015,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',16,NULL,NULL);
+INSERT INTO credits VALUES(310015,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',16,NULL,NULL);
+INSERT INTO credits VALUES(310017,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',18,NULL,NULL);
+INSERT INTO credits VALUES(310017,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',0,'filled','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',18,NULL,NULL);
+INSERT INTO credits VALUES(310018,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',59137500,'bet settled: liquidated for bear','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',19,NULL,NULL);
+INSERT INTO credits VALUES(310018,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',3112500,'feed fee','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66',19,NULL,NULL);
+INSERT INTO credits VALUES(310019,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',159300000,'bet settled','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',315700000,'bet settled','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'feed fee','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17',20,NULL,NULL);
+INSERT INTO credits VALUES(310020,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',1330000000,'bet settled: for notequal','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',70000000,'feed fee','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402',21,NULL,NULL);
+INSERT INTO credits VALUES(310022,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',56999887262,'burn','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22',23,NULL,NULL);
+INSERT INTO credits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',8500000,'recredit wager remaining','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',0,NULL,NULL);
+INSERT INTO credits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'send','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',24,NULL,NULL);
+INSERT INTO credits VALUES(310032,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'cancel order','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -418,6 +427,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -435,26 +448,26 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'send','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',2);
-INSERT INTO debits VALUES(310003,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',105000000,'open order','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',4);
-INSERT INTO debits VALUES(310005,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',6);
-INSERT INTO debits VALUES(310006,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',7);
-INSERT INTO debits VALUES(310007,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',4000000,'send','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',8);
-INSERT INTO debits VALUES(310008,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',526,'send','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',9);
-INSERT INTO debits VALUES(310009,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',24,'dividend','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',10);
-INSERT INTO debits VALUES(310009,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',10);
-INSERT INTO debits VALUES(310010,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',420800,'dividend','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',11);
-INSERT INTO debits VALUES(310010,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',11);
-INSERT INTO debits VALUES(310012,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'bet','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',13);
-INSERT INTO debits VALUES(310013,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'bet','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',14);
-INSERT INTO debits VALUES(310014,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',150000000,'bet','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41',15);
-INSERT INTO debits VALUES(310015,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',350000000,'bet','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',16);
-INSERT INTO debits VALUES(310016,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',750000000,'bet','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede',17);
-INSERT INTO debits VALUES(310017,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',650000000,'bet','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',18);
-INSERT INTO debits VALUES(310021,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'open order','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',22);
-INSERT INTO debits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',24);
+INSERT INTO debits VALUES(310001,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'send','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',2,NULL,NULL);
+INSERT INTO debits VALUES(310003,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',105000000,'open order','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e',4,NULL,NULL);
+INSERT INTO debits VALUES(310005,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'issuance fee','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',4000000,'send','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',526,'send','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',24,'dividend','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',10,NULL,NULL);
+INSERT INTO debits VALUES(310009,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',420800,'dividend','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',11,NULL,NULL);
+INSERT INTO debits VALUES(310010,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',20000,'dividend fee','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',50000000,'bet','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',25000000,'bet','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',150000000,'bet','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',350000000,'bet','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',750000000,'bet','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede',17,NULL,NULL);
+INSERT INTO debits VALUES(310017,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','XCP',650000000,'bet','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a',18,NULL,NULL);
+INSERT INTO debits VALUES(310021,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBB',50000000,'open order','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323',22,NULL,NULL);
+INSERT INTO debits VALUES(310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','BBBC',10000,'send','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',24,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -472,6 +485,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -496,352 +513,352 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1}',0,'NEW_TRANSACTION',NULL,'777015f5c5986153f2cf2379736de3670db860b686b15370b9ce63d637eb5ca8');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","quantity":93000000000,"tx_index":1}',0,'CREDIT','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','37531b0e505587b1940a181fed7fc2e610884f2726a3ec7988c8a7f4f398c444');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1}',0,'BURN','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','2b77f9dd906ab3112f3f706b72eeff976afdee4ae2f58e7cbd4cb13ed15a375e');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"09fa44ed277cd9e448baf3d4a2accc520d57c77fed0d97379ba9bb804e3dda71","messages_hash":"6be4f08fcd898cb64f0378531dbe611a612627b71163bcea29aab0653610dcc6","transaction_count":1,"txlist_hash":"7d9cd23062d78e9eb1a892f69b154410935e9675ede8e05fe9c1269cd3c54b12"}',0,'BLOCK_PARSED',NULL,'50483a6dc5230c7d68f83de755b4ea768dbd22810b891f97ccbc0dcf7e61f9d5');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'303ae214960d0b84bee71ba46f9d535451ca92cd9e9ae313a6397d8351b2056d');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'NEW_TRANSACTION',NULL,'e39de600733e8d2f8e10bb1bd265656f9f4c2b014306c0ca8d6708d5038f704a');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2}',0,'DEBIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','17649cca30ccd2ed4574ad26a0d47aa31ce8291698fea507d8b2f9a1e4cbd62e');
-INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2}',0,'CREDIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','0e5a69e015ef7f0458cf7c596a2185c7940f587b7c2d7120b32e51587debb9f3');
-INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'SEND','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','db1a0351dd9eb934f5e0518f2c796b86d572c97a336d8020e9b3fe08c7d90494');
-INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'TRANSACTION_PARSED','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','21e21b1b2943125913a474b8f370f59b18956110cba080d6dac88d8bebdb3dd7');
-INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"b2237a0b0b29b2198355f47d38cb995e013c0e074c29dcbf1b99ed4c0f459c8d","messages_hash":"e9a2d21a205d237a9db00044b47594e52ddef4e0ce7a8502602d1d763541949e","transaction_count":1,"txlist_hash":"adddb3e1b9020e7ef190f661823c79abbc5951801b15469ad9f483c512af002a"}',0,'BLOCK_PARSED',NULL,'ec7de72f132b27566b305f3c90a47e155df5735dc28cfcc486a98d2031d5494c');
-INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b238ce4a72b4ed0db0ab1d108c23e05486471bca946d8d2df482d94cff90987f');
-INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'NEW_TRANSACTION',NULL,'3e4c7e680d8887bb7f99444d166134cf68d3bfede3282e5c4a04b858edfe306f');
-INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'OPEN_ORDER','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','41d28eb116d11863f709b9f85570cb3e100ebea60cda6a7d8c8d1d8b7d05f54a');
-INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'TRANSACTION_PARSED','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','3221f92dac42ff43b01e935f7cdd90a223554d72e592adc19a35096eb1e5623b');
-INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"a3c393a285361d2981551f0a903d45847e7a0142779692d384bc77bac420db18","messages_hash":"ab4f4ad0d5abb5f36804c6b59a1ef3005b283e6718eb3b9ef279e64753216d4a","transaction_count":1,"txlist_hash":"6fddb621bb8a1e2d10cf0ec8f507ada12be28578223ee53997aad614097bb35e"}',0,'BLOCK_PARSED',NULL,'a70cc529d6f4cbf7831c1a03f605625b5ea16c2822bf098700704cbe917c5917');
-INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fe257a28625b0469463adeb84fc59ccf03c6f50b147b38378adea5c43fc51c8');
-INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'NEW_TRANSACTION',NULL,'4b689285714729cdf144dcc30bd7b0a2ed8bae80ceb42fdaee68114b34c92024');
-INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":105000000,"tx_index":4}',0,'DEBIT','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','e734c30e1cb03eeccf4b8f722e27860ddce46c41843184254a14ff7b5b0a4b51');
-INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'OPEN_ORDER','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','3a0e4f18096f86f5b972fafc25fcad84c2c44719519254022e6721d2f0badc8f');
-INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','a992c94ec3aadf84057dbe7e6f7bdcafc406e233c090d01231fdff029ef5221e');
-INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','e72afec144e0e3c7f55d3890379e614f6ac7be601cf494351b14342fbcbcb721');
-INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","match_expire_index":310023,"status":"pending","tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx0_index":3,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx1_index":4}',0,'ORDER_MATCH','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','70a8ad9ce71d0f4a9d8b052526b675e2a16fed3b07246b60215e0b56313cf144');
-INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'TRANSACTION_PARSED','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','3578996b333b2f6ab003bdd2ed9b542dd9daf61fa008f6ff8234adc40a8b4631');
-INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"f96ba90a471ab5524a574cc4ff72a228a8dc7019824482a664569dcb41c126c7","messages_hash":"cc9e415b3deeeffb07fe65b558b262e958c9688fda29829a128fc002e7ea07a5","transaction_count":1,"txlist_hash":"d6756ca2a0f2a403b0a1714964ddb71bc773e0a18c049008f78670efb7137e18"}',0,'BLOCK_PARSED',NULL,'3ef11649818b3b9a4ddfbcf34ef9401b495d370afc448e8446be16bd961038cf');
-INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f247b21e65f5c833e3ee836ba88947f5b294e6c06e8eaf79ba4c1f817dd80168');
-INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'NEW_TRANSACTION',NULL,'d89693f6fff5c830d4bdc1dd32e4543d0d5460726e18fa0c1beaea9ba4cfe5e1');
-INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","quantity":100000000,"tx_index":5}',0,'CREDIT','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','80926a3fbe84473fbb1ef2560d699a212d50277fc64390659733642b08382671');
-INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","status":"completed"}',0,'ORDER_MATCH_UPDATE','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','f5ff64f7328c4a1c5afdcc5c8b27e0bd451f29ac605e057c8a7a46aa72879f0d');
-INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'BTC_PAY','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','09ec6621d99455ea5bd604e753375f59a759485c6be643d61609e41c24cda692');
-INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'TRANSACTION_PARSED','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','42b8106122bc912c15cdd4ce78fef3cd1b16775b86f83b899dd7bd40a45ba5c6');
-INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"943a23e317f71981b24d636cae98f495b2bb00c949b1603a778eb7500894c844","messages_hash":"9f6909b8c5d78e55d34f7745c22743903c3f785b1ef283554b5f878dfb56c07f","transaction_count":1,"txlist_hash":"be04682401f137d4d02c7539d1c776bbc76263dea1bb88fc95197128ec1a700f"}',0,'BLOCK_PARSED',NULL,'0e9af0aea8082f07bd3b42026c1c2d9125f6f9e91790257f93f1e883342af25b');
-INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcfc8e9c072a7a23da8871621f2e6f6a7b9412689314c1eff7b0d8478ad39d02');
-INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'NEW_TRANSACTION',NULL,'cc94943df65dfe7247e45c7dd76c8899e8c1a804d2a0a4092cccda8a3a38a1e1');
-INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":50000000,"tx_index":6}',0,'DEBIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','df7933013c90f023120fd99d603b0122da7af5ea2b718dcc7c5a058100b4f7ab');
-INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','f47d037ddb1a7d110c9799ff5f4553ff2f291f753c983203717f2c69609bb9ea');
-INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'ASSET_ISSUANCE','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','057dc59fa4dd70aa73afbeaeddb89ecbeac2378062adf9f396ef7c877e29ac91');
-INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":1000000000,"tx_index":6}',0,'CREDIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','9632dfaa52fc6db5f4f081be3c1d4dfc7638137caf08cae1104b0587054cbdfa');
-INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'TRANSACTION_PARSED','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','b7e0ed7c998dde45f1bcc8a143802ac46892e71541bfb1275426671600f247ad');
-INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c5f3dd2d439a571eec03583442fb051bedf5bc0b0ede92012922b27847af2a1","messages_hash":"14056368108692b234d1f9b7f65cf905ea4ce658789e0a79a3032a9e16bb4ab9","transaction_count":1,"txlist_hash":"03c8d26098b8e49a297c104f22af44a622378afa711195bd8b91d46f01d68d65"}',0,'BLOCK_PARSED',NULL,'f2303195ca59191f7a48c3ac00da8eb817c8efd1ab4cdc09178a445c92c65f66');
-INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5572c553182b65d8017baa82653e5ef563a1b75a9abd5c2740981b9c61439146');
-INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'NEW_TRANSACTION',NULL,'297dfa86070907be8ae1b82c2bc0143f134f4f332aa696a48a12bd6a54979fc2');
-INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":50000000,"tx_index":7}',0,'DEBIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','0cf1692d4e0225e8c2223368fe29d6ad460c06b1207fefb5856de35bb4533d34');
-INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','83dbac192c832e3f19dd5a2272f7f8d4e129d7a7ddf9e1a351a0d1dca160e37b');
-INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","divisible":false,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'ASSET_ISSUANCE','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','954e80627b47db7a46b0dd46dcfeeaac85c9a9283218db042564c520e4923254');
-INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":100000,"tx_index":7}',0,'CREDIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','34609dab793b74b754e401054308a612cb1a44dcb5d65ef7ccd5baafc866ec1d');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'TRANSACTION_PARSED','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','eba8ebcd96e493cddb92c988d3760ff1d9d34358308f8e900ded644e04b3fe56');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"377fe894d79d60b011958ed747908b6009c5e0261fa177caefc664cb8db4c74b","messages_hash":"bd4d9db136434d836e9c7e435e56e44fa3ff5c3b1cf93fd0302f617a4b812347","transaction_count":1,"txlist_hash":"079ec7423e2fe87820626aee8980e236a78e7d51b453a739fb5768d9d520bef6"}',0,'BLOCK_PARSED',NULL,'01bbd07930166ff36f94394c61cd4cf461af36109083e8ee2f6a8daf37d19a1d');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d07161e3e92dac12db0166152a2de7eff1c60bce10be004687c7a76fa84a08a4');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'NEW_TRANSACTION',NULL,'8e377360d84a8580d9500401b76367e9a09b7076824aefce0f0ca47897b048b8');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8}',0,'DEBIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','f7a5c923b6fe6361ec3aad9e2ef5ab1043d8b845fa651664cc139ec5d98c52fc');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8}',0,'CREDIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','12e3f8cae97f6befb11829a1ebba507f36ef4c9b85a13d9b32def9e810f7cd8e');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'SEND','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','1a78f595dae72d3b15524ab7d5370299b0e8eb847fd017e965ba94621d8d990d');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'TRANSACTION_PARSED','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','f3451506a95ae9c33a61574edd83a165e67869e02e8f233afe6265ab22bed91b');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"4be55eb54e78e829306dfa31248b3073d311f49da420d9844f9aedabfbd296e3","messages_hash":"0483b397712a1597fda79b43b8d2e320e19089c073d98a94f8f31d4bda960bc0","transaction_count":1,"txlist_hash":"d57db7ce89eeea61f270e7c676b38d3574c52166322cb0e287f1857a7d085e5a"}',0,'BLOCK_PARSED',NULL,'6c898a5a86fce26e48a4e29fd6aceda1e0a8ca4380080ec22c8f0048d3f405c2');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae76cf33e663f6b3332b828b185aa73f70c00fab72dbb56a99d440a7fddebf8f');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'NEW_TRANSACTION',NULL,'18c3610c662574b12e6d9cae20e8f8f03b3ff13d51ab7222c9804087754c56e6');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9}',0,'DEBIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','1746bfb97022d467e9560375b9b5dd60da3e091b7a5aa056b40bd86da74df437');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9}',0,'CREDIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','04bd8eadb2898fce216e7f9cf4995a6f83a239b6ab09b8cfa73e6ec91081185c');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'SEND','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','2e05255338b5399d2c0a8ccc314277f6681488643b19d3ce413870ee6c51eeb8');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'TRANSACTION_PARSED','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','b134e5dc81691aab3049468abc444cf51f69bb550ba63a44ce353aab62b561cf');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1248da848479b90f9dada38eaa02b9fe1226859e6ed1e3c4a121172786178dea","messages_hash":"1090df77ae250c237887d69ec32aa9ce3978b820f31f257743be73497a03e395","transaction_count":1,"txlist_hash":"8727f3f9af7958daaecda9f2cef1bad0303d631cf9f8418636cf130581e4bb79"}',0,'BLOCK_PARSED',NULL,'36f23d9972ed6f1c2753a6722e93221e5fa21b8e3223c56516b1cc9ede6a50b8');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc0015f11bd9abe7e7c6bfc7131b4c3fc80983cbf0af3c9614b069e3544f6fd0');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'NEW_TRANSACTION',NULL,'f2ba3d567cd58dbac889bf93b69941261d38767581296d1ae21045c7139f66d7');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','78e4d1e2987e5746b09a93312087bb855174a34bf10e5933dca7d7d4d1fac348');
-INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":20000,"tx_index":10}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','d19a64d3e2ee19bcfbe8dc0e59bfe498d3aa6431d19b5ae4b694fc97cf603427');
-INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10}',0,'CREDIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','174683ec65d802e1706de56628a739d8e070b09077a7deace977f99b36d8dfb0');
-INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'ASSET_DIVIDEND','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','2d2e54043a3a129083bfda82a5593be0658c290467b214c98b008a346cbeef34');
-INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'TRANSACTION_PARSED','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','b94936eb985fa35a7271441acb0b00372a6e508acdbc36543d83870a4e5f7d4c');
-INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"1e1b07f218127eccdfab98a4bc127ce185cda15314e72328dfe10eb8f2f18726","messages_hash":"74ca0349f3017a1f66ef461140c650f4d543dcd443ee6557fc2b5644f1617400","transaction_count":1,"txlist_hash":"baa3b08e70e0db5ecf913bb99da662ec3dc04a5650f99d2d36408eb8ed6cc4ea"}',0,'BLOCK_PARSED',NULL,'ab481bcb6eedaaa6b4a344ec27e77a738bb689ed7ca37297e484027f6c03e695');
-INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'938f5077d6eb972968941dc2cad51ed6c3d8a699dce47a85b624754fd227cf86');
-INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'NEW_TRANSACTION',NULL,'c9089e9e077af53c75baff2d4c5a642aafc28da6b12d5f88ef4f77edb3084efb');
-INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','94c652a00c6bcdb7d99172cb2b065ad7edcc814fc9bc036f533abb92cd5e14ae');
-INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":20000,"tx_index":11}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','6e8f3dfc6285775544b48bfb77f2f25e1ce262040d2cf2b81427005b1c970f09');
-INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11}',0,'CREDIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','ac573d655de836f1ac65c5fdd6d2832b6dabf42891124e68e5484b0e36b4c9aa');
-INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'ASSET_DIVIDEND','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','2775c43262d76976d98d751d10aded10a3f7e85e2bcbcb5d61dc64a6207b78df');
-INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'TRANSACTION_PARSED','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','4ac8f1b8ce54ea470b7fa38cca3331f373eaa401f1d4e039bbf5a979c8b8a559');
-INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"03be7c3d8dc521277625164e3e828be106672cba205129c014ce7771a3b8730f","messages_hash":"3d53dacffbd01aea7f6de2017803318dd4f2e3dd68c172d073608c058c185089","transaction_count":1,"txlist_hash":"5def9d6ed9fcf82c7ec9dbc2247657f349ec4df0b75dac4444f7ff90e24f0955"}',0,'BLOCK_PARSED',NULL,'a53db498d4f2f6afced05f2e085822cd5b5a53d3f073aea243766bf4b52e4b4c');
-INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e6aad8ff28fa00e6d59d55b5dd32e02343cdf074a6c540404d6ff02c78dbd79');
-INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12}',0,'NEW_TRANSACTION',NULL,'d58abeb9a884919463f5e898422a8cab9226b58bf1c6411d1f6e533bdb20a9c5');
-INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12,"value":100.0}',0,'BROADCAST','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','5e20f5b2646155c3b179590e289b8fea660ed18147fe90358b70d62e0eff5b78');
-INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12}',0,'TRANSACTION_PARSED','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','b0eb5446cf4212636f8043e05cbc1b5199887f3511d17c4cd2a70b00a9ebc98a');
-INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"db6d49ef7cfb461f9431b2e712f694f0747012ae28f3684e0d41476f77fab667","messages_hash":"7ecbc512ec95ddd61fcdc326dd0a773a627a329892228506a957c54bf3bf6a9e","transaction_count":1,"txlist_hash":"f6d1a346abbb2adae7dd7fe6ddd94061bcdae3ed30bd091958d445c8b5f57f4c"}',0,'BLOCK_PARSED',NULL,'53dfa54665422dda64cdd46bb35cf6fdc588f50865c1b57ae3edf70d0dd58436');
-INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c6e91cfdfdd970841c47d327566ecb6c49acca207963a174190962586ae7f7c');
-INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13}',0,'NEW_TRANSACTION',NULL,'4fddab7ddf862ca807b89b70370c58db7eeca41e015d9f60f8de8dedc11a2b4f');
-INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":50000000,"tx_index":13}',0,'DEBIT','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','d35de3fa716eb3bfe8e4c1a64d49c1770d87febb1d5b8f8ce53bec27c0414820');
-INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','4784a219404bfaffc157b536bd395cea2c0a4ef2b524bef7a14a1b4a10a0d2d3');
-INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13}',0,'TRANSACTION_PARSED','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','dce7428daa7de93e61b28a005474867ed2fc108f67432d475e32db3e7abf5eb3');
-INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"ac399d193def488d3457876edef42dd651b30c976025c3d6f810e4d37c88c822","messages_hash":"9c6c273607bbb6fed258f56ebdf7090ee5a5d45fa7e6736a34197663771cc343","transaction_count":1,"txlist_hash":"273ce70d30b249ba5afb8382ddf7ded2d0849044d519fb48224a6ea69b7ba6dc"}',0,'BLOCK_PARSED',NULL,'c50531922c97df895ce30496280aab9b22b7cc21213ddbc6f946a66b3931e0ec');
-INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3983cf7920b5294eab7dd662ad37cf4d8e5f84c9ad1b9c521d56168dceeb99ca');
-INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14}',0,'NEW_TRANSACTION',NULL,'6162a17e3d280d0693f3a879679c393e2876f5945d1b5a7aebf639faa702dc21');
-INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE',NULL,'5104a0e301bc6bfd650cea8270fddf903992dab74facd470489eb408687edc88');
-INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'b7b8e3602e0510ce84574df5f85d6a816e4bc06d6664e4f24ba5b60f240f98a3');
-INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":25000000,"tx_index":14}',0,'DEBIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','042e2e032728d9565434675db63751b15b2a9a48500104f0843b6209d6245d30');
-INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','05a22e0cc3fcdfbef33e60b0da12737b1fe223e68d54efc4eefe070f023f18d5');
-INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","wager_remaining":8500000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','c1522781b1459a57e2db01336d7ba5a28432be82b13a07009f6441fecf356de4');
-INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":4250000,"tx_index":14}',0,'CREDIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','bf72dc29253b76adc857b42b17fe14cff2de8aead030b18567ea4779e819950c');
-INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","wager_remaining":4250000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','cba78d5a29e553b356c23450d7f4c6f018017e28d9f92c1e1d230f44c7855db5');
-INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx0_index":13,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx1_index":14}',0,'BET_MATCH','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','5f29205c6c8d05cfe56181c3734f028450cb3d4bf9fda924648dafab4e498ed8');
-INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14}',0,'TRANSACTION_PARSED','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','2a7a50036ec4e0e5b3568ccbcaacf4c53e01a6505c4ae20ef912afb0e00b247e');
-INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f6fd6f6280b1c580abe8e31de28bfa0f269d453068946733cad69d29f6874936","messages_hash":"d31725c5efb73972745475a8c76fa70e0780d81ab89ecd2cbd38c1e2dc128e21","transaction_count":1,"txlist_hash":"ce4d93afd619a9f22326d72b5ae6c10b24d3075399374184463f65d489a57c51"}',0,'BLOCK_PARSED',NULL,'dd5c456f3e437e062fb7e2ae0811dbb2a606d63300622a793f4f8e7b33187e19');
-INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d02df6f51b254e3c1f5e4f0b8d01c1ce9902e801c2de83f892c81696cbdbdef8');
-INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15}',0,'NEW_TRANSACTION',NULL,'d9277b65bb38d2bacd336796a78a27338771140d17f4fa570ed8bdccb01e0740');
-INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE',NULL,'7c8af778af0f5568343a93d557907efeaf5cb94b296bb07063d628c16deaefa9');
-INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":5000000,"tx_index":0}',0,'CREDIT',NULL,'cd6674f677223f94481d33aba8a03ac18dec2ffbf0bea13815adc500396d15b7');
-INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'c4da6df659b65440daec035b4c7cfa97a6e5ea1ee2c908c4362b15513767e95c');
-INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","quantity":150000000,"tx_index":15}',0,'DEBIT','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','4f318cc64d2eb0c2173afccaf798b37ed7931013456adfadb8a368bafe252ba8');
-INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','9fb1f11ea85a982d152914719418ee15acd074ff67a9aa4655ce854028bdd251');
-INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15}',0,'TRANSACTION_PARSED','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','d7c90a1d7aef553bbc7ae2746117ee9f547635d6a2aa45e8b9a3b2dabbd80a8c');
-INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"0c52d56c6f7c25da7b757aba30e890e9eff402155b5497a5420e13e69b7cb54b","messages_hash":"b20b444de969c080c6a742769b8fc09fb899f7a962d04930fdb1eb91f2a8565b","transaction_count":1,"txlist_hash":"7df6ac77f91e828339a1f92ce8197c74ff120f6c00d180bdb19a91f7da14a83a"}',0,'BLOCK_PARSED',NULL,'cf54e444872fe3878d4ad7c789d264504dd212b4a32565073bff697675d9d3ff');
-INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c50d685db436bc89acb9ab422927a96b7470babd0d634f5a301487b8b77eaab');
-INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16}',0,'NEW_TRANSACTION',NULL,'6c7cda5e0b275749c2b83edc82e823386db9099d7d7546662c0c5ed6bd84c5b6');
-INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":350000000,"tx_index":16}',0,'DEBIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','d238aa92f83ee322a017d792256db91bcb74197d6211204ff604aaa485dcaba9');
-INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','a196b04d5a58e1136786a42cf8d8e46fd5f2b91c2f63ebc0c2229bbc929153dd');
-INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','58e07bd9a3ebe47874a6925fd58d7acf53a76ac1dc27c1ef2dea5458b2433357');
-INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','cf5068d51e8f0569aba04e0e71adf9a7a55a0154e566dd43e88d8e350eb6ecc4');
-INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','5cad08f4ae4d7e38361e85bb8d2d4ad8b5b54f32fadc85646de78853064cd8e4');
-INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','02ec8458ea3d8d9601dd68871de9b067f0581e62ec49dcc3ca73d5ff31d99ee7');
-INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx0_index":15,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx1_index":16}',0,'BET_MATCH','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','1dee3ef96bba775d1075c4479a4d30e2c824de49816133b3359e13e1cab6c89a');
-INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16}',0,'TRANSACTION_PARSED','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','4210c66fc69f824d50ca756a0e6561b39d4332c089bbf452a0ba82638b9d0939');
-INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"03cd020f708d5f082f5b63e3c1f58e5f25d564a60699ae0f23471115d9e37d5e","messages_hash":"d8c072c161c3ba901c9d2b06221e5e36b47cc66cf910dabc2aa7d75927ad0c9d","transaction_count":1,"txlist_hash":"45379e27de14058cb9100cc29417da1e5b2534e4434bfcd074c811324e46fd06"}',0,'BLOCK_PARSED',NULL,'4b49102d9ffc635066dacc250b9f19b23f6d42e0a54dcc2d7db5d174dc9ac018');
-INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc43a3675a1094c007175ec80cb7fd1c49cea5b958cc26d8e1908ea94d3a9702');
-INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17}',0,'NEW_TRANSACTION',NULL,'30a0c00cac1a837d805a5754fce9766423457fb7d2793d279722e7961797d33a');
-INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","quantity":750000000,"tx_index":17}',0,'DEBIT','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','27223cf8093ece7fbc6129519f05605990a57e14c836c041405fa7dff7859d3e');
-INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','c471b2e901d51683c6bd5d4f5b37f927c1be7753d867370bca6b7546b649b29d');
-INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17}',0,'TRANSACTION_PARSED','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','54e52442f3db8c13aa47fab2838cce8f520d694971f25c6146c47c955b140a76');
-INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"d95cf7b2af3f578fc64450d484323075e81999a868918d3dbf89160269d68980","messages_hash":"684fde58a199a4d55bc79612e1f970b2b6b819a513762defdd2629c99fe494a1","transaction_count":1,"txlist_hash":"92ed43fd80e4e254ebff7dc725c32962beb79be51dfe8d62d12bd8e123320532"}',0,'BLOCK_PARSED',NULL,'3d920cbf6b9b379fb18c8a42566056d1f742b18723be44a4111e65506033d2ff');
-INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'724e3927a3396351445ef8e1a52d56131224c1c0fc3af85a903275f996d237f0');
-INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18}',0,'NEW_TRANSACTION',NULL,'ac5b7b3c051b33cd1932295f965afcdd53e7d85365005ea31cb9e91d0742ae25');
-INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":650000000,"tx_index":18}',0,'DEBIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','b4414c2ab834d33d60ad8b7b2b4e145b04f0f26da648b4d5e85416aa3eae2b0d');
-INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','3f4d350467b8a6b9978aa047ec07def71cd854cd2ce818acf6f34bcb50c6ed44');
-INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','a338651b4b03b95005e4ca80b7edac940feca39bba62cfa93992c784452c5988');
-INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','6ec79c0ec212005421adc076a010c1a704a665667993fd40430525d7bc0de67f');
-INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','24eba804db94fe452710179f2db29a81e4694674f2105693912df1868c4e5a6b');
-INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','af5e75d7bdccdf87c2f6baa8a5eab2b0bb7f3cea22fcd702358f04244bd98266');
-INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx0_index":17,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx1_index":18}',0,'BET_MATCH','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','fa510045b55adc256df7ccf30c135beb996e08b00eb1e546d6429d074e1cd923');
-INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18}',0,'TRANSACTION_PARSED','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','dd2f6656e06cc8d63172fbcad7a892f5a09637cf95994d0e44e07c1efe48cb1f');
-INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"725783dab777f54b11be66fdf47280852fd6b4d8a9b9f2fbba9e92056538ce73","messages_hash":"141e4de5d1572c6001982c0d980d2276a7b805bc6e95b8520cd66edf8a97b593","transaction_count":1,"txlist_hash":"f21d857139bdc083724362346aeaa455f82caf0fdf13f2ca880db6dbc6e047b2"}',0,'BLOCK_PARSED',NULL,'91f850089bea399bb6dedb2e9c61eed0ff5f3f10964f8cbe7860f5dd5d329b78');
-INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a05b56e3348ca5d70f53225fe3b7d16723e9157f045dddc917d52af108c9a6aa');
-INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19}',0,'NEW_TRANSACTION',NULL,'1dd1660f3e284b5e47d8e5f31739f8cb2b05099cbd7e5f2f9ccdfd66cded2037');
-INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19,"value":99.86166}',0,'BROADCAST','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','af836ecea79f711d1ad6d76eec9590540279530aac5e0636e022396938c04b88');
-INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":59137500,"tx_index":19}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','f7824a48b3000bd43f0bce0649244a72aeec4fbe74f8f287e8d0492c2aac6f42');
-INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":3112500,"tx_index":19}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','57b8ec4e4bfa0defbcf57dd127b0d43b10e86767286a1c7d4d530522faaa2eda');
-INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','757ade3f38468b2e0dce45bd1f931011e25aaf461af00f84b8b591d7df07051f');
-INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','9cbb7f51fa79d2e6075e0442935919be75c1b5fe6c68d9f9d9b94ef85b2b190f');
-INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19}',0,'TRANSACTION_PARSED','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','ca54c0adf0dd78bd8464ced1f2e95d4fc5a804da55b81afdd7cc01991d98f0a1');
-INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"05ad248fa836b50ce72a2f61c7465a455cc48ac92f2c0ff9bb9f94e69081d1e7","messages_hash":"502d5a096e80766d8d947d832fb1e88e57357b2feaae0912ec783ce3147a85b1","transaction_count":1,"txlist_hash":"3e8a8361086aee82a316c2a041d8f4e1d7b4000c3e18263ca84a3267a811ee7d"}',0,'BLOCK_PARSED',NULL,'d2f93f0763a9dab910cac7fd34804cac573776256762d4146d7a3399d2db8f5f');
-INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd50b7344743a76529e7ef1fe3e42a3ec95d76bee0e8f5653eeff8183e694aab');
-INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20}',0,'NEW_TRANSACTION',NULL,'fbaf64c7418c73820a98ce13c98a0ed3ebce556992c9000a24f8f2aec7e5d432');
-INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20,"value":100.343}',0,'BROADCAST','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','bd385649ae2cc9e299478bcf2cc9ed37266a4dad55af49a62183c28deff3adda');
-INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":159300000,"tx_index":20}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','b6f9346321cb0766fb07acafcf383e40a43ab9faf73bd8b6dcff9b496358db10');
-INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":315700000,"tx_index":20}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','e319938d889a853a14b9fea36b75ca6ee7f3c9d5c604a9db66b06aaacd8f5f0b');
-INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":25000000,"tx_index":20}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','6d6cb95ad60e7e9794cf5c82ef6c3814086d3336fc0ee0c6a1be96d5ea12491e');
-INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','37e420d6884e27d1ef1da5a1b9dda749c58228ffaf35ae7a95bb6bfd103ea13c');
-INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","status":"settled"}',0,'BET_MATCH_UPDATE','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','2633bef3a976cd61725d925c588bc4d86e620de5c1184b471381757354eb4b7a');
-INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20}',0,'TRANSACTION_PARSED','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','49a88bffd4e1c86b4e1003c9690bf818ed7af036aafb0deb6aa2f5b3df76a9e8');
-INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"0ab8707bce7b77beecc32ad6124482cb561776ed245ce6dce08f5318e2cf396f","messages_hash":"445f1951bd294004e2343cfc7561599bcf0488901a051e4c2cf5dee8f4474eb6","transaction_count":1,"txlist_hash":"d66ff9e099bc707b866c2595b0bb642657601a36ab06cafa070f18e9f3ad30e3"}',0,'BLOCK_PARSED',NULL,'2af0fc9e36471928cb168ea1f7c04fc8c94510943273c17907b07f4273cfa486');
-INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b34808a495218ed4c31361fe1c8715c42cae0c8f91b54ccf0667dc365f815255');
-INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21}',0,'NEW_TRANSACTION',NULL,'e4b1757750b7010aeac7da3ab3aa5e817087bedb563f628ae40c39d50b17a9d2');
-INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21,"value":2.0}',0,'BROADCAST','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','3c50cee72f84281d58ee6098f42706f1d71f2c5f072cfb9e22ab733e30d3f9d4');
-INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":1330000000,"tx_index":21}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','620ca539e013044e2d31d11adecf62ad008316c1cad9027bf15c77d49e0eaba7');
-INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":70000000,"tx_index":21}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','147efd72c5f3db833d8bd82226ed443316294626c20a3d262ec4a60e7ffcdb15');
-INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','fa07d19c081b88d8ff082f1fe3c32d9edc93e49a4fea2fe1514d10631eceee81');
-INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','304946104a469f2ddfe5f130fddc36de58273b9923e20aa99346a45df406e91c');
-INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21}',0,'TRANSACTION_PARSED','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','cc53b3e60913635616001d3a043ccab64cbba873a27b58ed384616ede77952c0');
-INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"198edc4bf109549538a2f8f96714536a99a1568fe16fe4254881520474adc68d","messages_hash":"ff432d16380c967282cd5222c8626af85bacf13e3d85aef97b632192956598c1","transaction_count":1,"txlist_hash":"3bd8ef01a2be7a5d817b535f19e456325bcf2d684ac25f09124d4582040fde54"}',0,'BLOCK_PARSED',NULL,'9d2dc484abbdfae9c900a2031103fb74d35edf9a70366b3314e4be90086d46fc');
-INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71a180482cd437c03bb4a4cae38b207ecefbd812016761e88184e868f6b00743');
-INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'NEW_TRANSACTION',NULL,'9bf74527d8302a8fd6f03fddded371bfb1acd311969e93326a93b122b3e9d791');
-INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":22}',0,'DEBIT','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','6ee46b6ea1a6133c54508e6ed9867357594ceb9446856d7415343258930e26d3');
-INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'OPEN_ORDER','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','87cdfba06feea344077249b6b90dea01f5c770fbc329ddd0459fda46a432619e');
-INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'TRANSACTION_PARSED','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','11bbead9f8bf010e74f81f621901218790b6c1c8ca3bf00f69f5bf6c9ac38970');
-INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"52482033c5c11ad24257707137b090606305497618e29050b2fdd3e13bc822ce","messages_hash":"20a39f221845b6f4e0eaa1ad4bc3a6e735d487cd6fba54ed30714d93ceededdd","transaction_count":1,"txlist_hash":"7d74bbdb4057dc5d0e9b568e983df362b87bdacdddf2724b1ee4c42b6602bd47"}',0,'BLOCK_PARSED',NULL,'435927d910d6053442d1c4c412561ca0eda8c9422ce23e7ca51008f89d5b46be');
-INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c19d59a41eb496b52b640688d03f499531c80b0b8000beaf9ab4616e8c985242');
-INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23}',0,'NEW_TRANSACTION',NULL,'c85ed70b1d5569b210a4d9d29c2ba7924255c529175e002e9e4517acb232fb74');
-INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","quantity":56999887262,"tx_index":23}',0,'CREDIT','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','a726c0d9d341ac70f63cb076905fa2a1641c3df57aa69398624b51cb8cfb2a92');
-INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23}',0,'BURN','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','df990778aeb9bf3f2fb51e2e513ad4e550f258463373107b8f7c603e2434699d');
-INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"85d639cc8147885470da26d3c0470dba0eb8b6870d5941b12bcc4afb8fcd9af1","messages_hash":"a5a389ccb25f814327dbdf5f424767cbb80be0d0c05d0e7752d3fbe6164f071f","transaction_count":1,"txlist_hash":"568bbeb4d12090c110442540d6f12734602dcf84ae5e331f0391a4a47857d059"}',0,'BLOCK_PARSED',NULL,'9c11225004dcc2f53dc00f39ed2901ab8253a8edd86675797d1dc0fd48cca897');
-INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4313f0e3b3f11a929e59ad9884a36aaed64bd8bf2049176494b0db537adbe0ea');
-INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'NEW_TRANSACTION',NULL,'bf4227a03eeff20ed50bd58220127ee19f59dfbb26b27338a1ad6f88c6929473');
-INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16"}',0,'BET_UPDATE',NULL,'7d775c70425d1935984ef3f71f5cd0370463d75ad0b90c9c9cb2a75f6155611f');
-INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":8500000,"tx_index":0}',0,'CREDIT',NULL,'71fc38f499d4d359b629d5b9565c2ece638910722adfdfaf2e11a2d8881fd6b1');
-INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","bet_index":13,"block_index":310023,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'e33200fc8e935760c30e8da755d02190a723ca6f88490dc8e6b60254b66c8008');
-INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24}',0,'DEBIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','1c144f4157287db23f75a81fac5c443d0186a1cdcabac5e0b4a43a2abf9d6fb7');
-INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24}',0,'CREDIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','b45bcd3e51909732b35603b2a025299a5f90bd04ba136dd2c3c19f55015185e4');
-INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'SEND','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','a15e4f8e129be40292b002d63eb090a554bd5dc90909782b5a1344642d23372d');
-INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'TRANSACTION_PARSED','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','9d90334fbcd6043f60224cf5f551bb5feb44aa0f58594e0b5d59164cff126a6a');
-INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"eb62ce47d68491a84b9a29b92db2742021881f0274072f1bc39dfef08cd7a590","messages_hash":"7076a1e5280056ffbed986360f5e6985ef94abce4aed7cf01c3625ddb9c8e6f7","transaction_count":1,"txlist_hash":"877a4d466f5f780e8103a42fb7771935ef57486ed7d74aa77757b9cb434893b3"}',0,'BLOCK_PARSED',NULL,'e724c2d1a0be6dee1ee9bacd0a92f169b7aa02ec69f08cf6023762ff959ffc2d');
-INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71b11b6c33e1b9bfa451f4f119cf6446cecddb7127d3c544ef8f106384678018');
-INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"45e73afbc34855b5cbd342a6fb77545e01f3ff4601a04c6dd25dff665aeff484","messages_hash":"c00cc576f5d36432e15347902f18fccb316e0222d3890019d1ee381bb7936b63","transaction_count":0,"txlist_hash":"b16082c8d932618c9bd89f7b8d6372190cab18b274ed8dbc1b4f04e5edc2bdbf"}',0,'BLOCK_PARSED',NULL,'eb88fd96cdee6a4a169a76201a93d40a0b72630002b7cfb7fbc2dc13eea9c2be');
-INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc21026307b012a84b06e29b7217d11727e22d6034dc4786f5029963dbefc56');
-INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"714702b25559325c7bacffdf28e0af30c47bf48e6b4fda053c21ea31c7604128","messages_hash":"801eb76b5da9f7d5c76f0bb146caaa3fd6b6dbfdbbd244d6fc9ae5befef65527","transaction_count":0,"txlist_hash":"391a822509e48a899634f3b8a6b0c99fd298eefd97230b401b40c301dd7e6052"}',0,'BLOCK_PARSED',NULL,'0ea3cb21bf55564c6504ebb05286f8057f54bf29d0ed9611c777affcd55996e8');
-INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbe7fecd02cdccd8e0a97ee725e1b41ee9fe76741ef06125ccca622ae533ad8b');
-INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"b305741a1e277ba0ce8436b914784ea0156616ac308282a7f29dbca62a54cc82","messages_hash":"c548b86b7154b71f57f48a7ca09daf1c4a85238e447c78027e00e2da8f47684e","transaction_count":0,"txlist_hash":"16c8d91265aaface472342f436e376984d576675529de1f58a188f994375dea0"}',0,'BLOCK_PARSED',NULL,'34240c1014ca8f66ab6d699d6ded57142f35a164d46dcd66ea91be35b57e29a5');
-INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a81c47ab68b19fe53ce64ad5e8d39f4535fdcc28ef02af4510f50a4aa95ec4fb');
-INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"1f833f7396917e02b4b65b0a05d19754b6a53b030b659514d0c21cad062d45f9","messages_hash":"207882040c07bf4f53de0d18b2cf8195a8eae75423aee1b9c091cea5ce3b3d27","transaction_count":0,"txlist_hash":"d7a61a46b4f6da78607245b9fdd4e0b1d7499b5687805939342a431ef570711d"}',0,'BLOCK_PARSED',NULL,'d2df4d4d59023459899d7e3bd05547fbe10d7f709eea04abc82d6fe4d3a4509b');
-INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f1ad5ac80804481a7d2604009ab17650c3c88a4f076e6a464fce387bd454d5f');
-INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"47b38906beda7ad735a86b9fd63669b0357b7ae0a0c1a54c9827bc8b90185626","messages_hash":"822023de35329c7abf80e0bfb4982def648716fe0d577705aff5b9f4e7de4440","transaction_count":0,"txlist_hash":"a8a0b67ddb47a15f89fd14f227e118bd374dde04f4bce3205d5ee07a8c7509d7"}',0,'BLOCK_PARSED',NULL,'1d51cde59c41499fb0915f7a7f740b207d840b5d7900f3a68d025314cdb13f13');
-INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a9e9b41994e470ef09c3e98d9d80a3adf5661f2b48505286c3d445176b4cf45');
-INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e69f6c9b649ac04920be70f9b076f7909bcebd8312afa715be3d8922794a72e7","messages_hash":"fe7adc1d1add270a2a72656e295146d97f02906127422a837a999878783f7e54","transaction_count":0,"txlist_hash":"355199be765ee2db25308e58d6cdfd22c6941a296b51800e8f937cea1afedbdf"}',0,'BLOCK_PARSED',NULL,'93b09623da87bed519319ee9e0c790941594b006d29cbc74db3b91bd1730e1c8');
-INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33642154b1180a08bf58e2e7bc485f3aac873edb29d0ec5b66b1ce8705501b10');
-INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"c51828b04433b000787c92eaa7e5abd5cc0bc31c619cb8479aff675af6e00c55","messages_hash":"c6b5b98f91407d3fe485e52acccc248f30baa792a5fa385eb6568c9531a1d9f4","transaction_count":0,"txlist_hash":"b4bb7325ae90ccf0095b0970cb4828c98915a2e6694723ca8af1e9f77523d540"}',0,'BLOCK_PARSED',NULL,'08d281ce28ed8609d57c8c7e49db5ef9debe9832bbea09e55a47b1d668c3942a');
-INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'494e96cb7538f8a0643f411f6bd1ac3d8c496c09d3fb3a898b737d69e2a94753');
-INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"26d91568af76b5ad4b357693ecb0b9341aabbf5de5d5c83f9998dc2f95d76e5e","messages_hash":"3628978fba600403d80a4664c770a72885e2a071bb6fcbcc6123870602c6b3a9","transaction_count":0,"txlist_hash":"b13328f7f6011c05736a1c728af4726f63f557ae1eafab7d70b6b7fd60025616"}',0,'BLOCK_PARSED',NULL,'61b12bf080e7530ddfb2c3b80c622fd3e3e6a16ac9c44b634144f30ddf973d50');
-INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19591bc4b86dd487a966ef022d18d82765dcc81b37adb7bc51c7635883c2dd2b');
-INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323"}',0,'ORDER_UPDATE',NULL,'76c0d1ae638c9fba7906c7f0003385340aa181c10f91e957e4f153c50484008b');
-INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":0}',0,'CREDIT',NULL,'79f9dd3cba1c95a4b2a8eccd93fa0ccc704fe2ccc67bcaf3deb9df1d837c86a9');
-INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'901dfc98f736fdf9de2654313c83efabe8cce1b6d58f5c5fec60e2bddc95c05b');
-INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"21f8da71c386ec1e5e31a35c1190b895f2df52529ea028d5fba25e0d57616952","messages_hash":"904c8038bf8b7f23c529b8df31b2f8c19713fd76de70d62d87435402068957ff","transaction_count":0,"txlist_hash":"80980b4466ca949fa21a42ffb8c22a2f5853722c4fa02bf0cb962e97365384f1"}',0,'BLOCK_PARSED',NULL,'aa02abd8b6261302f757e69ac9651ce8dac222c8c95e5c71015e939c5ebcac4c');
-INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc2e7c047118fe6fb7c36177931370e2313aac86e5451b35941fe169b013ac66');
-INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"1c844a38fc28e83406c8019615d0c24a1ea84e6ffe4da392d29f353ca676001b","messages_hash":"0166e273e9fa7ffc4d82e225994c190babf5f835df2b0025c10f6c5ef43799c3","transaction_count":0,"txlist_hash":"0c2f46b4f4d5f345399be6073d2f72bf689f6a3a20e57c41ccd541cc0bae76d3"}',0,'BLOCK_PARSED',NULL,'b60ef88d3b2937429f48eccfc3dfc916c2a774a0310b9eab5eafe6736d970a0f');
-INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6aeee4c6cf45b06d7f8e90fccd4235db964f5d94f3c739f8ec2eb5294887a5e5');
-INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0533bc0d3bc008b5d65932c569e9f85e3217ea9efbb8937935be93b7a01ec2a8","messages_hash":"3a3a230f7a95b060a2b17b8482e7d7100c58fcbf490502c90d512a6e02108231","transaction_count":0,"txlist_hash":"9f5f89f0c9821b7de30388b2a0891011612096ac158a70838d4479059a4bfc50"}',0,'BLOCK_PARSED',NULL,'a73c4486040c4d4cb14ea761ce168282a7587a3840fec5e4a8c499e28ed3894c');
-INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b259da012fcb0d64045d72ad5bee6d575c9f11451e541ffaf5c0218625ca01d1');
-INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b5f0b7406fe3b6dbcbb5c3b28fb8fb119e237f07532f500b422058ba898e5b22","messages_hash":"4c78ac34d5f492cc396c93c5fec07d489dce0734a3d660f92ea9d77fdc2d3762","transaction_count":0,"txlist_hash":"5847c5ec7d8ad0e27d47b3b6ff7df903c4a67a269aa248e69ee918062e58976c"}',0,'BLOCK_PARSED',NULL,'fe4dbaffae2cd752b04f4f0aa7669c1a4fbeec3616c39f812e96ebb99f2c3e79');
-INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'696f52591be2d1339ad006b7980407cd685364244f1288de12726b878ec89fc7');
-INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"7519ac8cdf4c13b25929d913e3858855aca68bcf3fe6d3636e7371894af27f04","messages_hash":"2bbe9ed724b1fed2ced169ed3c8b73c85e3b907942d63d410034062016d9fde9","transaction_count":0,"txlist_hash":"46fea446096a8d96f1f990374d94405f358ef5a3a8bf09aeba2f76977cf867b0"}',0,'BLOCK_PARSED',NULL,'aee9dd69ae7aa704110c83140e3f38249eeec38a6e83c173601ed279c378cd4a');
-INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63a16ae8b64cbc5549c3d8260624e4b106d76bfa39004889eb89f0fbdfee48bf');
-INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"f417da67da0c23d4bc44bbb864de5b94057916e28502641ba70764f44165a1fa","messages_hash":"2ca69d6d57ff41bd714ec175e6467480a69e5a62055c216350cce6cbb7d2571d","transaction_count":0,"txlist_hash":"e372a6531d2f206be5cca17be0f42a75e2e6617499a6dec377c274f7738620df"}',0,'BLOCK_PARSED',NULL,'38b43c7b280548f2dc12fb74728fbf5dfd8f0fd409712beab123a98b829a44f3');
-INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4411f4c80fbec4cb7a4017b33509d12d9783d1f984e172fbb78e25acf48b29e2');
-INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"098eb6f2b0a1c584d969167f50bb55383ab71593ed1f0ca61d83c4513a209107","messages_hash":"c015b324f177d23f9dfafef324c000fb4e4397b80e91e663c00b51ce0421d4cf","transaction_count":0,"txlist_hash":"da7704f6d661aa255af6e2d3ad713fbca0a0e6296b16e3a364989bcb5a4e38ba"}',0,'BLOCK_PARSED',NULL,'a6cf088f286eb4a5ca454df91f821ba632ddec25736c9ac16af6f96a6bbe12a3');
-INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'635f101104ba176404048330771cfed9efa9451d889cff932d06e2c4adca7095');
-INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"a4aa60a1320e47c975628f6650d8fdc44b6a729d26a3178031e32fcb48b59491","messages_hash":"1ddc1eab822609f46aaa413f870738d386600cb5f92477029f3321538a8f3425","transaction_count":0,"txlist_hash":"02eb5dc168a03d3cd067677480b22185a8ad6731e467c0b3bd5a907834e01013"}',0,'BLOCK_PARSED',NULL,'006de0ea2f399b7b74df27ad60ded078c9170ba48b4b7870738c799e0b527025');
-INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14c92f4b6b40161845d10915aed687a81a404106893cba3e386c5eea0e54df99');
-INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"cc5b2af6948531b635b18a4b6698efa318190762c8e4419aa9ca3634e7ed5d1e","messages_hash":"d1204fb3f4fc48c21af8226bc45388f0b6eeac8a9f4fd47126f80c6572a5469e","transaction_count":0,"txlist_hash":"f6ba96a6e3e2e3442722bbc1bd770d3f6f0f4a4ffe57d0858586539f81e868b8"}',0,'BLOCK_PARSED',NULL,'f5e5e77da1e975cee7eecd7d372faf4ac8a8a77e286b0109bf41304addc1eedb');
-INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d40c7ceb5585a425a131c6620e985856e6f643f27ee16218504709849ccc685e');
-INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"7ad02b4853bde78025942e9f58c212a76c1828337610347e516d4a359af804b5","messages_hash":"9436001b6251917c4b69c00921901c387330125c720ccf2c9e576599d8dafa83","transaction_count":0,"txlist_hash":"d8089b22bc20979dce133885c84c5babb754ff0522d7f2193e1d3157c5251631"}',0,'BLOCK_PARSED',NULL,'a4720f23430ffc19604dcbb8dc54b0d85b7d3597f9a381e4c017f5e8d4d9f788');
-INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c65bb55f227ba0a66bac3c49a234d5973958f74ff247eabd5247cde15318bbe');
-INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"64a91735950113c13603e49ca549fae9b30092a9fc02d53a32a20eaef64ab6ce","messages_hash":"517bcde57fab2adad83570b2609cee487bb5705e176f400106ff69ecb4746b6d","transaction_count":0,"txlist_hash":"554d6b2a2182d87b00111b748a5d904aef85a56b92f1d076ad4f866f0d054041"}',0,'BLOCK_PARSED',NULL,'ea271bef414a7d8823f1778bfe00733676b7b03b90a9877fc82d1ba469dac433');
-INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9a77d9b8d7e4cc9749730b7f2326f0a4f8513fe0872d6e80042678b7a5a8e2f');
-INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"68107847c7a9dd19612d8b47c1a39cdc446c752f2c05ea8fcd961a42f835d155","messages_hash":"912b1b96d379d1fc64b209c7d2e5312ba4ee269eb530b04eb7bbeb0537e4c21a","transaction_count":0,"txlist_hash":"f2b1800a73d98a15428bfb5289f7ccbb9d3c66b98fb0a36f00ffce8a78279801"}',0,'BLOCK_PARSED',NULL,'786855d3656584ce80cea605c08a05a871044ef8731e2462267eb97fa238cddc');
-INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bfb66802d651e4e23a836f4dfd6690c1ac8c89de4b9e97bcd013ccd4bb15aba');
-INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"64d4d51adb6994360b3dbf04663c4f067ba223e62912fe1c5a96a190225bb54c","messages_hash":"1600a9735c13014eb519bd322dde80f84ab675df322f6decfcdffd1af54504d1","transaction_count":0,"txlist_hash":"ce4365857faa29eb04e638064e4810620f434fe515efe63eb2ac49c3adce6581"}',0,'BLOCK_PARSED',NULL,'61a22da142ebf63ec164238fa2e7726bd556d262466f64413f387c290ac98f5f');
-INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e2cdd9c9a29be9e3272d03cac1048298238e88bd4817328c286c72482422a29');
-INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"3ba2d7685f63962f576e9fa94e4d6709ace95249a3064804c3822078c982d11d","messages_hash":"56d227f3edb62b974dac1362b79eed46bdfa1e91f69065d83c8d7c61c1129ba3","transaction_count":0,"txlist_hash":"94729a0956e8c1b095c9181e01c220b94257ff582e35d87923e3c5ddba3a3566"}',0,'BLOCK_PARSED',NULL,'4dc2a465ca72bb2294c6930929c524c93c3d26b3bfac076c9a19a02196fec120');
-INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'123366fde9010807d8b8cc33dd69e3f0c3dac4f1ddcf9ec36e28f330d3df7ccf');
-INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"6502f277568bed2705c5f496e278e5d99310ff6705751a3999cb4b2bc7d725bd","messages_hash":"63397d50f0c1aa35c11c76609beac1cca925f3ba6835f096137952b6411609bf","transaction_count":0,"txlist_hash":"0986f1e944c39e36fe955ff092028c51647a9359492f17a76c682b4346be714e"}',0,'BLOCK_PARSED',NULL,'9f05d8cc004302d2b48b6824cb4d1af3585eb0268f50ae8410a581572457dc7a');
-INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'154744ac064bf7cff1545424cbb1bba58a732fa384be7f14b95490441993031f');
-INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5dae29289f36e64b87d56f9870af0bd5ad77ca45f1093c1a41140ea397945130","messages_hash":"6b46b89049da0cbfe2d00b6901b5a8954ad60532e57d14ca35967167c73ba625","transaction_count":0,"txlist_hash":"f14e3c5de5e186beaed6835c7c61fe2274603bb73e62ebea5899ae2a998e26e2"}',0,'BLOCK_PARSED',NULL,'49de3600b247b5e24128a007a1afe4e6638be816c3d53673fe253d354a52c64c');
-INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1fb5e63f5d907cff5a9cec23514b6ac05c92fbd953b9b496bc3e974e2567e01');
-INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"d5dee49d7b78e2ce4dd2a648e345a52bbfa7e0e76de9e970b1dc0b6aea66c130","messages_hash":"c57c5d45c4cef74d650721928f3dbe8f0d83b310cba367170b79381a7ba21ee8","transaction_count":0,"txlist_hash":"e31cb01f21f653217b3bff72061a63f3778f45a72a8419988a496d8f388cac1f"}',0,'BLOCK_PARSED',NULL,'615f668a060330cb71b1a1149e517c98397334820979c953934a05c187af348a');
-INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b2ea9815581d0a502ae6f707e5d89f4d0a7fa0d339c9d528dbbe20313a744dd');
-INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"2b4c97a93933b8986ebb061d47f2e8bbb1672206058ae3c3ae388bab36b8cbc8","messages_hash":"7f8534be109485517c9459dfb5222b8f541b468bb4f7aa58220db663d7f8d243","transaction_count":0,"txlist_hash":"eb45cf1a49da1dfd4ce7231e8f6da96b7241b0b034884cb2de57dc107723b7a5"}',0,'BLOCK_PARSED',NULL,'cf0e7ccb6dcefc853ab7cf4e0e4864fdb99ce251ca775b4ec95b2d5141b90042');
-INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'990fd33b4301ccb0e4a5a7530e2bf51978b88c5c503bab1317df8cbb74a3447a');
-INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"115913763ca7ef5691512a5c6d47cbd49203aee8a3242928f62640912c935872","messages_hash":"3e82c3cebfd5dc148f738ef6d03270bd335fdb9f897d7c38ec08de99bd2029dd","transaction_count":0,"txlist_hash":"db0d0812374555812015a2058ea7f6bc8aebb8aa7d2824eeeb26b7b42d75f97e"}',0,'BLOCK_PARSED',NULL,'ed55b3423ab5dcca11cefdf3a5214bca3967c8d01ef8805bc6fd0c3656aa894f');
-INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42d42ea85e4c33a742f3652f173fba6c96b5cbc6e0d676a6b921bd1b9c63faca');
-INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"72f24dc53c759a08aeb447d826bf64aad71ca8f4ab9640e30e440e6bc050a0eb","messages_hash":"988ffda502c528af98f0a02d190e1b79b50362938e53feea5d16c3bb9d6efbd0","transaction_count":0,"txlist_hash":"b3834012ddc576765f337d3dd8b3c916f66711481c0bfa2464f6ec2678d1512e"}',0,'BLOCK_PARSED',NULL,'31705a1784d1e82d1cbf45ba7b2a3d0811ba6b504c4888d605da5c47292b94da');
-INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'535e3013de314c06b7b71c340e82cd354ecda4c19bee881bb52c902fd59e63cb');
-INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"07846004f2da033bfd113e13040b0d0d605375370b7437e2ca2ea9467fc80c1a","messages_hash":"a2a135fe3fb63d0eba7fbe099dd2b528a757d64babba95166aad63f1524d6ad3","transaction_count":0,"txlist_hash":"35357fb0ca94373955c3cdf08be75d20e9665a9632be0df0c90b567875594049"}',0,'BLOCK_PARSED',NULL,'2b54f628e0033a533734d90fce16dc8e3e71012b1aa5f2e8c9c5efc1101facf0');
-INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8d4d280863e2387337e7eb54c0c3e2a007a990c4219f05b690dbb76ff18be2b');
-INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"7bf9a701337c043a7268cecca5ff765c24600a2056137cd03e3ead9d64ef2348","messages_hash":"cd278dc9fcd6af0b08770e3ae24d6cc06035a808521a27d30f52f740c92013b9","transaction_count":0,"txlist_hash":"d177ed9e0bb4b3d77bc5b1a044e724cabb92dee3189747bc1c01d1fee7148fa2"}',0,'BLOCK_PARSED',NULL,'a7b77e771b80a72d087bdae2b4940f501faa78db94cfd7b819b2749a8a8e6c5a');
-INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cb7c714e494bae33ea9535945f768c634d313f334edce07492824cec4b3b78e');
-INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"d544aec17018203fe2f5c9bda52a5da53d41d3364b8026770d1f620aa53e6c36","messages_hash":"11bdddd1a775214ace919b5cb8b05153a029d3afc0d4fc76aa6fa3745c2be51b","transaction_count":0,"txlist_hash":"8a3b92aa200f79e8aff4a849618914f7d39c34ef2ed636d3b5633a2ad2f647ea"}',0,'BLOCK_PARSED',NULL,'1fff04ddcc3962b236910ccc84ee25164cb5979585c8b7c962133fbf23385fc9');
-INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adb5ee01384685b89ff3273dccc20cd59ced374c3e0640706810f4f797f76617');
-INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"bd3044c66f7e2c24944a9c938b8f162ac8f566a1338444c219396eadf5179d3e","messages_hash":"c8fe4a422a254591a8fe091f3ac0a188b49f241298ab1548edc31dbce7e09734","transaction_count":0,"txlist_hash":"59ce208e69d4e1427791ae237a6db6a05efcd50fa386f4f8f56862c6cc3b12d5"}',0,'BLOCK_PARSED',NULL,'9002b59053e4b45137b718705a81aa68e2e6b3066f426f57c244e5dc8c3db251');
-INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56692fb2be6bb2a2e8e3b29fe54267b4b0fe4bb30ae6d515d8975044076e220a');
-INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"b19346f726636aa9da55af6106a471c596a7f7b93289b70d3d33b45334bca9d3","messages_hash":"1f6fb5ab52976782a48b7530e23aa9dfbc640325a72cbb0c7db1247c7a0b4031","transaction_count":0,"txlist_hash":"8e9d4b1d3ad7c5e8e479640da0ffd8b7423aee810ff6adc4ae2d37d545169579"}',0,'BLOCK_PARSED',NULL,'32b3cb58acc3b3339f8be52a6047129771a4863f27a0f5b90a8368d1e5e36e7f');
-INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f01f663a95d9606401ee01dd6e9960622d0af0cf45e440790c56e6a3aca6dba7');
-INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"35c2ad9ccd3bd68cdb0c4d8fd4e30938521b8559c1cec331a29b1802d649947a","messages_hash":"e850532831c45f4cae14c9bcda7d894dea4a93934ce7afc38f256def03ba1c4f","transaction_count":0,"txlist_hash":"e14484629fa3aa2e8ce54505b3983d0f33e7727d3dacc5de57a574c2e0c69baf"}',0,'BLOCK_PARSED',NULL,'081563c87fede65c3383591862ab5fbc86db3d41b0c16036194b587e1270e9ee');
-INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bea6d6ebea762f26a74e9bd52e0c3f5947f9e495db30bc8666481e26743ef00');
-INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"e9a705d6661f0345ffe0f45ae26c0d6ba6bd5a125eef2f0e9558d0702ee6d63f","messages_hash":"047adfb7ad69518a1b2a78af1eb8222168b0865300be9a50e37075c7e1948c9c","transaction_count":0,"txlist_hash":"cfbb1995e2c28020dabca30e98f72afee01b64fe276acacee7e104b22772de65"}',0,'BLOCK_PARSED',NULL,'9aaa8f9d8f06e63ea8471786bd5e0fca066332acabc2e74381222d471502137e');
-INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4e465071f2430587cb69a054cfbe8032882b752f0f7759f8a3db83f97a0bda4');
-INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"61efe4d33a7f70cae34df86753532aee25fb0b153744acb962142691f6979482","messages_hash":"8eb894c4a10a9bf7669b8376b5e09663b9e4ccf35adf18de9db07a33315b7ed6","transaction_count":0,"txlist_hash":"401b057e48ae9e423f354f7ddbb11e70c0ec2209ef1a26dc7ffd0bf6003f1335"}',0,'BLOCK_PARSED',NULL,'edcf228c43059229dcc07425704a0bd0c3566bc9a5a8649dea87ceae30f59f0e');
-INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a409e606f7ad42bd0216c4d2aadfe4c7d3984b7d0d8ceefb7ef06aaaafb44eb');
-INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"59d9785e783c59c12783977087ad439b2dacad9ae1ef2be6384bfc9036da9804","messages_hash":"e932e980d4a231aa6c0b641cf4df7178dee3d08ba746c32f4db844090938d7e8","transaction_count":0,"txlist_hash":"6010ccb1d9476ce07d8b50633bccb97ecff1a229a0ea7701c802aad32f961be9"}',0,'BLOCK_PARSED',NULL,'e32ba3f621caea8bab1ebb558bd81fc984cc9b7c382a35c1cc71e0bbf2cef52c');
-INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b440279b4bcc297a79cfb8a3e944971e802a1629dea312ba693645bc9b929bfb');
-INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"e257d59ab5dfb01b8396bd12d2fd169f9ac7629365b90bf6e593e627738d3754","messages_hash":"e1c03b783d99b6d377dc00755feda0a6939daa86e393e26a5a68f714300fb554","transaction_count":0,"txlist_hash":"bda63243caec3f70173e1e93a16867ecbcf45d987b6a5f72d1bea54d361f0ed2"}',0,'BLOCK_PARSED',NULL,'0aac11a23b43f3c1d97c2bc207a836c776eaab240cdf3d51291164ecb1bd74ca');
-INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6bcd2579c57102889619a1ca19de7252eb3bf91c18f4a774d6c6a9fe851ec37');
-INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"0dc0317a88a6fc4ac791cd4d45edcf2a142fb83aa2e8a2f299fcac48a2c2e04d","messages_hash":"fbddf6eee66e1c7b1df8e81372ee1d62a5ef71db7b7dd4baf4d5ef016bdf7c4a","transaction_count":0,"txlist_hash":"ea9f3db44eb05a8ba1c860cd0a13ea662f84715b59e78a87f49c78377cb6b2c3"}',0,'BLOCK_PARSED',NULL,'6955a1e8a6edfcfd145c05059115db64e7b3ad7a8c41b46e9f33c4e2c1925247');
-INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dfcf809f12e5063601680b4b7d98be6b01f0f462cddc6ed4e9289be5e5a9764');
-INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"892d6a49aebb262f2a626a35c0806c488c836c04d33122c2d65ecd8904fe3d85","messages_hash":"8d2ee1a5f97490c82f97f7cfa52fd6e3b8e4cddae27d1aa5084d19006427fef6","transaction_count":0,"txlist_hash":"3fc1380f35c9123d16b9ffbeb23c44f24e4d6001406a484ce30ee5758b8ec965"}',0,'BLOCK_PARSED',NULL,'ffd94f32e73328164ce6d13c33155deda28a7e8e3db26922dfd87ee05226e342');
-INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45b5e32576342999f7b8fcf9307dddda1f42be6b740b5a6af8b7e296891ca463');
-INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"e345abbf8dc42737a9f2dd038534409200d63a9ebf5d1cbf3344ea9413c388c0","messages_hash":"1557b98be10d0eeeaf1e47f46d632cfa065aa77760ab38f1e81ed16bcc28e405","transaction_count":0,"txlist_hash":"be23706267b965eb38fa15ec1ce8c17ed5727bfedba0ca4d4be3db2fd703744f"}',0,'BLOCK_PARSED',NULL,'0f11999d2441cb10951e476f2a0d2b45c348df49460a458734dbe05923b52972');
-INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e4bec6cf6a4ebca59c646bafc7b469c3ff2f47abec91c9949be5bcfdc1bd6bc');
-INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"84ec781d054c0602ed97384cd32cd060b938627ea490a7635fa3ac0babba94cc","messages_hash":"3a160d03c922d16d4defefc07987a5d7d6c87958f1040c9058f4810c5dfd192e","transaction_count":0,"txlist_hash":"1f7417cf7a3d9f07e5a8faf658b166c288aff136ee56f244797ef589f9cf98c5"}',0,'BLOCK_PARSED',NULL,'d3f15a2262cad20878e3a8820f4bdee823d8925b6d0cae7d645103a8c3b59f1d');
-INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36a6df3603fe73289ad19882afe3f2e7336ab3b5c2985be6d5540a8065071ed2');
-INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"3478612a8bb95c2966891fb4d1b35493a1342364a6f08404b83ac9fdda763aa2","messages_hash":"f6bd82018fec6aef410ce22ae9453985c47d112327ac79467b1b58b5459b88a6","transaction_count":0,"txlist_hash":"7b4317e7c2db815ced2d81aaf8efaa6331e475a7a9b3a59041640d43484b1a89"}',0,'BLOCK_PARSED',NULL,'ec63ab87244c4dd0a6fb35a8048a31ba45e6c83e0d9a83f96fc96421c06f7213');
-INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b1a5b3152db2e2afc635d285ac0537d94187bf43cd4910bd7004c8dd9f67ec8');
-INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"c532c4c5f5e2ae1026ec2582645d9aef06afee46cb9781427a1f40667378ed67","messages_hash":"534d66483e451478608cbb2ede9587088e10efd2e0e700f59eef272e91423c46","transaction_count":0,"txlist_hash":"89699fdf437b96128d7eb89a45d58e45d0b829789c6e0b29e8972b48ce5e62de"}',0,'BLOCK_PARSED',NULL,'b5bba8e5bc47b532bc24231341213d77cbf43177a4d4401925d7514c4f140ac3');
-INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4acd68504ac4a26d6c83549ddca2a06d854cf0516d58de65cc2cb0b14f497f2d');
-INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"5508189396fa6dfe63a7d06fe97a3073e986eb305bcb49430157f99e3848cd69","messages_hash":"0d2642a45e69da6ca9f71855222603189bd602ecd7ccfa1d5a08fc602f2d83bd","transaction_count":0,"txlist_hash":"4c49d9334c909f728f3b06a0ef613fb09f6369dd431b7078db5d269cdf9dd4bd"}',0,'BLOCK_PARSED',NULL,'ea9b0cced153aada72e79042d07fd66cc70a3b8a7f14697dc71f329f491b7f08');
-INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bc51c1460709bc1ff0d049cb84cbaf05d765e082e48c1d0273387685d2c861f');
-INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"9b0b5d09dc7aaffaf5a3603fa2b914c54b04755a5ddbf83476320149f802292a","messages_hash":"8d85103885918d2f0cb3653b55615111561cef1defb3f57a52aa7efc3f2343d3","transaction_count":0,"txlist_hash":"ef4759403c17482a8f8042fb93a5cae1b741085cdbf73e839638fee316044571"}',0,'BLOCK_PARSED',NULL,'deac3267ba7a061a7445f1075d07783b3fd1c3a3a453b5801587d75859576f22');
-INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'351b082a761078f88be220db3c0a5bb826de9be76338b0d4eafa23712e283288');
-INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"2e40d398c2eb131e195a667f1b2b5e8de29e80423a2d0dd3935fad6dd7cc919c","messages_hash":"0e52d3a43ac7fe4e49c1ac354ad2cf71668253207b461713d045dcc82e247575","transaction_count":0,"txlist_hash":"18e3230ce4fdaca025887c118a2f2fa6bcbe81fba5c968301a90b43e27f2c7aa"}',0,'BLOCK_PARSED',NULL,'0a48f0ea6618e3d231a69c1ef3d2ed80ceec27415f91add5876203338240af45');
-INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8071132fd2b874113b2edf795ac2dc6aa969d0bcd26c9220aa2bf2c3ff62cc5');
-INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"763d3d949dc16a797f5b8a2f5a27fd34b4636fa3dbf33eabed5db048e1a848b4","messages_hash":"44bf78b7251f514af029c657853ea438db6a6f19e126dfe21efc7987e3415673","transaction_count":0,"txlist_hash":"7b10cd9561d4a33c7771570925e5a9a879a501ac503004eccc5e60074d2dedab"}',0,'BLOCK_PARSED',NULL,'30457b64ad1bc5813639ec57d5b6a6f22a1f374df2f8e37d3dcc37ff37f9aa85');
-INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c7141699f29d1f62e1ff632d6706b7cf210be5ac4bdd612e144cc34b24d5690');
-INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"d9b9d6a52f757604a5652aac64c343a47a928160790963521ce33d125486cb0b","messages_hash":"6af984b5ea8eef37a8be2d9aa7ce6a686827604fb285e0632a61ed653f753ceb","transaction_count":0,"txlist_hash":"deda10c92f292c186698b9b4d371727688a9c0ea194963464fd1c5b429fbbff1"}',0,'BLOCK_PARSED',NULL,'2d5d5cfae841b3373f43622261a50f4d9d6cd68f2a92ff079428d3ca936ba801');
-INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'76c47517a83994c07bd6f3fff7eb280f7f1a5ad06f641c7bb45d631b5d7a1e4c');
-INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"9c1a650b6029cc982e9e617b619da6d88878453ccea68ff82047581d5cc74e9c","messages_hash":"af4dd5f282ecaa21596b2eb8b5aa0cfff6e0400cc3641fdd58964dc8045bf214","transaction_count":0,"txlist_hash":"26e4cfa82a9ed189ffafa596c7022cab40002c8099b48814f3e7fbc48b01b0fa"}',0,'BLOCK_PARSED',NULL,'7e33ca833dbe52189701bc3b3e628f0f1e49c5f96c5cd57f63fe7edf09a6b8f1');
-INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a81ef1023647c07718a05ac2d4f8d97415c20c52f497f2769ef1d86b156e2f47');
-INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"32d648a0d0b99f6826376e8badb278c06f95a0ab781cd873e2f7f55219953b01","messages_hash":"5e1a75ec243b0a826cb040effbca894d0efbcf88dcdee8133e97cb700f5f9cbc","transaction_count":0,"txlist_hash":"f10d714905f2e84a57e0c792ebf0dd67158f19f352176a571278dce49aaf778b"}',0,'BLOCK_PARSED',NULL,'e8aa92f5b55e32de07bbfa29f78a0ef3a4aa96bb092e00a4f1bdfe539840415f');
-INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c6c514d7d5446bd8b7ea4048809fb43b3a6baee56f2c9b6777b6944bff385b2');
-INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"67cd615e67e397cae8195fc8753403563e9100ecd623b2796a46b137ca553be2","messages_hash":"22127fbab598f700c53a834ddafb92a9325055467b24256455dd998de58d9fd0","transaction_count":0,"txlist_hash":"d0c0ffcafa826685b59ef036c4315e79cc688ac1ee43097143debf445f6e638b"}',0,'BLOCK_PARSED',NULL,'74abfc6d3ee49752831a80d81c1283cc4813e0ec8b8f2db2df7a50d0a8992b80');
-INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1812f4f8096bdf5e36a4f0755a65744d4d484dd548d186addd19625c2effec1');
-INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"d636f3831cd35437271557e6299024d70c4be6b9a685a4fed61e7d67e61540dd","messages_hash":"16ff09b6f1392469f352a23d614830752e85e9ed7c39dca2dcac1cfe75249db8","transaction_count":0,"txlist_hash":"fb11ef8957cdc599585372679a59440580acb37458ed3da092b22974a4857bb6"}',0,'BLOCK_PARSED',NULL,'4cbd6457a7d031196daa971988f82bdc19c2a79858e7898dd139026b28a7c522');
-INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49a72ee059b6fd900be200b6dbc82ac5d874b718f68be53c0bd16f5706a7cb56');
-INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"abf96247f6b99a24e518d89162c23cffc821d5cae5703f5b7c7c4587e34cdf98","messages_hash":"823ac2dd7bd746deeab41d20c2f7a28ae22e1240582b31108d980814ee7e9a73","transaction_count":0,"txlist_hash":"67d8b52c93c5d07ce1a335ea3572f0015a971effdecf921193cca273553466c1"}',0,'BLOCK_PARSED',NULL,'75d86b8618cda62ca9a30dbda4fc55ac45379fee14ad360b84c2c9c06709ef7b');
-INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c594c81bf5fecbd4cd4c2c57c13add530869ea00d8eb2aa8328930a434e26e1f');
-INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"06aeace2e79321c6776dd1098982e71bfc0baadc55470721022db67a03bd4478","messages_hash":"0235009ba1b7b4829cb22ad87c8295f613951a2e5d99fb9b732e734115f72a0a","transaction_count":0,"txlist_hash":"2e148e6946d39fee7c6d1b320122beb1689903e929397821a63e612d5216326d"}',0,'BLOCK_PARSED',NULL,'fd52471b0f6662fd0774f0801d53272644573dede07a9612e25a61d84c3bc3cc');
-INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed0029a058007ac869206e3a9f7fd343d23bc2ae19cf5f786f7f43dddc5d16c2');
-INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ba2c7078ee940b14e584459985a5a4785156762135541d40a138c31ff9bfe4fb","messages_hash":"fb33e505d3b178a8d5abae4c7cb9c40e6810b6633d5ad576ec373529a8a4e6a7","transaction_count":0,"txlist_hash":"63832ac6186f8a8e8091579221ada474b43c36f465ae25ddae4ead963207150c"}',0,'BLOCK_PARSED',NULL,'6f1c3d7bc7ab8f9f75ede33e122d246b3fe647b95f8c37de1e9d464b74866faa');
-INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aeefdaa7243e2f1da4982b2c054172b0fda7fc4fd68e2cd4cf26a28f090bd67');
-INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"af327b161ed9fa8022f3efd81b695d25ad9ae8f250a6d08739a40b0883262045","messages_hash":"bd5b04fd2a333d10ee6dbed807e153fa483cbc0e272dfb146a9c8144420d2e45","transaction_count":0,"txlist_hash":"47bdbc4933d69cd703c277d9a5e156951ef57791f87f92d16b85c15ab3194061"}',0,'BLOCK_PARSED',NULL,'527d9cbe354a9a1967cfedc6d2ff7cc16b0149c2e704b1813096bbc00cef5416');
-INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b745db5303d2acaafc3066a9117ab00cf6cbbea7ddc8a6554bf7455cfba21e28');
-INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"2c4d6568a9c77737c5942fab33613a1ef055ce21b9f0a9b4a42fcdf6e9536a59","messages_hash":"22d1d0053667443aae83fa579cc48b0814338c7b4ec567f88955d9ff37cca0c7","transaction_count":0,"txlist_hash":"7d57db6fdebb83dc0fbd1746eb328a94403f4a66e7e003593fe90c95fdef3e5c"}',0,'BLOCK_PARSED',NULL,'6f2912f86144468b519a2cbccf9165541c65339ee4638103b817fe0dbbe5ab94');
-INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec03c737b2d48c8fbbe6c619aa2afa1f47d2fa2196cf4305bf3135e335b8a4cd');
-INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"0b8dcdff637e5e60ae045d4c7646bd47e6047fc992860c99dd422477b9a90d74","messages_hash":"e236d1ad78134a4a1f0eafeb382709f1f9db74313f22bc17d44df9053826be59","transaction_count":0,"txlist_hash":"61316fca3bd986c2398fa5dd92a8b874f4a64095691626d695e82e3c30849e27"}',0,'BLOCK_PARSED',NULL,'c9119c9702d798914dbd59a4f05a3fb0f2e89c8fc4f26deaf5ba4b8969323c88');
-INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56fef3e912a0594426494c5d17f9107b8e2b45c3fe6766e09f2ce4b66a9f444d');
-INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"eec6578a8bc1f5766427f4753ded18cb97c53e710f5fff8918bbdadb59678f64","messages_hash":"3dce816512e26be7ae36f3f8f32dc9ad25504c8b08c59c5a3f4d0206096d0e25","transaction_count":0,"txlist_hash":"bc5cabb9579b79f03b329c0e5e3c8652d8b0eccde9563d838890218bcc8bd932"}',0,'BLOCK_PARSED',NULL,'730ff9e7944c81e103a47773b4818a5784bc31c632815bee46c9ee308b0df1ed');
-INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4148f9cc2271a026ec6c133cd9dcade762f1f4563de54284d18c63c62989b99a');
-INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"a2b2ed6a61f1c9a3d322a050178c6be119b89d1a0795fa9c9d7484ad8edfcecd","messages_hash":"80bcccb657ee818f010373641e90d6a1353a15d95a576ea5c83eb41d96832b33","transaction_count":0,"txlist_hash":"86e50073092182d9a5b37cd2453dd5a7a1af175ad0a1150492d5001510b05e6e"}',0,'BLOCK_PARSED',NULL,'4d01209f2af9b9941e4352eeaa9729c41a8f0368caf4bf58d3c7abbfaab94cb0');
-INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c8aea785af4a46ba31954c4625f2df24d19b2d3aa6ab1c2f5c09182b75bd6f3f');
-INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"02828eaf91883ad16beb5563f9c84cb226269c655a886857b31e5e150a1053ec","messages_hash":"5f930a16ea9b174ea0a1a549f9d094dba36a469572e4094855e3b9e935e94bd8","transaction_count":0,"txlist_hash":"bf59d4fe42c11ab04792ba5c95cfd811a6ddf18e125daebb93695bdd829736c3"}',0,'BLOCK_PARSED',NULL,'32527deac983cc184c1bf31266a55dcb48c8200ebb2d28c6c2cb2a73c98845ce');
-INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bda07f809508f17d2fc0da17c041e257fb24c69a3a7870899828506a40320ec');
-INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"5427b45ed778796c26d0d2ddf73e975856cc9ae081c36762e78d046f6cfc376c","messages_hash":"36eb11de51610eff7bd985bd603d208ea6308f292233c12aa8ce4c71f4a8f6ca","transaction_count":0,"txlist_hash":"ca0801d366e8dc44c01db11f67594bcb3ea3e81a3031cee93d24683b82185461"}',0,'BLOCK_PARSED',NULL,'37324955ae1316dc785eab75d9be77adba31efc8dd96db595ad589e082d783d7');
-INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23f625d8167736a6996de448ea8081cc6425c2204a1f5f7682a27a36a167f015');
-INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"34c2664f81b1bbb53c728636097bc4b7cede67bb318ddcc5e5e6b5735bcc55a7","messages_hash":"8f1616a4b99b0017b45f187fe0153199d4afdcc18180b89d915c9a658d22a9ea","transaction_count":0,"txlist_hash":"321bd59dc3c2996a1a2a6f74905f89a8db172b3b2b35a2d1cbfc6d06f49d09c9"}',0,'BLOCK_PARSED',NULL,'e19bcf96805ef229435bd67e4df99fc4780eca48194f1d49ad7a328f0030f8f1');
-INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66811740d41ba9bfee752d2fe269ebd0d5dbbe5faceca79318e53c7adcc0765d');
-INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"14615dfa6194665d43cf2f495b8f65fb9efa04c2e90885172d229ad4a9dd2358","messages_hash":"ab83027e5a67ed9d64eed651a88ee64bf025e741c22fb00088a06b3a73d971f3","transaction_count":0,"txlist_hash":"3ef6f8bdf30073f297852db2b7036374e3d2c1e91b0d087cb2c6c88e400de110"}',0,'BLOCK_PARSED',NULL,'e233cc39ef491b1b5e2ae89ad04dfe312d3712673c6b5a43172476a2b6aa6fb3');
-INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f0414157ab9648a469308060e056992977de80bf120de6c438ab25a098c6b80');
-INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"fc0f077548225d481384a1aba2d91ed4ec8b2df0f0a57ab603305c615672b25f","messages_hash":"28e50e9e6a0cc748d1752c2ee636936f7f0cacc0154cc3f4e2341f99b99da524","transaction_count":0,"txlist_hash":"0788356af4b45cc44c143c457d069e64d54aa12703f8c376cf3b98827052c173"}',0,'BLOCK_PARSED',NULL,'0e620bb145c1f101c2b7f1e5b43c43fd0d57c20920482c9fc944ed5cfd28d37b');
-INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d378aa87bd20dd4d0e492d4b89ef9ffd793c362d902e05fe997ee9d1056c287');
-INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"5749263295014a597071acf2293fcd185d02a6a7b3a96df859aae3bf146b276e","messages_hash":"24e5630de6254178200271f1a404a76830763d87367530c928ca78fa481ad450","transaction_count":0,"txlist_hash":"02938682157ea8b10c49e9d87ed444c1303a952a00f6acfe33a1661e84868cc8"}',0,'BLOCK_PARSED',NULL,'47733063155dada05becbfe129cf9eb08fa4d11f2ba2a77fef031dfed2df700e');
-INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f5415189e02a9d02b8b54514c98ff1aa4d2b25f703a9bfa7a7c20d41db67fef');
-INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"ae369a1ec3e4f2aea602eab8c7ab1181cacd6b8d01582c96c4771fdd7b3de771","messages_hash":"021342bdaccc173aefff413c3400cb85b7eaa5e9aa5fe5b7fc0e5177f5d8b928","transaction_count":0,"txlist_hash":"04aaa17c2a3dacf6c38b16ed63d70aea7b9546dc7e733dd51a3c08248ca13eb1"}',0,'BLOCK_PARSED',NULL,'d9363821db8f95615527200fe4bfcba25b539185cd51d6f1bfd6359924d09237');
-INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afd648464cfd98206573f04d49160423637de6add2680a5902f25be3794eaf7d');
-INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"06a2ac591c418d2b01c74edf2524100afd1140c3933f32120c4cc3180c1de3f0","messages_hash":"75fad188405897ce4a94e9a47109b57f4425efa2ce794da636a5ef6bc1282167","transaction_count":0,"txlist_hash":"421eb90f1258261c97512745b3543fee15ae8d17769d523646033851abde9c75"}',0,'BLOCK_PARSED',NULL,'c6d3801c39fb42b69fdf20edd47a75e9329767fddb825d12a5b5a6c4200b2fc9');
-INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b2ff1f89e6d6dfb02579f460a1da56860dd3ed499417c1c060937bb266ba2e7');
-INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdf0ae4d5d06b8735e3e62f5a76a902fee40742fc760578dae98b43635f2e57a","messages_hash":"a412013457b63881cbe03936adcc9a6d413ed3f85e8c9f15bcd91238f126d3e4","transaction_count":0,"txlist_hash":"cbe924452487ba251291d1bf1ec518a7233eda0aa956d002bc2e0933d0057c53"}',0,'BLOCK_PARSED',NULL,'c0f83335b1e6226d48be50c87c12b00d7d42ee56709c6d88f0321fd67fe1db1d');
-INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f7aa4237ad774f9cc93303819cc4f0776add89f57fb7666b2229ccee3ec002e');
-INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"77d836433add0cf3f7691884ec1607dde9a3996df00128703644527fb096bab5","messages_hash":"3f9caa3a0efeadd13a5442e94e78c8202aa5d9a036c1e0d780bbb4708709ec90","transaction_count":0,"txlist_hash":"2dad9d43a8612157867a046cc0dbc8939f30c41cc8f527a1e184c93004cca63e"}',0,'BLOCK_PARSED',NULL,'665aff10395839165e55d46577908598f6b1103d7d0aa01258a6c71a30003e92');
-INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b10ff107fad5c5f786d6d740d5f7128f8e4a95bd0871a6cd1fb4d2b91490023a');
-INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"770a0187b5c98725dc32e15a414b9323030f407749fcb0652b1e1f2e4e762e7e","messages_hash":"39c7215611beaf69e4ff95e35d7b363ba065b5c67c8d46cfd6e5aa36ee831d51","transaction_count":0,"txlist_hash":"251e12514d80ad256c13398d257708ad2dfb3b70db674695a8d72d977337ac90"}',0,'BLOCK_PARSED',NULL,'acd72a4bb236e80e4c4ced1c5649af301f314acb9540e585808027fd503b821b');
-INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27289b90a5c0c512b06dea1f032826ac2677bdcfa53fb7093089ebf0c539831b');
-INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"567e91f9456ecd020fbd2fe940d796ac976981485f870db8cb0bc41d77a0fd0f","messages_hash":"bd51e820948048543ee33b42759c0936b74471c6ca9f9271395261e6ed825f48","transaction_count":0,"txlist_hash":"48924c125c80fbe8887ff318ebbab0edf8629e604eed0561dd48444bc4acdab3"}',0,'BLOCK_PARSED',NULL,'6a967fa0d71700f00769291e21ef0b7943373df9d701a847ed84d04d06156202');
-INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a276e149383804bc38840b69d8181afcc49e7b181be983ef59d2dce6081c935');
-INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"447ceafb93aeb346eb98d87db46f07f4d1f51ffde3d44adc6056a624bea3b0c3","messages_hash":"67f40bcce0e0c78c223929650f7ce85a0410790fbf93f5d0e269fd29161b4b65","transaction_count":0,"txlist_hash":"213f5672119909ebcda9f987e3bf69dd0404134584b36c56acdd3596a1ea6881"}',0,'BLOCK_PARSED',NULL,'8349cfb896ae9fa01a8eff56b7fa4edbae1ebf11e3d794d436da91e44085ac2e');
-INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fde292d25b8d9e212b7b4cd4f6d2a0dd425df57b41c3c7959f48f7c1369fb38');
-INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f510ec6201f4eb850d4f62b399d0d360d0d8cca7e3d955f849ad59a22fba1677","messages_hash":"eb8d0c00e10de227ba487e5a1a42828227b0764caee0d5c827833c5de1f108a3","transaction_count":0,"txlist_hash":"e504e97b361e32b0256aeb1640291eeda547dc564043835013086c87f5e637c2"}',0,'BLOCK_PARSED',NULL,'0a11849dfedecd6363cb9bc020803e872f8a80e0b3e3efa9b11b2a72e16236dd');
-INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b09d99d7be0060fc047b475cca35c4f937b77f9e73fee4b235e06885b5070375');
-INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"1f956e2c07defac832b7c90982c1e7a1192988c4d1e622b54b40b78065deafef","messages_hash":"bc047032c040c11436d7a1c9e7e33d12be7013f1a3df3d2c87a766fda09b0d28","transaction_count":0,"txlist_hash":"891969418c97f41be742eeb562f39cfe92543c159095f58c5f58c8c2b0274423"}',0,'BLOCK_PARSED',NULL,'d3e7fdf41f5dfbac3ed4f21202c9fdfc79c82fc4aad5af56b484e3f0361c0f39');
-INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c309ae856373f947d9598b9262b4a6438d6cf9d614d0f6468f2ec8d8f5e13078');
-INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ac4cc3e01feb10ba2211afdff4ec43a4ce13a12e1a90dc6f675c390e6395b1e3","messages_hash":"6886fd77ef7eb785c257933ea5b6f1008311559a1d350b5ca1a7e2c1cb18cb50","transaction_count":0,"txlist_hash":"71e61b2d7aca45ccd7cfb6bda957b18fa076cc16bcbbfb63668e4c4f2749b7f3"}',0,'BLOCK_PARSED',NULL,'1b052f3ba556d918bbca8d75efe4b6329cb164427f0a4106719a03a4d023dd76');
-INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4512d6947c0b68489bc10d58a910e3ceb2dc7b1c9f9669bbe80b0641f6b1708d');
-INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0a4bb35bf922a8175ef5559e74084d32caa16f599df84adb5e255de26b92c1c4","messages_hash":"283b91394c3e8249e7023df44632f72659fa20b0a8f030c82287f59c3579e514","transaction_count":0,"txlist_hash":"e716e04989e254c2ed5b1c4b81026153d5799edb5a676adea5b7efb930940b30"}',0,'BLOCK_PARSED',NULL,'84dd3b1fd6dfe146c5a730085eb7cd997c29d9499e794262e76e66474887ce8c');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1,"utxos_info":"2d81a3468670b6532dcbc5d7e41697ff15aca083d5e3780778e2f6cba4d7c856:0"}',0,'NEW_TRANSACTION',NULL,'53b2e2aa5655399876c377f2060a4c69406301f3fded7ad8fdf825b810397972');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310000,"calling_function":"burn","event":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','051749f3414b69ec8e38fadebac893305e1bda1305587f1522eef274c4f44da0');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5","tx_index":1}',0,'BURN','c9ff1be2579378fad6d83ca87e6c91428b1eb8cfd1b0f341b3c7e452764404f5','d64a56415794c9a6f6901db7ed7c3d9d1d54f03ecc56e016662d7c20c6b9620f');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"09fa44ed277cd9e448baf3d4a2accc520d57c77fed0d97379ba9bb804e3dda71","messages_hash":"cdd7cfb36849df06cdb98cf660d9e802a268d8bd4cf3604cb545bdb3545114b4","transaction_count":1,"txlist_hash":"7d9cd23062d78e9eb1a892f69b154410935e9675ede8e05fe9c1269cd3c54b12"}',0,'BLOCK_PARSED',NULL,'2c70946bd0beef4ab97dd447e0e44c2f1c85f65c2353c2abb4e401c6ad21c557');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb475aa4506805e7d505353962d5b126243a691365b7f0845c038f73c3ae082e');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":1000,"data":"0000000000000000000000010000000002faf080","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2,"utxos_info":"6ec80f30ffb172559eb7d1af7ed17f317a4128ca3525dbdb86d1bfacc818a5e1:0"}',0,'NEW_TRANSACTION',NULL,'196e49f9dae44d77ebe539cfecb2373c592956804165d24a820ea5b674caa224');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310001,"event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','ab6c754cebd7f64bea714240de60397f34b74c5f95170641313bfd21ec42f302');
+INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310001,"calling_function":"send","event":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','29e213e52072e3cc2532bc0849b0cbb8afa260ed85ef4412a976856d1812f7e1');
+INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'SEND','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','bf778822c4357bd2e35930265b0a1fecc7288637897618dd75ec5aa83499bd62');
+INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32","tx_index":2}',0,'TRANSACTION_PARSED','8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32','560772e66f5c170ce3a31934b8c024fbb0083a0f91d121491f8a88489c34557b');
+INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"b2237a0b0b29b2198355f47d38cb995e013c0e074c29dcbf1b99ed4c0f459c8d","messages_hash":"46cf1a2ec6b4f9f129397cd5b4bae808c2afb11ab272b11c3c82a190f6e379dc","transaction_count":1,"txlist_hash":"adddb3e1b9020e7ef190f661823c79abbc5951801b15469ad9f483c512af002a"}',0,'BLOCK_PARSED',NULL,'887a6248e9a92697e85777f306fd0fa6ac30551688b91dabf7c5c3a08f22103f');
+INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'388f5ef8d9547bf38e7a336dc8d3f0d1a0e4bdd55b4cd33283e133ea3cd6ad5a');
+INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3,"utxos_info":"70047c0e0eabacdc2f575666720317b02d31d0fb0c0dd12ff8399c9997b80671:0"}',0,'NEW_TRANSACTION',NULL,'957d2bf8f29eba4cbd231c82c3071e37107b02e3aa5f73be827b70073d41d870');
+INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'OPEN_ORDER','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','38770d629637aa0d301ff893b6f3863c2b86a773bf8fa3d23492b91497f56eaf');
+INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx_index":3}',0,'TRANSACTION_PARSED','1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093','9d658cdf78be61a8f03bb7d0701dfbdb87f747a5ef21dab0ba8851bc2e4fb855');
+INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"a3c393a285361d2981551f0a903d45847e7a0142779692d384bc77bac420db18","messages_hash":"a60dc5b15a8402865bc6620eb24f3d1d0db59aff0c18fe1fe324ba57589ea442","transaction_count":1,"txlist_hash":"6fddb621bb8a1e2d10cf0ec8f507ada12be28578223ee53997aad614097bb35e"}',0,'BLOCK_PARSED',NULL,'729a2ca17a80478bcc0496d54b99d515746332a963c69793be7e1a78877a9ee0');
+INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87fdb9df89a97465be3836f0200bc4f8c28bc7b1d0be02c5ce5807544c9f121c');
+INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4,"utxos_info":"cb9968e5706e6aa44a68604e6aed6701eeb63316ab175efc0fa5fa8a080561a4:0"}',0,'NEW_TRANSACTION',NULL,'216c9de6bbb0c260016b90f7d3dc61b46431aaf68c6ce278a6348a15413ca326');
+INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310003,"event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','30c942a76de815c2d409c07db4c54b4285e76c9f62dbc2ac1524b64ee91a5108');
+INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'OPEN_ORDER','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','38423aa5bc76d578c819f2916021fdad019f971249b182e1633f626f4c57b33e');
+INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','fd9032578d77e93467079f5cfaae652f7b984f0fca5418bdd6ba5ef0c7d8b6ec');
+INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','b958618b3f5be2060cd1bbed032242d5ecfd68d8dd746335264febb1b640527a');
+INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","match_expire_index":310023,"status":"pending","tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","tx0_index":3,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx1_index":4}',0,'ORDER_MATCH','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','8ecd823158b56823b8960a3d2ddc46dcc05c7a47a4036921c1715874f0509919');
+INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","tx_index":4}',0,'TRANSACTION_PARSED','a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e','1336dd0cb2323e76a184b31166fc5af62042f86d85f0cd943ab09f377ef41d77');
+INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"f96ba90a471ab5524a574cc4ff72a228a8dc7019824482a664569dcb41c126c7","messages_hash":"025dc5067a0a78c67086cf23c504d129cd15ffd77cbc5f49a30b76f263961e04","transaction_count":1,"txlist_hash":"d6756ca2a0f2a403b0a1714964ddb71bc773e0a18c049008f78670efb7137e18"}',0,'BLOCK_PARSED',NULL,'db88338c959fbde3247f649d535131f2ffe0f46af29e805e481b9e11307bb42e');
+INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78e4425c29f89fa5068c414258f3c8749f000f4a59f2fa61ed12fc1b00bde4fb');
+INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":9675,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5,"utxos_info":"836b1d6d96f5b1d0c93cca1e36df45a881c8e240bd43d3d690056eb2480a6f56:0"}',0,'NEW_TRANSACTION',NULL,'b7e839f69850c2f8eeedb0a57f3e1388da553e5b79da23741d95a28ce755380b');
+INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','2e4be0b52a42c32ff7e65b21b296da94ae64f6f3c83315d6bfb9a4bfd61584e7');
+INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","status":"completed"}',0,'ORDER_MATCH_UPDATE','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','30c416c0f2f0232483772ceadaf91a54e8a6d108220a24082aaa59cc26dbec53');
+INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","order_match_id":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093_a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'BTC_PAY','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','db0bd7d117a994f41fad29d66a30b55b6775c50d7277b3487b2476b2e7ba8f47');
+INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac","tx_index":5}',0,'TRANSACTION_PARSED','06448effa4c26f1101b315b2dbe3d2b7b888ca18f5755f4365c97215a6c760ac','70946fefefc662ba45133b7ce74ee57c84dc88b55087e307c07ba9b5ff38aa4c');
+INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"943a23e317f71981b24d636cae98f495b2bb00c949b1603a778eb7500894c844","messages_hash":"9ef44afa61d3b04ba3ce97bed19bd1e81c821d8f105694004169abe0f281f6fd","transaction_count":1,"txlist_hash":"be04682401f137d4d02c7539d1c776bbc76263dea1bb88fc95197128ec1a700f"}',0,'BLOCK_PARSED',NULL,'050c5081a06913dc543b58bf76c513b7b11181684596b8858149571ad7084d45');
+INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80e223db9841dbb973d191d5bfb03b0d606094626cadd890ea56121bce6c775e');
+INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6,"utxos_info":"b5a95d7d655cb40e81800c2006891e40b1e0db52eb074d8bc6bc6eadee0cc255:0"}',0,'NEW_TRANSACTION',NULL,'4ae324d57081868e40b122b2339db1963d2a3cb6acbbb7792f0f2c0570b14cad');
+INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310005,"event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','ea82ba9afa871c4ec3ace91996a4541f1e77a0b3473c40e228d3d14d0448a305');
+INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','9a0a319417797b7f2cf104b576da7c891ad874afa7ecbbacf63d220e7275b01d');
+INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":1000000000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'ASSET_ISSUANCE','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','57a2e210bc10438b3d6f585aa434dbb1e160b95a2a2973d89502a30e2ef83f46');
+INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','11c30e1b01a47523e6e0289411da48be9c79b2f05e58fbb09db7534c51bbcb62');
+INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406","tx_index":6}',0,'TRANSACTION_PARSED','57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406','78b198828483d050e3c67ded60624450780a6e4c1c87a3420b1dabf8f86c92ec');
+INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c5f3dd2d439a571eec03583442fb051bedf5bc0b0ede92012922b27847af2a1","messages_hash":"5302cc3a2aad2a99620fe17d4f7db57bd319bbca22220d41c4bc88abc87220dc","transaction_count":1,"txlist_hash":"03c8d26098b8e49a297c104f22af44a622378afa711195bd8b91d46f01d68d65"}',0,'BLOCK_PARSED',NULL,'9a95eefc6abf5e44abb963352d606823fd4e03970508be90908a84ebdfd8f04f');
+INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb58d41f9b6b4f0ff905e034317b3d0cf32fb1d801489a410412f9537381505f');
+INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7,"utxos_info":"d5e0055606dccdcfbb5a605326bf35341ff6fe56c7fedb31fb17fe0cdc39d905:0"}',0,'NEW_TRANSACTION',NULL,'fce02e9c512d6688411dbddbfb0d7499353a2069e9d71d0882e035039c7c54f0');
+INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310006,"event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','d43d2d8456fe277d10fa25d94d6068748ed75d4ad4ccc136c4d1b0da027e5738');
+INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','b670549cc31aa7961ee53595d6ad7352a2ed873ce4007300496bbb7107880048');
+INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","locked":false,"quantity":100000,"reset":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","transfer":false,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'ASSET_ISSUANCE','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','981db055a8888143fc1709bbcb4f513dd4ff900faefc9652fe53747ebdbb101d');
+INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','5da134db594b59e36d7ff24976d612f06d8ef2206ef94d9173d19ffc21ab6913');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975","tx_index":7}',0,'TRANSACTION_PARSED','6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975','6a665a4dde0b926e99a22042ab346a30e79c2380a43258cb87fb9a48a8a2a077');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"377fe894d79d60b011958ed747908b6009c5e0261fa177caefc664cb8db4c74b","messages_hash":"cf3561843277a8d426214eece828a4da68a2c3faf71210a295a19a17bf396729","transaction_count":1,"txlist_hash":"079ec7423e2fe87820626aee8980e236a78e7d51b453a739fb5768d9d520bef6"}',0,'BLOCK_PARSED',NULL,'a6b49a98347ec165294fab92b1de8ed86a2ca01d71632586535115639217e605');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b49abb9a9265cd6993f2a0b83c592d40854760515485efe6df829be4e30ba18b');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":1000,"data":"00000000000000000000476700000000003d0900","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8,"utxos_info":"00d442dc4662614c34b1627d2d88b504afe410cedf903547fa0776f7645afa90:0"}',0,'NEW_TRANSACTION',NULL,'45345b51d72fac712af3698dc4058581ae7bb17f18396eb41e1c701bb136782c');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310007,"event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','80623ef5d863c0bdaf1233d1acf570bd6b7d46493f9490b25ba710cbb5441cc5');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBB","block_index":310007,"calling_function":"send","event":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','e4d4c3606e4b5fe36a7865edb25c4fe4e40da76e71f41a714131d419812d3eea');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":4000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'SEND','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','dd69e2cb02af4b88bbe85ec4a39cf154cb85daa386ec4d47b5fe2147330589c2');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b","tx_index":8}',0,'TRANSACTION_PARSED','8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b','f1d57ec9412bbb85b09bf1e39169043eb5293bf6dbb758eb4f19bafa649793ca');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"4be55eb54e78e829306dfa31248b3073d311f49da420d9844f9aedabfbd296e3","messages_hash":"df1a18d5f84035f4c65a30c493efda958e28f39ebbeebab8277ca1584e97aa4b","transaction_count":1,"txlist_hash":"d57db7ce89eeea61f270e7c676b38d3574c52166322cb0e287f1857a7d085e5a"}',0,'BLOCK_PARSED',NULL,'2ae275f3c056890f153b12ad9bb7c497f0c6ba13cebb4986ab1688f4d3519725');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3579aad985a4f8490df24823647cf57a1d665cec8c7bec9c503b2433ce610ba3');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":1000,"data":"000000000000000000004768000000000000020e","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9,"utxos_info":"e1fc13f6ea93f3984c4ad70bfe66968407b6e926ca8433d153e3347c505d3cd6:0"}',0,'NEW_TRANSACTION',NULL,'8438d0b457b8958bb27d4b006b633ef15817d069bb10ba653ddde932da9758f9');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310008,"event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','1500fadedc6d6932e795e0ef068f932eff06ae33ec1c7e7c01ec7df57388d90d');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310008,"calling_function":"send","event":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','b3c94eb02409730240e73ad632df1874ec0c1855a21ca9729d1aa16fd8f04845');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":526,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'SEND','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','4c92034f7d5f0e3896b5dce683533a7e3ce93239e81e484380adfa1b2c2efe2b');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391","tx_index":9}',0,'TRANSACTION_PARSED','3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391','745307eeeda8ce7ce2e822bd2b655df20da271c555b781bdab84fe41c85fdf4c');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"1248da848479b90f9dada38eaa02b9fe1226859e6ed1e3c4a121172786178dea","messages_hash":"70aa51fd28706c9e79bbf9c6102d1122f3a01fed4b84c8a98364cdebc7467748","transaction_count":1,"txlist_hash":"8727f3f9af7958daaecda9f2cef1bad0303d631cf9f8418636cf130581e4bb79"}',0,'BLOCK_PARSED',NULL,'5d95091459ec2b840af9e63789b3e3f123432d745539f6b50e0d60868d92defc');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e2a626e26bb813bef7fc8b66f2e3f2a86891f3301dbdcd02c658bbee5b4f560');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10,"utxos_info":"72576f13d48e27ecee32624b00990b0f161c782a80abb4f57b4da1f5a517c2f2:0"}',0,'NEW_TRANSACTION',NULL,'2aa059b6eeda1c2ffc78cd84dbfb79788739ea1ca74aad7ad844f861b35e6150');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','d1a04a38a885db739429ed0332f1f57e34fec9446744f6b23687aaa36afb7005');
+INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310009,"event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','b1f3858f55f910752c20a96272d2b39a05297d66c8657df61b69a46e38a2b048');
+INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','3f45aeb6a4119edcfd4d6819b36b977957fb7f23877ad62b60d7a52978d8de58');
+INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'ASSET_DIVIDEND','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','47ea520d928871354b476df8a909c0dc446dfe7f3d59a5724103d60c928be478');
+INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29","tx_index":10}',0,'TRANSACTION_PARSED','6aa6c552e5a302b056768aed88aa8da6e9f78def669d5203904719e15ff1ac29','29a3b5763e9a87629f5aea4abf5964243207382081d45b253aa92a3192132d49');
+INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"1e1b07f218127eccdfab98a4bc127ce185cda15314e72328dfe10eb8f2f18726","messages_hash":"acdaa5ea197e782c372f9a8b8e6c0ac96011cf331ebbbe7d53001f78de9e43ea","transaction_count":1,"txlist_hash":"baa3b08e70e0db5ecf913bb99da662ec3dc04a5650f99d2d36408eb8ed6cc4ea"}',0,'BLOCK_PARSED',NULL,'4090902d6f59126ea6df472b85b70644a0436301eace65803ba450d9b148d047');
+INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bdd10458be55c46a4cb03f728e28f427d6e38ffe1fe225cbf659752a850df11b');
+INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11,"utxos_info":"549177a785a6c389185b1b6cf035323f787879bdb7baa3159ca5f92a00c6e6e1:0"}',0,'NEW_TRANSACTION',NULL,'2628b3177a6d95fd362e52b76e172439524dc9d3df22b23c67469c4a0654e7cb');
+INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','7dcc5191828b6efddc88e0698b1fb5ec7419dd2a43c88bcf893ff94a96b5f244');
+INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310010,"event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','3376cf7d630275b1d66609b0b3700ad51781ce41a983ed1163fee167e49b264b');
+INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','0deddea6b769d0bf8dff33bf9958268af05ea2a87850fee7f7a9b6c06deb9b69');
+INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'ASSET_DIVIDEND','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','589c474bc8f345a45c496e1fe174b0c85bb7361383ebfefc288533dc49e5d001');
+INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e","tx_index":11}',0,'TRANSACTION_PARSED','8606cbcb3aaa438e207e9ef279191f6f100e34d479b1985268525e32a91c953e','2b574b48725c3b413a863f94ff8479389920b0e366d63988a3fe6f19b6225e6b');
+INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"03be7c3d8dc521277625164e3e828be106672cba205129c014ce7771a3b8730f","messages_hash":"8a5519cdfd678d31631807bbe5f96516c8896d8ed7022d917c7ae9bf80075fc4","transaction_count":1,"txlist_hash":"5def9d6ed9fcf82c7ec9dbc2247657f349ec4df0b75dac4444f7ff90e24f0955"}',0,'BLOCK_PARSED',NULL,'e95051168fe8283e56350fa8d327a09298233e183a35f670a5ca5e7d016a099b');
+INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22a23f60dd49ef5dd0985e35b194905d8411fa8394bb9df0e05e8b27e8eb7900');
+INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12,"utxos_info":"07532d3c2a9697cdcda1ff358b2f4381439deffe5be06598da2cac861a79fd8f:0"}',0,'NEW_TRANSACTION',NULL,'d177ea693b8a3df2982893895d193cf6d2ddf5501866044e79d59d0625db24d6');
+INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12,"value":100.0}',0,'BROADCAST','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','2219503270215a2cdb58f7f3028a46095e30242d882ca9c393165df77064e44d');
+INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060","tx_index":12}',0,'TRANSACTION_PARSED','47a25bd63a47c61ca2709279bb5c1dc8695f0e93926bf659038be64e6a1c4060','3c00d2153f1ab848c466abb859dffd722bafba067082e4718186f08e41de4d31');
+INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"db6d49ef7cfb461f9431b2e712f694f0747012ae28f3684e0d41476f77fab667","messages_hash":"3df854741f72fd68821490fd6d11941f9c5c70a3f2db77309a8e6dd23e93b029","transaction_count":1,"txlist_hash":"f6d1a346abbb2adae7dd7fe6ddd94061bcdae3ed30bd091958d445c8b5f57f4c"}',0,'BLOCK_PARSED',NULL,'a9650995d9f6b05950f19d7dbb26625237d5d1493f1cbece2c14a8ae62dff9e8');
+INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c64a1e9407f6e373ffa67c30816d5e20a47a345eba55746f8d74c8b61df8348d');
+INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13,"utxos_info":"3563ce8b45e350880d0a051b0b157f99ec551fc1ee230a1c8843d21f1682a5f6:0"}',0,'NEW_TRANSACTION',NULL,'5406b52a8ae111b6087fedcd96347f28c5dec030f91c57ed521e3ad36ffe8806');
+INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310012,"event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','3838b3ff8b0e56a0c470ecf038df264cfbcaa04d0175225eb8d1d7a3a61e8008');
+INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','1e0f1d332d374864294d1a4f0b92394c2c10caf3989db0a19fc233c86368420d');
+INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx_index":13}',0,'TRANSACTION_PARSED','5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16','7d836eacbbcc1321929ba538c3861ac1ef669a666d2cfee080209e2af169a49a');
+INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"ac399d193def488d3457876edef42dd651b30c976025c3d6f810e4d37c88c822","messages_hash":"ef104201a8351440eabcac45c06be81af901d6f0243cf3fd4777583ad87ef380","transaction_count":1,"txlist_hash":"273ce70d30b249ba5afb8382ddf7ded2d0849044d519fb48224a6ea69b7ba6dc"}',0,'BLOCK_PARSED',NULL,'491d2282c31751c3ab9b4b1105eccda27f25b644475010fbd1fd17a1ed11cd4f');
+INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'532ab13feb4bacb6034143805600cbf75dc073505a46755e4cceb4d869f3afa2');
+INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14,"utxos_info":"0e99c34d5f3649841d71c8c34ed4f5aa1c5ce38c45cda20bf500ad28a260df40:0"}',0,'NEW_TRANSACTION',NULL,'e06f9af643f6a4fe1f3f159d14a26c47c3d9984cd25c0389428e05494251f79c');
+INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093"}',0,'ORDER_UPDATE',NULL,'9a17fc1c9e08ae57f6299e9e0c03793eda43cb39189c1d989e270c9d4e164cb3');
+INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"1385519ca199f1b39bb89caac062fe3a342f18e393d301d7a56c150a8ab84093","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'91a35daea86de53a86c73d936a1a59b9704af7ffe582e59e86a7f2c927538595');
+INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','5bd09450df5b572647be353c93dce9cd81f6802ab174a44a424989ff3ba56127');
+INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":15120,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','d8fe2e91983a2d545c62dc4dbaeece7d00902a8601e1e8f79c4b5b1213d63fc6');
+INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","wager_remaining":8500000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','43dd9aa3f128460cc14079f6113f02300978d10e7228ee7c814d8f95c0d54cb8');
+INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310013,"calling_function":"filled","event":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','5699341ab47f1a3ba8bc0fdee11d4f5a52ed6b4d460ecc6ef1ae3c07156fb133');
+INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","wager_remaining":4250000}',0,'BET_UPDATE','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','2552809e5f259e825015367e0700b57038ea94c088f3c8c3f60c930d95290004');
+INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":41500000,"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","tx0_index":13,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx1_index":14}',0,'BET_MATCH','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','9b4a252754ef939263d19ae1a8e793897d15f7e39ca5c06cb0bfa693d9499eed');
+INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","tx_index":14}',0,'TRANSACTION_PARSED','813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3','e56e78335d2224719f9b21206c8f4103f7f814156c98ea8e0bb3683d7583eb7a');
+INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"f6fd6f6280b1c580abe8e31de28bfa0f269d453068946733cad69d29f6874936","messages_hash":"f5578fa7619c659bfec7ceb2ebb3a18461f889f8ef7e15bae9fc450ddb9ec828","transaction_count":1,"txlist_hash":"ce4d93afd619a9f22326d72b5ae6c10b24d3075399374184463f65d489a57c51"}',0,'BLOCK_PARSED',NULL,'c71ee10513de558776f60a5a603ce8e6dd71e673aaed8deb74418c69a47db028');
+INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'890fffc8ccd2a9951ced6a23663a22c7696d0679add2326630e3315cde1b21f5');
+INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":1000,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15,"utxos_info":"820d199eab44dc21110b89e5210bc07d83a257d5d0c7595d0410d5cc9dfc7bd3:0"}',0,'NEW_TRANSACTION',NULL,'52bb1a6cc7316270bae453cddc21e7850f8639d4e183bd5f56cfadd658105264');
+INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e"}',0,'ORDER_UPDATE',NULL,'49012e0015be3288b626003a0af65f54dd92c4837181e28440f4fa99609fe70e');
+INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'ce67c78a3df0bb3647552a50d2db47cf9a284be246a54f9e718ff8423060741e');
+INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"a2e93083b871e68cb89e216f9a99c4c6aea1eb92cbdbafc5b4b0e160c19c517e","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'e268de3d71cc1ef73841e3946b81f43023d94a1584ecc3454f8b882c8656fb71');
+INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310014,"event":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','4fe0f0202c578ac0c3a0bcbd2d33675a02005976883f855d116847e88997a7ec');
+INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','e9fb8eeb64bc069ac5dfdc177b723bad2c9f212fc1f0b69b5918c44760a22a67');
+INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx_index":15}',0,'TRANSACTION_PARSED','33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41','728f75ef694a2a67a966524f20496de8856358a7ed6629311db5ed56c24faf39');
+INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"0c52d56c6f7c25da7b757aba30e890e9eff402155b5497a5420e13e69b7cb54b","messages_hash":"63c5ff402dc15fc0fdf0849146c0a8fc18b4b7f7c7409dabaf3d3bb46a9f5dea","transaction_count":1,"txlist_hash":"7df6ac77f91e828339a1f92ce8197c74ff120f6c00d180bdb19a91f7da14a83a"}',0,'BLOCK_PARSED',NULL,'070c9bc7cd179a03ff3d3178c0c759e827f7cbffc8f795fb9506fe00e6a053e7');
+INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcc1a1558fae188de25e53d4e8f12784b019d30c2376da685ef515d641e62a1f');
+INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16,"utxos_info":"d72265fd12f4ecd9c417122e366bbe23bd1835d99d2554a20e9252d41291fa5a:0"}',0,'NEW_TRANSACTION',NULL,'8729c9ee7ab4f4d5a5a0a10841b8342a52231b74ffb26d49b3029e4dc7163d70');
+INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','67c61241730c8afc642c7c3cc8a5abeae77f4343c071779c6d579885418a0102');
+INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":0.0,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','5d1755f5c9e8be13d47831c63aac35ef30cad53d32c9e57914cb9a5f3d2d14af');
+INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','46307ede21dfd3e9dfff5cd5ee7bc761e6a1cb48d9c12174fa8669714943e1ac');
+INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','1daafce25a83dd50023f4c4ef49574ef23fe7e800814036499a3272ea511763a');
+INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310015,"calling_function":"filled","event":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','bafef7d7d332365755dad54c81597f7bce1e869f50ca294c45e1bde8986cc627');
+INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","wager_remaining":0}',0,'BET_UPDATE','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','d5b972b592cdaa8f5db422f92e5250917af74a7ee513ae313e7626641b2bcf2a');
+INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":150000000,"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41","tx0_index":15,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx1_index":16}',0,'BET_MATCH','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','472da67f93ddee462d36e29e81b0cc2c288af057c839f3118f5e7a5322688a12');
+INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","tx_index":16}',0,'TRANSACTION_PARSED','22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f','6d1c9c971769db5b3dc5cf3c4f88d76767881f5c6b9d67295494b7eeceb74002');
+INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"03cd020f708d5f082f5b63e3c1f58e5f25d564a60699ae0f23471115d9e37d5e","messages_hash":"48076abc31b5f8dca92d2030012b8ad17dd7805e245dcca0d123ddd35c0cf85c","transaction_count":1,"txlist_hash":"45379e27de14058cb9100cc29417da1e5b2534e4434bfcd074c811324e46fd06"}',0,'BLOCK_PARSED',NULL,'52e74e1775b07344901726675e10717f2e578b28805b184e7e787a8fdc55af97');
+INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'819d3f784f8c725a0e6088b3294c83269d9776ad19c15d0ece6a2249e7ce442f');
+INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":1000,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17,"utxos_info":"f203086e1289aef19494acb2a48a734ecc0bd65149ee60cec66f839cdb37ff9f:0"}',0,'NEW_TRANSACTION',NULL,'b1715fc8a3fd8aaab3120595807266fcfc7b6dc84b705a69542f269c6dafb71f');
+INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310016,"event":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','9946814cee853d4be68661bf1d974aec46952743fe8561f40c31e81f5da3a3c2');
+INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','180ff6bc01f1dc3a5f21b194c88be6cd940bf8dd07c504569448695ccaeda7b1');
+INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx_index":17}',0,'TRANSACTION_PARSED','5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede','fc853caafd185a58c125e2cb7c8e11cdf227f30663b0f6b78ae23ddb7c490b01');
+INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"d95cf7b2af3f578fc64450d484323075e81999a868918d3dbf89160269d68980","messages_hash":"4955dceda957cf6323feff202bbb6cba3b8a439f29294775bbd8166a13c0a73e","transaction_count":1,"txlist_hash":"92ed43fd80e4e254ebff7dc725c32962beb79be51dfe8d62d12bd8e123320532"}',0,'BLOCK_PARSED',NULL,'38a0489b8b7edd94664bf96c51b95e350db11800b01d4d8d2d80222a274d196a');
+INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18f8f25fd708c70d0625498e9748e2c0db497b4a8e46dad7c06b00fde1ec3e01');
+INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":1000,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18,"utxos_info":"f7c3acafbffbae86eb37a0334e4440425dd54628c1ffe103aaa4332f612b0d5f:0"}',0,'NEW_TRANSACTION',NULL,'8d79d3e3da218c5ce0a333fa9f1ccf4ed0183251ba9bdcb0f47359824b3a4c3c');
+INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','47025c9998ff540c0ef6720acf913ed0ed96c1461106ff9260558c7bdd40c630');
+INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","leverage":5040,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","target_value":1.0,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','b135aa5fa2ff117d6f19cfabf6222f553a0c6188ab55a686558a1c5d633927e7');
+INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','d5fba9a64275b15aabe44e890278fadabf88b0285c7e4ddc394cb438e2a60fab');
+INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','7951afd8bd0275d5d31c51c821dd0281d71515b9fc9d319aa4897607f5a3087e');
+INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310017,"calling_function":"filled","event":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','d121f13873565dd43630a10ce693ee44c5fddb6ab5e6c9c490a42f88113ba9de');
+INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","wager_remaining":0}',0,'BET_UPDATE','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','f63c5eace7df7924e76f86ae821f98f254b7a2d56ec40bd696edcb980188cbee');
+INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","forward_quantity":750000000,"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede","tx0_index":17,"tx1_address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx1_index":18}',0,'BET_MATCH','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','91098f44ea65cf7d9583cdd601e69bc4eb1d7aebb3372d6e3e234e51fdce4a60');
+INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","tx_index":18}',0,'TRANSACTION_PARSED','07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a','47d50c5eb9dc17c030ecd79e16f24746c51cbe4df6ed6902695b18817e3da015');
+INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"725783dab777f54b11be66fdf47280852fd6b4d8a9b9f2fbba9e92056538ce73","messages_hash":"7b823a53dd39b7ccea7c1a7c4c7789754bad84cf2c0e5e371113733fc1c2b95d","transaction_count":1,"txlist_hash":"f21d857139bdc083724362346aeaa455f82caf0fdf13f2ca880db6dbc6e047b2"}',0,'BLOCK_PARSED',NULL,'544983af4c3278fa3cd60c6d1d1a38881c88f10d949facbc89fd75389e8c466b');
+INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f8d39aa01a0c04ad120aecd598ad9389c112aae023c55aaa65fd4be165f71e2');
+INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19,"utxos_info":"74fb288e8ceaf5f9cdeaefe2cbdde99ec1eafb8ea3b80ab96725cbc6913ef266:0"}',0,'NEW_TRANSACTION',NULL,'26946e326c305ef10fb73a2f5fbc4aab538b15d4b12c36c7506a98878d4c9214');
+INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19,"value":99.86166}',0,'BROADCAST','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','d58a0ac1277e4bb43cfc8263123ad93da9443f44cb8e740de9233a9ff786c1a3');
+INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','1a91b168903474a94cf992beab67a681d864aea9599eaa8e358338a62ddbc8de');
+INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','779c7583f41fa104294c4646d097c70dcedfbfce98f68c4d3bb568fe3f6982c2');
+INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','2c9e99df8306934427cae9a23d42550c604f4bf0a4b3937523f1a416a7ded277');
+INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16_813e45480753e39c6ea548efd6b77f830120a41ac3b9bd37a4470b14e83301a3","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','29303f6cbe7460ecdd78ca29444bd17305b45435215d11bdc6c710593dece9ae');
+INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66","tx_index":19}',0,'TRANSACTION_PARSED','5a057227535fcb5aeaf56ec919321667cc45f4fa7d11bf940d22abaad909cd66','7737a6b6821782c092ca03fdec951ff4d955c573ff602b46072882498ca210d0');
+INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"05ad248fa836b50ce72a2f61c7465a455cc48ac92f2c0ff9bb9f94e69081d1e7","messages_hash":"5e62f70801f3b2129dfd23282d32d903c77fd54118061c40ef159ceaa660fd2b","transaction_count":1,"txlist_hash":"3e8a8361086aee82a316c2a041d8f4e1d7b4000c3e18263ca84a3267a811ee7d"}',0,'BLOCK_PARSED',NULL,'2fc94643640f7d428b490fabe383c7dd64a49c3b5dc889ed9802dc04769943eb');
+INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1ac54582a6f5012beadcf8edc0840cd94f6565925328524ba475fe90d9cd4de');
+INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20,"utxos_info":"9ff1232263d22ec7f8d8fcd4fa194620e14b9bb67f8704cce671114867664a4b:0"}',0,'NEW_TRANSACTION',NULL,'5167424e96298c39452ace42023e4e30a8eb769bcda6c5d57d475b5401a2fdac');
+INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20,"value":100.343}',0,'BROADCAST','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','96aa325e0595c4af17ecb6d0522762da7c855b4902eecf883240432a11b64d4b');
+INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','82976457f80919e8791d127ecc9bbc95cd84a3f7c9b02eb4b1e5410d81764981');
+INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','28d7d9a4218d71dbd88c56058251aaa055ed43a37ddce534f238a1b05d4fa726');
+INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','14427a99f0d6c9836fde6f51247deae7a3cfc6dc20349bc00dc336fe1da680cf');
+INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','6a2d837cb782447af90a86238d3e0eae0bf2bd74f82478868e958859ebdf1d2c');
+INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"33fdca6b108f99ffb56d590f55f9d19c7d16fe83c096b9fbbf71eabeda826a41_22375d61ad5cb70e45ca8843ccffa0abe11b028351352d5da874d246c834ab6f","status":"settled"}',0,'BET_MATCH_UPDATE','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','40295658a81e064c0f1eac5d3401384a39c77f4e52a66524a172aae5929e92e4');
+INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17","tx_index":20}',0,'TRANSACTION_PARSED','0baab7280b14d7d8597dc5f570682654fac0453b0b4c374d45cef3d21a7ceb17','0cf23893ae2ad150809ba09d9306aed15e2362b17f9fdc400133529eaa398bdb');
+INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"0ab8707bce7b77beecc32ad6124482cb561776ed245ce6dce08f5318e2cf396f","messages_hash":"aba9048e5807f1d3db7db36856e9b2c80f734c42247beee1bba2853f56cd6ace","transaction_count":1,"txlist_hash":"d66ff9e099bc707b866c2595b0bb642657601a36ab06cafa070f18e9f3ad30e3"}',0,'BLOCK_PARSED',NULL,'31a747dd5572763c30d27a3e971248bd85c1cfb572ce700b9aabb9fe22e6d940');
+INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4fca52e547d7d74ae3219f59f6ade738b4da9dc0cefce4c7b8927689f699b52d');
+INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21,"utxos_info":"5d2638e1c58ffa4055d6ae17293c34a353e57c7c019a5b1a90fab83747fc6113:0"}',0,'NEW_TRANSACTION',NULL,'98c0acfb042dd3b5bc1191a371875826ccedadabc20f7606579cc6e593cdcd9b');
+INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21,"value":2.0}',0,'BROADCAST','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','96d298a1c4aa249ea5e23bf0239b209ac1c6c791715672a31c0848fb8077fcfd');
+INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','865d59aeda51dabc97c2a0248c0782267446b75abf14c961fc66de119982895d');
+INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','ea2997058440468ea848fbbd856cebb18eb5bc31f939715ece399d44bb2128d3');
+INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','d454affa8b6ed679c05e226b8b624ec89a28ec961d852f41d2b6546c58c7bd81');
+INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"5e0cd8d81531e656dc3a4ae4b7edfd1bec48e455ed0bd69a4a3c22c0c08bbede_07d3cbac831b5edb261b1445071e307949d7825565b8d5c8cba1d720d5c7ab4a","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','6218d38e8e80e3e91534c79df3be96f81616958a52373f11d555558420b0a906');
+INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402","tx_index":21}',0,'TRANSACTION_PARSED','2b39f99114417cb4857c8c2c671b4bc3bc8b3e52865daa91a49ea6d9bdfb6402','09f18c07efef57c3ec7aa1ce67f36a62e52032039e857afa53904222c9e2ac0b');
+INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"198edc4bf109549538a2f8f96714536a99a1568fe16fe4254881520474adc68d","messages_hash":"737b668f687cfb8851e94bb1db0a9fd112ee191da880c68f100fd3638e4de83b","transaction_count":1,"txlist_hash":"3bd8ef01a2be7a5d817b535f19e456325bcf2d684ac25f09124d4582040fde54"}',0,'BLOCK_PARSED',NULL,'dec1e645cd9da8612e1760cafa3628bc550e6db50aeb6eed7f6f24b53e4fd0b5');
+INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea0bb97ff185c5068aa702f7172c5a29bb97a44749136c67e84b8d47b2a15a9d');
+INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22,"utxos_info":"322ca39f1c6a4e524868c74a1bc3ca8d5db6448e33db2511a9989643810625c7:0"}',0,'NEW_TRANSACTION',NULL,'157de7aa6edbea767d307aa8471488b5767a6874dbdad389036e600e3fd515df');
+INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310021,"event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','32271cf41d9c0f56ac2f5e765e20145065b47680eec94398b6b9b35ef954f30e');
+INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"open","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'OPEN_ORDER','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','6faaebe9b193cf0664379f66334d33e6d29c75d39ac134547859ac2909913863');
+INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","tx_index":22}',0,'TRANSACTION_PARSED','19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323','ec668ccc39643ba40d5c3da8590e08fa03048aa384e9ec54f7fa780c069d4fad');
+INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"52482033c5c11ad24257707137b090606305497618e29050b2fdd3e13bc822ce","messages_hash":"e2b4dd145c9cee2d10a246962b4a93c266bd6b4b983fd5cc7c529d542fade04a","transaction_count":1,"txlist_hash":"7d74bbdb4057dc5d0e9b568e983df362b87bdacdddf2724b1ee4c42b6602bd47"}',0,'BLOCK_PARSED',NULL,'f35963e88e328ae804c3bebc91504a39c6bb15f1c1cffe90b311d6ef692167fa');
+INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9a6719688d3b3240c2504208d38799f83b3f4c0b3987261ad380a6d7651fcb6');
+INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23,"utxos_info":"ce8432a1b0579faf1ec3f8b93b7bea7fa3dd3a8b1a3b74b1bda7d3030e701e58:0"}',0,'NEW_TRANSACTION',NULL,'9fa8bc1e6f8d923c6b242c7e64e338465ef2362ea766155719bdf34fe4d03805');
+INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310022,"calling_function":"burn","event":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','77d4876721357e6c988fcf028bcb9d910a764366dac9440537112b630bf68d8f');
+INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22","tx_index":23}',0,'BURN','3739350ed4c86474468cb1fed825b1ef141304d638b298867d0b2ae58c509c22','96771850969758e79e3d3c502403e4e5e0f39952d534ebba432e5815bc70f5d8');
+INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"85d639cc8147885470da26d3c0470dba0eb8b6870d5941b12bcc4afb8fcd9af1","messages_hash":"3dfae7363b9faa49ecce0cfed4e84027ba2d6a879951a3cbb8ecd659e4c7e193","transaction_count":1,"txlist_hash":"568bbeb4d12090c110442540d6f12734602dcf84ae5e331f0391a4a47857d059"}',0,'BLOCK_PARSED',NULL,'884e4255a0f7b38166bfcf86dcf20d73e65faa8cb96b9891ccd42dff2d8af2f5');
+INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e8dda71fa67e164275e0d8b364b24927282d704a1d1532799254ebeb00198d7');
+INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":1000,"data":"0000000000000000000047680000000000002710","destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","fee":7650,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24,"utxos_info":"5769ce4243e3d2e898a792c556ec8da59a8f8a1f262af59569e2b617e5867776:0"}',0,'NEW_TRANSACTION',NULL,'8d54ef3f85312c612cc26bdbdf53b494ec78e1664a73ab4931c0ac475a18884b');
+INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16"}',0,'BET_UPDATE',NULL,'e0468541d153f16c0285e148dcf77dce965011d1e9b0e29b677891eb9b166a90');
+INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'0b4f12661ace09adf661459f526bf14a0e9d17bbac2fab77ff040138c225e253');
+INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"5c49e06f8ddf9cc0f83541550664bb00075a2f01df493278097066462497af16","bet_index":13,"block_index":310023,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'BET_EXPIRATION',NULL,'8ef833e8a29ccfc539207bf3731f907723691fa7c5d0f4e0c95253e1b3f9e532');
+INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBC","block_index":310023,"event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','96a773d14206be167d6b97f968f8b4f04dcb8652da5fcb6b01ba211de45a496f');
+INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","asset":"BBBC","block_index":310023,"calling_function":"send","event":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','7f16b757a1392c06624efe4630317e4b2a2a9dc23a5519ffb9ea1bb1d8074648');
+INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3","quantity":10000,"source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","status":"valid","tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'SEND','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','b5791a8d963f00cd884cf9867de4880d9d07d56010e2cefaeb5f3086678eb1d0');
+INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58","tx_index":24}',0,'TRANSACTION_PARSED','72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58','17cdc198a65b449bfa8df2796b2bdeeeca501bffaaf1b5864ea379f500db8430');
+INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"eb62ce47d68491a84b9a29b92db2742021881f0274072f1bc39dfef08cd7a590","messages_hash":"50a70cb61673f43e37c40122dcea6d876a18b0750c4b60b97cd70ad522d0f1ed","transaction_count":1,"txlist_hash":"877a4d466f5f780e8103a42fb7771935ef57486ed7d74aa77757b9cb434893b3"}',0,'BLOCK_PARSED',NULL,'da53aba6c10d8f3c6b76acb56c80d1c44c20f183ba2159a5a873684fef5c6604');
+INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ff7fd3a6f86a26431110f520e803002d45f702062258ae61a4c291dd73f51f9');
+INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"45e73afbc34855b5cbd342a6fb77545e01f3ff4601a04c6dd25dff665aeff484","messages_hash":"7064f6aa2fab1df1994fecb94ec0fc2aa3287c19afd6d56ff907bf37e77d4e29","transaction_count":0,"txlist_hash":"b16082c8d932618c9bd89f7b8d6372190cab18b274ed8dbc1b4f04e5edc2bdbf"}',0,'BLOCK_PARSED',NULL,'3a15b5758af82acf26de61d22cbbc62fd19d1d09cc18c38497005b68c5588f69');
+INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2a26eb863d862300087fc53fb42f11bf7921b51626a3697d4ac7dcbed8400f0');
+INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"714702b25559325c7bacffdf28e0af30c47bf48e6b4fda053c21ea31c7604128","messages_hash":"738c93eeaffb0fcd540f90e0283f8d6c8b1117d792311d9f998a0f93122d16d1","transaction_count":0,"txlist_hash":"391a822509e48a899634f3b8a6b0c99fd298eefd97230b401b40c301dd7e6052"}',0,'BLOCK_PARSED',NULL,'80b21837b02efe0850a2462028f47ecaf2b615e9e4c906d425aa6a14ac933662');
+INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3011262b5232da5d05e4190b7bdd2b7a423b42717abb0a7533f4b663c0feedcb');
+INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"b305741a1e277ba0ce8436b914784ea0156616ac308282a7f29dbca62a54cc82","messages_hash":"3849411409b69075a3729c55adfbf460f3c784712275625a7bfbdd7900e57cbf","transaction_count":0,"txlist_hash":"16c8d91265aaface472342f436e376984d576675529de1f58a188f994375dea0"}',0,'BLOCK_PARSED',NULL,'d301e912d5d7995551dd9b8c60c4d25a34c517def9235fd75d8ac19ea6115522');
+INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c253f1e56b8a2696619bfba69be144929e3e5446a9e175cac828e757d6121c28');
+INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"1f833f7396917e02b4b65b0a05d19754b6a53b030b659514d0c21cad062d45f9","messages_hash":"ba8229f11c3c9d602c755f34071edcd92a5f1faf7d095e65055b0e690de58314","transaction_count":0,"txlist_hash":"d7a61a46b4f6da78607245b9fdd4e0b1d7499b5687805939342a431ef570711d"}',0,'BLOCK_PARSED',NULL,'a53dd64af6de45500130b380402bb66ccfd5dcdb4fa391938168ce8300bfb427');
+INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583e74d8614c9dcb638ff1f9cb9fd6a02a372b97415cfb617920212990494d18');
+INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"47b38906beda7ad735a86b9fd63669b0357b7ae0a0c1a54c9827bc8b90185626","messages_hash":"4276937d9996f1bb75edab14c7af1d00e860e61be3ded18378103e1f8f4e8835","transaction_count":0,"txlist_hash":"a8a0b67ddb47a15f89fd14f227e118bd374dde04f4bce3205d5ee07a8c7509d7"}',0,'BLOCK_PARSED',NULL,'1a0e7ad6dee0dd1b720a27496e5f05c8011ba97468c3b0b896699cdefbf8b1ad');
+INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e236b802e5e391b8f65ac062736bb65bf5d59f963da604deb06fdecfacffcbe');
+INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e69f6c9b649ac04920be70f9b076f7909bcebd8312afa715be3d8922794a72e7","messages_hash":"4a104128be63cab6611ce387dae35f1a85aef88e4cca422517f90d6c89574bb1","transaction_count":0,"txlist_hash":"355199be765ee2db25308e58d6cdfd22c6941a296b51800e8f937cea1afedbdf"}',0,'BLOCK_PARSED',NULL,'c748a4a69232450fbfb6e545903408d1f06bd610e9bd654375598517748b86a5');
+INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ef2ea839ac4c314e038b56883478f8af2515360c519959b67934ea0f6ff0c5b');
+INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"c51828b04433b000787c92eaa7e5abd5cc0bc31c619cb8479aff675af6e00c55","messages_hash":"3b1037567473a39c6691c30254bce767e05eb91329a44a3afbb1d2a10daf0077","transaction_count":0,"txlist_hash":"b4bb7325ae90ccf0095b0970cb4828c98915a2e6694723ca8af1e9f77523d540"}',0,'BLOCK_PARSED',NULL,'7e7f8666d89edecdb0e3bac3faaa4dec34b188ebe154be0bb8aa95f9a263ef7f');
+INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'008d1fa902605d8a7e01415ac146f763c02eb4d1736dca643d86367c19fa86ef');
+INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"26d91568af76b5ad4b357693ecb0b9341aabbf5de5d5c83f9998dc2f95d76e5e","messages_hash":"1a57f0fbf111707d2e3acae2cf0b66ca1b467f9f50f194799e51131678df6aa1","transaction_count":0,"txlist_hash":"b13328f7f6011c05736a1c728af4726f63f557ae1eafab7d70b6b7fd60025616"}',0,'BLOCK_PARSED',NULL,'ab60e89ff5603f7181890f0509f1ebbe55dfbef2442297049679c7f73fb8f77e');
+INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93a729be63aee3c71ec5e3767d377f49611fee34cbcb74345b5f499c8f3a4348');
+INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323"}',0,'ORDER_UPDATE',NULL,'7c1e2f3ef36e0b94f446b665f498654d4f10bcae033e4598a62b69df265a1aec');
+INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'cd719f1e9dccd0c5d67df3fcb4cc1368d58fa680bc98ef21d543039954ae235f');
+INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"19c6fe5cbf0be99ff3d469077e866e0f9fdc56901824b7fec89b0b523526e323","source":"3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3"}',0,'ORDER_EXPIRATION',NULL,'fa82a3c9347aba961161a01b2623dd45a4762d6e8e10d51ef98860410d4097b5');
+INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"21f8da71c386ec1e5e31a35c1190b895f2df52529ea028d5fba25e0d57616952","messages_hash":"8591a73d500a1e48ddb372d274ef4e049768600d6ee3b6c94023825de8f14a38","transaction_count":0,"txlist_hash":"80980b4466ca949fa21a42ffb8c22a2f5853722c4fa02bf0cb962e97365384f1"}',0,'BLOCK_PARSED',NULL,'4a3498dc363df52831a7a01e7f304e06c0289d073a8193932c15a428e2e13c02');
+INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3e40021e3e649fe27722c6277987ed27ed00dde0fe1395137f84becdd94c114');
+INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"1c844a38fc28e83406c8019615d0c24a1ea84e6ffe4da392d29f353ca676001b","messages_hash":"c0cd2e695e46640cee105806ff2881a413d0ecf484c26bc15566f3e6886c3ac1","transaction_count":0,"txlist_hash":"0c2f46b4f4d5f345399be6073d2f72bf689f6a3a20e57c41ccd541cc0bae76d3"}',0,'BLOCK_PARSED',NULL,'64676303a88e39d4d3919d58157e03f556ae60949c716153db4b95df77823dcd');
+INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee13f371a5d3cd595d6e21371e4cb788ef849cc425da9304f6a1379044cad0b8');
+INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0533bc0d3bc008b5d65932c569e9f85e3217ea9efbb8937935be93b7a01ec2a8","messages_hash":"70c4d884c1952c33c4251085f3488422194bb9b47bb1b5265295114264c00694","transaction_count":0,"txlist_hash":"9f5f89f0c9821b7de30388b2a0891011612096ac158a70838d4479059a4bfc50"}',0,'BLOCK_PARSED',NULL,'aacb2436e4a635c418ef15b7d3fdd724417b932fd2c49024b74355b2145bb948');
+INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c68bc7e41bed00cd9362cb638d4b0cbc55ba8a4409d52a56d0085ad91e1e81b0');
+INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"b5f0b7406fe3b6dbcbb5c3b28fb8fb119e237f07532f500b422058ba898e5b22","messages_hash":"342784db7d2956e0158cf91a69d31e7d5b75bc60d3170f8feb4494ddefebf58c","transaction_count":0,"txlist_hash":"5847c5ec7d8ad0e27d47b3b6ff7df903c4a67a269aa248e69ee918062e58976c"}',0,'BLOCK_PARSED',NULL,'c6827597feaff48fdc3b1489239a3d32d11f438bd8456e5b8dc2db1962d841ce');
+INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'445eeb8125d8b57f3b222517e71d7ceb422a3a3eca060d7db9ab3e1f5018f421');
+INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"7519ac8cdf4c13b25929d913e3858855aca68bcf3fe6d3636e7371894af27f04","messages_hash":"f986bffba5ab909aa33bf7dddaa130aba86e37212bca5a0205e838e912a546f2","transaction_count":0,"txlist_hash":"46fea446096a8d96f1f990374d94405f358ef5a3a8bf09aeba2f76977cf867b0"}',0,'BLOCK_PARSED',NULL,'2da6bff26d32163e824a0e95d7cd843ffaf05403ea53c753c132c093337032cf');
+INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c24033b9ba98efb92ada1c7631371ea16843e1fcd4322b05391515525ed24c6b');
+INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"f417da67da0c23d4bc44bbb864de5b94057916e28502641ba70764f44165a1fa","messages_hash":"b47dec27e998db5107a8296f6bf8bf7a8494534d490a4e0fe532fb9ed5ef0fe3","transaction_count":0,"txlist_hash":"e372a6531d2f206be5cca17be0f42a75e2e6617499a6dec377c274f7738620df"}',0,'BLOCK_PARSED',NULL,'a6210b87842649bdb184c977b889aeeb065c4ad32fc6fe99749d671e458cc52d');
+INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db01c646d4c07f970222979eabea799f980b60bed58adaa02c82b049030681a9');
+INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"098eb6f2b0a1c584d969167f50bb55383ab71593ed1f0ca61d83c4513a209107","messages_hash":"1c8849a2bac5e6d1a16423b91c4a79da1d9d5901fa78cdf514132690ea110e6f","transaction_count":0,"txlist_hash":"da7704f6d661aa255af6e2d3ad713fbca0a0e6296b16e3a364989bcb5a4e38ba"}',0,'BLOCK_PARSED',NULL,'1afef2cd7e4d167a8a6aa530c944ea0a92fe1eb8b1107b9d429ed2bfecf5003c');
+INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4847d99d844b0d1e772eb35560e8cc64db22099f110e68f6835e7f03f19bb0a7');
+INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"a4aa60a1320e47c975628f6650d8fdc44b6a729d26a3178031e32fcb48b59491","messages_hash":"db21a59f978f14a7dc6bc79e90bf519d2f6f9977027f16dd4b829a46bfa9f88a","transaction_count":0,"txlist_hash":"02eb5dc168a03d3cd067677480b22185a8ad6731e467c0b3bd5a907834e01013"}',0,'BLOCK_PARSED',NULL,'d3fd8cd0983f27650306f5242cc0ea91478fa94d2fd68725a6768f9e5da80d79');
+INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c58dd30949895e1fc77e81a6c6fb48088f397f1e38e18541b9d62ee05af8080');
+INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"cc5b2af6948531b635b18a4b6698efa318190762c8e4419aa9ca3634e7ed5d1e","messages_hash":"b1f5bbf3497e30f219b506f25fdbb4f4da88f45ae1d21e77d40c6258d4c8ac34","transaction_count":0,"txlist_hash":"f6ba96a6e3e2e3442722bbc1bd770d3f6f0f4a4ffe57d0858586539f81e868b8"}',0,'BLOCK_PARSED',NULL,'7c0b83c0d81eef67f6ba36ce8ad8370bce848f19d1e2ace6f28a66c9fba93b27');
+INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad685d564d0820c57f7f94659d7e01fb4f5a0f00cbff05ad3d09348cd7464e5d');
+INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"7ad02b4853bde78025942e9f58c212a76c1828337610347e516d4a359af804b5","messages_hash":"d126df6eaca69d43425049467657ff6ef20226bf3de2c49d35820a3ff5bde37f","transaction_count":0,"txlist_hash":"d8089b22bc20979dce133885c84c5babb754ff0522d7f2193e1d3157c5251631"}',0,'BLOCK_PARSED',NULL,'06136e7ed45a612620063947387fcd3cf3f833142e1489aa050602bef892eea9');
+INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11885156eb7ad223b2b414675d11b61ae541f1cf16405c2d8060ca608059d7f6');
+INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"64a91735950113c13603e49ca549fae9b30092a9fc02d53a32a20eaef64ab6ce","messages_hash":"00e2758c956e96027b43ad138f0f52d3868b580a0d978c3d887916dcfbf8fd60","transaction_count":0,"txlist_hash":"554d6b2a2182d87b00111b748a5d904aef85a56b92f1d076ad4f866f0d054041"}',0,'BLOCK_PARSED',NULL,'3ea774426da94d6e79ec8c10452be3921ca7b0f4ff503b85d14f435841c1169c');
+INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30238ed136979f4bbcbc61f61b91b0601f34608aa4c2c737fc161a4f75d151c7');
+INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"68107847c7a9dd19612d8b47c1a39cdc446c752f2c05ea8fcd961a42f835d155","messages_hash":"8cb4014c4047b62f3992f4cfa56ca3151d04cdccaa5e572f08b767190c4c7911","transaction_count":0,"txlist_hash":"f2b1800a73d98a15428bfb5289f7ccbb9d3c66b98fb0a36f00ffce8a78279801"}',0,'BLOCK_PARSED',NULL,'438086ce54551c45e42ba01107b9a8e45e8c8999b57687214d645377d165d17d');
+INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5df858deffc2e6818d48f340e23b3505dafe3d5f88bc7a0997b22f3b4a29eb22');
+INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"64d4d51adb6994360b3dbf04663c4f067ba223e62912fe1c5a96a190225bb54c","messages_hash":"7e7c1245270ca9ce6913330ffa09cbe29cc4e9fd7453347f80cf5938c67cf493","transaction_count":0,"txlist_hash":"ce4365857faa29eb04e638064e4810620f434fe515efe63eb2ac49c3adce6581"}',0,'BLOCK_PARSED',NULL,'a3cd2d14787e26018c417ef072f2facae448f4ba2b8dfb36bae60df8bc3b88e6');
+INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e0a5a84ccdf27cd28449d6a42953176d37a64419d0632f64ce490f4bd95a364');
+INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"3ba2d7685f63962f576e9fa94e4d6709ace95249a3064804c3822078c982d11d","messages_hash":"72c3e96325e91dc4e9b305fe54c177a92f30e8d54e8566f324e8fec9971fa8e7","transaction_count":0,"txlist_hash":"94729a0956e8c1b095c9181e01c220b94257ff582e35d87923e3c5ddba3a3566"}',0,'BLOCK_PARSED',NULL,'377275b26ea2758b2f3f6dd1eb1b19860aae9b87642c9ca67b536289006d185e');
+INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0bf4c0569b0c9bcbb4a4e1f5fad1006f4dd691db507c81bf7de0e72a13e9269');
+INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"6502f277568bed2705c5f496e278e5d99310ff6705751a3999cb4b2bc7d725bd","messages_hash":"5619b736e0174a0015cfd92a5f5af15de2e7fc72f2ab671919fd0098be505d29","transaction_count":0,"txlist_hash":"0986f1e944c39e36fe955ff092028c51647a9359492f17a76c682b4346be714e"}',0,'BLOCK_PARSED',NULL,'e2fa60e6a16b548ecc752ccff64b9d11ac7668fdf3fe9af77ebdc9235667dea7');
+INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1e09a4e3ae3432058e1a24e076c7964ad6806aacfed6f4d8d08ab10dc5f9143');
+INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5dae29289f36e64b87d56f9870af0bd5ad77ca45f1093c1a41140ea397945130","messages_hash":"dd620615ab2f575f38019c823903090c58f24160d1201830adda43416539ef0e","transaction_count":0,"txlist_hash":"f14e3c5de5e186beaed6835c7c61fe2274603bb73e62ebea5899ae2a998e26e2"}',0,'BLOCK_PARSED',NULL,'210e1aaa781ee00ed3574fbc77bea254ecc58e6d20e507dca6926c9caffa5e87');
+INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'299fce69b9886e1e91031c6aff0c670d193fa2d438e8a7443d84987480f143ed');
+INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"d5dee49d7b78e2ce4dd2a648e345a52bbfa7e0e76de9e970b1dc0b6aea66c130","messages_hash":"666bbc7cc6aab4534cea6e2a9c499bf54c8cefc5034ff0a53a76ca8c60f5b37e","transaction_count":0,"txlist_hash":"e31cb01f21f653217b3bff72061a63f3778f45a72a8419988a496d8f388cac1f"}',0,'BLOCK_PARSED',NULL,'d70960a2cef2684c549902491048121193f1430e2b1efeffab11549bc0b56c27');
+INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a04c5ecafdd5d0453a496bd4ded968c97377e56b6067a7c16c0ad43a2a17921');
+INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"2b4c97a93933b8986ebb061d47f2e8bbb1672206058ae3c3ae388bab36b8cbc8","messages_hash":"ea70be9299ef9e4094626af518ae72220b18076905f64f7e9f1bd35e9dc4a6af","transaction_count":0,"txlist_hash":"eb45cf1a49da1dfd4ce7231e8f6da96b7241b0b034884cb2de57dc107723b7a5"}',0,'BLOCK_PARSED',NULL,'3b972c27bd7535f28ae626a4b661d9826b58738b5726e11c89abf452a54f54f3');
+INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'103c327f07bb2247c10cf6d654d747676fe47dbfd531ff29e390bb211c2c9972');
+INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"115913763ca7ef5691512a5c6d47cbd49203aee8a3242928f62640912c935872","messages_hash":"049f466d37e49b3984a1bb79b489466b989d6e894619f33f4a9e9447581ef4d3","transaction_count":0,"txlist_hash":"db0d0812374555812015a2058ea7f6bc8aebb8aa7d2824eeeb26b7b42d75f97e"}',0,'BLOCK_PARSED',NULL,'69a0297fb9d3ba3ca5db0140424fce1e15a03cae72428e152a5328dbb6e4f4d5');
+INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c845b0f552e86515bb8333d2b53decb4df3a6aa5afbfea65f28328c8b22302fc');
+INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"72f24dc53c759a08aeb447d826bf64aad71ca8f4ab9640e30e440e6bc050a0eb","messages_hash":"56b473eeef05a1e50b4621085980de48ed4f8031c976f125dddc99afb946d55e","transaction_count":0,"txlist_hash":"b3834012ddc576765f337d3dd8b3c916f66711481c0bfa2464f6ec2678d1512e"}',0,'BLOCK_PARSED',NULL,'8f64b80a91543eb0ab7e9a5077e63edf67ebb1b4182e5e3a7d026c5718cc1eea');
+INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88ed1da67c85008beaff9e2eb3013de656f44cb6f37da94ff5b5332213e1932b');
+INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"07846004f2da033bfd113e13040b0d0d605375370b7437e2ca2ea9467fc80c1a","messages_hash":"8d9d1aa551568452a11231eaf33094e8a235fbf2b368ff62f22d64eda80d1b59","transaction_count":0,"txlist_hash":"35357fb0ca94373955c3cdf08be75d20e9665a9632be0df0c90b567875594049"}',0,'BLOCK_PARSED',NULL,'c6ef4d3464473347869edc06450d86626b2bdee81e6cf1055d3186e135c43079');
+INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31696ed18d22570f01698f5f4c998a1df041aedea3c615032418693dab4965d0');
+INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"7bf9a701337c043a7268cecca5ff765c24600a2056137cd03e3ead9d64ef2348","messages_hash":"ba934fd3019fcfb08be9bfe75bbea568e6f594e4a99222e4c71e40fc97141f15","transaction_count":0,"txlist_hash":"d177ed9e0bb4b3d77bc5b1a044e724cabb92dee3189747bc1c01d1fee7148fa2"}',0,'BLOCK_PARSED',NULL,'972c845f1aea586a6ce337246860b47b09313bc7c20370b4f0eddbb6c0cf4b5e');
+INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'609b66129b09c02ee6aa334ab8e200f9294df725227f72fd0cafb2870bc56919');
+INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"d544aec17018203fe2f5c9bda52a5da53d41d3364b8026770d1f620aa53e6c36","messages_hash":"7c3d102d83354cec29f653350391e7e695863e5c1f7706dab61b75095fad5406","transaction_count":0,"txlist_hash":"8a3b92aa200f79e8aff4a849618914f7d39c34ef2ed636d3b5633a2ad2f647ea"}',0,'BLOCK_PARSED',NULL,'62f209b22064ea73085e2942b5aa828e039b8adf000bc470da110f782e726777');
+INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'305f151ff8147e701f79763a84000ad0d06b3fb8420df6bea8f4de868ed343b8');
+INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"bd3044c66f7e2c24944a9c938b8f162ac8f566a1338444c219396eadf5179d3e","messages_hash":"2a075e52bf4f6fa252522292e30bbb2f4700f4274d771b78a42afc5c21d1b681","transaction_count":0,"txlist_hash":"59ce208e69d4e1427791ae237a6db6a05efcd50fa386f4f8f56862c6cc3b12d5"}',0,'BLOCK_PARSED',NULL,'f68a78cba9a4503c7900953f1553f00ab6d4a826b6506748c83a2233a9ed53f1');
+INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'655f1f5c467322de612f63fed0fe6cc1cf148c126d058d91e8d2f182adb91882');
+INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"b19346f726636aa9da55af6106a471c596a7f7b93289b70d3d33b45334bca9d3","messages_hash":"a6dd9ca3664581c6a79302ed3fb193e342f0c4ef12713e4ba7e60fe274bec1bf","transaction_count":0,"txlist_hash":"8e9d4b1d3ad7c5e8e479640da0ffd8b7423aee810ff6adc4ae2d37d545169579"}',0,'BLOCK_PARSED',NULL,'76d3b41dcd7afd3a77421ecd9093995c30f473c8607700d98d5f2ae2489b552e');
+INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af29e07a32a2b947e2fe33d99b30f6d0134c64ee45233bd741cbe3c27c16de8');
+INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"35c2ad9ccd3bd68cdb0c4d8fd4e30938521b8559c1cec331a29b1802d649947a","messages_hash":"2501b5b9bbc8db7856863b97c8d7a815a8defb26969e6a86da9d04b8926d1ec5","transaction_count":0,"txlist_hash":"e14484629fa3aa2e8ce54505b3983d0f33e7727d3dacc5de57a574c2e0c69baf"}',0,'BLOCK_PARSED',NULL,'35298847c0b4204dd91f4cef653d99c0ddc897346dcf11af6f24abd19d3a9ad1');
+INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'538e864784481812c10f67589b5e027e76a1353525a3e0c1ee2c8f8f84e958af');
+INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"e9a705d6661f0345ffe0f45ae26c0d6ba6bd5a125eef2f0e9558d0702ee6d63f","messages_hash":"d77a5fb5bd075ade951f84581f0cac8f23c244edb445c0ccfbe6cfb36e810b94","transaction_count":0,"txlist_hash":"cfbb1995e2c28020dabca30e98f72afee01b64fe276acacee7e104b22772de65"}',0,'BLOCK_PARSED',NULL,'231626411d1f241b3e7697ef6187f8b86ec6abafb769a000c487577ae1cf49f1');
+INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea99ae0bc6b6d03e7e856bcc1d370accbdce1f0180640158b97421f797384e56');
+INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"61efe4d33a7f70cae34df86753532aee25fb0b153744acb962142691f6979482","messages_hash":"73b8d193cd509a77b44763af64d122a1a318f18d9a955fed0d192c71db8ec009","transaction_count":0,"txlist_hash":"401b057e48ae9e423f354f7ddbb11e70c0ec2209ef1a26dc7ffd0bf6003f1335"}',0,'BLOCK_PARSED',NULL,'281ab405b5a2aed230b76aa6124a2dadfe905b3abdcdd2ee18951547f468b84d');
+INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44f939d97fc80d67b635cd6e55889b90e64237d131504767610e457d5f376ab0');
+INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"59d9785e783c59c12783977087ad439b2dacad9ae1ef2be6384bfc9036da9804","messages_hash":"0a71078c193648bfd3c53f4c03b76b6086eea50b06e9fdf7c9c681ecb22d3351","transaction_count":0,"txlist_hash":"6010ccb1d9476ce07d8b50633bccb97ecff1a229a0ea7701c802aad32f961be9"}',0,'BLOCK_PARSED',NULL,'5eb84304a2c5abc0a3d90fd4ca1cee3536c71127fe55e887daf276bd1180b988');
+INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4738c9b3773cfe9296875ff3eef61d205d2b638b84f8706b167ba977919406dd');
+INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"e257d59ab5dfb01b8396bd12d2fd169f9ac7629365b90bf6e593e627738d3754","messages_hash":"e8f32321ce75ec4726e63d32b3dcc62dfea38a9eba6931db9516d0b230d63793","transaction_count":0,"txlist_hash":"bda63243caec3f70173e1e93a16867ecbcf45d987b6a5f72d1bea54d361f0ed2"}',0,'BLOCK_PARSED',NULL,'4bbfc2dc4ea60b109c9513e01da4fb642dcbe281b81bc42ba23f5b997b0ee886');
+INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ce8edcebfbf2ab9787b7bf69e3fe343e56a289f902cabac79ccafcc78834524');
+INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"0dc0317a88a6fc4ac791cd4d45edcf2a142fb83aa2e8a2f299fcac48a2c2e04d","messages_hash":"ddbb9f74d5a313dcff0f4f0a6f7da3d88cad299c1df4e59b69a69a6993c47876","transaction_count":0,"txlist_hash":"ea9f3db44eb05a8ba1c860cd0a13ea662f84715b59e78a87f49c78377cb6b2c3"}',0,'BLOCK_PARSED',NULL,'5fd531c6f5cce892aad426c5b8503c5472f3047434ebfb879a42de647bc9be05');
+INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81af5c6a77efc296b4fa1e05722b81456c33cfb91911c7516aff3904a8c99a77');
+INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"892d6a49aebb262f2a626a35c0806c488c836c04d33122c2d65ecd8904fe3d85","messages_hash":"4eb612191aff721560d90bc875a9a3289eb2996cbd4917814761b169ecdcd671","transaction_count":0,"txlist_hash":"3fc1380f35c9123d16b9ffbeb23c44f24e4d6001406a484ce30ee5758b8ec965"}',0,'BLOCK_PARSED',NULL,'666a634d513c7ba8209b71bbc4221c4ef103fbd7ada68a1fedc88430d95be3bd');
+INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'500fa0c3ffb6cb04805b6feb7c6adcd19436498b8d2d41a795fedddf25e14885');
+INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"e345abbf8dc42737a9f2dd038534409200d63a9ebf5d1cbf3344ea9413c388c0","messages_hash":"2d2adf98878851493ebd8d2982c2b0903e2c0f452532db7db44d259c1d7eb2a9","transaction_count":0,"txlist_hash":"be23706267b965eb38fa15ec1ce8c17ed5727bfedba0ca4d4be3db2fd703744f"}',0,'BLOCK_PARSED',NULL,'a30b0d6bba00a880a9e9413492bdc7b147135b4eba3e47b4421247562f388eb2');
+INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9397ce5e18b0b1962643fc0e8a0d66d1a0239e2cbd2d676c2924dd0c4887367');
+INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"84ec781d054c0602ed97384cd32cd060b938627ea490a7635fa3ac0babba94cc","messages_hash":"952a765cac09e551860b43599e11d9b4e04cceacfa62b2e8d527575e037571d7","transaction_count":0,"txlist_hash":"1f7417cf7a3d9f07e5a8faf658b166c288aff136ee56f244797ef589f9cf98c5"}',0,'BLOCK_PARSED',NULL,'786dd92f5567a12ca3798d6cb2310a2fc6e71bf505be63ddd038c2ea2a06cef7');
+INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29d6466f5235ffc39067cb01073aa43713ce6400c710e7bcab06341ccf023b09');
+INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"3478612a8bb95c2966891fb4d1b35493a1342364a6f08404b83ac9fdda763aa2","messages_hash":"af4e2ab9d9894c27831f4fc9b95ebe600de27038b17cc4bc3c4e347a800fa94b","transaction_count":0,"txlist_hash":"7b4317e7c2db815ced2d81aaf8efaa6331e475a7a9b3a59041640d43484b1a89"}',0,'BLOCK_PARSED',NULL,'0e8687647eefd910b57c2fb1db09ccf0875f4f7d0729079dabffe660a22b7704');
+INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d8527352debad79019cc7a5c5205ad31911ca5cd6ca383c8b02c1ddb059e448');
+INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"c532c4c5f5e2ae1026ec2582645d9aef06afee46cb9781427a1f40667378ed67","messages_hash":"1689c8152ecef02d7d34ee885ede78233d791f27acb74010c6c15a27406e5dd2","transaction_count":0,"txlist_hash":"89699fdf437b96128d7eb89a45d58e45d0b829789c6e0b29e8972b48ce5e62de"}',0,'BLOCK_PARSED',NULL,'3b30c564117efffe8165e765d36fe09f1eccaeb9839fca23442f31746ad417e5');
+INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db8ddb17f19fe4c72052190e46d0a1090165fcdf57f4a8f7c62ac044f2fb3651');
+INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"5508189396fa6dfe63a7d06fe97a3073e986eb305bcb49430157f99e3848cd69","messages_hash":"70e9092b45626b7680d4f0a97b314a32224b637918c6018adfe3452a10486d01","transaction_count":0,"txlist_hash":"4c49d9334c909f728f3b06a0ef613fb09f6369dd431b7078db5d269cdf9dd4bd"}',0,'BLOCK_PARSED',NULL,'3c233ae8f744cae875e4eefab17b790e25f97e1b3e08e98744913e68cd74d871');
+INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'208a6194669a23b15339f800aaa0c3d7467c287694856e3fd42698c0018fde9e');
+INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"9b0b5d09dc7aaffaf5a3603fa2b914c54b04755a5ddbf83476320149f802292a","messages_hash":"98f06025cd293f2f32530f64a676d771b33c139b78979986a9963b470d460986","transaction_count":0,"txlist_hash":"ef4759403c17482a8f8042fb93a5cae1b741085cdbf73e839638fee316044571"}',0,'BLOCK_PARSED',NULL,'0290c192c56900b2a0e7c431a077bc5fd1a0064b509663ea896aef0c2ee65a6f');
+INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39a2fb10630359166e08a82d4e2693b3b3b15b5600fad02c57093826436cf0b9');
+INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"2e40d398c2eb131e195a667f1b2b5e8de29e80423a2d0dd3935fad6dd7cc919c","messages_hash":"892dac54a3b4e00c51537282af26b89399d21ec8a9afcf74fb08bf3eda858a8a","transaction_count":0,"txlist_hash":"18e3230ce4fdaca025887c118a2f2fa6bcbe81fba5c968301a90b43e27f2c7aa"}',0,'BLOCK_PARSED',NULL,'52b593cab379c4b9828aee7acd71f30b4470ae9e97be363f24f60dc9823fb35a');
+INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c48825258baa9154e5e01939b8b569f45723a5cc1b615dc5a81764b52e547fa');
+INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"763d3d949dc16a797f5b8a2f5a27fd34b4636fa3dbf33eabed5db048e1a848b4","messages_hash":"8b5a82627b0b7c25ac15f51a92fa81a56b4376432ab534d06b7c6de998ea4078","transaction_count":0,"txlist_hash":"7b10cd9561d4a33c7771570925e5a9a879a501ac503004eccc5e60074d2dedab"}',0,'BLOCK_PARSED',NULL,'f7da1230a91d152665efd6f90acc7218336da60e32773ed9c6b599c64616f2e0');
+INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94c5f16a25c09005a99b8542f383f0531b07db58e8dfdf83f775f559d803172a');
+INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"d9b9d6a52f757604a5652aac64c343a47a928160790963521ce33d125486cb0b","messages_hash":"e7829389ce15ba35b7933839e9778132fb84f4e096aec8bfe04c81afbc256d19","transaction_count":0,"txlist_hash":"deda10c92f292c186698b9b4d371727688a9c0ea194963464fd1c5b429fbbff1"}',0,'BLOCK_PARSED',NULL,'0c2351e9635977c9693bb9464456c50df6b3389f6344207b87d4ec6bdcba7dc0');
+INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'daa7c53daf241743dc00665403546227fefc495b13e08f0c2d970b1d9b325a3b');
+INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"9c1a650b6029cc982e9e617b619da6d88878453ccea68ff82047581d5cc74e9c","messages_hash":"c9bda4cef6bede46f37e9016c462a01a75fbcc0a81239cc5937b8d11b429250d","transaction_count":0,"txlist_hash":"26e4cfa82a9ed189ffafa596c7022cab40002c8099b48814f3e7fbc48b01b0fa"}',0,'BLOCK_PARSED',NULL,'2cf258e93355e7d967f543045473ab5f6d7cc49a48b57a05b948c66ac83746a5');
+INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8468a8eb0444a23327e0b0b7fea8f44daf906e93f0df21dc0d075ddded60c500');
+INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"32d648a0d0b99f6826376e8badb278c06f95a0ab781cd873e2f7f55219953b01","messages_hash":"d3dd198acd7b8a59dec75034fa800d231eb43b0ec02c3a05b35b7fca372366a6","transaction_count":0,"txlist_hash":"f10d714905f2e84a57e0c792ebf0dd67158f19f352176a571278dce49aaf778b"}',0,'BLOCK_PARSED',NULL,'f31a518f6c20863ba5aafad06ecf35ef23cbd61f1a6ebfcfb2aa3e33dbbfed1b');
+INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97a28b337f607a45b915b80b389b1ee0fcfa0729aeae33789a6241e6f75b7f1e');
+INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"67cd615e67e397cae8195fc8753403563e9100ecd623b2796a46b137ca553be2","messages_hash":"0b7efc03ac30e551e385334d021b23c632ce7d89a19d7d44bda65fc353e77f07","transaction_count":0,"txlist_hash":"d0c0ffcafa826685b59ef036c4315e79cc688ac1ee43097143debf445f6e638b"}',0,'BLOCK_PARSED',NULL,'244f617fd3d7cf64336cd79f468f29de6a3405e7491aa73bcfd73b8f0d72e7c2');
+INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04a76f786203f3c920c5edeb8983cb86f0fe812d14cd284bebf8b6de22c4bac');
+INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"d636f3831cd35437271557e6299024d70c4be6b9a685a4fed61e7d67e61540dd","messages_hash":"d3a4beef978d32248d6ae339d8cce33ebb5bd3168fb9b68a4ba2739021bbe5e5","transaction_count":0,"txlist_hash":"fb11ef8957cdc599585372679a59440580acb37458ed3da092b22974a4857bb6"}',0,'BLOCK_PARSED',NULL,'481df9c5d9b720d619397a9f6c8c4ff2b98cf194f58d1e3bd4bc9ada62a6d40f');
+INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'111dc7329f8eec9971f3e158dfce563540658cb3dcd9e49afb3682eaf8d0f47f');
+INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"abf96247f6b99a24e518d89162c23cffc821d5cae5703f5b7c7c4587e34cdf98","messages_hash":"d8d5bd36c915e726bdbe2dc54bdb44eea9ea6303f602b3700ed0e76466ea26d6","transaction_count":0,"txlist_hash":"67d8b52c93c5d07ce1a335ea3572f0015a971effdecf921193cca273553466c1"}',0,'BLOCK_PARSED',NULL,'251c8fc58619edecfa1be70205c9fce3fb7d475aa77ca9276a157a362f95f9b2');
+INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c574aca645174cafca8e190b905d1b980348f867803e0b8601efc2ea772f34c');
+INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"06aeace2e79321c6776dd1098982e71bfc0baadc55470721022db67a03bd4478","messages_hash":"b92bc5b22e71e91261e73a83d4519e63be236cfcfe9348b68c387dead5eb394f","transaction_count":0,"txlist_hash":"2e148e6946d39fee7c6d1b320122beb1689903e929397821a63e612d5216326d"}',0,'BLOCK_PARSED',NULL,'81b9ceb5d13d3ebb77b364a84a57c571ad6d732bc001776b34243a073df521f6');
+INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9bbd6bad48cd73a170e6a53931b291db1bd0bc7149d6c69876b83009d4eef1a');
+INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ba2c7078ee940b14e584459985a5a4785156762135541d40a138c31ff9bfe4fb","messages_hash":"1134bdaddebf9c5382218910e1f0b419cfee0e527ce676fa98e0e06a14c367ac","transaction_count":0,"txlist_hash":"63832ac6186f8a8e8091579221ada474b43c36f465ae25ddae4ead963207150c"}',0,'BLOCK_PARSED',NULL,'72cd410c224b0bff6fda32af69a7504268f80277cfe899cc05e029e439880789');
+INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8325eae15184d757d8b6f5d312f7ff0c77d350e6b537ac24e0671b28b6a39e90');
+INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"af327b161ed9fa8022f3efd81b695d25ad9ae8f250a6d08739a40b0883262045","messages_hash":"da3a0dc1215829eac78f5d767a670170f757f03b6718e1d9a8d3c1632b900de3","transaction_count":0,"txlist_hash":"47bdbc4933d69cd703c277d9a5e156951ef57791f87f92d16b85c15ab3194061"}',0,'BLOCK_PARSED',NULL,'85dc688a9618a285bdaed4936c73ed08588acd9a0b4399b048f4378986c66696');
+INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0543aa66bbe1b219011f0e977a6f5a9f83731a400140e380d154ed21c3c43f81');
+INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"2c4d6568a9c77737c5942fab33613a1ef055ce21b9f0a9b4a42fcdf6e9536a59","messages_hash":"01655101834f1c5a4383e57d422fd3597e2598a231bf693c83402f53ed1eecc9","transaction_count":0,"txlist_hash":"7d57db6fdebb83dc0fbd1746eb328a94403f4a66e7e003593fe90c95fdef3e5c"}',0,'BLOCK_PARSED',NULL,'143ea6f87742ae14fd5ad68d4c5443d45071ff0147fcca039078f245818478d7');
+INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c8257375a2da3ba5cd9fd18764b697f0e4396233853687edc12d56903b05ca0');
+INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"0b8dcdff637e5e60ae045d4c7646bd47e6047fc992860c99dd422477b9a90d74","messages_hash":"be358a0b7e3ee4d406e3ee14b9cd404a8fdb6972555a8598d9cb228ad54e965e","transaction_count":0,"txlist_hash":"61316fca3bd986c2398fa5dd92a8b874f4a64095691626d695e82e3c30849e27"}',0,'BLOCK_PARSED',NULL,'4c05e7ef13c843af69a6b85f172efb8dfb3fbee793f684fa61bd13f40fd949a1');
+INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'082a784ef30d71c3e6131c046afa551d1f83f8f5fc75b2ce6383b168b58c4f28');
+INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"eec6578a8bc1f5766427f4753ded18cb97c53e710f5fff8918bbdadb59678f64","messages_hash":"445b80511aa1c8629c79f60af11be51474e24316a549d98ce14cc8099d771f29","transaction_count":0,"txlist_hash":"bc5cabb9579b79f03b329c0e5e3c8652d8b0eccde9563d838890218bcc8bd932"}',0,'BLOCK_PARSED',NULL,'25a48bde0e5cc9680b041652536ec79e025253ab6e2c2e8680d4ea9c2e514a23');
+INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58b7b2f14b281c75c9fa52c38a505f6498d38a0bf07cc737987930f8e4ee8e90');
+INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"a2b2ed6a61f1c9a3d322a050178c6be119b89d1a0795fa9c9d7484ad8edfcecd","messages_hash":"b7d972e703eac857c7b4f2bb8bb5f36d3d6d61e2183015c6d5063658f09d4a3c","transaction_count":0,"txlist_hash":"86e50073092182d9a5b37cd2453dd5a7a1af175ad0a1150492d5001510b05e6e"}',0,'BLOCK_PARSED',NULL,'acba1fa77654cb1e0b192eada23b2f5e2af12d4ed275cef8751ef2e4579042e4');
+INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffbd856a18916ad215a2ee1e7fdfdaf71949a548caaef3c91cc820e6a8d0600c');
+INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"02828eaf91883ad16beb5563f9c84cb226269c655a886857b31e5e150a1053ec","messages_hash":"c2da16dd7a9273b89014ec20a155a1d94a37019824b1bf07a60f23e0d98fc291","transaction_count":0,"txlist_hash":"bf59d4fe42c11ab04792ba5c95cfd811a6ddf18e125daebb93695bdd829736c3"}',0,'BLOCK_PARSED',NULL,'a15c500be4bf90db9b8bde2bc295c0807683d48a4099ddf4046fc0098c30edfb');
+INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b56486b292ece6696a2f124ccb88ea716a7f3cc1dc8773e985bdead0e7c4d1a');
+INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"5427b45ed778796c26d0d2ddf73e975856cc9ae081c36762e78d046f6cfc376c","messages_hash":"24b5b1c411dd1205b672a30c52c6202bbf70ec884e3e3d3ea383c557e6028d99","transaction_count":0,"txlist_hash":"ca0801d366e8dc44c01db11f67594bcb3ea3e81a3031cee93d24683b82185461"}',0,'BLOCK_PARSED',NULL,'99cdd8c00a899497c97ff3243b60ab3dde2ea610efa6bbc75b9b0bab84e8dacf');
+INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8867036490e83612801d01870422c916ef956dda9518c495982659227159df9');
+INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"34c2664f81b1bbb53c728636097bc4b7cede67bb318ddcc5e5e6b5735bcc55a7","messages_hash":"84baf6fda414c991518e6ccd0f5a7ab75c8026e5283f9383f10dcb5fa2dcee9b","transaction_count":0,"txlist_hash":"321bd59dc3c2996a1a2a6f74905f89a8db172b3b2b35a2d1cbfc6d06f49d09c9"}',0,'BLOCK_PARSED',NULL,'b7abe3549a56b255a146d1cc37d61a643d6ddbdd8c4f03645ac74ff346e8dab5');
+INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95a15ab41733d036908a9598de50b0447b86776abd457ad55f43a6ffbfd76e3a');
+INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"14615dfa6194665d43cf2f495b8f65fb9efa04c2e90885172d229ad4a9dd2358","messages_hash":"2e0a9f989a77873aa89e50cd308c8772bf827c6457d596ce10718374dcc0771d","transaction_count":0,"txlist_hash":"3ef6f8bdf30073f297852db2b7036374e3d2c1e91b0d087cb2c6c88e400de110"}',0,'BLOCK_PARSED',NULL,'0900a55e9fe54633bd09498ad347e3cf7c0327b35eb17094b3a4625918246788');
+INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c5a613def3433a0d21094667fe2107206321f4a086fe1cffa0a507a3d7b512a');
+INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"fc0f077548225d481384a1aba2d91ed4ec8b2df0f0a57ab603305c615672b25f","messages_hash":"7d3ff97e27c84b8070f94368ec21ce817e2e8724f3ce9ed0e912579485760812","transaction_count":0,"txlist_hash":"0788356af4b45cc44c143c457d069e64d54aa12703f8c376cf3b98827052c173"}',0,'BLOCK_PARSED',NULL,'d864c4be28185e728553c8ac54554e5fd2664b1b5845525e07dc219a23f06521');
+INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9abd2829929929a64a234fa9f3ed4063b8e40e207b54c7cb66eb61d4ca6f403');
+INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"5749263295014a597071acf2293fcd185d02a6a7b3a96df859aae3bf146b276e","messages_hash":"17fc977fc701a764e28139fdf1e0094c2409da1b483a07b2cecdabc66d1bbbb9","transaction_count":0,"txlist_hash":"02938682157ea8b10c49e9d87ed444c1303a952a00f6acfe33a1661e84868cc8"}',0,'BLOCK_PARSED',NULL,'cd246450f0e8dfba77cba77dbce63236965c2671f2205f48f7dbe576f215bed3');
+INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1569c8bafadedb33bfd7c62d2284a0e6f8c4d4bad143a9d0fd96c24015f9cfef');
+INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"ae369a1ec3e4f2aea602eab8c7ab1181cacd6b8d01582c96c4771fdd7b3de771","messages_hash":"116f33c905cf1981ab7da9781d643891b2c36cc82730c370a7a389c5f1b2e898","transaction_count":0,"txlist_hash":"04aaa17c2a3dacf6c38b16ed63d70aea7b9546dc7e733dd51a3c08248ca13eb1"}',0,'BLOCK_PARSED',NULL,'00aea6459a23909fdc47832c29b5aee1fb08fd274040ab311b6483fd2c5bdc71');
+INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07369fbaefddf3fd2e8d9ac966eaf68c492e12a90ed19481d25f3007431a30c9');
+INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"06a2ac591c418d2b01c74edf2524100afd1140c3933f32120c4cc3180c1de3f0","messages_hash":"98a0547c308e122d7c8af33fd866af798f6834286399f5472a67cc3fe92b3767","transaction_count":0,"txlist_hash":"421eb90f1258261c97512745b3543fee15ae8d17769d523646033851abde9c75"}',0,'BLOCK_PARSED',NULL,'4b1338355e564735d78a7980dee06d591ee94670d0a85032c2f01921a557680d');
+INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab53e8a9b15c7f72ecbc70de835b93d4fae50ebe346fc754a09e652ce5a693b9');
+INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdf0ae4d5d06b8735e3e62f5a76a902fee40742fc760578dae98b43635f2e57a","messages_hash":"6b7cefdfa2550e8d99ed1c5f0baa496e496a47ca5e4dd3f709643c5f4d907a43","transaction_count":0,"txlist_hash":"cbe924452487ba251291d1bf1ec518a7233eda0aa956d002bc2e0933d0057c53"}',0,'BLOCK_PARSED',NULL,'eb1212d4e1bb374cf999efc989162648edcae3f9c5a1154173aea11c7632c0d7');
+INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd88d51ad72b0313b8bf383ec84bb9ae781f3b0f750bda44ad95646e0756245f');
+INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"77d836433add0cf3f7691884ec1607dde9a3996df00128703644527fb096bab5","messages_hash":"a41e690e1bc931a48c6420fec2999266a6088e6b6a6eb6043d045abfd6223860","transaction_count":0,"txlist_hash":"2dad9d43a8612157867a046cc0dbc8939f30c41cc8f527a1e184c93004cca63e"}',0,'BLOCK_PARSED',NULL,'7f76cf9908d537dc921f1fb2bf3c7325a49185527e48a597a9da7c62b45ff68c');
+INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bafcebb70ecced4144f75790dd7097726b6f1ed7ef592a1fbfd38f5c975eb8e5');
+INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"770a0187b5c98725dc32e15a414b9323030f407749fcb0652b1e1f2e4e762e7e","messages_hash":"67c11e93a9c14e402dadc5dfaff7e53e83df98c16c6486d25c6f6255b534916c","transaction_count":0,"txlist_hash":"251e12514d80ad256c13398d257708ad2dfb3b70db674695a8d72d977337ac90"}',0,'BLOCK_PARSED',NULL,'247ebe3420b3d618be3f2f96555f26c4a0c8a0e71a389cd4c1e98fa6437ad808');
+INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a03baae6e6b0fdb7f899e820b56f5b79433e0d0b4e446e8b24dca4ec28a2bb02');
+INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"567e91f9456ecd020fbd2fe940d796ac976981485f870db8cb0bc41d77a0fd0f","messages_hash":"1d47d96274fb003456daf8f428e980a27f74975735c87f37879ed0c5fb717354","transaction_count":0,"txlist_hash":"48924c125c80fbe8887ff318ebbab0edf8629e604eed0561dd48444bc4acdab3"}',0,'BLOCK_PARSED',NULL,'8bd216afd6d322fa101e6fb9318ede564c0241896186256eb81359badaf1d23b');
+INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'47725afe9ee459b3862b12470d2fdfe7726e74c9d34d7dc6e7283c5c2afd373b');
+INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"447ceafb93aeb346eb98d87db46f07f4d1f51ffde3d44adc6056a624bea3b0c3","messages_hash":"d73f9168822ea96d7e310145ff303035693ca29a9be5089dfc77a1c98caa0554","transaction_count":0,"txlist_hash":"213f5672119909ebcda9f987e3bf69dd0404134584b36c56acdd3596a1ea6881"}',0,'BLOCK_PARSED',NULL,'a9ff6ea9616e3fd51d99e7af0937be473872a6e6d9c31ddcff31c7e0342f22aa');
+INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be10985cb2caf8b458ba61e81d41924ab3f97c9e028f2d1b4edb3af35b1e8e6c');
+INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"f510ec6201f4eb850d4f62b399d0d360d0d8cca7e3d955f849ad59a22fba1677","messages_hash":"08d4d7f19122d0e1a8e63fb9d5c2cb883d521a48c51f6234029e630abc1b7397","transaction_count":0,"txlist_hash":"e504e97b361e32b0256aeb1640291eeda547dc564043835013086c87f5e637c2"}',0,'BLOCK_PARSED',NULL,'f11090a9eb20ba6dcf484bd08c4c9e3d08a8329c9df71e87fbaec17f1a7e8844');
+INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcc72cc687d0791fecf5abe4db358945052d25920d414de976cb4c656b6ad6a6');
+INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"1f956e2c07defac832b7c90982c1e7a1192988c4d1e622b54b40b78065deafef","messages_hash":"e58313adb26c4265bdd393efbfe363dcaf1c2c1bd219c55ebcecbd1219c9b152","transaction_count":0,"txlist_hash":"891969418c97f41be742eeb562f39cfe92543c159095f58c5f58c8c2b0274423"}',0,'BLOCK_PARSED',NULL,'05d0f725a42186c61eabe00e0ebb29167a9db3c706f84a56d80567435d5b8f49');
+INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b07369b42a5750a0ab10d45975e40340e4fcff9067b1a8fd2f4a657fc91da64');
+INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"ac4cc3e01feb10ba2211afdff4ec43a4ce13a12e1a90dc6f675c390e6395b1e3","messages_hash":"31c7403032ae032349b6685314b783b829940fd5f843b25e39e5d672689bdb79","transaction_count":0,"txlist_hash":"71e61b2d7aca45ccd7cfb6bda957b18fa076cc16bcbbfb63668e4c4f2749b7f3"}',0,'BLOCK_PARSED',NULL,'538e366218ac2b9183d604025ffa0be1f654e2ec04368639158c295cfe9bb41e');
+INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa1a0a28b1adee4f0db5fb38edc2b08a3b220062853adfc103b6970c085b12de');
+INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0a4bb35bf922a8175ef5559e74084d32caa16f599df84adb5e255de26b92c1c4","messages_hash":"1b2b42ed277c3eccf500db635ee0cedbe6ecd9226db87a8e1ec54b94865652c3","transaction_count":0,"txlist_hash":"e716e04989e254c2ed5b1c4b81026153d5799edb5a676adea5b7efb930940b30"}',0,'BLOCK_PARSED',NULL,'6a52c52316152afd946e7f4d3e72c3399de2bf322d3d8c9fee1ebedc04f1b2a9');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -1418,31 +1435,33 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',0,310005,'BBBB',1000000000,1,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',0,310006,'BBBC',100000,0,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(6,'57b34dae586111eefeecae4d16f6d20d6447efa974b72931f7b2cd0f39890406',0,310005,'BBBB',1000000000,1,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(7,'6163ab5e7282e43a2f07a146d28b4b45c55820ee541881bc98d2592f4e6ba975',0,310006,'BBBC',100000,0,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -1482,14 +1501,14 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(2,'8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',310001,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'valid',0,NULL);
-INSERT INTO sends VALUES(8,'8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',310007,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',310008,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'valid',0,NULL);
-INSERT INTO sends VALUES(24,'72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL);
+INSERT INTO sends VALUES(2,'8968369ff47b1f5f6959aa67aca82d1385f3763e1cac2180d8cf41b44a515a32',310001,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','XCP',50000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(8,'8972d4a117a0c4161ddf2bcdeb3877e0ad4cbf9cb5ce2be3411c69eedc9f718b',310007,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBB',4000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'3f49e685b22a7cd1a4d20bb7ca9a3f1ec4e593bc6e60c67037de2aab8b992391',310008,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',526,'valid',0,NULL,0);
+INSERT INTO sends VALUES(24,'72bd448eb70da9b7554d3b58a1e89356171578c847763af014b25c99e70cbb58',310023,'3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_3','3_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj_3','BBBC',10000,'valid',0,NULL,0);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -1689,15 +1708,15 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -1931,3 +1950,121 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json
index 91ec87c3d0..1322b2b6ce 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.json
@@ -154,5 +154,41 @@
},
{
"issuance": "01000000018fc76d52b1adc5dab066678032986d747c1540236927aed240fbb7eed8e36a07010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0200000000000000003f6a3d8a5dda15fb6f05628a061e72563d9a4ca0016fc6f0cceb9740deac322686d10e0db1cf9e0a5b9b2d71fa57e43c946171e258fc0dd404beb02a3dee6bd4a4ba2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001bf2ccb82da4e8c3b853ab247aded3c64780690601a188bfd5258c06226cebf0a010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000356a338a5dda15fb6f0562d0404c221228d324955736ed8cb0dbeb74577c025ba623aed4fc093711afc5f53d4ad9fb4ccc5e29f705e408a22508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001ce937bb67da0e31649e5cb52723266e61fe02bd92591b0e971ce050b432b4da3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000356a338a5dda15fb6f0562d0565f2e1328d324955736ed8cb0daa7391a31025ba623aed4fc093711afc5f53d4ad9fb4ccc5e29f705e46c892508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairmint": "0100000001fe2ad3a30d76a41f344995b5bf2b756519a8fca912cecd15f70ab88dd742e613010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000186a168a5dda15fb6f0562d1404c221228d324955736ed8cfca5732508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001671f6eb69f64f0ddb42c742fbac0e512aec84e38d382696088e3321ac74928d4010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000386a368a5dda15fb6f0562d0545f2e1328d324955736ed8cb0daa7391a310317ea6caed4fe457b5de389b9710695b700801265bb48a8518a1ebe5a2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001c1d99a9780707a538854e537b6cc24cecdd26fd2ab29f8e9f794bb9684e23098010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000446a428a5dda15fb6f0562d0575f2e1328d324955736ed8cb0daa7391a31025ba36fe29afc093711afc5f7710691fb00cc1229f701a81d8b52aef07b33bb79900d382ca3dcab402508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "010000000181bfb59624d5d2b69aa03f8ebd4a11636ec9e48267101c9b89762e59d84d291b010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03e80300000000000069512103e34ccc12f76f0562d25c5f56615ea15bf6284796c7f5d9a076187a001eea23e92102af98b0447b5de38cf53d4895b700801265b904e41e8a52abf27b33b83590413e210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aee80300000000000069512102f64ccc12f76f0562d2362e576712a211f6664edfc1b098f8235f2e5357b63bc02102fbdbaf076e1debd0aa2f7aa5cb30fc22198b34982dbb629ec04b4f8b05a071f2210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aec1e9e505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000"
+ },
+ {
+ "fairmint": "0100000001e9d0b2ea86c3939041ef81c98e20984c845ca9ed39c0cd06bd9b82310cc4560d020000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba76f19d3e505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000"
+ },
+ {
+ "fairmint": "0100000001d8e1083f44827cf8cdab0d756ee5f26c3eb7123c4adbdce79128cca165394c6f010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba46f71bce505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000"
+ },
+ {
+ "utxo": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef75de321df210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512103d24ccc12f76f0562d27a2f57676e926dc71a7fa3f0cceb97452b4d3227965f5f21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae910a2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "utxo": "010000000183481c3a9f072a47de29d0e0cda162527c3b3fe7fc4d88612013f04dc843229d030000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef741e9273d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102ce4ccc12f76f0562d24f4d2e1522d711f61a7fa3f0cceb97452b4d3227965f9c21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae77d42408000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "issuance": "0100000001ec1559a2f51aca1f954491eb75ce429d2d37a5750deea75cd8b425289d213498010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff02e80300000000000069512102e24ccc12f76f0562d2061e67436e926de4c4a6091bcceb97452b4d31cf965f8221039ea8cc75076d9fb9d0151fd6bf10984b6afb51f65ede10ede02a3cf860d471e521025bc8fb22d87eb72fb5e297803ab9aa3ace5bf38df4e23918b876fd3ea0cdd7b853aec3edba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000"
+ },
+ {
+ "dispenser": "0100000001a133164fa710822944791ada9bf6fc16f9ee93b15d4e4b7a8232a970372ee501010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff0200000000000000002f6a2d8a5dda15fb6f05628a061e6b576e924e19c3d548f0cceb97452b4d5627965f9ea8cc75636d9fb9c5417aa5af30bdd5ba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000"
}
]
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log
index 80d6fe1f92..4a38a98ae5 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log
@@ -168,16 +168,61 @@ Issuance of 100000000 PARENT by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [076ae3d8eeb7
TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
TX Construct - Transaction constructed.
Issuance of 100000000 A95428956661682277 by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf] (valid)
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for FREEFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for PAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+10 FREEFAIRMIN minted for 0 XCP by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for RAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for QAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Transaction constructed.
+Fair minter opened for A160361285792733729 by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Transaction constructed.
+10 A160361285792733729 minted for 100 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns
+TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Transaction constructed.
+20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns
+TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883) [valid]
+TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e) [valid]
+TX Construct - Constructing `MULTISIG` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b.
+TX Construct - Transaction constructed.
+Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid)
+TX Construct - Constructing `OPRETURN` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b.
+TX Construct - Transaction constructed.
+Dispenser opened for TESTDISP at munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b (af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e) [valid]
+Order match cancelled XCP / BTC (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [expired]
+Bet 41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef canceled [expired]
+Bet Expiration 41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef
Checking for conservation of assets.
-XCP has been conserved (6040.3184792 XCP both issued and held)
+XCP has been conserved (6037.818479 XCP both issued and held)
+A160361285792733729 has been conserved (0.0000005 A160361285792733729 both issued and held)
A95428956661682277 has been conserved (1.0 A95428956661682277 both issued and held)
CALLABLE has been conserved (0.00001 CALLABLE both issued and held)
DIVIDEND has been conserved (0.000001 DIVIDEND both issued and held)
DIVISIBLE has been conserved (1000.0 DIVISIBLE both issued and held)
+FREEFAIRMIN has been conserved (0.0000001 FREEFAIRMIN both issued and held)
LOCKED has been conserved (0.00001 LOCKED both issued and held)
LOCKEDPREV has been conserved (0.00001 LOCKEDPREV both issued and held)
MAXI has been conserved (92233720368.54775807 MAXI both issued and held)
NODIVISIBLE has been conserved (1000 NODIVISIBLE both issued and held)
+PAIDFAIRMIN has been conserved (0.0 PAIDFAIRMIN both issued and held)
PARENT has been conserved (1.0 PARENT both issued and held)
PAYTOSCRIPT has been conserved (1000 PAYTOSCRIPT both issued and held)
+QAIDFAIRMIN has been conserved (0.0000002 QAIDFAIRMIN both issued and held)
+RAIDFAIRMIN has been conserved (0.0000002 RAIDFAIRMIN both issued and held)
+TESTDISP has been conserved (1000 TESTDISP both issued and held)
All assets have been conserved.
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql
index 30bcfd9af1..e80735ce3d 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql
@@ -19,508 +19,711 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4','f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67','9e7dd13f1ecb4ec6481076dc9bb5fda1bdb9103747455f9de9ab516748201ef0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57','ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e','73d038390ff24d64df88c69d45b46bbc90f6b77f68cbbe2081dbe1e556a65e5e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c','b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25','a180177bd180e7945ff4ce61b48c12cb0fd21535f71e943ffc25ff67a770e0f0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2','b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06','424e7f569243bc71c70002dce988e93e6b19cfb7f859c2a5195533147d099d87',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129','3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387','e47e38f99b22b4e486fc05ee95352ec049c4d7e9e4b67082cadc62e928a2a9e7',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa','2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af','b5346d07ec8d18e36cbabc930ea2dc452d5fc26b12af0d060f7fb7ff46b8f99d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0','a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e','2490d17814a7fac90af178d960f9e277e98bf005b8d3f076bc7c5d58634fc271',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68','ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af','8147e6b42edd71153d880649a4b7b75c3e2fc59f122de054ebacf5204abee406',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4','d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5','d573b3b22e23c8e7ced1388219033e4b3a1c7711944acfb2926abfdbdd63b44b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea','173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2','54c64b7338e79af0bc6b238eb91692ac0331345cbd6278ef27aa3f6a7351e35e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1','7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604','895d6cc5aa14f7618cc66b2593b43d0223387fd11f1b2b017c9f22140613afcc',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589','86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc','9603465a786c9b927cdf36078b09eed3481d863a390eb52cf617fab895f6be65',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a','5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7','f064f5cc3b48464bef3b6aa9b77a01adf3fb99168888a5615a369d1bcf125ec2',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8','1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7','9c164d38483ae1923ddc825d301d86d8a71548f2a1edcfad8311e4111cc3e34a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e','d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180','81a62b796cd9dbf6eaecf4053b5896e384cf08135dd7aef545c48feadfbd6936',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88','b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b','ea46fd7c1ff0ff2b73dc503b3ba507ab43442ffac120f56b5fd0803d27db4b9c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710','6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6','32d216ca6a80cb867f8963ab1ddde2bd07a969e095d67c80aecd0950a01a6218',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad','223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80','720dfe78fccdb0831b951f79905c945a3c7abb6f13c3e258e7c3b8b7ddbfae36',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce','9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d','260724f92886f32a80da2705559eda171d2bd55724a534c72740e05b348c1874',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8','88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e','10830661175f7d2bf48585647709d277e5a895b536f58f83672c14d5026992e8',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b','087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621','dd333107fc51c883a23785c8e2176bc01fc1bf8d52ff8d37ee925e9991b03a7a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1','e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27','45bb0c5dd432a2d7313fbf6185637260877da537b18334604280a29539e73205',NULL,NULL,0);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445','e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54','0b5b6279634c98137b3ebd37b0e31af63b183c0f8ae6942df3aec9e0b6ef725f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de','e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5','41612e674a216f80e46263c28770962c5cacf632df3151fee409c0f9eef3a498',NULL,NULL,0);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db','2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e','5cc0e229526c00f288c81848c45d12cc6a24fc0ba84e8d78041d84b8e28fbf88',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c','ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f','cc0a82636125f077fd262e62ce5e60bd457154376ba685a771a4b92388324420',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7','21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc','33266041a43b151330c149d5536ca098c595054d54d88c2a06bfb257f64c4c06',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3','9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633','df932138bd7a19f61e98148cbc5ef645be2d4e05674258fb5f1659bc0be276ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5','55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4','647074e7d5c71b584b7661d02f6f5cac0ea9a0a9fd13ae78d4d2bf4c76793d2d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf','3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2','bfe4c7d60e0cca63ba44a61e12c48e2d840faf4a0aa92ba197a9d4fb17f7ddcc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1','c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a','96e13c2a5517d1740fdd2dd5c805a13a37104bc0470eebf6ab1ee5f6edc49343',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740','4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af','92abe74beca9968adb2f2952a4eb710fefe4df33f4cf2ea0319a0d36c93b8bec',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea','2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb','49f3542309f554440ef13516ddc8e88ae079b92a2c7c8eb97765a6ed6ac6cd10',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261','d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776','ceb14a6637c8a5764c7f33049973a6101daa056d265b46c248c3b8363c919c6c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9','826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f','4ca5dd8e74223684d3d8c28a79b4e872787788fcae088ab3e3066788ffca65af',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26','f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9','b500c7812d872ff80b668ed88d7a8898df99b0a2ef8d4ba16b85597fa3e1cd0e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed','ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9','1c2819e818ad5ef4ef1d5eb2b9e7630930a559a1cffa880ad0d34fc482b4063d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b','aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b','b39a9f69fbe9c498602609f3c6bf9bb18e6b97f83519c743afbc14e99d9cb95a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11','46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc','49205a5e8db239c4c785868b103864f8727376c7188a58544537cdb035ce153f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d','23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c','b4d3737b40df8aecdb8f755b92db906b8f215641fd79326bb4700d1f662b2f36',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943','163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1','d5348f656d30e6e4b55706ba5a4a6dfdf262d8ed36d57c5f2fc71f8766d72af6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483','a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed','440373118703e7f53afd682abe5514d489a78722a600c1067430e7fec5f5fab0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d','52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab','7611f3db3529dd5fbd5cf9a5ca7affc454536e57455b1b0ea043751c9437a89c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194','1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608','110ad00303e1a01d59989b5ab6e4f166edff24c1a49e06b41cba8d56778e844e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3','ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e','f7708c99c134b071aa3981d012c773e12738ece583c1b2b2908abc6a31556ea9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1','3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac','15f23755cf1bc0aff99c1a9ed38462d951ed3ea24168c18786d71207390ca4c1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff','becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c','5796f08f5f53035af580104f79cebd606ff66c38b88361325289010a7a470268',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3','6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634','645ba6137d35e81be31cf45092ab0838b241755dd9d33aec134c20c08cd6b091',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582','67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe','98854c5467b3003c63ec7e208c6c8282f461bb8a9a65e2dd39927a09b44a108a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be','ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c','7524187fdd1244a0d1e4ea4ab1c5cdf5fdd2e1582e30a0d5b7af81ca0805ab76',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d','720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88','0b5471a5d2323a894a74d6332822f0f216a0745089ac58a694b1c61a4094454f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5','656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4','ebed9381df6057bd322c0652f404116bcc77e4a0c6acf142d5faec47d4baab45',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7','3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be','95629a91ab0bd8a87878f7f65e9d02d6114e7e6ca7b0a0fcb36aacd89f0eeae9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c','67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609','80cb6a5ce7cc7a796965d8351977fed0a4655f702f72c3fec64ec6dc92d23f13',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108','c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690','d8dfbd478fa699dc45d2432bbb29ce342b54fb22abf175d13bb6da5c2d3abcf3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1','5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213','8797bf8b7fa1c772c7c44e3301c80e0f723de397db4b8a2f809c096609242cf3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba','1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31','8e16d14f35b8d9caa018a8a40be0d0850c5ae513906d5b4638c692a6b764909a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e','2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029','930ff03b64e3b4d399933ba76354b1d9291112c0593dba85d763c8300db1913f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d','cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4','0fbc130a453f3284eb9ec9c847ffbf5ff216ef3bffc06037190267cc2025e835',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541','12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724','fef609d5eaabd31efa0317a33730438569163fbab3fc09b9eff59a7b555fc4a5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17','40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6','c29369e9d69fcd23979ef58b8cfabc2d6041efe31c810e33bd62b46c8d7866e8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c','4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de','38aef8af21f94ace651d152fbadb529721e3cc64959566388d348d249b226d68',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a','3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079','e0764773525602d47d332abe4c68dd8c32d8c4585fe47587ecd218a7bc49ebc6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb','b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432','c20c09edd2f2235e7287d0439fe2c6c46abfe7ea5a04fa35260840400f54b201',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e','e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39','cbc39bca2b7f961cd5c661f187d4dfa1b5dcb55eba9dec87327cea7eadbbe663',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958','9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f','24ca6fdcbb7bdd7358b565ac84d2f14c2314fed7857544359d0c850996e6b151',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882','5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e','9d96fefa3d3e1d197e765fcaf64952ec79b419ced4edf858fed794419153b848',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d','764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9','bd447b29f603c6d56257ce8a559c137dfe2fdad10acdacce2bb003e391655225',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c','866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85','61dfcc035dbabe08298144762a6ab94589e14668d412ea20a79a0070437fb202',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658','9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531','0eae6329012b77e96a46de6c909ecdfd0887599361884a84a9218aa70665be21',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0','03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655','4419538295a5c394523a396ad0cef24f72972618b2108e4cd084f0bbbf6a7cd6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17','9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f','6a299b36e4ccfd1e32f81f91009e367cacc30aedaccbcefbd0273e351b94305f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee','33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8','180ff6f6092c485217d79b3c5510f9d8e0664d09c882fd164ae3a49cb8a6a356',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f','7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45','0e4b56334021fa1fb190d62b5c33fd7f37c126d28ef7a61a80d84eb1b7f833e5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e','1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2','ec24c8cf2685cb4750e7e3da65223b72da2e8afff49e12f36b795105d7dd89c9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8','a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97','2178b64331b1afaf3a8d650a93f6173ab0729b9d776b5f4c552970e79db18a0f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc','05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641','29783a12523c7d590f0c9aa3b71f221de0359f61a368924800b80919084823a2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2','6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71','821a8fad56889c6609d97cdd7e6bc8b6ecc68d54318986551c747ac45e22cd54',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5','d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a','c765bfd546685684c2bfacdbbb248478a115f88dda12b4df64efb0b336362540',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815','d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c','b38c60aa1982b330713c16d5572143e5970e4b0273ef5461473e237be5133a8b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde','f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f','059af64961a1fef76aafd5d22aedd13466299a9727bd9b21072794674b02c140',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa','9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366','f6134380063f36dde912c04787580d3c40a8c8393a595178165f0ff57b5ad90b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd','c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1','21d4d5920b914ea36e3c7065dd7f0af4b294454030688c44e1a011835ef8a49b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882','21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75','b3e7328b23a6af5e3df01bb9bea68d2a8445820c50c2adf3b13bf79c3c4f9d54',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14','feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13','3101e4813e73498cef2ec786023347dc13fb29aaf1407bbfee16d04f86ff6ac1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92','277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501','a10a734ce80faabca0177b12746f0483692fd13256d7d75af28e615b2324e682',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a','ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef','54ccdfdb8690395f13bf11d70244d69052acdb3f9948e8238c0d4bede54c899b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3','3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc','96a8a5d4606f2e77f429e6ae8f54576e51e1159969612a14739e69e4121e0fb1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64','4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7','20fbc6981fcb9ff9aea35590a435ac2c7d1513bb4a038a8f62602632b6bee622',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523','255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b','3e376fad3e36d13f5c50f8bac968fba251f8192e0661df0dec9266d0de986838',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0','7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d','c61c461272d69c03c027a144418a877a6122dba7ba9f2376000d53656037ce75',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc','1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea','48792e4348415165ef24cbfadfe83934dfd900c8f2a0bf47251604ad1f9819b5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40','889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029','44a37e3c8140c5d6cc507bae93571af20c9cf4b48e8404edfa4e55c8e5e82931',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95','dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99','b0166f95f4cf48193827d3b5423889419477c07e9a041c41b72df8229e46adee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d','625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047','34ba529a171f062f8e18bd65ef967158d21a63f907c90ff79f00381c1d9836e9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571','b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959','108e625c8ae24f372335196ec1678080f2f5d211a7e47de3eb1da4817dfecd5e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03','8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158','d68fba6521389577f6303af99b28050b6cbceb05908bd85de1dacd982537db4c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6','1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a','3f04ffa37371d7689609be3f5e65a6986553bf2e0c9db51e8ac815dbf61b01df',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de','7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1','cc3e49edd68887f1f34db7c81e3125f9f76ba0c45aae70a5a4e4f7f8a85baf4d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d','c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6','274d30a0808c4740b2fad528bf374e4b65e3bdfa17247e7e1c924bda16be9794',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e','793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388','33ba6fe2f691128379ebff991b818614c4665fd09e4c54b61619d2d2ed54c0ce',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b','7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28','f3689c9c1663d8e96f34d9e34442f1db962b00725c617592ebad5a5b1338cae4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b','7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd','c3f16c9c50b71969ea4e21819eaf214b1e40316e91af4a3f3964a91b35808e6b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae','ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28','d57ce83db250acc25efe3e0193a3ae93aa5e521eaf0063a745f538e82e0b6c3d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e','66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6','b04d2d8cf335c953fa24a5e17662783dcc80794e937589a0dded13744a9c69ba',NULL,NULL,1);
-INSERT INTO blocks VALUES(310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0','656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209','2e336a7a4575cfab7289b78ebf57f67f09e3efa3a4bdeb2c9b9397deb3701c77',NULL,NULL,1);
-INSERT INTO blocks VALUES(310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499','6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576','79e48332abdd115517204c76fc873417fc8a3da56e255bade91e6f8842c4f192',NULL,NULL,1);
-INSERT INTO blocks VALUES(310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783','b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a','110dd70ced22e1a1c91201c1c1ce0afc628885b2f2b3c785624b851983a71dc6',NULL,NULL,1);
-INSERT INTO blocks VALUES(310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518','d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae','fdaa97987f607fff62cd0459e4d261ba764a7ed75ea6ab1afb3ece06277216dd',NULL,NULL,1);
-INSERT INTO blocks VALUES(310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059','cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61','bf0b49028ffbb1d91272975e819dd6ecba7847dafe7def099bb7119e99ee357b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6','d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad','9bb53822ba08d1625a3eacd2e25ddb87d578d63c081b96395b39a13322c581b4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75','9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808','65d2ccd2975d2480ed63306ab9054ffdbb76fc442ed4c7dad2aac7428d2506e4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9','4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b','8600ea90c90218d55e9aec3aedcfb652432fc0f8c2bfde19ca62f768d1653101',NULL,NULL,1);
-INSERT INTO blocks VALUES(310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989','baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c','aaf7654cbbdd946eeec20b756019f62d012569d28e633380b50e501ea11d37d9',NULL,NULL,1);
-INSERT INTO blocks VALUES(310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd','22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601','1dce35ef471c90ab925590429d3bc5d7c2987aedf5acc0ea1b3be46e88f0158e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc','cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41','2d466dd469c4531675c2190d0e4d9fb2daad5b33426b3d22058ed9770cdae63f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25','a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6','c94709a97d76eda00339d8b9313c132c7124fedcbb4f13f7fc65521eec5fd63e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310117,'978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71',310117000,'0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e','1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f','d882f745bd8f7edc17b13d0807c8d3cfccfbd9dd6678913bd354e2fe5334507f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310118,'02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723',310118000,'011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f','7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771','aefb56011c816cb6b5e7a388a109f991957fd957de7ecf9c4f0ea8f7758098db',NULL,NULL,0);
-INSERT INTO blocks VALUES(310119,'6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481',310119000,'a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f','1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca','0bb1e98956bc350cf8101125e6147253e60978ddeef6b931e13c772056153ce6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310120,'2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb',310120000,'e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923','1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6','7b105baade40f901ef31f2f73cd8503ee209f79db870e9bd51502f7260c074f8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310121,'9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7',310121000,'5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b','9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7','124d2805fa3144fd091b2ef1c80ce44f9895f9ec4a44e8c7b48237f1282b1e35',NULL,NULL,0);
-INSERT INTO blocks VALUES(310122,'d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932',310122000,'70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070','a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17','eeac27ff4665134ac9db123eed51a6ebeb9f66b830282684cf14b80fa9ad4018',NULL,NULL,0);
-INSERT INTO blocks VALUES(310123,'be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd',310123000,'3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd','78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338','0d89c488b635238845ad30bdc78ec4191561296f57240b2728a3396900f69949',NULL,NULL,0);
-INSERT INTO blocks VALUES(310124,'0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810',310124000,'9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3','c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3','6df82c4ffb3e630f9abd9b4f4577221f22a669a0bd985620fec81c585f654797',NULL,NULL,0);
-INSERT INTO blocks VALUES(310125,'cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6',310125000,'1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6','3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25','8cb8ff5c4c38c9c0fba5186c78e3c57041831ddc55b169a74995edce686de946',NULL,NULL,0);
-INSERT INTO blocks VALUES(310126,'c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797',310126000,'1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272','7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5','9fd0630d7ebf232470cd1a8c7e051bbcdb752b88598aa90bec029fb7f118a128',NULL,NULL,0);
-INSERT INTO blocks VALUES(310127,'c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904',310127000,'094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb','0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478','fc7ec51fc69f7284dbd6df219ff906253036d1696f5518d346fe5a1997bbd05c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310128,'990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079',310128000,'28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19','aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786','c726eba0cec90d465a44ede024b1f8dc58063711870de6e82d1424ffa23f4081',NULL,NULL,0);
-INSERT INTO blocks VALUES(310129,'fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc',310129000,'61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c','ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b','f0bfe24dec959d07b2b68a79c3c85caf68911d384ef64b4244b61fb86aa21eb3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310130,'d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721',310130000,'1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781','bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71','c9d741a97b59ad670227903d4a4b5f63048712721e6ee4a59e6593e3a06a4514',NULL,NULL,0);
-INSERT INTO blocks VALUES(310131,'d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d',310131000,'aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6','69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb','eb64baddde8b82bc629227449b9f5ac4cc4adab4b387ad9a2812591de19d6703',NULL,NULL,0);
-INSERT INTO blocks VALUES(310132,'1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818',310132000,'a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe','352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7','ff03eb6a337397b372d03eed981a03eb5f3f9565f66bb943bc1e9fb931a3a298',NULL,NULL,0);
-INSERT INTO blocks VALUES(310133,'1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51',310133000,'626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef','1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a','5fe7e9c01410af91855efed43e8f9a44d9eb0ef53d2fe80c1d88581285c86df0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310134,'1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398',310134000,'4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55','855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440','33874759d6fdcf012b2fc2b57d21fa0226cb3e18d14194500f282f3b11280f76',NULL,NULL,0);
-INSERT INTO blocks VALUES(310135,'d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f',310135000,'e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a','80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0','359ed3a20d949167d5d711db7a275c8e9a410f5edcc76a0bc1e277d1eb563216',NULL,NULL,0);
-INSERT INTO blocks VALUES(310136,'6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5',310136000,'93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a','5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1','d8091e8da964d953066d4973a4212788f9ca3b47788454f693a9a9557d8370f0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310137,'7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900',310137000,'8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585','d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6','2cd10f30db70185a0aa3a4e3b085a99f9b68ddedea747d25a09fe43085873fd7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310138,'d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5',310138000,'4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6','645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948','0eb29408989eb9c5a38a5a2ef7808a99f649cd05a3d641f6e2d652732884d6d7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310139,'b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46',310139000,'2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d','c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c','86088a65b7c10dc88153276f05db07d1fb4f6d4ad707c5a4a9875e739782e2cc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310140,'edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb',310140000,'277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624','ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac','5ff093890b48f2b0ad5d1b99f633fccab79c3014a7f47729399d07e595cdfd45',NULL,NULL,0);
-INSERT INTO blocks VALUES(310141,'b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709',310141000,'f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc','d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f','89b97705896f32061405c10278c072dc4fa495e92c935ba0c57c5d54cf4473bb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310142,'a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143',310142000,'a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7','0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97','3e036c1c3d33d8075922c286510d7fe6bf687cd7b6b2ca54bc183e36856266c0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310143,'8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f',310143000,'b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea','39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6','02e0bd55a0bda5403762446e66a13753ebaa5a514c1cd66c7f04ef46ef4df738',NULL,NULL,0);
-INSERT INTO blocks VALUES(310144,'879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9',310144000,'1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a','0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b','807eaade814d710f7f74b556d926b294fff13c105e326d6955b02a4bc5d6d29c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310145,'175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e',310145000,'fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264','bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c','170f6971eaafb88ec0895d5d9af3ed34bbb3eee703117b5b0e6cf8d8deafe0f1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310146,'e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184',310146000,'9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84','036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411','e103e1f0ee51b5fa86d61f8b8ddd9b7918e0d047727daa43c66ad3d13d7b3c12',NULL,NULL,0);
-INSERT INTO blocks VALUES(310147,'7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83',310147000,'336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3','184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6','c671dd04015cf20b8cc8fce97e40ed1f31df42f7e42a0989eee0a9b49044554c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310148,'77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e',310148000,'f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612','c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f','35a58ace6733dd96d89ffe8486a3d595754aae5271e3584aabedd6f8cb1076e2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310149,'526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c',310149000,'c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85','8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660','ecb6a27a09df864cd864d610a210593ec26988d4132f30f63c8607b6323e4c22',NULL,NULL,0);
-INSERT INTO blocks VALUES(310150,'cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333',310150000,'88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc','db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1','6c18380805d06f23f130503ad7148ef1a215c0b217199995496a7670aad67c52',NULL,NULL,0);
-INSERT INTO blocks VALUES(310151,'a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330',310151000,'b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25','c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85','86d5f32768df40dbbc112f75dde5f7aef0aa1904a689cce3d24be58fc793bfb6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310152,'89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67',310152000,'3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09','ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88','206690aa73f071c14545eea0cb0c8838abdfbc8ebd64c0fd097cc2e2a254d481',NULL,NULL,0);
-INSERT INTO blocks VALUES(310153,'d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482',310153000,'c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7','6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441','ed1c7beb196128167ad8b9d03f1b9a1b7b5d70cd7add306919cd658bc32f0d87',NULL,NULL,0);
-INSERT INTO blocks VALUES(310154,'ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6',310154000,'b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4','b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f','977e7ff9f1e5f0c1f756e802013a6e72299de42a6e2bafad94b57bfdee7a6632',NULL,NULL,0);
-INSERT INTO blocks VALUES(310155,'cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137',310155000,'27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404','0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3','a171b8e9e9879ede2f4c1fd42173d0b0ae0a07fc4d1e7f2f58ba50855fd986f6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310156,'6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83',310156000,'5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d','ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380','e06a1bce3d693147d3df5c1a5ad3b7b421d526213ced3eec59be44220aa6c2c1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310157,'51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a',310157000,'cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8','9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d','e9ab5031997634f6ad74021f5adf3d5a62388fd55401a584464d7bd1c7edd44c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310158,'749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2',310158000,'6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0','03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4','be1d3efb0c59cb3610c20487d20907179398843322cf4a26681010bc89d3032a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310159,'fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12',310159000,'d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033','c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6','4c81d40dc2e7cbc7e47272cbc8fd00b3b88fc7743ae9127216c8fd3cf0a29440',NULL,NULL,0);
-INSERT INTO blocks VALUES(310160,'163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b',310160000,'2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9','df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e','4091dc7273cdb5d4bd19145a422394d0ce18572cbc6665e32274bff761d04c62',NULL,NULL,0);
-INSERT INTO blocks VALUES(310161,'609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8',310161000,'beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980','e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425','54055d0c951f4ca0806dec96cde66848cbb36f6bc836d96cd98db0ff9e4b38cb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310162,'043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804',310162000,'066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f','bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df','2acaead0979ed14161b7b6665b5431098d5544d1415a8539f20bc27e880790d3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310163,'959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353',310163000,'460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a','d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea','4616d2ff3ac7feec157408f1a40dda3e96b3ecbd1fd7977a5d89c40936b1d188',NULL,NULL,0);
-INSERT INTO blocks VALUES(310164,'781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2',310164000,'19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268','54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3','a86e2d86f493fa42f842b5ae85a42f41a97740d844cdcba66dbe64a7aa48872c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310165,'a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599',310165000,'97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33','0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6','85a9f6ce9e41a035f7077c6f53371fbaf823985fb3e4aa88c8ab3f917b06014e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310166,'a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41',310166000,'edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0','683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8','b45d7ccd18ec37708371b786d993d4f6cd880a42087093d0651432d357acee0c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310167,'ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66',310167000,'e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14','d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b','6cd15a6b0104e8343a928946b3bd0dc4ba7062b599e63576a456f9bcbdad2c64',NULL,NULL,0);
-INSERT INTO blocks VALUES(310168,'a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9',310168000,'267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1','ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797','696d4a61ff5e1174d4f20bdb76941ea081a4d2f3189ea334c4e95224f8c8c8a6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310169,'204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3',310169000,'df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a','3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace','cdfd35fa4c56e13b5d326dd331f4ebf61f85518bbbcbade10dc40b1af4a15431',NULL,NULL,0);
-INSERT INTO blocks VALUES(310170,'b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119',310170000,'3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2','f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd','a771c459fa5e0cc21787d85a9b38e8ec396e77cc95362ddfa73ec9fb454495fc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310171,'b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d',310171000,'e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9','e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d','c31dfeb0e49cd9b9f45143ca853172c4f8d3ee88427c3e98f7cc8dd874355392',NULL,NULL,0);
-INSERT INTO blocks VALUES(310172,'b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055',310172000,'89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103','d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996','7d8b260c7351e40751ff111c6c06d7c8aa885428710b3d1e1f0994c35e2f9643',NULL,NULL,0);
-INSERT INTO blocks VALUES(310173,'f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016',310173000,'35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3','73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef','af128c2ba7c50382bbe8e3b428f19fcd80958bc2e5d4c33be43712d47d435a70',NULL,NULL,0);
-INSERT INTO blocks VALUES(310174,'fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679',310174000,'101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017','71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263','c963441968e83c301e8f29f28765581cc5f14e6623c040c3350dc589eea57da6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310175,'f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333',310175000,'67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c','90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b','dfee8971396dc54217e263b98b1ee284fabc170a53cf0fa2d123a1f9cbd14d64',NULL,NULL,0);
-INSERT INTO blocks VALUES(310176,'67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6',310176000,'a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c','b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1','493da573a8f068a577690df0b951ad995a49bbbdca22029102fa286d1d633269',NULL,NULL,0);
-INSERT INTO blocks VALUES(310177,'6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52',310177000,'bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716','80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092','e54ad17218ff9f1d0ac02978bc5b0ec884a467ccd1417779043860b108dc7e74',NULL,NULL,0);
-INSERT INTO blocks VALUES(310178,'8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816',310178000,'186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e','79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd','bb17de70c734bbc12be97953357cba4c749de77aed7ff5e0a5a7c95e02a48bec',NULL,NULL,0);
-INSERT INTO blocks VALUES(310179,'d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7',310179000,'0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8','3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43','2e03fe798f0a5c1f8dedb60d153f4fbb5c461b6df84a5427c4c5fc568c247632',NULL,NULL,0);
-INSERT INTO blocks VALUES(310180,'f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1',310180000,'13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1','2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b','de94fa7ca96ff9c889cdfda64f41e136ecdec886443ac534d48cab345400fdf0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310181,'bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145',310181000,'81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7','82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599','f62a4c12fb1ef9e3f82035ca00f8b419baa84c536d23f127a552b9c3d9df6e3f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310182,'a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f',310182000,'935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c','1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a','454c2009be61a3954687ce793fe7cb30490d41edd77bd9d62006622440df901d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310183,'85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb',310183000,'268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f','82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293','6a772e172863a0a850489c0ebce5b7c5467d17a50bb1b04f9ba949dba19ca8b6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310184,'042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc',310184000,'64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935','9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb','c5850f7e42e373ad7c980eac188fc4c1d93c1b70fa5113498aa6a50a7e583a95',NULL,NULL,0);
-INSERT INTO blocks VALUES(310185,'bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f',310185000,'8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94','8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3','d67a467f3facea45d03afbe61753a922cd38f8de8c4b23e064a530e2592412aa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310186,'e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707',310186000,'e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090','137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256','de219598994c08d7db8fa07ab2a525349193cf9995b12bdebf550efc116f6d3d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310187,'fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414',310187000,'c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5','cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a','d102dd65505ea26b381ebc87971f3346b7bc5caf341923fe94dcb249d69b4e30',NULL,NULL,0);
-INSERT INTO blocks VALUES(310188,'85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917',310188000,'13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d','2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b','b8c7ce7442aa512c5eb00e3c222fd2ce668afb4ef43d20af4592755faedf27b0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310189,'7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06',310189000,'582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368','ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f','51aa347c9fde3d01458f08a73c430406fd712a905ebc897c477ab43297fb57c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310190,'d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d',310190000,'d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4','48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611','badc62331f35d2d438ef5ac0d918e29d750aae86f1275164354eac7a7e7f5254',NULL,NULL,0);
-INSERT INTO blocks VALUES(310191,'5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139',310191000,'23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca','704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b','88f7d700b8ff35da0dbaf70bc08d827586f42dd7e817ae603c2f81058850c9d1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310192,'31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa',310192000,'cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9','17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672','b3ed38fcef537adc2756596562698c24287abe616870b22853ea834aed2a0bf7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310193,'ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a',310193000,'391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046','d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd','62ffa442b4f5a7835ddc82c0f5b5362aa3c97ecb66b039670ee22893b6891ad9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310194,'d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a',310194000,'9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b','d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d','015c140f5d377fa59b3c9d8b1c572565f35cd73b230f7530d42d7bf3e84cf41f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310195,'0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53',310195000,'705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde','d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0','86c493dd15da412115cf100f1ae5090054ecc5c70899504cd8d28b4341c6b2f4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310196,'280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6',310196000,'59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227','57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80','06521b1a530800f4e086530f29d38e8068690ef94e073c38fe834876aa7f9917',NULL,NULL,0);
-INSERT INTO blocks VALUES(310197,'68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467',310197000,'a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07','58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4','0e8eacaff59da1d2ba48a95aeb66456f4e3bed48ee495cea9ec2e0ffb98db2ba',NULL,NULL,0);
-INSERT INTO blocks VALUES(310198,'30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2',310198000,'ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2','1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a','47e506e747a98d1964596e6c438825affd74e81533b2f48e21eb4e5a90262f55',NULL,NULL,0);
-INSERT INTO blocks VALUES(310199,'494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613',310199000,'e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1','87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599','fe470b47af5b3f99bbbcec04aa4e304ac0b2890d03f6432c9f9a3cb6ac22e474',NULL,NULL,0);
-INSERT INTO blocks VALUES(310200,'d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03',310200000,'fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a','a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54','9eee9c3e3b358fdbfb78813b40b67c9b33bbaf1512e3d7d27f6c05e61d0bf6ea',NULL,NULL,0);
-INSERT INTO blocks VALUES(310201,'8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95',310201000,'7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722','f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f','a22e94319ba0331541ae9446e6313faa1ff5e579294f0a4e73d5a4cbf1368ae2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310202,'95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8',310202000,'084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b','76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113','96cba00eb5b84fe3634ae0c4ab0bc5544b5f9a703f20e0c34c3877aa97769071',NULL,NULL,0);
-INSERT INTO blocks VALUES(310203,'ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8',310203000,'4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5','3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4','36c279295138f4a6da31842ab3a843f35fdc05807920bb9909042562e3f72a83',NULL,NULL,0);
-INSERT INTO blocks VALUES(310204,'18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb',310204000,'9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416','89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6','689909b859f925743226073e922bf8f21ca99caade631f6a1dd49b16dff9fce8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310205,'5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a',310205000,'fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01','1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6','4457523f49ff3994beb0520d8f8c96387bcaec1e3dad5d4e414c0118768e1f67',NULL,NULL,0);
-INSERT INTO blocks VALUES(310206,'0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518',310206000,'5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07','e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8','643bb31e7baa89d28efcee7755e727165c26c6160da6e474bf0361ca45d4c928',NULL,NULL,0);
-INSERT INTO blocks VALUES(310207,'533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585',310207000,'b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34','596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6','7a0ee60726734da2812a9d04529425ae59ac22f6598b536a399f77428e3acb66',NULL,NULL,0);
-INSERT INTO blocks VALUES(310208,'26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44',310208000,'aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102','3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a','66543655288b9354381b07bd124c91433357babb742999fdf19b7c5928ebb9ac',NULL,NULL,0);
-INSERT INTO blocks VALUES(310209,'23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf',310209000,'c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0','56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb','78c91e8e991f4e18fd9b2a200fdbceba6644c5baa7150ab48a55a06378fa2731',NULL,NULL,0);
-INSERT INTO blocks VALUES(310210,'70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0',310210000,'207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f','ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151','b8d234858f912396a71c45ebae9b3a21bace1a8dda0827b9e8a9b82a47cea34d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310211,'4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d',310211000,'dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208','f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9','03209d67b7b17a0027728b8940661ea37594bc07cfc6780033aa44c481f48af6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310212,'6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547',310212000,'32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9','2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8','079f23e8476ed4f50d9aa11b1dbc3ef842c51bc46b622f75c06b06a62388e701',NULL,NULL,0);
-INSERT INTO blocks VALUES(310213,'17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7',310213000,'15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36','fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb','36a8bd5e1cd13df3238cc21da9490b545e51981845daccd2d7c0f3e7476e9f69',NULL,NULL,0);
-INSERT INTO blocks VALUES(310214,'4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454',310214000,'dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4','5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f','2e5d68dcda983499b5f291e65d92baaf171cc830e18385d212e6c66e5c8c7da5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310215,'c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7',310215000,'6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed','b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a','0b8f5bc09af225c25136f886347723693fd43c83b4a0602747803579bd4fe100',NULL,NULL,0);
-INSERT INTO blocks VALUES(310216,'6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524',310216000,'a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef','f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148','58b268d9c7d1747b50ef4a6424d3e57365ce66afa440b9b365126437c676d3cc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310217,'0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8',310217000,'419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8','a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce','03e581edbb659df8a0b7a2996d0ce6b97f1f9dff6d10a7d1e9443f5b20836521',NULL,NULL,0);
-INSERT INTO blocks VALUES(310218,'3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9',310218000,'a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173','dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e','9c7ecbd39c0967b83ae38062d7674b5fc87e4330253c78da3d19d7c1d8e12fe2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310219,'60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf',310219000,'7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e','c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384','128105377e3c494bd2ddebf06d4f7b341d300abbae44e42233771cbdb8f6b2f0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310220,'d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef',310220000,'00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240','d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65','f43ab6ee98113914d6107f8950d5f6fb8affc0764a4723aa3da76bb60462ebe6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310221,'cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d',310221000,'2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540','cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800','36833c9b3c6ada300b80182e1b9e78ba57b16030c2350a98ae24f85212a8d1c6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310222,'1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993',310222000,'00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82','6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107','9436a06f0aa4299d6d9dd6eeb34a34763dc1571873ec7d801504482f84e0453f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310223,'af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047',310223000,'41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955','1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7','1dd11ae205fb0e3cd0e40f6b38f828c87984aee77d866a89459b419bc35c8b91',NULL,NULL,0);
-INSERT INTO blocks VALUES(310224,'5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c',310224000,'66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929','1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af','2959b2278c2b1ec51545610be3ffe8558ee5b8d21654226a04e99fbfad17cb5d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310225,'0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c',310225000,'cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95','61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7','efd4e825c77a27f6c0d8b18c54f144166479fb35ad75dbab439122b908f4d0b5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310226,'b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb',310226000,'cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5','2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4','07a2801c71185f1fd03a4372433bc536c79aaf46ed374209a41a1fce2d0e9ff8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310227,'ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552',310227000,'60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c','200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a','d652cb4035428a7d0c6ff73d8f6b3bc341ebcfefbd5129f45d77d9a4c63648a3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310228,'8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b',310228000,'798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb','c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185','03298834b11f7cf4a87e5717022fea72055bc47a6e8d0f62e4a9810f4cb96b82',NULL,NULL,0);
-INSERT INTO blocks VALUES(310229,'d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297',310229000,'becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df','1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45','959fc4e9bdfff5818ca84c2a68c31868f6d3bff79e7dcc5df9da122959332a11',NULL,NULL,0);
-INSERT INTO blocks VALUES(310230,'f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35',310230000,'e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6','d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95','b540fdab5cebac778cf187ae4e15720474ada921e9ceaa1393176bd2a4b8a3ac',NULL,NULL,0);
-INSERT INTO blocks VALUES(310231,'8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb',310231000,'a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59','7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200','c5044aaa4b6c6310e113ab4b8d4a06108a09e57b6f082589aa84210ff6ef74eb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310232,'813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8',310232000,'5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43','721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6','64b6eb076323d0a896145203b0c7c201c2b57511c3d85d7b546395d75ed44a53',NULL,NULL,0);
-INSERT INTO blocks VALUES(310233,'79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6',310233000,'d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914','a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867','d9f33ce31a6349baf6626faf215023a0dcaa381fbbc85519a36790adea83a30c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310234,'662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd',310234000,'0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766','b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a','9174a71d733b2d1bf9fe8554ee25a8f90b8316b6c4bf8f93a290c8bcd96d7482',NULL,NULL,0);
-INSERT INTO blocks VALUES(310235,'66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e',310235000,'5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8','8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd','26bcd4fe3cc5d852b6ee428aa6d8fed7ac29d4870aa3765afb64a7f606f34f98',NULL,NULL,0);
-INSERT INTO blocks VALUES(310236,'d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4',310236000,'c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76','1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db','a90b36102b9796577c3433977637279f790986193da640ed70d16c82dbcb1697',NULL,NULL,0);
-INSERT INTO blocks VALUES(310237,'2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095',310237000,'4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff','2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f','387939cbc42aadf395163de49936ffa63ea379a764238cedc0a52ecb280a8810',NULL,NULL,0);
-INSERT INTO blocks VALUES(310238,'43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55',310238000,'6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7','31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961','12bb025b6e426c682d70a6ae543622d706b596d8d1848c61b0fd456113766738',NULL,NULL,0);
-INSERT INTO blocks VALUES(310239,'065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1',310239000,'1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac','82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e','c501a04f979e29b0f67e8c4b2ab0cd68bcc610b98eba76d64c28e426e9162334',NULL,NULL,0);
-INSERT INTO blocks VALUES(310240,'50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26',310240000,'be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240','bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b','d0dc75e494d5935319620e47fe5aced48a36185547557d7ecdf4105ce3865810',NULL,NULL,0);
-INSERT INTO blocks VALUES(310241,'792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4',310241000,'5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a','e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe','021d83e2bcd0861be9bda8a7c6543a42d5cb2b1cad18986155556c784420bae3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310242,'85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93',310242000,'5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8','a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f','f20bae6583a51b6e9170deca1b35559f7a93dde4f14718fba8d132d3fe0e6322',NULL,NULL,0);
-INSERT INTO blocks VALUES(310243,'a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd',310243000,'ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730','b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0','d9519ac42fde29980b3bc45cb459ee7e430192d8b5780930877da95a6510c14e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310244,'46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df',310244000,'07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80','baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a','004314c5aec356c4085a994e40d6e7af4228da1e3ad37071c58a406c9d79ea21',NULL,NULL,0);
-INSERT INTO blocks VALUES(310245,'59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae',310245000,'d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903','18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e','f256e29cac9ed8fd9084d5ba5c67dcf17a9cfdbf448002b4d23be878f8f6c431',NULL,NULL,0);
-INSERT INTO blocks VALUES(310246,'6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd',310246000,'a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98','a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7','92054cd8a49ac6948cac199791828d3caddd81f90d220fc2da94230f776c98b1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310247,'fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66',310247000,'ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90','39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6','5498543f7056d1878b53eee6bbfbfc859729deff6215caaf7b228b90c2ae0716',NULL,NULL,0);
-INSERT INTO blocks VALUES(310248,'26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275',310248000,'029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2','6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce','a48928b613ea6f3f01d29fdf8a6627a62af3454eeb3fd706201264e41ad28e71',NULL,NULL,0);
-INSERT INTO blocks VALUES(310249,'93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617',310249000,'dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02','2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc','1e5bb681e064d631c8fdaee31e42df684856a141bb47c387a509b4c888a83644',NULL,NULL,0);
-INSERT INTO blocks VALUES(310250,'4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2',310250000,'a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641','5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176','58fe2492038e1061f1da22695198180f159b434c09fe8184abb758bfde7dd8ed',NULL,NULL,0);
-INSERT INTO blocks VALUES(310251,'63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7',310251000,'bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8','6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee','dc119235a0d3348db073f20e5edd73ba7886d07bd928c6593c8b531697a2e8c3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310252,'768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43',310252000,'8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e','2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125','b91883ba3c87f07f7f3075cedc509a164fc69cccb3f7b4955263f0a427fa2555',NULL,NULL,0);
-INSERT INTO blocks VALUES(310253,'bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e',310253000,'2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4','1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f','8c30b4215455a7b5c4fb35ff4b675702192cf87e37cf3a89be543fd46109e8ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310254,'ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0',310254000,'d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547','098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee','12b9c9f7b4c06692d2e1c8ccad20ac1ad2be2bea92cbffd939f4ab8d28374fbe',NULL,NULL,0);
-INSERT INTO blocks VALUES(310255,'cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4',310255000,'5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a','b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4','0ad73b9f29a65b6006fab73449dce8503f1afb74b31cc14d7cbb873df28c48d6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310256,'d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619',310256000,'8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51','fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21','58e3369f4b854d4dcf2b03cebb0d9c22eb74381bf8c4f77e46527f6db4ff9205',NULL,NULL,0);
-INSERT INTO blocks VALUES(310257,'0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34',310257000,'0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913','71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055','35b3a89b3adf80381946f70c49cf74fd946b88eb9d243217623c04c645c6be63',NULL,NULL,0);
-INSERT INTO blocks VALUES(310258,'3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f',310258000,'e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e','0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca','c2f31d665dead39ac346bfc8a6459ef003c35ebe858bf2273cc3a532df345a5a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310259,'e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9',310259000,'03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc','19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1','27744046c69e0650cb385182b7b1518085f196c8c2fb11baf13661d2229f4a9c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310260,'8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd',310260000,'83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe','de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db','d37ff480b33c750eb958bcd17e37f77d69e5ea91ba2cd0fc5bb3368e788691c6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310261,'a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232',310261000,'e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0','58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e','5656eb27fedc0aa95a07805caadab9816feac61e3a7e97cb67cdfebfef2d3714',NULL,NULL,0);
-INSERT INTO blocks VALUES(310262,'e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce',310262000,'c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91','a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d','df2d34002ae7a0a83629c3023a29af627de3da68afd4369cae55737968d1ce5f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310263,'f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2',310263000,'676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8','ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab','a5e5e3d49738214545b92d1afd827fb69c457af8294d891460eb14ef72bbae9e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310264,'ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416',310264000,'258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25','21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd','d06a0daa493d2c5c4a16315a0c4e43447a5cefd995df309dcf6709a2631f1fcf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310265,'41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1',310265000,'72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d','9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c','f1bc84e08951dedc768f03db9aec057ac21d9a3eedbd644018defb10dfdd028c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310266,'1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431',310266000,'b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61','578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e','31341dfe24064025c6a6fe45b2443ca21d461280708f8070481a46a096880844',NULL,NULL,0);
-INSERT INTO blocks VALUES(310267,'c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199',310267000,'ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5','face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c','f153cb888d8bbdf63f4eb45b9cc3b87d6e5ab845eb202deaa48c9d57ab78f23f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310268,'b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af',310268000,'1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1','ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd','f5a8f5bd5e8cae447a96b75fc4b9a0d70e818a9654206cb23ad8d5ea07e92831',NULL,NULL,0);
-INSERT INTO blocks VALUES(310269,'37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e',310269000,'fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67','6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412','c30fd1c2fa3af21d093e353716fc4c1e8cde49854002a411d98e2a0e76211911',NULL,NULL,0);
-INSERT INTO blocks VALUES(310270,'a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d',310270000,'1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785','fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53','bba3fcf5f4baf2b28664137cb7ac723d03999e9a17eebe6e564e15300415e455',NULL,NULL,0);
-INSERT INTO blocks VALUES(310271,'67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b',310271000,'cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17','b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a','2d5aba60683d839b1579c2b69089c00819349fc4f4b6abc5a48f665230f67c91',NULL,NULL,0);
-INSERT INTO blocks VALUES(310272,'6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea',310272000,'2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8','329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35','52e5adc7e30dfef0bcb7404f93c28177366b172a8f5c8713aa69c712f479b5fb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310273,'625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a',310273000,'ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8','f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a','a4460c33d3af7eaf48cff39abbffd1b68bba521b1e1f814f0add5c91b00fdb27',NULL,NULL,0);
-INSERT INTO blocks VALUES(310274,'925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6',310274000,'ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646','bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62','4daa321a8062e35b68c85d63c6c71cba86af28cad34ce1ae7a4a971f34addfcf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310275,'85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9',310275000,'23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163','c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f','3e156c57def9f6dcf24682ed855311663d61079a0422522c3b660d80a4e88430',NULL,NULL,0);
-INSERT INTO blocks VALUES(310276,'ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77',310276000,'a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034','99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec','f42264c5306769fc6bd1bd6f1955900113ec16b625e06d62ff3001b2e6b69707',NULL,NULL,0);
-INSERT INTO blocks VALUES(310277,'c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93',310277000,'0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532','08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3','236d34af3aa5893e9aecc8fb65c1efedc4f4e38874a2b20b933c973da4b4691e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310278,'7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05',310278000,'0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259','6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499','a70fb335be86478d6730dbcbcc8d738e5e3f55608f445b5a033f9f5800951167',NULL,NULL,0);
-INSERT INTO blocks VALUES(310279,'1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f',310279000,'442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c','04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41','7244980c44845ce8bd26268b39a1204f014f6c18f968f57dd2e765193b71dcb2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310280,'bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142',310280000,'38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225','d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca','0b2884e47006914acf505e50ea5272ffeef43e2a646cf0b1c57afc47bf943c5d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310281,'4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f',310281000,'51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc','77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b','ff50d8f5f8dcce283b687ce2aff46b5b1250eb43a11bb5996164444879dffb31',NULL,NULL,0);
-INSERT INTO blocks VALUES(310282,'51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f',310282000,'73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb','889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240','02e7b49dd579b3355aa9063b38bec6e6e749b3cb5882483d3b15886e176f0610',NULL,NULL,0);
-INSERT INTO blocks VALUES(310283,'df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49',310283000,'5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144','1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2','25008bffd8cec7dc2c3ae13ac7c9e868129e3b9203911aa0fa3db14f5fc89a9b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310284,'f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7',310284000,'ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b','c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a','4bb8f22e461d70d953ff1b9f0ced8b1cb143ab1b8dc38bd3a1fe3fc803ccd40a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310285,'8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a',310285000,'3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c','35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed','509ae7a1014f0442bec8eb032d144c64dc8a11e6970d0e32a5ecc4d41fe68760',NULL,NULL,0);
-INSERT INTO blocks VALUES(310286,'d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0',310286000,'4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9','5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311','a7bcd9f0ef4a4deb4603c21e799e2c9418c9a085af6aee86082d3c79a7b4d880',NULL,NULL,0);
-INSERT INTO blocks VALUES(310287,'a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4',310287000,'67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410','791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84','a0940fad3e49fdf8668dcb4c9d773e1a5eca6fd5ef23fcdf4be0ccd1cbbfe405',NULL,NULL,0);
-INSERT INTO blocks VALUES(310288,'2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7',310288000,'600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc','3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65','4dd23e9dbda9e5647e194648a2be3ef8597c5f9c4c0e5c58448d4195599de8c8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310289,'dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75',310289000,'cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158','26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8','b406c7ad8001546298d16bfa1f0e77b3396787dc2324be51ce33e9cae0c6fd5a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310290,'fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370',310290000,'04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f','74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e','dcb7aa5f99cbb70b4d70bf3a360be2c4a5756261a8792856828a6cc1f282a644',NULL,NULL,0);
-INSERT INTO blocks VALUES(310291,'1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2',310291000,'50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917','13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279','0b50391ad17533ea1807be4941305ee75a013a8a5330139e36818f60a9f7d8ef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310292,'9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d',310292000,'9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0','1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56','24b3947f5fbed58b6a9c47ab51ef2e654114be20f84935eaa908c9544e275514',NULL,NULL,0);
-INSERT INTO blocks VALUES(310293,'bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712',310293000,'a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa','2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb','1db78c9abe493106e75d3629d221d046e1d6194e44df8f882be38b521d33ab53',NULL,NULL,0);
-INSERT INTO blocks VALUES(310294,'4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d',310294000,'3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25','36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6','b6d94000a7b7dc674d610bf89faf7c0d43bdc3e8f391f6089ded1557f7f0f286',NULL,NULL,0);
-INSERT INTO blocks VALUES(310295,'66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53',310295000,'bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a','2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da','cc57c30a8b34a715c886a444cedd81ccf2c8be145642f2df64d376d0acf1e1f3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310296,'75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916',310296000,'08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b','517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff','b77e2a71e0857e990c1cfbb021c0a04fb17b64ec9ba48c60d49e3dd8ecc6b0ac',NULL,NULL,0);
-INSERT INTO blocks VALUES(310297,'d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650',310297000,'cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8','85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7','edcb77f23eb738d688c1ea5732a945d76279766c4a1ee1effd190bf3f726c05b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310298,'8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a',310298000,'25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec','0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68','5dc738e17243a84b37564b261267924bce9c6cce7595c74d8808f0cf03432a89',NULL,NULL,0);
-INSERT INTO blocks VALUES(310299,'a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9',310299000,'756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14','299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0','f3c6ab9d0253858a08da5dfe893c8266a32c796eb2e4a6c4f64ebd4263f9250d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310300,'395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2',310300000,'e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d','8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020','40541eb5a9dfd5c5a299a13aac804fb1b87e790891c55b66e9b36b1838dc8dfd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310301,'52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a',310301000,'4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0','676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0','7273cf6a0294acc31eea0e0a9af603500f59a9f115b3c5acd5cca992f185f061',NULL,NULL,0);
-INSERT INTO blocks VALUES(310302,'ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa',310302000,'a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f','ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021','b26574ea33e8a4ca0bd958b82248a9fc9fdfe403aa717a9e0ef31474bcc32e58',NULL,NULL,0);
-INSERT INTO blocks VALUES(310303,'d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca',310303000,'23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49','d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4','8076e1b2af994482a8868a28ad8b5d41a5fbe2ccb349d65404e7c0dc59c6dd2e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310304,'b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c',310304000,'6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3','96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5','3862df7b71134b605229146563a78a5ca695a37c4d6da4b65d21876129c80f1b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310305,'cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b',310305000,'c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1','35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef','3b6505bd17f14fef0f06cf95c6bd3d3d759479674824f738b1c7fecc151b9b44',NULL,NULL,0);
-INSERT INTO blocks VALUES(310306,'a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a',310306000,'fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79','df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997','c052edd088e829c9ac4ae5ca349da7067bfd5dcb8dfec11c4ec1a635d3c8c9e0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310307,'bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c',310307000,'e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee','272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944','3bd3565fc83516439eab9db5ac6d85d8763d16c16bff122cc6e70b5c48246030',NULL,NULL,0);
-INSERT INTO blocks VALUES(310308,'2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30',310308000,'523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5','30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1','4b488ffd95c4d443b431c66d9d4442621cfcb3831e920f8f1d291501e2d3eba9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310309,'ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737',310309000,'effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017','197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c','5b336477cd043069fc94aaa9efeec573f8ea2f1915382602469f2ab6bed6d717',NULL,NULL,0);
-INSERT INTO blocks VALUES(310310,'07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c',310310000,'968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002','b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0','d4b6b0de6209af38f0a99ee7cc1e629039233cba66bbd546aa874c9b5ec949fd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310311,'2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36',310311000,'8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72','86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649','9f34557e605c362c267d01a10c0e1230b96311675cf37ac22fefef3e348f90e6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310312,'8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7',310312000,'8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad','802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86','06ab0afed2be45271b993ebf500b3fca4df8e920441577bcb1842206129b58f2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310313,'7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5',310313000,'1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73','e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51','471dc3888257e83dc49fb7acb75a3d327ccfc572fa4c2a597f68e97ced7b706c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310314,'1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8',310314000,'8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1','17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695','d0edc182ab52e7db475d67edfa4b8d9b4d4bfaa79351ab7c7d0a93cc1e63e465',NULL,NULL,0);
-INSERT INTO blocks VALUES(310315,'bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb',310315000,'24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba','d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654','f96452fa9d526175036d137afc49a849f0839c4338d29815ee3eac02e3df6f91',NULL,NULL,0);
-INSERT INTO blocks VALUES(310316,'ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44',310316000,'a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239','daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84','cf505f0c309fbaecae7d9e525557f8d1501a3a08d66bb8a7abc8d2a8db721add',NULL,NULL,0);
-INSERT INTO blocks VALUES(310317,'aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63',310317000,'bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647','740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153','af696ec589d2b95f36e16039d388a57c38eafee5f3de5596a97f3c823c77f892',NULL,NULL,0);
-INSERT INTO blocks VALUES(310318,'c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03',310318000,'6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee','3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c','ff573059e90f4aade75d1f2d950dcf046ef2c1217b589d0bf2fc9c38c6c42012',NULL,NULL,0);
-INSERT INTO blocks VALUES(310319,'f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71',310319000,'efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8','ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222','73a44e99dcb39be095771e34c74ee4b6a7a0819207807821d621545ca4b6a91f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310320,'fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b',310320000,'8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a','b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b','3abdeb2a4902cacc07440c8f176576963d48190c3e66bce2ccd97cc15d79f752',NULL,NULL,0);
-INSERT INTO blocks VALUES(310321,'f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5',310321000,'21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd','77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a','0d0c1c139a2f9304f5111dab26862dd88c97f061ee9ec716cfdfa8f101cf9f2a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310322,'ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668',310322000,'01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a','3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3','a803ff9c9a83a885463f0f41b774b09c5dad9ef8827579499cd94cc6ff218858',NULL,NULL,0);
-INSERT INTO blocks VALUES(310323,'df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd',310323000,'a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc','2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4','fe10c5d1f27a192d9c72377818077b94ff7fee46c54b8bc52cbbca50743ccb56',NULL,NULL,0);
-INSERT INTO blocks VALUES(310324,'367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826',310324000,'d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6','051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157','c654695d92ff853e15ec8399c1e5fd6b552b8a2e4da3167f792e2325b21fefa0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310325,'60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac',310325000,'7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0','7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251','0d9072553790491007aa13b4d406831506f7f770f8ac7fea5ad42db6b6cd2b68',NULL,NULL,0);
-INSERT INTO blocks VALUES(310326,'d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573',310326000,'ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617','72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa','e0a3b19fce605701f1ce2ed25cde785ddef37c8ae11a1af97f32f89a9faef45b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310327,'9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc',310327000,'8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6','ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739','f2ce43aa9e6374f95a9c5d5b55de0396da45be6575dc5223742c2d70369bd00e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310328,'c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf',310328000,'bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d','42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344','cb79907543638b77555fac7568f2f744f22ce989dc0e7654fd49e132eb7666c8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310329,'67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30',310329000,'4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b','a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a','02047850f93eb91d0d83851054da00ed66f6f6c0fea04d627866f6355be4273c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310330,'b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c',310330000,'4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3','263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436','3d6595616fc996c9fd880bc5b227a7e2d436bf27f6f06ab15cd456c4322fffb6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310331,'52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e',310331000,'c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91','646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6','ba499b294c5cb3d50626ad04df807602e4f3fa955ca6b35795202f437182fd6b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310332,'201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2',310332000,'cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000','8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b','a57bfcc468c3f5d57b1b178ea7cc8c1af55f42867d0ba5d88d4e55b2bc79fe02',NULL,NULL,0);
-INSERT INTO blocks VALUES(310333,'b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82',310333000,'b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b','c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67','7694e14e12a15ab6aa8143f1e9fcaae46b1746f51398d79a4f6be6c3137d6c89',NULL,NULL,0);
-INSERT INTO blocks VALUES(310334,'a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd',310334000,'7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1','24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9','226e74766ac5ef3a15e7d38c05990871f92ef80cddf954d17759d2ad2ea59d02',NULL,NULL,0);
-INSERT INTO blocks VALUES(310335,'23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89',310335000,'47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644','ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec','fe3fa4d5ea7f9f18f6564a1857c7ce23e418e46aa5b63b3365d6cf73ab930e07',NULL,NULL,0);
-INSERT INTO blocks VALUES(310336,'ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199',310336000,'c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594','a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c','1eff4c9279cff57e13e005fad48c92f7f5bd928e4b5a3d7eb102bfd0bccf353a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310337,'055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a',310337000,'a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e','15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353','61eeadd7e8f4c94b41e9f3c67bad3ff29cc1d19f580114b3ca3c2a929596c036',NULL,NULL,0);
-INSERT INTO blocks VALUES(310338,'97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd',310338000,'31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905','ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166','0b46e8c3b291dbc65e5a2ba99739bea530eeed734b7cbd0248c3b0ab06e3d817',NULL,NULL,0);
-INSERT INTO blocks VALUES(310339,'99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052',310339000,'6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220','af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff','5771cf30f52a621216658854604973564d9a3a5b659986d3f5ab042a8a4a2674',NULL,NULL,0);
-INSERT INTO blocks VALUES(310340,'f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0',310340000,'7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f','f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92','9b0c7bd03815d2708a3d6038b3783da0dd241e75b6de17402e89a05ec76e5222',NULL,NULL,0);
-INSERT INTO blocks VALUES(310341,'6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f',310341000,'1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b','5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6','d0116b9fb089a2865d1425244075ef65425ce9e5f0f1b70fe7cf97e5ce6b8f47',NULL,NULL,0);
-INSERT INTO blocks VALUES(310342,'48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7',310342000,'3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92','b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145','2a6b0c1cd6ba6cb2fc95fa6fb0ce6369b7959d73680cfa1a09697626bb48f4bb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310343,'41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11',310343000,'26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2','37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090','af3dd05b7f7751705f9bc0aaf099568289d0cc8a62b80cb8cf957b67ae9ccdc0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310344,'97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977',310344000,'444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908','52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19','071a2af66f03d51498ea342dce8d818d4b2df9e2e5fb7ca9344988ae7676b0e7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310345,'0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65',310345000,'d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e','15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf','54a59c638ed8ad1a8b9d72d0f9afef9616f7ee9c77b1cce9793ec14119c819dc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310346,'0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16',310346000,'3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781','58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d','ed53197fade3b880a6bcd70a41112b83879f5a1b2733dcd044a152f6e06966a1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310347,'f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d',310347000,'6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166','716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd','f9b1e1152ba3fd730692c61dc7b897b74290425148717cb0c7d26ddb2b066764',NULL,NULL,0);
-INSERT INTO blocks VALUES(310348,'c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412',310348000,'668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf','8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293','95410fcf3fc291907a1969f9cdc8646a55fd0979f748332a10a298ed1914b4c7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310349,'ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c',310349000,'32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12','8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01','650e904e246fbaccd362968543bd414fe4e03941d96f0a8c1c7d509fc260b738',NULL,NULL,0);
-INSERT INTO blocks VALUES(310350,'c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d',310350000,'dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05','1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf','33bc524f9a329407e3509a4623d89f6d2c3e00616c4314b86bab1d1b802a4a6c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310351,'656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f',310351000,'89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151','f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524','dbbc0a977c9bf6385e4652c94f97702965df6eae2863730b9930e7aafd8d6c84',NULL,NULL,0);
-INSERT INTO blocks VALUES(310352,'fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50',310352000,'fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb','1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4','b2a4a9c315f66980a2a3525b322adf6ff4a47e60649559bd2e7dffb68b58c29a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310353,'2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8',310353000,'73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1','8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141','a73650310ecd6b53b89787e20449de8e844aa747b6211dcc0b33aa389b3a5d72',NULL,NULL,0);
-INSERT INTO blocks VALUES(310354,'437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0',310354000,'b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324','8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c','b31bc14fc3a9af3b1b3977100c36b1465781bdbe9390ff267afdc51d57caae39',NULL,NULL,0);
-INSERT INTO blocks VALUES(310355,'ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d',310355000,'ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579','8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea','f1f4e9f44d7cec303a3ff0e9014c66741e8463d2e1e2644edff38a7a06ae19d3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310356,'68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4',310356000,'06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f','3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566','cc0cc378fba640609764042b3a71687c5ea7085f9fd3528fc22cb4a0f33c535a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310357,'4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f',310357000,'443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b','af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a','1a17b268e299c081550e6b708d3a67c8e9e5da464a248c07bd7ff2d37521aaf6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310358,'d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6',310358000,'c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f','635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31','8994641c9faf9510eb6dc0cafb53c9ddd941fb6c7f628361bc30a57b70d1c635',NULL,NULL,0);
-INSERT INTO blocks VALUES(310359,'4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f',310359000,'5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7','eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d','f65b2c8ae6adc575a288d4f042f90176bd007350206178e62c024584d6ed287c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310360,'cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0',310360000,'b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658','32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b','0f246fe11fc2b9fc1d2b8f7517473f6a7eb91915d765779783e7898a8bd3d5bc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310361,'636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019',310361000,'fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c','4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3','6fac343e1053a7a48346243c906493f98c138355761619bdc0677a0b3d7c697d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310362,'6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2',310362000,'38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046','2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97','7208036024f6c4e6557619b9625abd7275a52a91f6bf0d62fbd20736138665f4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310363,'a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6',310363000,'82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3','baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d','f2e9a33842fc7f9a1482b1c985a2a6058b8b56535c2a508fcd3e3dba930e46be',NULL,NULL,0);
-INSERT INTO blocks VALUES(310364,'67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9',310364000,'cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4','973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73','6de02c61011ad812328b595e95dfd62a2a21ed94bcf59d87fc87c758a9ccd48e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310365,'b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409',310365000,'49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617','aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932','800333a93bd7fa0dda3e2ba69ae3e54849f6eada89153cb172fd950470da26cf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310366,'a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440',310366000,'687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597','610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8','b33be7191d7e1afb1140f19fd44bb07daf83897c2fa1af45fc75c15bc85307a0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310367,'326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47',310367000,'d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7','531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a','78fd0206e26ec2c77965dec55fa417738c919261b8a436e69574a786d313dc65',NULL,NULL,0);
-INSERT INTO blocks VALUES(310368,'f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006',310368000,'97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba','289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e','a75962c77a91893bfe4fce4d8e9b6e6f85d863b7f2b30060f7eb61b913c8f988',NULL,NULL,0);
-INSERT INTO blocks VALUES(310369,'0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da',310369000,'1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66','a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b','9f6da7f4b88f3abd9705318ff6a1d23ee9bcfb11c16f6de7a1dfc5c160c8f5bc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310370,'9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67',310370000,'578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486','d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58','7e1fc55016a8c1f7d8aeb507891febc3d2ff083d15a8386cb151eeed36126902',NULL,NULL,0);
-INSERT INTO blocks VALUES(310371,'7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154',310371000,'473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492','8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6','0c1a84220c5740d841e1019b76849a49f2760d82afac404c46ac333840724478',NULL,NULL,0);
-INSERT INTO blocks VALUES(310372,'d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d',310372000,'0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c','ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3','c4f885c7acac670739975c95af4f377eecfb635a112cc87b6881d6972cf46374',NULL,NULL,0);
-INSERT INTO blocks VALUES(310373,'c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0',310373000,'48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d','b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea','95024e723544b65f52242f2c4ec5e71264a1aceb8e4a02136a0772be1c7d60fe',NULL,NULL,0);
-INSERT INTO blocks VALUES(310374,'f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e',310374000,'aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4','46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60','015375f1837c56f1921aed0b6297ce0ed5279663bb9bca13ede1392abbf17d81',NULL,NULL,0);
-INSERT INTO blocks VALUES(310375,'da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458',310375000,'2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b','9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb','9f74f2c9fc67e4d2364b85c8d975f11c53dd96dbb33512d3718fa815b5fa070a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310376,'5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc',310376000,'a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82','a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767','53b6ffb8648293f11adb26d10dce89a55dc0b6645c74bac3b8841421a2715476',NULL,NULL,0);
-INSERT INTO blocks VALUES(310377,'f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3',310377000,'e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70','4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579','318599633adc13ffcdc8228c39103c9f25eff9a3b1d1b1fc308d10bb41d7f9f0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310378,'fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce',310378000,'607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6','49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab','bc105cb041223f0dd3c20019e8a7a9aeb127d6fddec1560d606cd5b8af23279c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310379,'d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c',310379000,'9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea','4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44','902cbbb20d2a0003f4c579bfbedb04e787a2a5ef5a8c485a269c215c9628db32',NULL,NULL,0);
-INSERT INTO blocks VALUES(310380,'292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae',310380000,'d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532','77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5','1c8bc40c48e73b0993830fb4073e2f2ae056111b5bd5d22a87831c4b88d32973',NULL,NULL,0);
-INSERT INTO blocks VALUES(310381,'6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38',310381000,'8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a','48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6','910afea0bf4129dd27c06428bafaab6c8c8bbf95ec371466640072a26eb129e5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310382,'0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8',310382000,'809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797','159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f','9cdf0d22a1b690bfb2f542326c53e25e0f1d2b83c434bdc8294ce03959faeba6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310383,'992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508',310383000,'d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903','aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a','4b565f4fd6c07a96002f87eccb7e693fe8d7cc6d8a81cb85cc6b06fb071069c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310384,'d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e',310384000,'fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2','e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111','8e77a1836fdc196b50c2a525208fb5ff587c38486d1dce443a2fb1a7227119f2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310385,'2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28',310385000,'6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef','d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb','7668443002aeaae041ff7859c252f642fd930c4d51a616247a798f47942f97ae',NULL,NULL,0);
-INSERT INTO blocks VALUES(310386,'9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda',310386000,'4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff','1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee','1fd22e6bf448e0771f8c7da5c0829614f5f45612bd6592104c369b001fcfd266',NULL,NULL,0);
-INSERT INTO blocks VALUES(310387,'b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b',310387000,'327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f','d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545','194a4ec47379a92f7ad3ef8b24e797fe33173d2036b687596fa534356c07a672',NULL,NULL,0);
-INSERT INTO blocks VALUES(310388,'41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284',310388000,'6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401','4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e','5de4d26d0f94ec5c143e465eb509d22bbd2016bf9068ffb5e5c6949384a648e1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310389,'3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607',310389000,'89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9','b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce','232a974e8b60494567216ff9b2b8744fbd48c5328d04a63b29c671a8274df924',NULL,NULL,0);
-INSERT INTO blocks VALUES(310390,'f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a',310390000,'2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50','8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86','bf9827228ad31a03a85dacfd3a333afbbfe662611550bd431077abd226c87845',NULL,NULL,0);
-INSERT INTO blocks VALUES(310391,'fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952',310391000,'06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831','b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa','7eb2b6f227e5550b5d0d75c21818c58263a4e86dd6b160b0b1638dda017d3062',NULL,NULL,0);
-INSERT INTO blocks VALUES(310392,'f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d',310392000,'44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149','97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a','3341d9abb5324b460d6a80df5fd0b9c4003b38dffab3a503c27cfd21a3cd60df',NULL,NULL,0);
-INSERT INTO blocks VALUES(310393,'e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308',310393000,'1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f','c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3','7e02c72085143c68bf4ec2f0d7f9cc74a5bdd0bbaf28d7c441401a8990e64fc7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310394,'2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f',310394000,'3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770','e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91','b386b65006170bb4b28bbe1a8235f9fc7104ea3e9e34d51d86eee06326571d99',NULL,NULL,0);
-INSERT INTO blocks VALUES(310395,'19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4',310395000,'872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555','2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5','5f9db4e525ecff94de73118f2cb2ffaf872fe2692c4c35ab221fe89adc13b28d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310396,'aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e',310396000,'b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a','25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6','9e0597d4190ec3e829b62fe7ccc8020109369dbf72ab2b14ea115da386330813',NULL,NULL,0);
-INSERT INTO blocks VALUES(310397,'7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c',310397000,'b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66','e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44','b55fadb9aadb55ad049079769711016434ca942454f5bc39d9f6dc4417b24dab',NULL,NULL,0);
-INSERT INTO blocks VALUES(310398,'55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e',310398000,'9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5','0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9','f56692ed7d8f224a45a3c2563e2441b55626f8845abb6879fd1364cfa442c189',NULL,NULL,0);
-INSERT INTO blocks VALUES(310399,'765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a',310399000,'50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804','82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340','b64321d63d483d9e7c09026e749bf3e9ab67e14d2e6c09363728bfa02c102d09',NULL,NULL,0);
-INSERT INTO blocks VALUES(310400,'925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218',310400000,'349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd','e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18','fee9df29e116470c1165c090931eb1bd7e45795f53350fa87da5042ce529edef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310401,'f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351',310401000,'52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5','6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81','05538970685115a9ddaf41d458a3cce59ecf7b9b6a888729efadce1014e7a899',NULL,NULL,0);
-INSERT INTO blocks VALUES(310402,'1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44',310402000,'8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab','3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33','21985f293ab45f0cc41e2760cd3cd2c3e5fe8788ad16c5008b1853869e574790',NULL,NULL,0);
-INSERT INTO blocks VALUES(310403,'f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c',310403000,'fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827','1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f','e0e319bb5d4189cd952e021faaf0146e2872b62dcf137856d61959adf81724a4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310404,'401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040',310404000,'47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f','10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5','64c5499c7eef627a35277d801a7480aeb4a1e845ae368475da0c2edac597968c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310405,'4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a',310405000,'185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096','8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435','dc4339e5e79750da2e11a43ccf76b285e85e50187e81bf14237084c2a3c414b2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310406,'6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97',310406000,'367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59','0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2','29eac43bd800bb93099e696e1f4cfe1bb7dfbce8316e65459c5e7780d32488c7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310407,'84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e',310407000,'2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1','a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934','b570ec3ca500cb58c1388584391c16e4ff5061ac434b7bcfd8185a121f318207',NULL,NULL,0);
-INSERT INTO blocks VALUES(310408,'4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda',310408000,'fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3','3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426','91b0efd57597544fe96539dbab912ef18d57dc237a42ee5245dd95c59eafd375',NULL,NULL,0);
-INSERT INTO blocks VALUES(310409,'01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba',310409000,'5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837','68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b','7b6bfcc602b144da1f9c12773523114a4a54267eca14f4c8f255a9ce8b2e85c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310410,'247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348',310410000,'93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0','bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008','ca813e8e604e5ac2adf5fa18e2776ddf48ef3b2f34a1471fe71fb80ff73769d1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310411,'26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2',310411000,'8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d','103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55','6be534a6fddd54f6813f4f6247e6c47bb0eddda08e28edbafa132bf8115f390f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310412,'ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20',310412000,'a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634','4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f','a3b69de49ae3569129f96bc994fd0566acfc5cf6ea0c346e7297aea967283636',NULL,NULL,0);
-INSERT INTO blocks VALUES(310413,'21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf',310413000,'768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283','7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38','f8ffa3c414d806885764c093a7a8d362aa78d68751e710cfc89e2e318d59817b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310414,'8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6',310414000,'906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec','807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621','94b9e9f9260a35300ea27a15a0a9493350c2a6db704bc0d4ee0e78a5818cebdd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310415,'dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc',310415000,'d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e','67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3','8146c8dfac8c08e8d1a7fd45ace0cbc146f928616343c082603dea1dbe0375ee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310416,'7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b',310416000,'90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571','1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c','dca1d2b95f7f534e3dea2e7a2019838753efb31c5ced981701f50940f3cf0d26',NULL,NULL,0);
-INSERT INTO blocks VALUES(310417,'2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002',310417000,'19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b','920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5','827cc7c36c8f51da81c980c10003c324cfab26a15e2e7d5698ae323deff752c6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310418,'fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509',310418000,'2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d','290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a','85d72f558c2926cf357f739ea311de5aa840cbe82c35beee417a1520860d7a59',NULL,NULL,0);
-INSERT INTO blocks VALUES(310419,'9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e',310419000,'7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37','d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539','77ebc95e7c6af80280c5d7915ec2b599d700151c4160dbc5a8d5b2a109bbe05c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310420,'138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372',310420000,'3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509','ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25','1107a47b26211af98233b1c5293451ae5bb9349c73368b513ecd337ad2a64d3e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310421,'71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a',310421000,'1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b','01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4','1a47a0616e0d7d4153e694dc20509140325be90d30203a496bff146da7aadaef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310422,'cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158',310422000,'e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4','6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583','a6aca492da14b2a2a5911a1eb9fc2b94007ac2618d18c7141e0c917af583b09d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310423,'6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db',310423000,'ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375','dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92','d52d5b979c57d1fc9b43ab2133ffe65f383646105c22be971c618325a4e295a3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310424,'ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad',310424000,'e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e','bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80','0ba84d839fea22ea4634d16617df4437859805e6ef3fcecbf9319648152c959d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310425,'73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7',310425000,'29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750','2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1','7f501e4f4dad5fc70bb3c56d1378bf4b292259188c56b5d5e53a3c5206c9700a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310426,'9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415',310426000,'9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15','c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289','25fa3569e346dfc876bba62b9d23783c146a543cbdeec50fc6e18332122fb2b7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310427,'d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a',310427000,'f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e','81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95','a139b9e0838217dba78ff8d8503ed732bc0a94ca9a5aa75ab8938c99edee297a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310428,'2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2',310428000,'9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d','002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c','3162a5d50ea03633b8b2d947cc3c52a5df9593e245376bf80756f48e7c1fc2d7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310429,'086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d',310429000,'ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5','4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7','fcea4b97a5fe73cf70e2d0263371e1e00e099bf1cf6ec7db042b3bea048a265c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310430,'870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048',310430000,'33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21','3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2','1b3b759f56da231657bf1c579b3186abe1a28fba2c262a9e872f7ee83aaa4e26',NULL,NULL,0);
-INSERT INTO blocks VALUES(310431,'20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648',310431000,'ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1','67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81','23d2c60e160ae68a16ab609dccdb9b78f1b7d3feeaee2c97c7dedceb13c02eee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310432,'c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93',310432000,'7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f','c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471','51e2478b9f02aba026af477be07173549dba6acf715620c3080db983d5818ae4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310433,'997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725',310433000,'a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279','f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5','9d406a162538d5a0b083ddf1edbc2af4da4772e3dfafeb471757019b03f07860',NULL,NULL,0);
-INSERT INTO blocks VALUES(310434,'61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8',310434000,'e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc','173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7','216849b38a9a9bf850733296d6a14b539b2c2261354e26019a723dd7403ad006',NULL,NULL,0);
-INSERT INTO blocks VALUES(310435,'f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f',310435000,'e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f','a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558','c974a643a40e5993fd5ecf85e7a627f6ed4c7d32da8d2bb27528e99f226d5efa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310436,'a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19',310436000,'82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7','c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05','6c8edec3773ad66f3ef89d20d5190b2c19318ef48bf3752e7f482a7671b006c3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310437,'9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002',310437000,'70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda','809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26','64193ef0680fb09096cf55f02405bf8e2a133b12bd8e1453330143d72700f164',NULL,NULL,0);
-INSERT INTO blocks VALUES(310438,'36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc',310438000,'44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722','2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196','65151ecc33ae384e013535fc1f6cda04494809cdedb5a2cdb891f0f38035bd3f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310439,'4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877',310439000,'66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163','41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d','01d3ab7b218d6bfef3c5b6b6db851297e951cebfdf60b8d4835a44a665e163ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310440,'89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a',310440000,'5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c','c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae','d8b0a242ba1e6003bbdaf0bf2369b95d39c736ab52e66be2a9113941655e698a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310441,'2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15',310441000,'2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6','f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710','18ff66422cca18b8b49392bae2d93ece152f47035c44ef71dda8cbd5a2cd7f96',NULL,NULL,0);
-INSERT INTO blocks VALUES(310442,'50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec',310442000,'a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9','5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9','d7bba011aeaf59c39a79cc90a4d40f11c86d3a44c12b722cdab3f2d32b96b430',NULL,NULL,0);
-INSERT INTO blocks VALUES(310443,'edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a',310443000,'d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5','4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081','fc88f701c65c71e2d90d31fbdc10378ea284a88543543af540b49d970da6e1b3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310444,'68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4',310444000,'ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b','5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293','0e2148899b497e6e1edd0f0401e2b364cd863d67a16b2d2ba01575249fa44e61',NULL,NULL,0);
-INSERT INTO blocks VALUES(310445,'22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef',310445000,'7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc','6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6','a4956f7cb1d7911fe8b00ccee3a92b01db13f0bd2b28ebc66db307c0307c8632',NULL,NULL,0);
-INSERT INTO blocks VALUES(310446,'e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837',310446000,'db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204','e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4','cb0858f2c2d1df41d5fce1f8f312d4f31646e876d82754898046d94166f86988',NULL,NULL,0);
-INSERT INTO blocks VALUES(310447,'3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8',310447000,'5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570','026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0','8e43ba092a6ba21408ff40f8248c07d7eb27a7deac290ea2d4161bf16d1e21c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310448,'6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10',310448000,'ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633','e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb','0423502422f1719bb57b16c22d7155922a4e57dd46c10c67443ce901fabace72',NULL,NULL,0);
-INSERT INTO blocks VALUES(310449,'9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779',310449000,'84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1','4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870','f4202e68bbe225aaf543a2595773a928240b7033f7f920803d1a2281c5e927d8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310450,'2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3',310450000,'0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73','c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e','fd5af776d6a38d7d8789a15aa9d76e6d304a94a4d5ffdd2943345da446b6ea80',NULL,NULL,0);
-INSERT INTO blocks VALUES(310451,'55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296',310451000,'790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f','3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5','7d18be6c377428f660ba384eec7a473fa7e44627922722cd5b3721c81452432d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310452,'016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa',310452000,'30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586','a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c','c5922e3df1d54ca1fceb420ba9ed3538aa432da592b8d11ed98dd577bbfd7973',NULL,NULL,0);
-INSERT INTO blocks VALUES(310453,'610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776',310453000,'56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355','a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1','8e306a9c943a812c6f52865d39d2964eb365fae7b17b0329b4c251f8dacaaea1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310454,'baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9',310454000,'38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654','022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057','f28d86ee84fa30a79a74e3205d45c40c3525c6ea58f9201dc6b5c79fdb526dd3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310455,'31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744',310455000,'b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28','91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a','70550cc53729dedacfd7599305a6ba24dbd67d5349e610da1b3aeedbbdb670e2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310456,'5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa',310456000,'6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15','5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26','48b0c3451909c475fc3273ac84abf136b6b81e2cd6e7022018711a1a8a46abf7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310457,'9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9',310457000,'8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800','061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81','9cb1f06768f23821c73219929b52fb339a5aac8a1f60e905bbe974759b296606',NULL,NULL,0);
-INSERT INTO blocks VALUES(310458,'deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac',310458000,'520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c','b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297','da021b6ace7610144fdb7bbee83fdf5f617508c18b3b28d111e9abb6719d510d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310459,'839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565',310459000,'d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0','21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97','464f88651f885a9c3604bd83352de75252aa4a53b40a94e55cf04cba3860b315',NULL,NULL,0);
-INSERT INTO blocks VALUES(310460,'9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b',310460000,'33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a','2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d','626b13a5e856517c5e8246032184d39a3b70a8d63b9abd7a56d824ec3573e3cb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310461,'8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b',310461000,'22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f','13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0','34e034a1eace1f9cc331b124f20bf9b02b06e9920c860d5258bc846afa59be6d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310462,'16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146',310462000,'74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32','4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f','c842b12fd725cba9dda8fba23d55154a026780bc6af2b0a8193126e35560c1b3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310463,'bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94',310463000,'b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1','7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50','f79b69008dcbe3c3362ee21d19da76108039cb558761d4dcf9e1cdb946bcee10',NULL,NULL,0);
-INSERT INTO blocks VALUES(310464,'91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60',310464000,'00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb','28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52','ad018c29e0f488918c6a134fe27ae637509d72341a28725cf82d74bae0b2fe75',NULL,NULL,0);
-INSERT INTO blocks VALUES(310465,'5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d',310465000,'09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851','7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d','1de15ad33c8b345fe1ad52110c252cdbda801e4fa7fb749dfba0dac2dd773497',NULL,NULL,0);
-INSERT INTO blocks VALUES(310466,'8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc',310466000,'23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd','57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900','39f1eb92ac050aa56760fcdcc747dccdcadc1bc359632b6dd57cecb59d485378',NULL,NULL,0);
-INSERT INTO blocks VALUES(310467,'d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3',310467000,'a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf','fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265','a2889082db39a64176b16ba1a33377440b0f45dfb7d30b36265477d98bd5a95b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310468,'d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891',310468000,'fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3','5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2','91296f5df4dff2e619fbe8e9d6d94a1e3b196062fc936ed6f07f72b95d912b3e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310469,'2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755',310469000,'09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf','38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b','8d17e3a799c3ca2be1da35c1c75644f696843093177564b37431e1e40030c925',NULL,NULL,0);
-INSERT INTO blocks VALUES(310470,'ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921',310470000,'41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a','bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae','758117c9999addb364c604cc287e6dc9e51cbe5e326f2690d70ce87a81407597',NULL,NULL,0);
-INSERT INTO blocks VALUES(310471,'fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739',310471000,'bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274','d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5','b6b19c84723ff33624fbd5154bbf60083c48b83caeea4ceb6667ecce4bd710bb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310472,'57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7',310472000,'2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c','c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13','2f940bbc941844d4dd73837ff7f6c96ce80efcf385e2d44a1ce5f68d545da057',NULL,NULL,0);
-INSERT INTO blocks VALUES(310473,'33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095',310473000,'1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88','ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459','6559100889b99c05398948cc0d47d0cde899cd6ac3006ac5fc344a0847a87940',NULL,NULL,0);
-INSERT INTO blocks VALUES(310474,'312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09',310474000,'5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e','b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48','9666d2dbbeea540ac615ae637bb58d5e2199bf937a396750d2a877fb8f55c75d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310475,'bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb',310475000,'b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8','345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89','a4d05b2dd9af6d5ba804421e6043f4ccf727eec75ee10a002baafaed45bc772d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310476,'3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0',310476000,'070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c','014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41','1e684aaf8da9104bf057a078360bf99b878290991bb14c8747d8be386a536095',NULL,NULL,0);
-INSERT INTO blocks VALUES(310477,'7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918',310477000,'4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1','1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b','8cb254cdf81022602324076922901e7d7c4675bebc066252bd20a7e83c23b76c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310478,'c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0',310478000,'d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590','cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb','fceb7400129cbad4ae34656a15a35d8e625e515fdaf78a9f644c43f1da3f836b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310479,'f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030',310479000,'2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0','81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6','b878bf2f4f70e1c15eb60535887db7ba9e9414ec524d0f426bbde5a459a56bb9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310480,'2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681',310480000,'aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c','8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385','855cd018f577fe76942fe9837dc27d3be5e71bf378b611f25cdd6381b04ed703',NULL,NULL,0);
-INSERT INTO blocks VALUES(310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59','8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5','7b058d359a23326a73d98644d5cb0312360ee69f98c85814b2d574408f8d442d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209','838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f','222ce836127c79d43fc5847a1cc427f7218fe84d23c2454ae1fd35585c9234dc',NULL,NULL,1);
-INSERT INTO blocks VALUES(310483,'013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460',310483000,'fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8','2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf','14e0c00fe389f298230aabba0e084ff09875e49dba8b5259fcb99a3604081345',NULL,NULL,0);
-INSERT INTO blocks VALUES(310484,'7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b',310484000,'310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad','ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2','00e1362b924985f5761ae514112cc30c143a610d15e936fd909a52e8735eaaa1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310485,'eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478',310485000,'b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd','c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f','f424a423cf7f105c5f1000cbbc4552b83589f70e959c2a062eca313f5713271d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0','ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab','3c08e19ebcb07664b7679a724ed18c73d7c8c7698a56f85f2fec5e7eb5a3ebd8',NULL,NULL,1);
-INSERT INTO blocks VALUES(310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d','76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72','900c8266900450b11b7b896e61baaea9e7f4677b5e722ac78cf07985c65a2e5b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104','78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da','5c74cb1bbff97b44622a3371822508ea90e9b55e22b7bcf5aa69ae39fbf9ed8d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc','23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418','9985c79b656f017f5eac15b1aa0e9bef1b0bf2fbbd39d687e915323348af64d4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909','5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7','8822b33c741af78b8def7d9bca7275cc62f388c9159c953b0fe7b621ea5f21e5',NULL,NULL,1);
-INSERT INTO blocks VALUES(310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6','f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8','fa5278b9c27ee7e35fb9b13329e4146133c9219897aaa6fde667e2eda5ac015f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740','daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e','fc77802662487506752caa901851d67dee6b960606286e180c6e9cd5a5f6cba0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c','7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6','2a51d45368d39a8ed09a7c24aab6271397a8a6dbabc960b4b26d051547f15f3e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919','9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014','ab785cd4356200a496f5b85e7f824d03bb32b81cafa403176a6ded65e0aa8a0a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd','09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29','c426ad40e2d4e6e3e6301c9122fdb9ef7f28fad2ef6135985046a4a9b2acdedb',NULL,NULL,1);
-INSERT INTO blocks VALUES(310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941','9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4','1417fc5280cab90a898e1b89baf5e8ebafcf666e43ecc2042bae44519c54794e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819','ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519','ad86d199894b3c4e8a2d05332b58b81350bfaf9686b5a0896fdc286cd5d95833',NULL,NULL,1);
-INSERT INTO blocks VALUES(310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414','b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7','31fb849548f5054c3f49f5ba1fc015a6169db27f00e90ea2baa6fe453e2744a5',NULL,NULL,1);
-INSERT INTO blocks VALUES(310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'b9fcbdafddd46fdda061f6e9f8744b426b6ca37e32b315df1098cbc7899ae9b9','032166892f568bb97f4f69ef5bdf49cc1b15cc9f8c7f6c1f3e1f9d54816ad7e5','dc4258fd460745fe443598c0119627362b7bceea1892f32243221551f45db0c9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d','35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1','4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96',NULL,NULL,0);
-INSERT INTO blocks VALUES(310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,NULL,NULL,NULL,NULL,NULL,NULL);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4','f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67','b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57','ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e','0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c','b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25','ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2','b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06','07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129','3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387','3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa','2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af','092fdd31ea597da3c6623b94701387a103e4ecf16ecce9dbcff7b2656c69af91',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0','a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e','c496343e196749056a9c5d8cb32f31cd989c9b8def81d208af418014f8dd4e14',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68','ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af','ba9300cb8828b0fbd75d9258a33dc126a4bb9227ca937a3719320449b907d39c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4','d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5','e8c0d80c8b8d9bb2636dd711a3ef82861868eaf2ea3773be0e63fef09d970ca1',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea','173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2','27c208828cb07a131d9b893b23c0205d26adf423d8866fe722e5146da11bf99b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1','7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604','c0d077873f1037ead989052f4de498361c3ea82b92bfd76c15569bc6f1190967',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589','86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc','36e98d3aea754604da80ea2624deb96d78d9a250de7a6933a32cc7eec0c01c57',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a','5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7','4f5d5f9d6a0d00e9a73ed3e5d8ac4cf174e48b53351a1e41edb760491d1924e7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8','1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7','b68a5298c856d8ac685da6e18d78ab32c536f6aac8e82f71be8853f3a9c61419',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e','d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180','a01091f05d990839c3a44dfffa01f561add27ae20e7298cfd5e881e7dfb4019a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88','b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b','0c54f16f43b43b38ef3b7b4a83df41a2c907791fa27fb957774a9f41366f6696',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710','6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6','18db8ab5cdae89dbd2f3737e222c273ffa8eb8ad685e8ec7f760d925e502209b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad','223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80','feb24386a3df5d6c2e66402b8eec85f6a56a7449812d83aa5a7527c1148dda8a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce','9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d','8dae640fff5e30f6fecc9f31ecf896819fda3a2856b44052e9b3c8aa694efb7b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8','88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e','351d377d959ca20aae984048c9b1068ec29075c4aa7f52d6c40592f3f7ac34d2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b','087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621','a03e4da1b25118ba87fc3fa5487ddb147a24be33caf30848353080392b3f8f90',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1','e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27','ec0a35e9d334d20325c20dc0af2071cc0bd0011c9f2e9dc495764099b25f868a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445','e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54','7d66e5032cbbfd62641467e5a15a69d28f69b1f0b7da934fcbde3209c36ff15e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de','e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5','e57a336b82b7d62efa497619daf7dce26be0c2034f763efac3b83237078c159b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db','2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e','ad26d635f4b961d3a78770ff225d37876a77417cae3eb6d60a10527cd2cd3c50',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c','ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f','0c83d5876fc4d68ddbe960e1f2d8c8eb234cbf159af47dd8f77824955b5b99af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7','21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc','4d68c2eb143296d351c03e7651844ae0a8009183e30c8a0bffd41bad2d4b9944',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3','9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633','4f0797f7f8ab0b2770b7c5629123ff73c4c9830990875119f4eccae443bf77b6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5','55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4','227f74ee23c06c8fbaba67b1b7614338ce70e468ddc8cb8a6d884fefc9065efb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf','3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2','cce012e3c11c649ed7964921096877c7362a5360fbdb27056e4ee925fe6d93c0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1','c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a','4212d1bd8aaac5dc6fe4d47c8356dbc1ba1095167a37bd1fd0cc8d736fd5cb26',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740','4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af','c7c8e5e7340ff9c4144369ca8a56f30c3e0f9c29dfe33b2b69849bb4a3ee998d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea','2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb','b30046a31b25427b4ddb094ba78211a6e3f75ac173a45aa732f4d66741f777d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261','d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776','749396e3c27221fa9b14646dfc76f4199c4af0eaba73d490376ca771df435311',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9','826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f','b2abf73f136a990f9bd769b3d298aae8f38496d68e12697e2ba74d7aff1fd2eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26','f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9','9639b0de61c2a6f7cf0a9e9b114d59395ff3ba20f81b4f16cf52947338324e16',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed','ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9','d92bc42b8a1d8d5bea9bd21b5c68ad9f0f89c6e7eda9b0b20b15bfba6d9eabdb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b','aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b','2c6c47b437bcf19e9f304a44dddda5b2f6fbc8a907975f661dfe9e6b8109c47c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11','46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc','e4c2effd39fa758e00ca97939dd1f1d9a5997e95d23d2a0ac3af4ca64d8575be',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d','23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c','ae61daf40f4954d6e3a3f50771e77255727f9dd72bc7fba5a6088d6e07d67b3e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943','163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1','bde4fc33ae572fcd28318e25c0d9df37d6cc42a5e4936770954bf514d9b37728',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483','a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed','5b37661a33a03123831332c92c5ae492d3c0eb8546bf809ba75c5e603329b711',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d','52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab','720af2db39c50a777e24e2b00b5a6320e5fc3166afe767faf4e778ee9dd5dd8a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194','1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608','b5a557d94ff33e200e321f345d047a2229db60aa45f65b8065967950bf8852e2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3','ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e','c4ec17550657727a9a11daa68ecb1b4d88190ce52dbc83bb18d764b6bd478723',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1','3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac','f8763437f47aba90ae535e1e2356cfc42f4edf240d9be69099ec911f64f407f5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff','becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c','646915bf01632a560b9429d393de0635b2553d8e9f83a6d92f029a79880cf170',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3','6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634','0000546f68b557fce8445f8fe6a1cac6c813d7a848d5661bc112f36efa03c1e3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582','67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe','a46538569450db26d72774e237e5e05e057d085455862152c45534a7b2831805',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be','ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c','b89e6463177226a7d916fba3c1bd0fe881c7cc8544b4882dab0fe619ea40d700',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d','720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88','70fa5f396f6b6bbf5e669c9ebc50261da201c34eb2733b0bd3e9c29410d363ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5','656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4','9a5736cc8c8944fff5f4c695a6c228e161685ebb08fa83cd696334b1352b7828',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7','3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be','14045040d34f9f8ef2ed53c11c4a6ef882e4cbdc22dfae8709535eba1cf12011',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c','67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609','88b3a77a804065f58fa8a117e79276ba2b5250c4344e604b68620affd3617690',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108','c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690','16f838aafbd52bddbd49c4f4ad0b23dbeb9a40fa6aecd39a1d2522d7c692ad02',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1','5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213','741def8beee53dd41b1c93d0b3f6fb297daad05959c8d3463c821f717c494955',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba','1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31','0a31cda894930eed849e19e9c02ef0ef1d09794686d1aaf1edc6dbcb8c0a237d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e','2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029','0fb99b765219ea3a5f10fa5f81d55b5c0062acfcdcd2def532023e3afc3e5bb1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d','cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4','d55aa61c630c66fb07fab12428d118c0480838ebbbcd0fbac08e8a1499b83eac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541','12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724','940a2326385c0c4d191460c35e274353005ce1612fb42d615d3c0385a2838ffc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17','40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6','5fe92e88f1466fc6de163ea775fb9930f5da3d02842192e742af948a166ddf2f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c','4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de','3068a8d1ee7733af53b4995ec8ec168bc0790b4977a6ba07155a782e9409aa30',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a','3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079','ff216a1f3d27c07b519e4f0878ab90c2e5ea4774982b7d0cf59a8078cb811958',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb','b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432','ef6eb698344ec32b9fdd1d18680accf1d52a7cb0bff5e2afc4cf7434a3d01452',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e','e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39','9c2e20c4eb44ad863b815db1585d2d8af43f1069dc6285dbeb0962d7d7734fe9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958','9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f','b75f05047f221109179f51bb1692764e36a8f68293b4c4e72a9fccc0c52186e6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882','5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e','191d810188a47237554db70e1196e13b81fa2309d4c0eeb573181df64f4bdb70',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d','764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9','6fb37efd1c21aac24a225c862e2b88d11286b2530e7993bd7435e831b38fe823',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c','866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85','4fa7f80fbcaf4e54ebe864cdc7fc81078d45e457842300da587e9ac70026db17',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658','9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531','bf949bb3796dbf2bbf30935905093ab1fee2e740e4dd3223f2d95fbb465f2943',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0','03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655','e5f52986f6913f9ee078e81ea705e9f2f5f8002649b6fa45080a3395fe5acfec',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17','9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f','38474dcba9bc1f4452082b63a5281eb673202f6177847430e5faf3e11232132c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee','33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8','a0238475bfe01e3f54e545c50dd345d0ae1768091b1126a6850a85fd481a8cfa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f','7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45','f3ee3bb3ef907ebbd81baa164a4f59c023dd4bfe32a96b157d14eeaa5807a061',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e','1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2','88e42f2ca73ebe9930962154ad1d75e981fef255900700a906980213b173b775',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8','a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97','0b82b2c2625852fee6d69747d1d008db2acfbe9ad39af34974bf2c2f37adf2af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc','05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641','c4f86f312ef180a2ff9b49f8a3c1bfb363ca4a01ce5097eaf575a711c35312b6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2','6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71','5c2a47f3451c0f085fd5015c8881e0b336072751beea8291527a6a7e9cb7fcb2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5','d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a','1f79638ac7ba93860152e158470cb85467a5d933171b727e55c7655830442d21',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815','d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c','66fe063bbbad8d3b7957863f61677bcb41768aa09bd8ffa94f3b543551fde349',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde','f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f','307a9968bffaa2dae3e73953072a494d7dc3e2ac9538fd2cf11d2235ce810403',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa','9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366','f98c24b0a1a28a67ef5fe5546470b70ad802a873a1ea11650da7abc97cded386',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd','c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1','3d07a3575c13095678c39c78ab22439018cd5ebff95822da5a20eba2cd064c0c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882','21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75','2b7647f75b93d26a0bff732e3a2df4c58dde0bd7e4e075cb89a7f11c9b4b6b32',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14','feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13','9df8b71401e3ce380fe0a7fec1a3fe2004da522abd249dbe41ee3dc1797c4c05',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92','277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501','97e5d595611e2e43b877dc7a8f1a5b0713efb2bf09f009b7af4277380920cf43',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a','ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef','e580ac2d8a2be303a110c8ab5bd5f4c686f730702f5a91edffdaeee1f0b0f945',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3','3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc','f4e90d370be413c612ec975fbcd25a12a11151c054962c1f4269452c299135a3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64','4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7','4da72822920fe3161e57cbcb6cda91eed27f39515bf0e5e367d58fc74211191d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523','255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b','44ba1471cdb469c413e941ed34c08176c7ad50c1bba20e211b3813a80bac5ec2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0','7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d','f519e2ea81399121771f7e37da3f055879b898f2d864a7631c66089b3d41f4bf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc','1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea','a9500840cbc887bafdbf4836c04b69537486621ee914e07c4119c1624ae37b89',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40','889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029','64ad964d4da1d8c1c41897a56aca436f59b6313572aef0a5acb7b39b9f0fb54c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95','dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99','9d5b59fc00126a4800287f92235473c774f12700df541e87de360481f37d03da',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d','625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047','51b025141bec636c636c349544b4e3c88288bdcc545ac1b3f3810210742fd443',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571','b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959','e4fbb9bfee5ec512c49a3672528c11ef3b18bbed9e0b2750f586a3d25cf0de31',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03','8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158','f7e91f99556223cc69b33032fb7d8d42e1a44cd0c078a58cb82b3990f87c8d6b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6','1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a','ebc9623688b02331d81b74790f32e8994af3659b94aa6b4663e2ee926520e8a5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de','7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1','2c535698b22226e968222a9e03c263e7e8f16427786053ca41661c1757248b59',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d','c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6','1bf4589d685eea753559bc8b6ab3357f6b4183ba4e6876f6df46f5d71186380d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e','793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388','bba464b87bc827b22f557d585532601d5915ef329ff62a2ef523402862c22beb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b','7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28','40f5829d6516e39084234f4648c84fa06ef771504f5495e85f24de09e1799775',NULL,NULL,1);
+INSERT INTO blocks VALUES(310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b','7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd','b94df045d11f891d822e72da08f1567961fb0243df0f4ef334025702131cd40a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae','ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28','5c1d9b70ef3f17c6bc39d8c871c36d82e9639e5eec4836090e7e52ddad3034e5',NULL,NULL,1);
+INSERT INTO blocks VALUES(310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e','66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6','05cf59ff88094509b01f55638055e78ba53f86813af6fce19888cb9bc45ac61f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0','656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209','45f70031485c596e497a39605f5e0c5d44ffb8e28016c8f41856970d19b4f731',NULL,NULL,1);
+INSERT INTO blocks VALUES(310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499','6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576','d37b622ca0ea82a62aac2916bc72364257a746d8f70a302ea13934a6cb464360',NULL,NULL,1);
+INSERT INTO blocks VALUES(310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783','b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a','930ba28dee6b3cc8ce77fcab02237230c0adae11b7958ee6912b2a5b9cad0505',NULL,NULL,1);
+INSERT INTO blocks VALUES(310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518','d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae','61d47596577859f94b9405538f6dfa58779faad355d12ca180ab36ab34cc6db7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059','cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61','52dae041d3620204b2e5251d2aff81c3c532d7563a802b1efb75341b039c43e6',NULL,NULL,1);
+INSERT INTO blocks VALUES(310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6','d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad','d22bf6bb8a648289a71bbc0af4a262c43073bdb9cfed6cdcffc13798cff15182',NULL,NULL,1);
+INSERT INTO blocks VALUES(310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75','9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808','6fc454b12684651e8825bb6ee751f550a0535e508aa6efd9e8da0337360cdd04',NULL,NULL,1);
+INSERT INTO blocks VALUES(310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9','4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b','624934c6eec1af21cd764405d67271ab9ef74d140a030dbbbe3500db1ea961e6',NULL,NULL,1);
+INSERT INTO blocks VALUES(310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989','baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c','6a160b25500904a8e2fc0ecc0f61725c5253b352212c04c9c3bdf6a2f51fc58e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd','22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601','086d1f7a591a18bbfc77dc239eaebdbae88d4b1b3feeaaa73ae4160b6affcc02',NULL,NULL,1);
+INSERT INTO blocks VALUES(310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc','cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41','1b67e80c2ed78bff0402e73625a62941d060bc4f27ddaf8fe7154f74fb52d915',NULL,NULL,1);
+INSERT INTO blocks VALUES(310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25','a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6','6e84c64caa16d362b020f0a840ee5fa183a559c15b70b5caff610d8daad52749',NULL,NULL,1);
+INSERT INTO blocks VALUES(310117,'978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71',310117000,'0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e','1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f','a3b51846c0b35f957176678cae6a7edcd009b9b36e2596e2fa26b3f6d9b51392',NULL,NULL,0);
+INSERT INTO blocks VALUES(310118,'02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723',310118000,'011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f','7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771','b0351f3992fa660d7e32c30f900379e620082f39f059f1adecb204afcf02bbca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310119,'6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481',310119000,'a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f','1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca','b05a87dda8ffe8ec3eabf14e352c9bfcf7a41d059802f8bbb5a6e1df651de722',NULL,NULL,0);
+INSERT INTO blocks VALUES(310120,'2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb',310120000,'e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923','1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6','b3341f00f5fd0b73dfd94077420635517d58688c5e641b1c33ad43fedf837248',NULL,NULL,0);
+INSERT INTO blocks VALUES(310121,'9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7',310121000,'5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b','9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7','579d901dcca6e7d2399219e7b852ab5ddd8043c9337d8ace4c701c212344f4a8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310122,'d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932',310122000,'70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070','a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17','0fe6b56f84cda6614f46ba676bb47010aab75e0b5d2f3e5b5da23803f361238f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310123,'be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd',310123000,'3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd','78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338','19e3f582ad9ad6250e8057ec95e180bc0b7b02255ee1729935f4f77449e01a2c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310124,'0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810',310124000,'9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3','c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3','aabc1930e9c381224cf7b7da9b0bde42e4419ea03cbdde623ea2da37cf1656ff',NULL,NULL,0);
+INSERT INTO blocks VALUES(310125,'cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6',310125000,'1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6','3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25','b3897b1dd915774c95bdd265c8fbb1a1e658be0e702f4a8ce50f49d7da133297',NULL,NULL,0);
+INSERT INTO blocks VALUES(310126,'c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797',310126000,'1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272','7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5','aa83ef41420cc7843cde9408ef559a19f994482601a3e5fe45c43f08898c4f54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310127,'c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904',310127000,'094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb','0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478','b55631834f923612a73b659cb27ae27ac880e2fd26bb79f706200023c5bc4e9a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310128,'990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079',310128000,'28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19','aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786','c132bebc107e3136ea8cc78a45a644239f989c7617ed2bdeb5eb300858fc6538',NULL,NULL,0);
+INSERT INTO blocks VALUES(310129,'fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc',310129000,'61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c','ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b','85e11a92c5fc48513ae7e83710849b08180eadbe29ad984faca23ce667fbaedd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310130,'d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721',310130000,'1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781','bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71','f793793de86957ef58013a06b6ed779c4c8c330cdd984894693d3ca268c80496',NULL,NULL,0);
+INSERT INTO blocks VALUES(310131,'d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d',310131000,'aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6','69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb','5edfd69343be580e6f03a9c9e91a9f7927c91c7cd21553fe1249ff516cedccd0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310132,'1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818',310132000,'a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe','352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7','27476a9cb53db260e8909ec5922e944a87edbde6d374408e7ddd093a51c9e070',NULL,NULL,0);
+INSERT INTO blocks VALUES(310133,'1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51',310133000,'626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef','1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a','07725c61f535cdcc7c1ca6b0da84db507c5769ea9e318cba17c128ce1befc5fa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310134,'1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398',310134000,'4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55','855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440','3d5cfbaac42499e555831c587865e356612e3c6e46d94b5ff532ed2035f0dbc6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310135,'d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f',310135000,'e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a','80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0','4841d7271edd65089af68a93d50e3f86933bf4d05548541db6ccdbf71d736e54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310136,'6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5',310136000,'93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a','5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1','2637a61c95e25b3ec2cb739d236bb8030c57f29036adb7bf981f323cc39cf06d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310137,'7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900',310137000,'8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585','d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6','c09f0175cc685bf77e9ca37ce6a069530c3a4277aba629628f7e70fda8d86549',NULL,NULL,0);
+INSERT INTO blocks VALUES(310138,'d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5',310138000,'4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6','645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948','c7a23246c5a4bd1a227775cd80e66548b7f1e4678d5bdd55959de1740f51268b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310139,'b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46',310139000,'2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d','c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c','3b78c856d3143016af3bea464ccf64b4695596f7a03594a6b53a918f67de7085',NULL,NULL,0);
+INSERT INTO blocks VALUES(310140,'edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb',310140000,'277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624','ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac','acdb179c5a74ce2b918cef5e10e93bb6402e182e461761806483e0b2baf3f2c0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310141,'b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709',310141000,'f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc','d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f','c47d6be26962bca640d2ee4fe08a9c5ce88d850fcd1a9c3d24e696620b583e9b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310142,'a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143',310142000,'a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7','0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97','85dc1497834c1b15c6af18bf2b4c481409f89ed98caffec52221d181d1e59897',NULL,NULL,0);
+INSERT INTO blocks VALUES(310143,'8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f',310143000,'b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea','39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6','996968a15427d4f9b35b08d9b1b02a56c8428dc360092e4efab1c3fc2fa82842',NULL,NULL,0);
+INSERT INTO blocks VALUES(310144,'879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9',310144000,'1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a','0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b','b3ed6fdd31f986960976fd3d1812a9a97c6908ac4771a5470a64df9547418e7e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310145,'175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e',310145000,'fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264','bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c','72621b5af8bc398e97c0b2cd3c6b44071eee2613d41abdf85c9eaff10b6b8bad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310146,'e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184',310146000,'9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84','036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411','eb2f714de272f1ce572c182db7c969f22f84995e4b2f0d186faf010812f2bd7c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310147,'7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83',310147000,'336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3','184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6','3f60c7681688bf8bb1e08f457dc677cec77cb3fc79c555d50daff1d7ab15c503',NULL,NULL,0);
+INSERT INTO blocks VALUES(310148,'77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e',310148000,'f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612','c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f','647c2a25eeea0f27d3334e58f9e0a7563b2ab8cca81bd9880d7f0f85bbe745ef',NULL,NULL,0);
+INSERT INTO blocks VALUES(310149,'526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c',310149000,'c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85','8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660','8644014a3cfb577341f9010e93cdb4f3da7bc04d214715e11b9b7170e6d805b2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310150,'cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333',310150000,'88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc','db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1','f9d7ab71830b2129ff8cb527692755d60a9b44fd51dd3304142f0833652f43a2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310151,'a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330',310151000,'b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25','c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85','9102ee9621eddc59389844575d3276e577caee437a74bdf6d5ddb7f30c978753',NULL,NULL,0);
+INSERT INTO blocks VALUES(310152,'89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67',310152000,'3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09','ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88','b422d3aba369d1ff718bab0d5e8718448ad9f6f56d88857afbc9edc90dda5a1e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310153,'d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482',310153000,'c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7','6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441','187598a6a8055647c1efdad1bbbd82f96e11188374a121f14bf23ba0e51f5f1e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310154,'ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6',310154000,'b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4','b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f','051f58d9692cc8eb3bb0f85ec07846684670f4ec8d697e8bd8cbc4ad65b5ea11',NULL,NULL,0);
+INSERT INTO blocks VALUES(310155,'cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137',310155000,'27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404','0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3','014066182ef2deb918d333d51858db41257802d247501c3df7cf38cd06ea295f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310156,'6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83',310156000,'5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d','ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380','eb63655fdba3bafd8b2db80a5890e9192722636140738cee397360541a8a5fc1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310157,'51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a',310157000,'cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8','9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d','bec1523e67d65b982aefb200ce1da4a644716c0e5877cb9ec54e1d86c9983a54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310158,'749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2',310158000,'6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0','03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4','514956ec19bea6979b4ffcf31b74b233152baeae385c1362a4e0ec8682e129c7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310159,'fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12',310159000,'d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033','c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6','44af8239abc53571c2155a17d75e5a9d143bf0d20f681cbc81504ccf88727c04',NULL,NULL,0);
+INSERT INTO blocks VALUES(310160,'163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b',310160000,'2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9','df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e','148803f5671b6c6e8acb48f38bfa937107378fb496acd68d1f0e5571be8c123a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310161,'609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8',310161000,'beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980','e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425','fd7f4e92adef34699dd0f6acd232e616d1657e13ea5ab9809cb1128522b1f07f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310162,'043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804',310162000,'066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f','bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df','8ea4e1f130055e805bb996dd15189034d29a892d14a980db3e4dd0fbdda79ec8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310163,'959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353',310163000,'460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a','d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea','87366186f53ca7a8eeca7ce436faec867a7d2d9bbc78d9ee1981b1121eadce92',NULL,NULL,0);
+INSERT INTO blocks VALUES(310164,'781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2',310164000,'19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268','54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3','297ac32dd5d160c4f996cc3304d4200b748960aa3db1b8ad6eac83a9d005659b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310165,'a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599',310165000,'97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33','0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6','53cef4f572c1881f2cfc889b735f73b7f2f30b4cd8da5ffa4a97e6837ab9c0e5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310166,'a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41',310166000,'edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0','683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8','0a7e9c4108dae596aa7efe98f41ddd7bac323e16068180e14127801a6d769e91',NULL,NULL,0);
+INSERT INTO blocks VALUES(310167,'ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66',310167000,'e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14','d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b','a959dd943ffe80982909fefffa27b474b822a8d82ab34f24bc5f56af86b7781e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310168,'a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9',310168000,'267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1','ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797','8be097ee641bccb50eb7498f0366ef07981b01e64b5b1979a4cde7495e85ebc0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310169,'204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3',310169000,'df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a','3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace','d4df5ba45e26cbd17af5e5796e7f22681161cc7af5a0570cd8d25cb71685f059',NULL,NULL,0);
+INSERT INTO blocks VALUES(310170,'b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119',310170000,'3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2','f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd','78f1036d3d2063f358bf0a27fc8b0dddb4e44f0cbd083697e439d5307dbaa7c7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310171,'b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d',310171000,'e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9','e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d','af3d8ca73a122e4851105356df23498df5f2fc1ff3398ac078fc27962aac622f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310172,'b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055',310172000,'89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103','d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996','e2a7881775aef920b3066b9f6ecce7041085b945de142875562bb65e2f40269f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310173,'f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016',310173000,'35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3','73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef','817325fa148dd39b8e4449274055a1c7bf46fb948413064c2f5a10bf99b6373a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310174,'fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679',310174000,'101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017','71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263','b8a6db792a4f373fb53b6a376554646253c138753a48f0005a1219bcf0764128',NULL,NULL,0);
+INSERT INTO blocks VALUES(310175,'f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333',310175000,'67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c','90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b','9a5355a93495d86366d29e5274ad2d7abf970c09f134c778851f735ff0f8c387',NULL,NULL,0);
+INSERT INTO blocks VALUES(310176,'67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6',310176000,'a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c','b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1','c850e09446f0a52ec6404ced1544e54c9de294c7bafa6e6957e25ac056bbd4f9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310177,'6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52',310177000,'bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716','80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092','4c7cd1688e4736625d5ae8bd877af13f0c77f2ee8b6a02506108792b42804a38',NULL,NULL,0);
+INSERT INTO blocks VALUES(310178,'8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816',310178000,'186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e','79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd','9f424a07865ff4bb8d7431b8a3139b46fadef1844da81374666993d7ed66f922',NULL,NULL,0);
+INSERT INTO blocks VALUES(310179,'d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7',310179000,'0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8','3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43','aa920d97a7205fe9cea1c1f6acd1655d454408355eda0c11367715ac4818a56d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310180,'f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1',310180000,'13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1','2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b','fd195f7ba187d845d0b094cc88e0db9f65b00c98aec1106a857ef405d482bc1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310181,'bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145',310181000,'81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7','82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599','a972f87acd57c8bbefb7bc372e021216008cc4ad482ceaffe9cdda885e03dfdc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310182,'a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f',310182000,'935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c','1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a','151b050b1997cb9d24fc2bfc4c649433d2be4068fab9203f01ad75a4b74b339b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310183,'85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb',310183000,'268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f','82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293','140a5d6a6e2ff7c655c8a001fecb2984ef92b88c7f38f85678188dfb0960b170',NULL,NULL,0);
+INSERT INTO blocks VALUES(310184,'042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc',310184000,'64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935','9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb','35b1d8731911e0736da008b74e2c12fe980be036e1db49770bf655871cb259fb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310185,'bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f',310185000,'8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94','8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3','7428246a3a61bf832ef19399079941cdca0f63d803402ffc2f545a3818c6dee1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310186,'e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707',310186000,'e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090','137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256','b79d05b5c0be3a83925d8c966b40bafd0cf6d2c8281db588dbf0b8ba543d233c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310187,'fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414',310187000,'c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5','cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a','1172f0a9041795ff450522332f728ab624d8622c69ae9380222a2d081dc0c009',NULL,NULL,0);
+INSERT INTO blocks VALUES(310188,'85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917',310188000,'13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d','2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b','13c68f42ff0cee68be1d5f4e3f4a20eab37bf861727baae26bed7dac4a5b3b2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310189,'7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06',310189000,'582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368','ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f','6da4d2e4e687a0dd00fb6771c3373e860d1869fe211991730ce8767a3924930a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310190,'d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d',310190000,'d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4','48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611','87c4cb256b7e744bf4bb9c028ada9f03cb3fb33f7a346569270ced535a140acc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310191,'5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139',310191000,'23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca','704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b','e6d9afc16c470f029d83bc5688b74fef372ce3ce9729502c4c4bb66029718d52',NULL,NULL,0);
+INSERT INTO blocks VALUES(310192,'31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa',310192000,'cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9','17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672','39ca55962499e7a312b65dc560e59af1fd7ed815324ba4871245bee81f27142f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310193,'ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a',310193000,'391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046','d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd','2d7b4bc4a272129ea2c9d6b5ffabba1f9401980b42b47bad08461532576ac640',NULL,NULL,0);
+INSERT INTO blocks VALUES(310194,'d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a',310194000,'9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b','d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d','c37025b4cb18e69f8996e322f0540d9fb2524db4ae38859ecb56119a77d9dd90',NULL,NULL,0);
+INSERT INTO blocks VALUES(310195,'0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53',310195000,'705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde','d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0','44333c1fbc3cce8955d3332e12464c5d7dd930aafe1484b2eae3a5f8d7a9365d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310196,'280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6',310196000,'59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227','57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80','16ac28193eec0393435c18d24fad2edf984750bbc25aba58946e6e718f8bd338',NULL,NULL,0);
+INSERT INTO blocks VALUES(310197,'68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467',310197000,'a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07','58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4','3f5b9f1efe7ef5c80a968126dfbb01f52b462087a0109a26545dc80d13790e04',NULL,NULL,0);
+INSERT INTO blocks VALUES(310198,'30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2',310198000,'ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2','1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a','5e5cf3715a123e73f08baf1bd2a3471f0b2af521da005cbc953663678d733e6a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310199,'494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613',310199000,'e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1','87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599','152b66aa4612046bf3f69f278f7e650bce71216556952dbdfedd2417aadab7ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310200,'d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03',310200000,'fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a','a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54','5755372731f19b400c2457ff201c911c724e8a28e6957cee53452000c7f8dde7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310201,'8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95',310201000,'7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722','f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f','5e9645b8acfc57e5637842893c6ba66daa306bb2141d351a509b6f176db61e54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310202,'95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8',310202000,'084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b','76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113','7a5c5aa34df30375a10c02e40122d512dfe7c27ec690fbb597dd000db891a021',NULL,NULL,0);
+INSERT INTO blocks VALUES(310203,'ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8',310203000,'4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5','3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4','78b6c7393349880c72ffd6fbed6bcf04c7c028bd9ba95714c5c549e5d62129bd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310204,'18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb',310204000,'9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416','89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6','35b8bfa4ff2dfaea86dac467cbf8bc2746ea25ec23bb63a185999e852216f155',NULL,NULL,0);
+INSERT INTO blocks VALUES(310205,'5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a',310205000,'fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01','1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6','a9dccc9708940608179b8524499d8c07bb34ff3a1e938431c1d77a5c20fc1249',NULL,NULL,0);
+INSERT INTO blocks VALUES(310206,'0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518',310206000,'5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07','e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8','35cfac507aa4fdf624ab85dc72d7154f46f183596a34bed1a60014a27c6285ae',NULL,NULL,0);
+INSERT INTO blocks VALUES(310207,'533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585',310207000,'b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34','596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6','b2602edfb952cc3e4e9539bc38a9ee49e933971fd47237c42778a39a4d8efd44',NULL,NULL,0);
+INSERT INTO blocks VALUES(310208,'26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44',310208000,'aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102','3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a','fa2249ac9d2db16f2071d109328ff02df2aebdec916bee679b89b5100c0f7e9f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310209,'23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf',310209000,'c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0','56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb','70bef389a3fa6e1ec5a6e3a6d8d5c2afc9f7af76c929ba6f48b46f24359d7b6a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310210,'70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0',310210000,'207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f','ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151','53957a0ac723e36951f1c4423e09ab7c5259a88654ecad878260c082792bbc12',NULL,NULL,0);
+INSERT INTO blocks VALUES(310211,'4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d',310211000,'dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208','f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9','2d5af408810e4075f3d957c69999abb481dc3e950cd616b92c9df0e32261781e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310212,'6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547',310212000,'32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9','2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8','0d662eabb735aa267564ecbdbfc3a244574284de980c67494d8285a7380e6116',NULL,NULL,0);
+INSERT INTO blocks VALUES(310213,'17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7',310213000,'15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36','fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb','7ff8320d35d5cb301432d711ec4988360ac3c2a81e7751fbdc78a2f1119e8fed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310214,'4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454',310214000,'dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4','5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f','a012b5b4352afd51fd4b1bd5709e385f3bf5cdb212bbe99e2cca68de491c4db0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310215,'c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7',310215000,'6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed','b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a','f2918e64a3525ff790be88f04d060c7fe24144818d340cfa90361e4ee688ddf6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310216,'6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524',310216000,'a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef','f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148','2945a07d5e95f38bac8f3c506d481f03288a461050c31a933d1abefae694aac4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310217,'0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8',310217000,'419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8','a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce','0e0c36dbe732237319afed9cea84d711b9eff7643f6d6a39031df4c2779a8161',NULL,NULL,0);
+INSERT INTO blocks VALUES(310218,'3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9',310218000,'a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173','dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e','37046f25c853793d3b67aeff55d55b88ec468be97297d6415212751a77e1e699',NULL,NULL,0);
+INSERT INTO blocks VALUES(310219,'60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf',310219000,'7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e','c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384','1d6813a55c87558ff4f76f83ae1031c8a3256294592f7f3245009634ffef4bba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310220,'d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef',310220000,'00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240','d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65','8f37c582e65141859105bcbe6b7829719b536e1bc10a49cb1bd858885551d5b0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310221,'cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d',310221000,'2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540','cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800','c6c60d14f2a1632c741d9c7ade5c5d3b809ef46212288fcc2577031b688d7a4a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310222,'1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993',310222000,'00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82','6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107','759e6c1e020dd941ca2b330f09b13ace383e8372390b94fe47dc1374bf512a4b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310223,'af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047',310223000,'41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955','1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7','0deae5db369a00014094253ea4c2e18b8d47c39be5ee174fc9d3d651e462f6b0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310224,'5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c',310224000,'66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929','1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af','24532ddb646f9c8b137a341c8a96c698c4bc68f7b729b6476953e60ebc76b19d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310225,'0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c',310225000,'cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95','61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7','c8dbae5e6ad6bbb74dcd774787e221721f8f10896a536a45f4ba581232449aea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310226,'b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb',310226000,'cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5','2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4','41adb84f61b21dbcf0d72e8700aa686a3b0480a6b790aef7dd298232cb5427bb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310227,'ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552',310227000,'60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c','200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a','fb5501d2647743f35d76c930765a5df2b226b798d1c1e39995d9698f8975dbe0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310228,'8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b',310228000,'798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb','c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185','dadd596ae77bd1f94fc5da78525ca52a70898b9c94f8c90ee16d21dbce71e2ab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310229,'d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297',310229000,'becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df','1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45','36d03440afd4f38ef6a77601dc0f78b9627b883b700cfae60c8d72a9e9134c24',NULL,NULL,0);
+INSERT INTO blocks VALUES(310230,'f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35',310230000,'e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6','d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95','c2516be4dc99763c3c9729e4500750c3c6bc282751fa840bba50261b55d78d1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310231,'8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb',310231000,'a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59','7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200','d28b0def6c30f405a4772b0c79d951b65cdfdf2ab1974c332eed0ae90bc6cbb4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310232,'813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8',310232000,'5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43','721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6','d459913eef43573187e8ad1c6eb5b0b568c6ad8f81c9ff8bcef33e8f90d1da3d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310233,'79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6',310233000,'d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914','a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867','e60149bad1d1707535622f581a174706ec02007bc9cf745201bfcd1de425f23d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310234,'662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd',310234000,'0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766','b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a','516e650d9d411a8da1e7fd3a4fc2d9586c0bf4888080c8a777bcf7a7d9ed959c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310235,'66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e',310235000,'5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8','8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd','2b7bf49e73705d8f3087cf6e9105af6ca437f4500ed459ae8578963c4b2b7497',NULL,NULL,0);
+INSERT INTO blocks VALUES(310236,'d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4',310236000,'c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76','1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db','34eae453b89d76bcd5396946c248050a29ef931a2df0f28b1cf2b0e95b8c6d4c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310237,'2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095',310237000,'4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff','2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f','8949c7e35cf5582b600bf0cdfc6fab59b8dc4aa5bd428a690ea7722d20e47759',NULL,NULL,0);
+INSERT INTO blocks VALUES(310238,'43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55',310238000,'6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7','31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961','9f0b86012f8bf36c17f7c3dd1ad2fcdf6d7f8bdd307f75f1c44c31a31ee80da9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310239,'065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1',310239000,'1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac','82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e','7d301d9e81f060ea649f888ea9f86a71a4fa1c81803d7097b11c02819f37e860',NULL,NULL,0);
+INSERT INTO blocks VALUES(310240,'50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26',310240000,'be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240','bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b','916a66f7a82dc37f61cd55ba904767f3470aa0a01c8efc64676f56e9471337ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310241,'792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4',310241000,'5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a','e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe','795e9868fc7b21c7c3b93882423c46776e928ef3bb589ad3a7563e71aca294da',NULL,NULL,0);
+INSERT INTO blocks VALUES(310242,'85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93',310242000,'5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8','a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f','6e3a1fac8679a6ec025227a845f469f006034af44c34e6552d66888177ed77b4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310243,'a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd',310243000,'ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730','b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0','cab4716514e366e297d68dea26c6115e37533800e7cf5efc9d77f6118c26a9b2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310244,'46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df',310244000,'07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80','baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a','216db55f165298733175aaed6a0af3cad65d6a756b32ab61bd08b2527ca2c125',NULL,NULL,0);
+INSERT INTO blocks VALUES(310245,'59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae',310245000,'d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903','18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e','6f86f4bc7d8a4e3d2a957c50ac7ab53ac24778ea98518e31a9c1c0c503a54cf6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310246,'6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd',310246000,'a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98','a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7','7b162fe8efcfd71be3956bda007ee2ac3f19c6e2717167c6ad4c65374a3ba19e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310247,'fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66',310247000,'ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90','39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6','02263467d6c228054852ca87fb5837f613c03c97f195c6bd0241c88ddaa4a972',NULL,NULL,0);
+INSERT INTO blocks VALUES(310248,'26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275',310248000,'029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2','6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce','dd1a1c3549588e7bf19c0b8922be68eedbcead52701e7e9e28adee8f4bc06b40',NULL,NULL,0);
+INSERT INTO blocks VALUES(310249,'93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617',310249000,'dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02','2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc','43c6887a6c72ec8782218a5127c54d2d9f832ea21e7b3c75bae7a08c60388bd6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310250,'4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2',310250000,'a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641','5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176','1571d520ab94cee90a1f23480807b9c117936fd17fc2a7dbdbc4626fb7345d11',NULL,NULL,0);
+INSERT INTO blocks VALUES(310251,'63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7',310251000,'bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8','6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee','43df61debec53dff5f035e4e38c885fb03d3d49eadf67f86161b63e8de14159e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310252,'768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43',310252000,'8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e','2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125','1e547dcd71029e46e5216ab77cea02471424278cc5ee9413c0a193dce2742838',NULL,NULL,0);
+INSERT INTO blocks VALUES(310253,'bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e',310253000,'2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4','1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f','a9742221f4847c4243dc10c5b16136ca3afe384dc15c168faf38e7f874f594d3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310254,'ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0',310254000,'d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547','098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee','efbfe186ba093ed52f0721acb4eb35cf5cbbab136743ad41cbe4680ea9f47074',NULL,NULL,0);
+INSERT INTO blocks VALUES(310255,'cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4',310255000,'5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a','b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4','e8b10d57552433f463f1e0ffb4125c404fed0edd4006e9392a32c53dc80df0cb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310256,'d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619',310256000,'8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51','fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21','6adf1deb27a1ba5dbae17302608916408f89a535342d35b580dcfa5c63cdbfe1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310257,'0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34',310257000,'0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913','71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055','55784f483ad47a1d2d770ef328316cc95135efca272ec7a29cea3fe529e94dac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310258,'3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f',310258000,'e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e','0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca','173a591f47e20f22c45645842070f1aaf26bd4fe34482df1961ed91514f503ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310259,'e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9',310259000,'03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc','19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1','1f59fa2d5d68bb98a56da510f17227bb54ae7fc1be83759f412bfa9139fb2028',NULL,NULL,0);
+INSERT INTO blocks VALUES(310260,'8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd',310260000,'83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe','de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db','6b4966d50541c79683bcc898431b375b29ff04550e6121c6b05be1860075a35c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310261,'a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232',310261000,'e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0','58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e','7dbc8b54a7067f72247eb37047895d28609a7c6f99d3345ea62ec6476e51025f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310262,'e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce',310262000,'c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91','a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d','d00bb65c3d296ad74ae8b847fd54ffb0d39e2c6a4424713a8c3d8524065fa971',NULL,NULL,0);
+INSERT INTO blocks VALUES(310263,'f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2',310263000,'676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8','ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab','5fba7ea49972341cffcf73a94e4e79822a9912d37bb9479529d8d04a9f58f9c9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310264,'ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416',310264000,'258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25','21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd','ee5d2f2c7a52c515c2b732c16951a5a4bc28f192a485fac34786280c79e995dd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310265,'41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1',310265000,'72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d','9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c','7c75707088e96538a3bb9054dcfbfd084d7aadf4a600e2e4fb1c9f190539f36d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310266,'1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431',310266000,'b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61','578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e','4196f21aa3f1a7dae2df161c60f946f164fee7f571dd33343bb898b98e708323',NULL,NULL,0);
+INSERT INTO blocks VALUES(310267,'c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199',310267000,'ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5','face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c','9353fb7552f2f62bf2bed57c132ff8db34b02e45d35d8bac59c4b8af942e7aea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310268,'b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af',310268000,'1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1','ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd','a80a2513e09b9b94fa7d8d63f75adfe5bfc1b63d01b47a64f9b675f880fa0e0c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310269,'37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e',310269000,'fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67','6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412','4e827684d9b5da8930adae84c99977f6b7a2cec6606bbaac6900f1330b34d627',NULL,NULL,0);
+INSERT INTO blocks VALUES(310270,'a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d',310270000,'1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785','fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53','3023d5b620df212957a759c348d88041dabee74948ae060bf337c2b4b90384ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310271,'67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b',310271000,'cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17','b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a','6f5f434a19a426d95162078c1826ceb7e48d49a59c4aff96191ca67f22fc0bb5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310272,'6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea',310272000,'2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8','329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35','17618e31edf25d02d7d9a73fb7b3b5e027c403826427547fd9950b6774df0e3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310273,'625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a',310273000,'ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8','f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a','31245f12d3eadd04ae9ac9b8408a032f62645c40c240fc92547d6eb5ae2dce6b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310274,'925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6',310274000,'ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646','bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62','1806d9d4c6ae0e5fb500bebe257e679df3d452f457b925aef003e43c2232b3ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310275,'85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9',310275000,'23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163','c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f','b11dc2a9eb66c3eb29a0a3b8881839132adc4e607709e26320c9c14111825857',NULL,NULL,0);
+INSERT INTO blocks VALUES(310276,'ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77',310276000,'a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034','99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec','1f55d47cce2676642fd81bd18ac461c9e8d862dd48548117f0d61125aa9f8e03',NULL,NULL,0);
+INSERT INTO blocks VALUES(310277,'c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93',310277000,'0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532','08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3','3ebe0207f41a5c9dd7e268db3311cc89456886f11d257b432e905e6c2d1ab2a5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310278,'7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05',310278000,'0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259','6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499','cf92577378f8b09c4103667a88f04fc28b046d62615d02bc2f9dab69057c5e17',NULL,NULL,0);
+INSERT INTO blocks VALUES(310279,'1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f',310279000,'442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c','04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41','f37d3670aba3a7688d5eb86096a8d5fd3afb9069fa5acc6f2c4479fcd60fd4a3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310280,'bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142',310280000,'38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225','d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca','8494f375494e3c9404aed3ddd3aaaf01b52ba5c8003f4607cab4ce2827590a1a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310281,'4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f',310281000,'51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc','77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b','0831ce5de96f826a12fb7a871164308afdd4e1e9f3dd75d2de5a22350d093353',NULL,NULL,0);
+INSERT INTO blocks VALUES(310282,'51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f',310282000,'73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb','889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240','cf78638ffd89b36786753e30256a6b8d0144d028b361e38ff77c69737fde0f43',NULL,NULL,0);
+INSERT INTO blocks VALUES(310283,'df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49',310283000,'5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144','1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2','b525a86c2037d3b867bbc8d0cd7639bc696a49eea97b99895a775c87c65583d8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310284,'f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7',310284000,'ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b','c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a','0f24250de541f26fbb74fb1955a8bdabd8000cdba48ccb3a4ed769a8a3e3a3ff',NULL,NULL,0);
+INSERT INTO blocks VALUES(310285,'8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a',310285000,'3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c','35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed','d8fcb18316694e727a14588803bdd46f88b9e3dc274a9ce76696a7665944a94a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310286,'d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0',310286000,'4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9','5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311','afbd710e177c6d2444cbb77c57c8b7cce0587d9f08d93c77a6d77202129463c0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310287,'a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4',310287000,'67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410','791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84','81891111fc43ca92daab85026153966955f2580b74f963fcf47d7442a1198713',NULL,NULL,0);
+INSERT INTO blocks VALUES(310288,'2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7',310288000,'600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc','3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65','8039c2a4fb969f7e1d9d8e164d7a75224a5db25113d064da0b5511e264a93532',NULL,NULL,0);
+INSERT INTO blocks VALUES(310289,'dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75',310289000,'cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158','26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8','201f06ba8bcb29ad2f74b5ee77f3d9e6a58d0c8db65b51a33cdc238f0ff2b296',NULL,NULL,0);
+INSERT INTO blocks VALUES(310290,'fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370',310290000,'04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f','74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e','ae165351292f3bffe75b08022cde38db94762e96a98d5a5119a5c38676b98654',NULL,NULL,0);
+INSERT INTO blocks VALUES(310291,'1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2',310291000,'50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917','13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279','70e10c1d7bdab6f045c84d998d86112f4b66c18d34ac9bfa28482d5fb2b3acbb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310292,'9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d',310292000,'9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0','1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56','eee9a2dc2372c2160aae86e38d4d3de693e7608c518f2f415a9b995873c852af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310293,'bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712',310293000,'a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa','2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb','c5167949c03fa8cddee58c868c2e8d2ba26120e4c006036a6594eac04928adcb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310294,'4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d',310294000,'3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25','36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6','113cde1c0fed76b41d3290402cbb78053621578d0ba3fc65bfa53ce42098d746',NULL,NULL,0);
+INSERT INTO blocks VALUES(310295,'66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53',310295000,'bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a','2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da','8679be965882c71cd14321d7adace95cfcc872d03b4eb3c24352b7ce6806a31a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310296,'75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916',310296000,'08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b','517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff','541c9d8613f122854c989b9edc899208e4d84d72267067ddce4df927e3865dd1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310297,'d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650',310297000,'cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8','85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7','1b977693de35f2c9c48a5af2fc529eff0b71730b1241d493e278ab2970943a24',NULL,NULL,0);
+INSERT INTO blocks VALUES(310298,'8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a',310298000,'25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec','0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68','c0b67d556e4a533654a24b3ccdfd4ecef5072118195dee65c7740bf63423ae65',NULL,NULL,0);
+INSERT INTO blocks VALUES(310299,'a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9',310299000,'756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14','299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0','bdf9020708eff06a99f9d0091820eb80868d784faf336e0e7eed6e2246e7f46a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310300,'395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2',310300000,'e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d','8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020','e9dec9062e926e1394ce7810dce4e9a0fcdda4e5ee401e67e547113d092b690c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310301,'52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a',310301000,'4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0','676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0','a96c2989033f189cef59c58e81c9ead54f13782fb93cf5bca337e8bf8b38b265',NULL,NULL,0);
+INSERT INTO blocks VALUES(310302,'ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa',310302000,'a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f','ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021','cfa3b4ecc1ec97e185573a9cf950f1cd3d0eea0b34fede1201a40555daf18752',NULL,NULL,0);
+INSERT INTO blocks VALUES(310303,'d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca',310303000,'23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49','d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4','1fb525686cfc2d2c62e869f435c83b05fc8e3342069de7072fd99a468f0fa636',NULL,NULL,0);
+INSERT INTO blocks VALUES(310304,'b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c',310304000,'6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3','96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5','dc0607a7d44dff313eaf827411dd9ea22b093d2cb8998e376fed1973c75f5f33',NULL,NULL,0);
+INSERT INTO blocks VALUES(310305,'cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b',310305000,'c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1','35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef','8411a1ecf5d9b7a48f53e5b5b5f746ffbf1ee4818fbad5b76e01ee9184b9cf6c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310306,'a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a',310306000,'fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79','df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997','062bf7721c34786a19dcdbfbb61d0e73ee06a5d97473c9ef12e454ec3328ed05',NULL,NULL,0);
+INSERT INTO blocks VALUES(310307,'bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c',310307000,'e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee','272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944','8a0ac9a3373402279cf87eabf6c1a2920fbb1fba6377b4559a95ecbe7817a533',NULL,NULL,0);
+INSERT INTO blocks VALUES(310308,'2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30',310308000,'523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5','30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1','464607010e49cfa74b86496dc251e9d622efe7e24c2575435706b9e4a6e05ecd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310309,'ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737',310309000,'effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017','197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c','644bbcaf78d2dd3bebabb66550ce8a31a4f145748e0eb7c3a551a86675cf3010',NULL,NULL,0);
+INSERT INTO blocks VALUES(310310,'07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c',310310000,'968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002','b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0','7ae602e7d077e6cb45c2cf958f1978e1ee08a124edbcb7309176ab324376c907',NULL,NULL,0);
+INSERT INTO blocks VALUES(310311,'2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36',310311000,'8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72','86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649','73d961aa283a92fe02b50057b135d3d027ac1bd35496353976e2508b26a33343',NULL,NULL,0);
+INSERT INTO blocks VALUES(310312,'8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7',310312000,'8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad','802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86','acd8aac46e499a58b59f622ed57f738f780b8031204b712499975d9a347e07f1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310313,'7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5',310313000,'1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73','e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51','a707d7df87cf26dd21ee9cef6b143fb5876f8f680f5a3dd5f7c20712ad245e60',NULL,NULL,0);
+INSERT INTO blocks VALUES(310314,'1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8',310314000,'8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1','17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695','75bee8dd3f5b11ee602c473057d847752fc2ca398945facc181b255d662aedfe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310315,'bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb',310315000,'24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba','d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654','d574d1728571509fb854307b8fa5501a08ef8f464298e3c462237d61028e5667',NULL,NULL,0);
+INSERT INTO blocks VALUES(310316,'ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44',310316000,'a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239','daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84','ceb97ebdeb9b5f88fbf632151ac15c82c51289e32a69284d198a67882555f8aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310317,'aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63',310317000,'bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647','740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153','139fd14dae8c47ab2328d67ed59fcde87f6c23782337466c5b4f9fa8f70ada77',NULL,NULL,0);
+INSERT INTO blocks VALUES(310318,'c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03',310318000,'6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee','3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c','2e9e820523416f34de2ba2cea26b7c5159b1c50a2a1b7e6613d2d68ed58632ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310319,'f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71',310319000,'efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8','ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222','b8f734e3855b7c0f738249f3f0817b5f87076d03dcd21af9052c1b264b7d37f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310320,'fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b',310320000,'8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a','b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b','65c972e34bb57ba13ed04604f8fb4c01b41b9d43605a08c830b6695ba3367718',NULL,NULL,0);
+INSERT INTO blocks VALUES(310321,'f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5',310321000,'21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd','77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a','917f18cb9a40e855401434a018ae02446714c9677e4855a5c4a7b3256475a785',NULL,NULL,0);
+INSERT INTO blocks VALUES(310322,'ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668',310322000,'01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a','3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3','991dc50ad5614911258f82d15a340f76959b2604d69f3bd853ab58675d3cc0d4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310323,'df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd',310323000,'a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc','2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4','64fb69a92910d9101a56a7c423d2078da6f2cc382dd5d4a3afa162353ca6946c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310324,'367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826',310324000,'d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6','051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157','fae0e171a6ee94889779ffb5945df3e2e9629b14d0e8300e118afb4fbbfa1ba7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310325,'60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac',310325000,'7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0','7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251','384359eb9ca6bce64aac5d7ec11b53d8fe0a690a60d4abf52dc82fff95936bab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310326,'d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573',310326000,'ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617','72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa','ec570ffb8a7d710374026f84a5ab4324d1c826134e1a70ed7a2f5eaa5e179719',NULL,NULL,0);
+INSERT INTO blocks VALUES(310327,'9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc',310327000,'8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6','ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739','c343404a071b294e7055538c070f1b0cef476f68eaa46fa57736572f2d12cc47',NULL,NULL,0);
+INSERT INTO blocks VALUES(310328,'c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf',310328000,'bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d','42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344','6f99c11b1778951d24facf26097eb6eac16227dd30c851960464d57f22fd3b58',NULL,NULL,0);
+INSERT INTO blocks VALUES(310329,'67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30',310329000,'4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b','a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a','c0aca83a6f7fc4a960b9ab476a95aaeedf45b6f76157f63f7299b09d4d1d9de1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310330,'b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c',310330000,'4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3','263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436','3d372c158d70bc842b32b7f3e2ffd95ef9cde05628f534cb678de6e798fe622c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310331,'52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e',310331000,'c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91','646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6','c94247d2b698ff3c3d3f83c3b22e7db7f0ffde8a014edaa9e5e2c87921d3f02c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310332,'201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2',310332000,'cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000','8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b','08905851c02d9a073f8f2fcecd03e843828641bdcb10ad2968380fc186a3f1b4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310333,'b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82',310333000,'b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b','c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67','007702e6e29eb293977921f36c104e0f4a0151e5641d0db38e2e4510748bbfe8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310334,'a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd',310334000,'7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1','24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9','dd2d4d64d57ed022b46659c5345bd760406f71a79002023e27a1da13a27fd57d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310335,'23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89',310335000,'47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644','ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec','142c384f5bf9eac3a7fa5cba70f841941584d621abf435f9a8ca4b9b1ec864ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310336,'ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199',310336000,'c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594','a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c','4668de14fcad314bf08e3a241b8c6da054c49ee9c7c7399990421b1899240602',NULL,NULL,0);
+INSERT INTO blocks VALUES(310337,'055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a',310337000,'a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e','15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353','ad2290997dd9a9ad9020a642bedda1c5a0efc9329496fb5f9053247868c9fd3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310338,'97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd',310338000,'31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905','ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166','205d060f3443635d719233d90051a36842a58541b94d0243920b5be732ce375c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310339,'99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052',310339000,'6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220','af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff','edc87e0d6f923dfd82f66871ae016eaf7f64a891a32d55e64e917e952ff6659c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310340,'f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0',310340000,'7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f','f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92','f92c7d9d0de8cf9858f3a0eae157af19ff857638d8538b1742f609d6d8b3a7cf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310341,'6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f',310341000,'1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b','5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6','4fa796b5f24a97c4a005d57a2208afa15c640c97353025a2107cf72cc9db22f1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310342,'48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7',310342000,'3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92','b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145','b6c559dd500838db20c2aed3e148fa89c309263658a878eb2a84c6091997c93b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310343,'41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11',310343000,'26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2','37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090','c187583b8a55d536d5e6eca2f9cc06f02c8b2efd94db3c912c3df09996b4a26a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310344,'97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977',310344000,'444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908','52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19','decd1a4f3f0b69849d4f1fdbac5a1598060202b1550bc219fc3e15ba2c2a5cbb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310345,'0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65',310345000,'d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e','15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf','a731b3051144292529c7d6b902985492bd424768dc635cc7e031c5802624f1a8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310346,'0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16',310346000,'3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781','58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d','1e5e3139095ea2ae9758a112e20db4c16fea90ea959b772eef8e330ff37768ef',NULL,NULL,0);
+INSERT INTO blocks VALUES(310347,'f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d',310347000,'6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166','716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd','4eebf2b9735a33c0e18fd4d27ca8c8b55d872a6389bb0ada35e09f27c1bcb8ba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310348,'c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412',310348000,'668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf','8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293','12dd2bbd984925a5dc916a224558e66cbac276542ee3a21d147288296ac6571d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310349,'ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c',310349000,'32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12','8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01','41e4b81a51c4ba0ad543970a1410209b3be1a0d3ec684025fac166c8db52ca50',NULL,NULL,0);
+INSERT INTO blocks VALUES(310350,'c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d',310350000,'dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05','1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf','ea35f102808bf8a26d5e7c768cf165490601ef4969b4682c047128c4d6f97f3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310351,'656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f',310351000,'89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151','f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524','244987449406364973d306dbe62598139c0929b88023589a365812a5e71eb49e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310352,'fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50',310352000,'fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb','1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4','031d4dff64916ac3c9258d70572f74a1d6ea472e35c1ccfefaa23ebb8d79d633',NULL,NULL,0);
+INSERT INTO blocks VALUES(310353,'2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8',310353000,'73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1','8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141','cad4178e8f93daea91aed22c2be78b57b41e0ecd881ba3bc07b895fff727b3df',NULL,NULL,0);
+INSERT INTO blocks VALUES(310354,'437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0',310354000,'b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324','8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c','77573354a998f422c5069e51f912f1d9e18c810b8f3bffc78047130069aef993',NULL,NULL,0);
+INSERT INTO blocks VALUES(310355,'ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d',310355000,'ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579','8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea','38204d3168af99baf64d6f5d1adf616ba0d836b15c0f12f8c5b86867a4f2f913',NULL,NULL,0);
+INSERT INTO blocks VALUES(310356,'68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4',310356000,'06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f','3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566','2acad89b01a594cc31f992a3d44effbafc348fc378c58ae1dec71ce8eff51437',NULL,NULL,0);
+INSERT INTO blocks VALUES(310357,'4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f',310357000,'443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b','af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a','826d24f8aae326da58576b14bb24b92f4be288b8313cd0b38ba1cb7ebad45d25',NULL,NULL,0);
+INSERT INTO blocks VALUES(310358,'d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6',310358000,'c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f','635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31','64d584d86ace25a27fcc630c93bf0ec1598ff84d36c7a00a9fa49135412ccf9d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310359,'4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f',310359000,'5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7','eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d','7e6df1662019e3b9e2101670d0b73381e2690e512c97b7a3366c04d349cb1b5a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310360,'cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0',310360000,'b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658','32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b','58e90cca3333c6d949a32184e857631b1b37b190ec954c49f20772e70af704f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310361,'636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019',310361000,'fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c','4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3','bd5e3e0d1b88381f062d92dd3ed978aa48187c81c403cbde5832ffdb85bb2311',NULL,NULL,0);
+INSERT INTO blocks VALUES(310362,'6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2',310362000,'38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046','2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97','0fcf86dd42300375ea880171e8b2fe8b4b5e32e49a99cf47f44f683e6599d447',NULL,NULL,0);
+INSERT INTO blocks VALUES(310363,'a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6',310363000,'82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3','baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d','7858f1f096a07367403f604be1423cc72c7e4ef081c0d4772801fcc5b0198e38',NULL,NULL,0);
+INSERT INTO blocks VALUES(310364,'67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9',310364000,'cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4','973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73','9124a7e2148fa8d962e232e568710593fb3861dd53b6288cf904693bfb714bfa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310365,'b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409',310365000,'49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617','aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932','318a1e2865a422b38ca84c5791a5c58b36e521ec1ff8a4df6f0a860411817733',NULL,NULL,0);
+INSERT INTO blocks VALUES(310366,'a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440',310366000,'687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597','610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8','e61cf39628b1d43a48443e294f0bce4a9be814381abc1628835664530fe8d41a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310367,'326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47',310367000,'d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7','531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a','3e868d60c3153c31ba83298c1d4aae099da68a21e9b9a4092524c1ac1f7de9aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310368,'f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006',310368000,'97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba','289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e','6169c9dca78bfaea926977e069d40c841ba291fedbf0317372889d6e677ba2ea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310369,'0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da',310369000,'1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66','a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b','8003f8dad350e74b3c92a05fd97fcfd40df87c238ff0ef1e970367d2fbdd67c6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310370,'9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67',310370000,'578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486','d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58','0b32539753507a56ef0903e510f8702e6c46dbad1c711088663d0ac177bc18c3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310371,'7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154',310371000,'473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492','8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6','1831fd632b07925c3c872734e5a6c8477f5c9627cd4fcaf84ceb0f1c672f8d57',NULL,NULL,0);
+INSERT INTO blocks VALUES(310372,'d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d',310372000,'0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c','ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3','dd4b574811986e7ee1339e3e93d1729c86df7bf083c46f3d1a312bd5055bdb96',NULL,NULL,0);
+INSERT INTO blocks VALUES(310373,'c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0',310373000,'48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d','b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea','e2d559b62d0d4058a4ddd55f79be891cd8d021019238489d050c7d3eed81f931',NULL,NULL,0);
+INSERT INTO blocks VALUES(310374,'f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e',310374000,'aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4','46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60','1ee78026540d87a193c602de925e52b645eef726dad5fda2fc759eec5d6257ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310375,'da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458',310375000,'2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b','9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb','00d006b3b5d64246407d6de8ad00f7b7d79c0d3a7912e41d4b7959d542865438',NULL,NULL,0);
+INSERT INTO blocks VALUES(310376,'5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc',310376000,'a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82','a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767','71f7f745bfe6891be3de7c1c9cb73347b4a8dc627b6c861703f227c4ffd134ab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310377,'f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3',310377000,'e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70','4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579','92bd7c3cfec934d773594b68e1f913273cd994e94aa4292b753783e8fb0d5f59',NULL,NULL,0);
+INSERT INTO blocks VALUES(310378,'fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce',310378000,'607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6','49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab','ea83e7971e82ef366ec96fd9141737579bb3ebc10e9f4469afd9540a830b9d41',NULL,NULL,0);
+INSERT INTO blocks VALUES(310379,'d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c',310379000,'9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea','4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44','c0c7c05ededa44c7e65c0908679eb34d7cad986375e15ebd0d0f683c83729a58',NULL,NULL,0);
+INSERT INTO blocks VALUES(310380,'292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae',310380000,'d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532','77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5','ed4a29c3387961059f43795861d929aa20a337a664fd984331f2276b35d2b526',NULL,NULL,0);
+INSERT INTO blocks VALUES(310381,'6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38',310381000,'8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a','48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6','ed39c524ec141484d36b2d000b552aba4ddffc254462198954d1c365498b344d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310382,'0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8',310382000,'809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797','159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f','68c3c0a0602440173dd56bde3c36da766981ddcee65346a6ac0b563e3b7a348e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310383,'992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508',310383000,'d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903','aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a','1ae61f57d27ee48f6ce52e9b7db2aa123f51b13c535112fed565e50f3356d5a3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310384,'d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e',310384000,'fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2','e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111','0d00edc4ac46ff2e00ad11b61ced839ebfa03a9e33e7596bee093e404c0cf55a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310385,'2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28',310385000,'6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef','d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb','552784daedd82dd951f7c620821a5dd0fa63eb6e2116af6ca470c260e47248ea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310386,'9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda',310386000,'4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff','1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee','d72a4beea7dae0c972feafcb1542de04eb1f407c2446964a77b4b15f2d489bb2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310387,'b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b',310387000,'327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f','d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545','6c4fdf12a3944933286f82ffc2cc8ea5717e92a79662a1002ee87b6c3c328358',NULL,NULL,0);
+INSERT INTO blocks VALUES(310388,'41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284',310388000,'6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401','4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e','7fc9103dad9e6891d9b9de61a14acf6f0a5ad35bef48927444252504290adaee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310389,'3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607',310389000,'89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9','b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce','11e6afd0bba96e205869c3a4a69e66234f9392e0302ff5f5ff49e83c834cbca3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310390,'f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a',310390000,'2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50','8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86','e52c228091d702041c31e0e38e84fd66e446dd2eeeec5fddc782877720ceaf7d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310391,'fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952',310391000,'06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831','b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa','3d53a7993178fb1677adb5db2583a2a98b71a50e37022564c92a563f76970968',NULL,NULL,0);
+INSERT INTO blocks VALUES(310392,'f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d',310392000,'44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149','97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a','1cc4811a488ed35ebccbd82cceba623aa79b82061cbf44656730fe1afdc806e9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310393,'e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308',310393000,'1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f','c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3','448db6001da6b26f80f360db92b09f5d3f7fdca4153b6d8043d5c1ad6a819e65',NULL,NULL,0);
+INSERT INTO blocks VALUES(310394,'2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f',310394000,'3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770','e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91','520cf9ed4916983937a5c927df80dfd8d700027da8c0c9ad89b485b484a9e011',NULL,NULL,0);
+INSERT INTO blocks VALUES(310395,'19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4',310395000,'872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555','2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5','75ef5223cfccc9addca156b0483556b1e66168a49d0e84cd5c07389b276a4fe0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310396,'aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e',310396000,'b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a','25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6','b93119cb624bdff14cf408f1fff736d5dc1635780de76556f31787c4769e1492',NULL,NULL,0);
+INSERT INTO blocks VALUES(310397,'7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c',310397000,'b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66','e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44','c30bc0cd819f567ea23116d924ce974964dc9769bed4fb6ff685acfe007bf684',NULL,NULL,0);
+INSERT INTO blocks VALUES(310398,'55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e',310398000,'9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5','0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9','bf14172c1c7249a7e6b41ed7c80a1163f6e4a573dae8d15afc1ff8e64aa111ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310399,'765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a',310399000,'50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804','82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340','6d5cbc8eea82b8eb7613b04131adce13a45a3001c5e6dc037cbce36d4528acc3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310400,'925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218',310400000,'349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd','e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18','9e1fcd3d6621686486774cc32cd0fd9685461be1facd2e63278f74bfb478ad75',NULL,NULL,0);
+INSERT INTO blocks VALUES(310401,'f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351',310401000,'52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5','6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81','f3baa73765b6ebe741681361c22127cd7ca4af545ed41188b81c54477fe4e10c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310402,'1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44',310402000,'8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab','3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33','9787b7b45182c6d57118df7ddc9a5e8023ac1165e57b2e7225cf48e2e47d19ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310403,'f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c',310403000,'fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827','1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f','5edfa935fdf026ead1ae0d7f99f6e6bc2d48209879f4c841df19f6245596f55b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310404,'401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040',310404000,'47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f','10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5','75d90d2e7b129814b68fa5dd4fdcfc85ced4d68c40fa2849f90c67977e9a9b02',NULL,NULL,0);
+INSERT INTO blocks VALUES(310405,'4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a',310405000,'185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096','8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435','fcb93f66eab0d100dd46545b1aa8abbb8d847df3aa49eedfb562c499bf719740',NULL,NULL,0);
+INSERT INTO blocks VALUES(310406,'6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97',310406000,'367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59','0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2','fa4c558f1492ac0046e54c69f0810e14ff56d10c5a8697437d5e52a3a8cfa027',NULL,NULL,0);
+INSERT INTO blocks VALUES(310407,'84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e',310407000,'2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1','a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934','de9ac9c6bdd7a18930a0a225ec8711c8b43ea886859373e1227ab969f969bd5c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310408,'4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda',310408000,'fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3','3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426','1862d4012155a9831a3287984d9717d9f1e353e0f478912adb9d9a54950813eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310409,'01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba',310409000,'5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837','68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b','843e91b4f8f556351d5f34b5dc9ec9e7f4dcf7b7f9a950fa53fbf6cd21f5b097',NULL,NULL,0);
+INSERT INTO blocks VALUES(310410,'247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348',310410000,'93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0','bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008','01ef820183eced548e652869011f1d2cd7fb0c2e72e34ea87c7b1dbbdc117cfc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310411,'26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2',310411000,'8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d','103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55','f51297150aa18a34815b9fa1b190e53713cdb1edff7b14da41921f1e1cebd227',NULL,NULL,0);
+INSERT INTO blocks VALUES(310412,'ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20',310412000,'a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634','4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f','51e8bd0ce5e1fe8c1838080eccd47b2945f767dd999de275e2494bce24f1b80a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310413,'21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf',310413000,'768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283','7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38','6f8b700a381e9b1899549129e333bcb4482147d7a3a013b3718bb376ba9d12d2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310414,'8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6',310414000,'906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec','807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621','37e351cfda5d24a99f5519eeb2ad241d1ba23f926599e591ec1a5a87a98d4a2a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310415,'dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc',310415000,'d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e','67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3','889bec7116eafdb2d75800de39bbf44e28a2b7104a0f72091fe1d44346f45ce0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310416,'7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b',310416000,'90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571','1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c','053a7a0c1e332363a315082c7d3ebe0ec46010ff292c326847f097b23fb94105',NULL,NULL,0);
+INSERT INTO blocks VALUES(310417,'2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002',310417000,'19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b','920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5','0ec21b071e93a654fe0acc298eecd6755d4f7f968578b4dd4a2823031482bdaa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310418,'fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509',310418000,'2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d','290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a','d68b4737689fadd1043e2a1df010e8a5c571c02aad90ab8657bb915bc7ab5173',NULL,NULL,0);
+INSERT INTO blocks VALUES(310419,'9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e',310419000,'7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37','d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539','845cf1141b13f3edc1b3dad5f0b76ae13255ff744e520f68b1652f7444e8e369',NULL,NULL,0);
+INSERT INTO blocks VALUES(310420,'138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372',310420000,'3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509','ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25','ecd60ce5bfca5707c1659c5257c7619c65ea946ffc84737f7e431397c7b75acf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310421,'71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a',310421000,'1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b','01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4','8d8a4969412a09dc50881fc22965607a9fbec8377e905630f1c0123d466b23a6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310422,'cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158',310422000,'e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4','6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583','080360e72aa3a0e5cf5db215604e1f88f13245832a6317337c594346d6bcb0f5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310423,'6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db',310423000,'ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375','dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92','24049c109410fd7e9757b5a79d44a9395f8be026386172809c40a9a2aa1c2f6f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310424,'ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad',310424000,'e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e','bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80','28487ea66f848a80139cbcc9672e74363859f4bdcb3c0119f97fdcfaa6bbca9e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310425,'73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7',310425000,'29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750','2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1','fb5eaff1315e3832032d216f875007cfdc4ff836230107c46ed70e7c398a8317',NULL,NULL,0);
+INSERT INTO blocks VALUES(310426,'9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415',310426000,'9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15','c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289','ec477f826248341c9c69a641b4e2c492bc066e4cac8c5acd8fb672f1a53680ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310427,'d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a',310427000,'f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e','81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95','9ee92aeef748ceaf5d7430c27b9763de6acdb51e7354d2cd4127fde93f665c09',NULL,NULL,0);
+INSERT INTO blocks VALUES(310428,'2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2',310428000,'9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d','002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c','b5eeb4d5c377450a9f76cb9478336b2c2c923d202e34baf26921fdb376829d4d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310429,'086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d',310429000,'ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5','4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7','14adbb4a27e071e03732ca48f299cbb499a42dccb90f47bca54973da2d69fd2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310430,'870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048',310430000,'33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21','3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2','0e89d072dde10174bdf350dee0a3173a123b935ff900e1aed112a7b3874d1e2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310431,'20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648',310431000,'ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1','67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81','ed50aaeaa24fee6e11ab673511fef6b34e8ff7dc93a7ce1577d490df0618b260',NULL,NULL,0);
+INSERT INTO blocks VALUES(310432,'c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93',310432000,'7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f','c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471','0391adbb11914f1543fb6105d4b5d527bd4ea3c7925fe93c214e8a990de812ac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310433,'997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725',310433000,'a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279','f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5','23a87d7e855d65d799a49edd6f528f46de68c6503d31f5a2085b9283ca96e3f8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310434,'61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8',310434000,'e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc','173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7','a049224ac8ef93b12a2d484448fd7d630979344992b734ce80ea935af759645b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310435,'f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f',310435000,'e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f','a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558','af3417fc486fd4b5bcbc1cf4738466b40ee693fad1e6ebd84bac9289c42499d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310436,'a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19',310436000,'82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7','c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05','c2e8f4987ff436411c6729a50a8e8449c189df1b3c57342d588080c675978eb4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310437,'9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002',310437000,'70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda','809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26','af856b378def6d5b5e4f47e88ce78cb92f05fa481859d35697df2351654f9737',NULL,NULL,0);
+INSERT INTO blocks VALUES(310438,'36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc',310438000,'44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722','2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196','ba437d66bd9106e5dfba9abaca8523a49402154241336c48e5fae18055348265',NULL,NULL,0);
+INSERT INTO blocks VALUES(310439,'4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877',310439000,'66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163','41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d','394de9c4af6f1e72606fea7c07233bbe50c658548ff8f1d36868b19d4eace8e0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310440,'89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a',310440000,'5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c','c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae','b12cd5754c6ead386f3e75c6770248d05281ab99cb08db994a1bc184c8e37c87',NULL,NULL,0);
+INSERT INTO blocks VALUES(310441,'2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15',310441000,'2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6','f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710','4f1fac34f1c683f047ad57f735ed40315439b5efe2d8e4243527b3b6c60b3cb5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310442,'50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec',310442000,'a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9','5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9','8f34423881bd18aad46c3452b07649edde8d7b0308cdbcc57de76ffae059ed14',NULL,NULL,0);
+INSERT INTO blocks VALUES(310443,'edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a',310443000,'d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5','4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081','1c244e91c5a685097f48f55f81d063fc917c816933cad2bdff2357b8a7c063eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310444,'68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4',310444000,'ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b','5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293','bacd8f1e97108e18297d012e2ebc95279e8140cfcf6c3b6c145d015e45b35cbc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310445,'22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef',310445000,'7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc','6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6','d669de9250dbd03fbbe5f4e4f01f1f1e6a95a30d98732340e8c81743d1430004',NULL,NULL,0);
+INSERT INTO blocks VALUES(310446,'e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837',310446000,'db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204','e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4','d2e44226c28c5e6e097519438fea8639215702130906c4ccb2573aa22acf6924',NULL,NULL,0);
+INSERT INTO blocks VALUES(310447,'3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8',310447000,'5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570','026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0','be181e7ddfb3aa0527e059763c972e160b9d3e8b89f77b1dc87a9e870c4fb3ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310448,'6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10',310448000,'ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633','e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb','598149869bcee867166fa1d679ed1a2237f77a8df3b009a2830cea292d990248',NULL,NULL,0);
+INSERT INTO blocks VALUES(310449,'9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779',310449000,'84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1','4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870','afca019eafa05f1493f11ecf78cbafb7e057d1d65f4dcff8ba28353b89912704',NULL,NULL,0);
+INSERT INTO blocks VALUES(310450,'2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3',310450000,'0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73','c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e','2245beaae679257ea4c041f653a25d5682678c562573c0a6d705eba7e8de80dd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310451,'55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296',310451000,'790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f','3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5','669db1defb1ef01bab9fc747e8d3e8d0eb5c055f665272510c952988febd034d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310452,'016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa',310452000,'30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586','a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c','08be855eb4a7530f27caba04a0d694acf1ff7a11a4eacb3d423fb305841c15f8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310453,'610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776',310453000,'56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355','a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1','c6d61883c60555b2ceb5db12f80b6eb2a5f1ff9f4710d56dde9cc5856ae5f904',NULL,NULL,0);
+INSERT INTO blocks VALUES(310454,'baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9',310454000,'38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654','022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057','fb5f1049a29b4bcefe05d7a7369e02282641d032abae4502def0a3f1e664a83c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310455,'31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744',310455000,'b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28','91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a','7e489e12aacc1229f3a6acbc43ea1fa8d2d3f2138c86a72981006ca3c2bbf2ec',NULL,NULL,0);
+INSERT INTO blocks VALUES(310456,'5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa',310456000,'6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15','5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26','57e01d9b8b6d39d98340d47e2500f9c8eb6ed608a7fdf73dae13cf140dee538d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310457,'9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9',310457000,'8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800','061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81','471b03eaf728606a904cd338bdffe853f0292cd01cc74e3b7062e00131be15c9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310458,'deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac',310458000,'520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c','b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297','94e083334b06f881e2c885040f6f30511529e6152310b438105a7882d401080d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310459,'839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565',310459000,'d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0','21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97','1f78f960cf305a7fb66750d6df1c8c328cd92ca738c348422a85de6f9803cc09',NULL,NULL,0);
+INSERT INTO blocks VALUES(310460,'9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b',310460000,'33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a','2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d','a1a8f755136d8c1e002673a43ae4f9c25a998cb53e84c3613a8e1e6658da9846',NULL,NULL,0);
+INSERT INTO blocks VALUES(310461,'8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b',310461000,'22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f','13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0','10e50722472b67e160edcb8dba4e23ee3f66814ba243e222fd9c5785286ca090',NULL,NULL,0);
+INSERT INTO blocks VALUES(310462,'16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146',310462000,'74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32','4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f','f9a08101549db0aa9c6e67ae3a2cca46a59526dc5a313c2ad50f76ec5475f820',NULL,NULL,0);
+INSERT INTO blocks VALUES(310463,'bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94',310463000,'b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1','7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50','caa64b96bc124bb33e6a9042af4ef016d359f2a78383e7e76024b6f5a1e3067f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310464,'91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60',310464000,'00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb','28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52','539ab03391bc8b4a2e62da7208b35f028011166420d97e0b335206a3a3ef6ebb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310465,'5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d',310465000,'09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851','7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d','fb9d564583c18088c46b49126dedf7389071698866951a2e21447285893fd444',NULL,NULL,0);
+INSERT INTO blocks VALUES(310466,'8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc',310466000,'23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd','57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900','74518dfb141064392b09d36ce6e749781162269155a0dfb8fed188c29bfe968c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310467,'d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3',310467000,'a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf','fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265','93cf78601c0e3a8a456b115962f8ab58695c582ff136737eb09be1a7680f2491',NULL,NULL,0);
+INSERT INTO blocks VALUES(310468,'d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891',310468000,'fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3','5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2','dd0290589cda516ec6eddb2d75d86d64441550c19e8b8d3e9adbbb1544cf0544',NULL,NULL,0);
+INSERT INTO blocks VALUES(310469,'2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755',310469000,'09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf','38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b','539c38d03e2330542cddb0826e1787d061c5521bc2665d4a95f865e808108f24',NULL,NULL,0);
+INSERT INTO blocks VALUES(310470,'ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921',310470000,'41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a','bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae','9eb29fc43349c9c9eba529ff4994e9d6f91063e923e37136e14efdc7f0280854',NULL,NULL,0);
+INSERT INTO blocks VALUES(310471,'fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739',310471000,'bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274','d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5','dd1da36cbaf6a1417087abf478e9a63e828d79cc956de97568328429fe35e172',NULL,NULL,0);
+INSERT INTO blocks VALUES(310472,'57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7',310472000,'2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c','c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13','06055afb3d5c34520bdebfa82843416194751f582864050cb6ff8dd206b8a420',NULL,NULL,0);
+INSERT INTO blocks VALUES(310473,'33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095',310473000,'1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88','ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459','b1fa993525a8ff98aec397fb3f0e882cf1aa01a0a07ee3bca9ef543bc2366258',NULL,NULL,0);
+INSERT INTO blocks VALUES(310474,'312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09',310474000,'5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e','b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48','f61554899fcca1135dcce45a468d91170468a8531e3ee564ecd84372ce32f7d1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310475,'bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb',310475000,'b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8','345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89','3e926512bf9640bf41a62025435cf17bf9f76eb10db313ec520120f47e0b8710',NULL,NULL,0);
+INSERT INTO blocks VALUES(310476,'3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0',310476000,'070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c','014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41','504ce7a02051b85beec5aec3f966ef1e27296818dc1cb2d33d90df9addc2209e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310477,'7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918',310477000,'4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1','1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b','dbcf2532422d19dcd61cab53ba009a72ea64584bf2963d1a54e6316e35ecb4cf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310478,'c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0',310478000,'d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590','cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb','2d38354f588f7444d08b83ec1bfb229391fb9e536d39edd0c6ed01e3ae6615e2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310479,'f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030',310479000,'2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0','81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6','cffeea14d3d4af3dec1742a1e754397f09f1689e33cc3b38a382d74b4ffeee79',NULL,NULL,0);
+INSERT INTO blocks VALUES(310480,'2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681',310480000,'aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c','8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385','7feff465e13b22a734949e2d3d6f1140f3a678691da42717b38b5e0994df9c95',NULL,NULL,0);
+INSERT INTO blocks VALUES(310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59','8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5','2ae951fd6cf6e0889356eedc61d768c4525631ead613256b725866de2b88ecf0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209','838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f','54f9d1ce2022edb448e6b60988f10661916a2be3c0c88d257f4512f4661d3cfb',NULL,NULL,1);
+INSERT INTO blocks VALUES(310483,'013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460',310483000,'fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8','2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf','ecf5eb0a239482dcc60b55ce9d7ae555d91926d80eb7870deab151d5b0c30d89',NULL,NULL,0);
+INSERT INTO blocks VALUES(310484,'7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b',310484000,'310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad','ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2','afec302c107b27644ee0f39a850cca9f86703a0ac8d78a40580694d33e7c3cab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310485,'eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478',310485000,'b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd','c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f','8b2a5b6a613c9f190a253983aa6578ef496edd5a8426aeaae21dfd81475379c2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0','ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab','74231803907f08e1d469edec4cb87590248b16b49e101fa502fe0bb21645dc34',NULL,NULL,1);
+INSERT INTO blocks VALUES(310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d','76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72','dbcff459bc535e44556f4ca4fcc7a8992bddccf9be2b2e3880437e4203be6b99',NULL,NULL,1);
+INSERT INTO blocks VALUES(310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104','78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da','3ef2798c9af0fae8ddca24c6480f43428d5612c19ab9b1340fa19a8f56eaaeb2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc','23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418','770a0750a3f1e400309da9b29ccba06399e3faa2c5b74f38b114de6a79e24fb8',NULL,NULL,1);
+INSERT INTO blocks VALUES(310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909','5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7','b10799e81bef49fbd4b57768bae9fdbbe85148f35fedcdf273327c0d78e7e1ed',NULL,NULL,1);
+INSERT INTO blocks VALUES(310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6','f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8','9e9c8f8f8d7dfb437d16e3fb14b93104a64d31577e5771fd91ad73d816d0feae',NULL,NULL,1);
+INSERT INTO blocks VALUES(310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740','daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e','6be55e89129fde30a1c54dd27eb62baf59845f5f35cd43a435dea6ba7b18b715',NULL,NULL,1);
+INSERT INTO blocks VALUES(310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c','7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6','8d04d8d9bacf66aec04b5eedc6dae4ec20cc2964e7e2a03a96a368dd8cc92bf7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919','9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014','f9e39883736e349f6c06f7a0f7b0501d5cf4c9feff4eb53e9d3c0afafc85c6a0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd','09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29','3f691c9db715a8e8824082201e3e64b8693be7dc0cce079b89b35da3ce6fdb6d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941','9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4','5eca451c1b5b96497fd7e9c95966aee8f7cb89d5c7a198059631e9e4db60df23',NULL,NULL,1);
+INSERT INTO blocks VALUES(310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819','ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519','1b1d5d1b626a20a86f47ef4ac50bc55ffb05bb7569bf294c312d70306eef77b9',NULL,NULL,1);
+INSERT INTO blocks VALUES(310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414','b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7','6bb9890fecd1e6d7df2077d3a93ce52295a7e77c0400332c287b23c00318b4b1',NULL,NULL,1);
+INSERT INTO blocks VALUES(310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233','c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3','1f284bc0283d35a0e16080380df507528f987e1b74d7f221eb4214bd8acd4efe',NULL,NULL,1);
+INSERT INTO blocks VALUES(310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b','d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767','7e9485dcce4f7f6aa33c498249ecf99ffb3cd102cc30888c70b93c73d43d591d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3','b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e','56e65a2c34de5746cda3c9bd15c28c0fce98bff2f61a0fd60c24d998ea87cab7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a','630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea','7a09fe3be87e3463a81f0c31e1d5a380f7171ff1a4ef855ba769fe877936a099',NULL,NULL,1);
+INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db','a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2','cde2608bae2eb699993efa4b79cdb33288c5220c9b3771db3803f1f8555348d4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','9f802ac448be60ae7dff91bf0d9be9c3ae9b22e42967592d1de7ed83c5d55481',NULL,NULL,1);
+INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','b533acfcc0186c3673ef702efe5259fa88b0327e7331f86c7c13d38048201f48',NULL,NULL,1);
+INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','bdb7759ca028c4e77b935218321adbcd2b57350905e2ee17163c7622b109e44d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','70607a9526c0f2c4361fea26aaf5e3f11ffc02ba166ce5afdaf9cfdd8d4ba4b2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','4a4d72b278971ef337754a3424d4cec3799122eb07fffb2412087a9d70c4e74b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','533077fdce00d88540869011d696b65ec5ac5de1255e6b639a547e3ee326dc89',NULL,NULL,1);
+INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','dc3bbd61e07c70212e5bc61e890ed464a44b69447624d6e375f4d1259323418e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','377b80a9b46d405fea95879d7245fc9ec8c7a94a311b4c11dc7412f4e4d5beb1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','e57fedf50f5e589557828ef99ba62eb5b487d7074a3ee562909be037f369a805',NULL,NULL,0);
+INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','40cb981160e56743bcbfeb5332557a77609fd0469f4aaf45a0d13a96a616a4b1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','f09e3a98073d66ed6ab0e60b877e57599ff54b2f711e467a5be30a7e568deb3d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','e1e735494efe8655aff2d85f8da16c5bd49c6081b9e5663aa1e993eb6636b8bc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','580e09a9bd27bef7b3cca49576088d409c9f9216927708494785d3ed300da77a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','f7fee89aa4742dbc8530f49e453d9d792a9551d1eb784bcd9cf91229f3d33723',NULL,NULL,0);
+INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','fcdab08b80aa353c69584af2691670c40f14d7005ae8211b8c55d838e69c85fe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','1d3d14d33e2a0c96b22c9ce7c7814a4068621c24ca7b89011187012d0be6341e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','dfd3d667b1fbaaa916b09d1b594609d58f54dde5a908a6fd0cfd517047ceb85e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','2a22c2ab92e53c25f51968b1faa6b5421a740922b256353bc9a5040d6501aa8e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','f7e5b76fa88a19b4b9f5f287f0b907fa3ae57b30a5ac19435afda7cdd4eb77ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','bfa61c215ee22be3f7efab822268aae10991d0c0b1944b07fd61912c87f032d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','ac00f053549ea8f45bef6bdcf3d513a45d9dacce6a144d06f84b140b00be91d1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','e14d957d8509b0eab7cde558efc2a05700208603818becd17a9a13a118d340d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','f80855d680e2abb67a5a25a5466f3145ed268296da900ed7e618c2fd5f717891',NULL,NULL,0);
+INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','dc506661dd766d375b70999ab07b57e84fb629fc81c7a93bef55f28658ea37c4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','cf32eaad387c5ed2b3d65a8a3c170fa813341df398a11d014ffd4d8eaf328c23',NULL,NULL,0);
+INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','31fe60b84c42b208ab135789882f894cd65e34c8f884ac7dfa4fd9ded9cf3ecd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','6157abc3bd4a2b57bd150185f90769621dd92a7b8ce718e189572a613442dc19',NULL,NULL,0);
+INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','6481917e4602ccfbd0d9f6515aa64686970ddb12b573154ea65c693d9421735d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','558baaeee5f0a6a25ecd524e9d5ebda4b1b239c7099774966129b3d81d0f432d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','f6826bde541e9d973bfba4cf31098cca10fcd051c21069a2c2ace23c998662ab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','2790ab8560aef67849590b0982be710478bd347c5fab2f9cd18e4b0d7e2f35ea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','94643866b10a6bfdad9483e2f91cab8c353189cbd11533723f61576b8bcbdb48',NULL,NULL,0);
+INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','7c6aba3b11d92ecb27db8d623e22e362530497d994dcb58c9494b1fad8390c3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','7b61a5f9f592e156c277e5663a214b2d1f6dff3759945ab00ec5df0bedea7132',NULL,NULL,0);
+INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','424150875fe6abfa671114f1de6ee25cba158ba9a785f4de66016496ce4b8245',NULL,NULL,0);
+INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','cffa0d5acacbdab0f647b1d616e58f5b6a77cb4f152132f8646b2c0312022777',NULL,NULL,0);
+INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','e2732a291f53732dc9f17d1e5b00314233e97647f750c9034420b111d422cfca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','4b2a92757890f74c8dc1cd25b79087de549e95c41b2df88275b1c445f3ce02e7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','b24ee3dd85c82c88f3fb9eaa06ed92ca376686f87a614a2e07c7fd5f035bfd56',NULL,NULL,0);
+INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','efc83e6cd724fe89d3d3fe1c57dfa6bd4b91c63399a019a11d715ba9bf6ce0b8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','8bf5a381abc25bc415bd415a27cb190e1f285c88ea31eb8c459dc4da65fdd444',NULL,NULL,0);
+INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','fe3fdd7b83da05622f9d9906587511bc99c48bb512f51faf674bdc9e985486cd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','7dc2536ade31822424c3a8f34fbdc9c6706f1bc9c366bf5f4aba14559d3ee445',NULL,NULL,0);
+INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','217081e6577ebd699ce0fd3814beb7ecec042579293f12d08137c8c50777f961',NULL,NULL,0);
+INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','ea397f7c401126afbe64b1a7857af6c66c470e88e17241e98973ef3521c2fdaa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','284bfd354a0631172414fc5262ec0eb0b32a22a11a89cfd4a3530fa139965555',NULL,NULL,0);
+INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','b7dae5fdb8f2a8f5d8b2b60d0be7262f5f604187d6af40bd3cec4aa4a2712c97',NULL,NULL,0);
+INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','156b7d109db27f0c5b438f50f70686d0b74697a2ae324b697718f9baabd7c644',NULL,NULL,0);
+INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','f0dd7b04ecc60667e63b095d1b8094fa3115eea58940f23b9c37c6bf97b2ab22',NULL,NULL,0);
+INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','8e8ba18912c0725a5b4a918c3b8f1ab876922308a37606d6a5ac41d165471ff1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','7e4151c22059e28d21bbb58532dbff0da9541d6035639a008900cf33da9d941a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','a05a55216987e52a4cd71edeb67afacc01e4de5687cc1d86d9f988053a0060b8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','4d2775a870dd20810e75af34ff984483ef38614e5eaf471ec036696bbb30c3bf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','ddfc9adb4f5df158dec97783d9cf6affec910e1cd039174eedd44f17b8778514',NULL,NULL,0);
+INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','3ee7e75a498506b1776d53c171fb5ff06466bb32145e3413aa181133bfe7be3e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','5b9ecb55fb2754a4637eb9a77ad86dd3aa5833b4b752570c01bc30a9023f428f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','08c63d3d75a56117d943287df9f2f5e5b5aa8793045fe5811cfdae2aa25b99c2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','634ed3c4f90105f17393b6d06d9468bfd20e72f54da081fe29993c1cc3646047',NULL,NULL,0);
+INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','25b4888e600f4dac90272171cc5ca2d25956da67479aad56ccc9ade21e1af470',NULL,NULL,0);
+INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','f66da75f6792a9f3cd9460b51e6b1278cb03ae295398c0bcecec62848fb09a55',NULL,NULL,0);
+INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','ad12978790f26a911c79c2199a35fbd742883e7e2feeab47f2f6114411c3da55',NULL,NULL,0);
+INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','22a65d8c55114b0557255bda0ed0fef09d82c4639d72bd54afccedcd6536e120',NULL,NULL,0);
+INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','21ec649a7935abb03ecfcb280bd0fab4f230ca2d91b6c30ddbf33ddb04e4ed4f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','e767acab4a3ce2dd6bf3afcba93a2226ee01c3dfc384caa303e428d4ff6ba9b5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','5328e9f8b6467d7397e3ee60caec087c4b50f07a42617f6224f906dc7d85e4af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','8f5d787fe6cee69046a2fe9e538ec4f34b164cddab1889ba581930c5ceb94da2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','980ff0336aa223399aa25c8fc903f38b4e06a5c071b0367dbb44f9e3c3434ea9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','2e3b5884fb5032203ceae5782c9bad4fa62556331f98d1dc68b86c539777601e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','02154c31facf51c1981bd8a60ff12a2ebff2660f1ee9b8df14362e0b87222ae7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','b6d1efc33a75c137746d2a7927f93700213176937c66ac9e988017519021e705',NULL,NULL,0);
+INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','69518bdaa5777b5938839c89b6f38ba7431389fcfb4ba21e75155af37f204c33',NULL,NULL,0);
+INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','6374560641ede2326a655baa894c0ce3af24f6ae931e6ce5a2db6e763c53450d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','163ef3cb33c25fed114247401fe7c4b29b6c24f528f97beba30798d277ff2277',NULL,NULL,0);
+INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','86753a4a848575133cf073de2466f53c3b295b1652f5d905551cbcf1e41d1507',NULL,NULL,0);
+INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','37edfb0969ae5aa3647f541f7093f9ce11c73ee131aa4f40c50d83174eae45d6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','e2a8a0eddb5430752694510ad9672b226e1ceb00803567983cb353b901e5ee02',NULL,NULL,0);
+INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','9cf513f576f18ada23f3d8ea08fe0ff798bcb24b63706c510fa08da0b1dd68f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','c0f216b427f251d36f4c25519bfeaf16ab6ce3aa7177439eb7acc3b98fd1aa35',NULL,NULL,0);
+INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','818fdf1b55b56125a2572af426ae72628c792b38ba71b9c4309b81b7875640ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','e2a1e7066ed8801df57ff449d271f57de4fd94e2a3f2c26d585b0ea6bdb4beba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','7d9cc2e20887fdddc472bd1f160a24eb51224a7b7414d239ffc3af6fd2ed50fc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','dca4ae1aaa0516ea81ac2cb5118b4f980cebc46263929c678f3fd7c483bd25ce',NULL,NULL,0);
+INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','fc6f9c59bda735c1fddf3c393e290edac38cdbec0cccfdd3fb47c60ea2d81bca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','9285af91e93c082e04cadf02726578f7e562ea62fe021de92cca66d2b42133fa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','14fee9852e2292cc9d13403f67f6c71ed2bcf8a6e5b0bf7b327b4ba6f0854b8b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','7ca7563648c2333e269bcacd41105d1ffafb80f51065b153a4ee2c91317ef6ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','3d59f48fcb005cfda23fa02bd91080db6d45d6beab2be7967eabe516f071c940',NULL,NULL,0);
+INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','735ad20bd609e7af27cd05128025b3f28216297e260107e21a4dfaefc42475b9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','390e7fc0b23505dc054cf152ca6b4e0f85e3de5305f33a5b6b6babbbba00b9b9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','f4a40cacc4b43995dd20a807dd32a353b9abe4d4cfc120f91fae0c9d18e93ecf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','719d6d0da72b9c877e3e397b67b4b9e7b39058b7d14fb9b838d9091cb7d9643b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','3de82b39a5fab20c1e9ffb199e85e40d062f2a14dc6785915afdf7237ee2d91b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','4d1d8b57d6b8f75c625171621f01575aa253b9c69e3c01c9a26a22ddc78c436d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','672977e75961f1b6fad4871e1904d114be10b11181f5cda075141f98ab3365aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','e406de167f88936588d2d427bd6b8d9c90a947ff6bfca529c37042515b242f75',NULL,NULL,0);
+INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','bce85fb0fd133918ffaac7660520e80d7b42272b18e01fa01ca330bb384493ba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','75a871e3857891a3494d1f9aa3cefd639dffd27538598c97fe9e9fd45f42d26a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','0e4a4da780b4f2272d88ace7413d0a0f19a9b3beede089f9c6346f7143bfcc09',NULL,NULL,0);
+INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','a2e8a5e63c659b877359f4b115f6aa507fe9d95f9fffac20fb8613063254f89e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','91a480a959b6c20dd9c0003769792479b4ca1f3187cc95281d5bbd752898ead8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','7a70d8af9cb999e78142a4bb5fcf431a99f6de479ce74470be8c95cbc447b1ac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','01e35ff7b52aaede21978f33a444e8322b191eac224e4327746e34dbe4b53a4f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','0002cb44723839b1eb5416453b1bcb390c7c25f2ff6f0fcf3eb0a643dd45bc87',NULL,NULL,0);
+INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','2d29551343c840afcc23e5367116922594a9cb3dd49c9f98c331d2383a1d1b61',NULL,NULL,0);
+INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','072a514d43030b305cd5ab52dc7f025a6fa8fdafc700c8c4840922d763e87709',NULL,NULL,0);
+INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','0081d700eb987df05224651c7a86aad8466c1c0aed1f8b9adcd804c0c357ba95',NULL,NULL,0);
+INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','aad7d0f1b069ead9be5840191c72486dd35a99cc0d636f84dc26c9011750515a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','cd1831370719d122b3f104816d00c53999d5d3c4231d61a63939cac11b9e371d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','dfcc0432d894cedc1b86b930ebe7c2a91923c73a3b48ddaf20af6a91a1fd8d4f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','35bbf8c0a4c7b76ee99651dabc7fd61ecad1944ec64894d58b4b23b3f56e32f5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','c17603776457e6b4ec866211fab5a67645264ad88982e074e35934955aafb672',NULL,NULL,0);
+INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','658470a3c81fa20340341844f3f6c4421d4163a563ba6c76bad26ae5ff8f6f30',NULL,NULL,0);
+INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','3c19e585c98db921941f5b26a126b80a49c2dec9557f830931ade7262e91c062',NULL,NULL,0);
+INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','d3e6cfcc59682b7ca7651a4d0b764e978f39e0275179d9c7d345ca2036df6ba5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','5b4b24c7af8e50b44e4fc6d23ed3b636c2f720d79427696f39e5f5a744f0b1ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','99b36bbe5f19e83ea1b1ccad1d01356648aedb05e1e596ba41600358164b8ac7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','4527b116244cca77263350c03e796f7b8f68e3359a31122544a8506d649c0414',NULL,NULL,0);
+INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','d49ffe3fb323982ad595474cd4d4a750e40f92ed7bac60328fabb6b3adfc4ce1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','e31efce2466a3499fe85fc3fd38c4239dd008155ce0bf7197760cb52a82ee77c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','25bfebc1c8ab376f51290a883ecab7b9ee9f9ca243fba57f1d784287bf73560a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','5f7cf3364676fb64b39fce7d55240f958e9832c147fe1a028ec7e08f04bd7a1c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','86d7dd3386c1d6c331bb7d2ff4c66fd058f8d061cb81fcccd96984bd730278a2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','757bb6997fd9c8958569c3b90924b80dfcd32e2b600dae70830cb79e6b8cec59',NULL,NULL,0);
+INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','c303f75cc2fe00d44ebab4d32b25b49c2da39284686382a36b35d509b1adc8dc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','207919db28449144d8bfcf7a2d2aa1c3f9da1bb30d625d4346be0aef97b9fb41',NULL,NULL,0);
+INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','b2deb2e778518a65c7e22d9ea3dfe8b20f22a6f0a98fc121921824a6ccc5767a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','0d5746a5957752c2906ea859b36fac65adfaed20b77dc5221f0dd3b82adb153b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','d28f8cbce3f48ded964028367ac5bbb4705c81ba6fc0f89bdba45229a1bf6d95',NULL,NULL,0);
+INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','802428c482632ff14810dd4456420e560672dd2bde33476b9583d287243ec83a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','0a3765d2494e2691d6f99e6323c5babad9644c5994a6fa0a92791e244bc69743',NULL,NULL,0);
+INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','7bdaa1ff0e78bd031a50bd15d814a283282ac11b1201bd957ee4473ed1e19c4a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','b4f02b8d29590e5cd36d497111827654f87e6d984e687aabeea90a7a625af20b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','86fff556f529899c5904c21c3718a761203480e004d8f5806c3f9fc82bd221cc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','80ae4a42a3ea75d772058d3b84fbcdc6ac5392f4fc2260258b97a7dd14a28abb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','a0fca2d1c45a647f0f5cc160cfa040d7876b70dc1a4bba5be573ab39812fa2b2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','51d703529c87ce1110fb82b1852476613763f042f15db40d27a1ea60cb8bb2e9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','6cf2423bbc5d8b255d3f80e88b3150150d0934c16f7d6e97aeaa9cfead892869',NULL,NULL,0);
+INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','031cfb4d2a53fbdc957fe2fb4221885914ddeb33fd8e9ab14b788e26636ca3d6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','5a04be3dbfe8c59f55788d253e52e64724cbae371470b139ae6c610fda9feec9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','7a5f8d4ee64b87ced44ce44e2aea65904f97568cb9bbf5105acaca9d42b01cbf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','3fcfd123a88ad9d8710d32be1f0ae8e752a2864a6fa3a6acb472fe8e9f89aa13',NULL,NULL,0);
+INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','1b217483fa5bde6c53b24bc615dd10f59d41fa74529e2dc9f45bcaf213ca8aaf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','ff57e5cff64d2e1286bc27110d4b88c5b261a401907c4e26f9d6d301c2e44160',NULL,NULL,0);
+INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','787c55f9b276611a37751587e6b930944b47a7df6d7fc0b78abe76e7cc0d852d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','7f884ca84212371f3d07de00c05e171d40aa53f8d93fa919819bffd9eb69c37a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','136931a8c79bed40b5d2af24148b5d4dbfb1688cb9a380b8a6d0f9818df0e4a7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','3acddeeea5792debd38fa3dfc11a3d4fb4fea48d3bbecff8a3034c11f30f582a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','a1393b20aab486d72245785c0d6167bcf5bbd163cf6d3a16f40f32ad934e9c19',NULL,NULL,0);
+INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','64b05af3d6aae2858432eac39d614837d9cf7ab67e2a4665c77682cd35f7c932',NULL,NULL,0);
+INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','2d0c524badfd5efb7992e4bfe5a8cd4b365e44f5364e31383fceb616dfb3a172',NULL,NULL,0);
+INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','b1d407191bf8dc946e2dd99d0dbbdc69c51b971b416e448b94519bdaababb2fe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','5c989bdbf8aad78e3dc2d749e7c279e423e773096edace524b21dd5b8aaac8ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','89b56221d0b58205c1fb244796ad86e5a33814267d60bfec9757e4e929a7e8ce',NULL,NULL,0);
+INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','7a53a155b4665f4a4816b515cedb51ca43a2886be73284cec520e62d15a72bf1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','dd7b544bea09772a3f6124a6164b1c3d53ae2fd30b1cc0429a7e7056a697408a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','e2d5fb7a5080495161fe416b9e3541d80316a3647cbe22a64e8af6d32af07473',NULL,NULL,0);
+INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','e2aa54542a95a8e8d6b7f2faddbf926f72b60f745dc96a23725fafcc05a5f84e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','a43798189afa87e197830f8df29e8686a1dd3ef5fd4a8a1aba4bc81967bb2347',NULL,NULL,0);
+INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','23fee6035da4ebdaff578b4afc6e6144fe2b0dbdd11c742fc4f3644bcc4cbbb9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','5b3235621e8b9163be2760e6b7c2f97da6eae84d8521c903d2cb378772c78936',NULL,NULL,0);
+INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','5f31077e72445bbfacbe6fd75d3c7b98a61535937919a9276ea515097191cda0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','8b7e6330e620f547807b44ee45135190d336eeeb332c22ca9715d06bf362724b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','14a8864d9c20ad253940a754ee55f0e897556482ed3aa04c6b24eed23a038db0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','1e966870fcbe2d8b8d50453b974bb52b12bd5da819485a5369b6524484c6ddac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','59491c7be213e15d2f0c01dfd7234c8ca0d6c13654dd811d9f589f1328cf958b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','d46db7182822aede24231ac4d2bae54649bd81093f5503551ac3ae50cc55b24a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','bdf5e5a3b7c2ab26c978e2ba4b37f4cf76f01a2ed18861a7cee3619133074fc8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','b57450c4f69f5f7404ec6b4718469d49d237934443f490112b7d7a40ed01f764',NULL,NULL,0);
+INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','187790ed3e50c37b64e92ab78178bcf83709a500f3107a3a648426068470b921',NULL,NULL,0);
+INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','ac1869305532cccdf26f545546e6dffe0e266773b7f1271d963b03768311501e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','eda9e4bff58b78300c49f153d946a05ad79cc2a2c4d890f62107862bbf58e281',NULL,NULL,0);
+INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','15c13a8577041a93affa73dd930c61d3ca3ac4cd24e5bc195185559a0288bf0f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','82f57f514dba082ff58f07898e9ceb7dfafa7802e71279de9f9b1b50c37bdd5e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','93ffe2201b58525b8c2bbfb5e8274cce94adff6a620f802469894da3d07d28f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','8cf0bdefca7c9f082895f573213c31fcaf679090b0ba4086356527122bb4ea1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','d9d40e4a4bf36c698f89003ec5b12162b0a8a69a3c6a787bf6b019bc4663952d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','1520317691e7972e26ec441c69e1c325c3f68af33b81b129000f03df21ac3ff4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','335b4ee753fa80bdaf49af4448b2556b211702cdbc6e879c31bc8883615586f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','be040e6eb65a044cc6ef71e63e215f93d0d1630ef5265d0b4aabecda92d39736',NULL,NULL,0);
+INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','e5767f2f7f04a2ef37312736fd5d191341b2b9342adf1c403eabe0c385cdd1d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','873efaa1183593ac12a37d9d4166ea1b4535f2825db80a2f71b737d15f265299',NULL,NULL,0);
+INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','3963f5c2f0b08d1181a5dd2f9074b03ab29d0c9967cf16d1bfb35a963360dd16',NULL,NULL,0);
+INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','8263796916d90637ca98afc47d057801ba14dd96efddaa27ad88b7dbdeb07e15',NULL,NULL,0);
+INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','0bd4ae72810a6acbfa4129c446f371b48c5b21938cdd67488a4703633f376081',NULL,NULL,0);
+INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','9d2a21ab22a0cd25d5d3bfadb697ce48ae45b89a1231a59f5e2189b950bccfe3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','6a933def9bb004d37ae9ece8f5b7c01d628d5cc9029b59547e82ea9000f63ff3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','fc971e9f6de6fe3655a6c79a15f620f8f24c7066a94fbc577368cefd73b26a1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','2cee1ba30e1b1be03ff712650d5f37b16ffc1e5630e3276a0eddabaad8591f8f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','31e4ea83f5958ff14927f00e62cbb52b245d3e6509834da426806b396cc117aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','ede966fe3f835c5a48e474870b179d1ba1b7938744f6133a3804686c136e9f7f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','193fa09a1d321e9e1eb9fadf56dbf46128a0e0f23276afb0af169be0a2714a51',NULL,NULL,0);
+INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','7112da51430ab9dfb8dba1fe06f52fcffdac61e146a50c73e95e1ecffa62b6fd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','1b9aef26cd6d6e43ebc95c01db0ce8ccb05b8400955737643bef4458471f7c29',NULL,NULL,0);
+INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','ef1273df0c8d6bbe9078468440fe92eec3515e5985064775d453615448d836cd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','2d3ce8e66aa0fa6491fa43efa2de7264011d91dc04b6a7aa37d7974876c3c22a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','3a2b15d7772dd7a9d22d7bfcc558ec8da5713b427e25289eb809b4edeb673e2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','8a30a60098f9f82a118549ec730568a44d5fa6eb3335a20aec2b44599039342d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','a12df3e7bce37d8f4a9c4c0a2a3f367fb071142acff947cecc23173b4925fb53',NULL,NULL,0);
+INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','9e09c7b47df3a09f541b40931ccce3b512ca113a6d4dd5e6d3505e29bfea8e31',NULL,NULL,0);
+INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310704,'53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827',310704000,NULL,NULL,NULL,NULL,NULL,NULL);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -549,60 +752,73 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1);
-INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1);
-INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1);
-INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1);
-INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1);
-INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1);
-INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1);
-INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1);
-INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1);
-INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1);
-INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1);
-INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1);
-INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1);
-INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1);
-INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1);
-INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1);
-INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1);
-INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1);
-INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1);
-INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1);
-INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1);
-INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1);
-INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1);
-INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1);
-INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1);
-INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1);
-INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1);
-INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1);
-INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1);
-INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1);
-INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1);
-INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1);
-INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1);
-INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1);
-INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1);
-INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1);
-INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1);
-INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1);
-INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1);
-INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1);
-INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1);
+INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0');
+INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1,'ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0');
+INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1,'8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0');
+INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1,'197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0');
+INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0');
+INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,'2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0');
+INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0');
+INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0');
+INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,'4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0');
+INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0');
+INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,'8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0');
+INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1,'ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0');
+INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1,'07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0');
+INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1,'1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0');
+INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1,'a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0');
+INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1,'3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0');
+INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1,'698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0');
+INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0');
+INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1,'903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0');
+INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0');
+INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0');
+INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0');
+INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0');
+INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0');
+INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0');
+INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0');
+INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1,'fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0');
+INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1,'0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1');
+INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1,'698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0');
+INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1,'c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0');
+INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0');
+INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1');
+INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0');
+INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0');
+INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1,'a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0');
+INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1,'61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0');
+INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0');
+INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1,'bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1');
+INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1,'2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1');
+INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0');
+INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0');
+INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1,'66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0');
+INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1,'147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0');
+INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1,'dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0');
+INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1,'34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0');
+INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1,'01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0');
+INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0');
+INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1,'1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0');
+INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1,'968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0');
+INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1,'2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0');
+INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1,'fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1');
+INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1,'0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1');
+INSERT INTO transactions VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A46524545464149524D494E7C7C307C317C31307C307C307C307C307C307C307C307C307C307C307C317C',1,'3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1');
+INSERT INTO transactions VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A50414944464149524D494E7C7C31307C317C307C307C307C307C307C307C307C307C307C307C307C317C',1,'63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1');
+INSERT INTO transactions VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,5575,X'5B46524545464149524D494E7C30',1,'fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1');
+INSERT INTO transactions VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'5A52414944464149524D494E7C7C31307C317C31307C33307C32307C307C307C307C307C307C307C307C307C317C',1,'c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1');
+INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6675,X'5A51414944464149524D494E7C7C31307C317C307C35307C32307C307C307C32307C3430303030307C35303030303030307C307C307C307C317C',1,'3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1');
+INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0');
+INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1');
+INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1');
+INSERT INTO transactions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C5843507C313030',1,'c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0');
+INSERT INTO transactions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C444956495349424C457C31',1,'1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0');
+INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0');
+INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -650,75 +866,108 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106);
-INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116);
-INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106,NULL,NULL);
+INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116,NULL,NULL);
+INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91825000000,310499,500,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91775000000,310500,501,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN',10,310501,502,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN',20,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91725000000,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','QAIDFAIRMIN',20,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91675000000,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,310504,505,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999890,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',30,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -730,6 +979,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -748,75 +1001,108 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106);
-INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116);
-INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106,NULL,NULL);
+INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116,NULL,NULL);
+INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91825000000,310499,500,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91775000000,310500,501,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN',10,310501,502,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN',20,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91725000000,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','QAIDFAIRMIN',20,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91675000000,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,310504,505,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999890,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',30,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -828,6 +1114,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -849,42 +1139,61 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,'burn','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',1);
-INSERT INTO credits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,'issuance','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2);
-INSERT INTO credits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,'issuance','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3);
-INSERT INTO credits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,'issuance','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4);
-INSERT INTO credits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,'issuance','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5);
-INSERT INTO credits VALUES(310007,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8);
-INSERT INTO credits VALUES(310008,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9);
-INSERT INTO credits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13);
-INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14);
-INSERT INTO credits VALUES(310014,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15);
-INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16);
-INSERT INTO credits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,'issuance','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17);
-INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21);
-INSERT INTO credits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21);
-INSERT INTO credits VALUES(310102,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103);
-INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103);
-INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'feed fee','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103);
-INSERT INTO credits VALUES(310103,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,'burn','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',104);
-INSERT INTO credits VALUES(310104,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,'burn','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',105);
-INSERT INTO credits VALUES(310105,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,'burn','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',106);
-INSERT INTO credits VALUES(310106,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,'burn','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',107);
-INSERT INTO credits VALUES(310108,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,'burn','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',109);
-INSERT INTO credits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,'issuance','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110);
-INSERT INTO credits VALUES(310110,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111);
-INSERT INTO credits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,'issuance','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114);
-INSERT INTO credits VALUES(310116,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,'burn','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',117);
-INSERT INTO credits VALUES(310481,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482);
-INSERT INTO credits VALUES(310482,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483);
-INSERT INTO credits VALUES(310493,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,'burn','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',494);
-INSERT INTO credits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,'issuance','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495);
-INSERT INTO credits VALUES(310495,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496);
-INSERT INTO credits VALUES(310496,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497);
-INSERT INTO credits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,'issuance','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498);
-INSERT INTO credits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,'issuance','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499);
+INSERT INTO credits VALUES(310000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,'burn','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,'issuance','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2,NULL,NULL);
+INSERT INTO credits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,'issuance','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3,NULL,NULL);
+INSERT INTO credits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,'issuance','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4,NULL,NULL);
+INSERT INTO credits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,'issuance','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5,NULL,NULL);
+INSERT INTO credits VALUES(310007,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9,NULL,NULL);
+INSERT INTO credits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13,NULL,NULL);
+INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15,NULL,NULL);
+INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16,NULL,NULL);
+INSERT INTO credits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,'issuance','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17,NULL,NULL);
+INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21,NULL,NULL);
+INSERT INTO credits VALUES(310102,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103,NULL,NULL);
+INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103,NULL,NULL);
+INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'feed fee','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103,NULL,NULL);
+INSERT INTO credits VALUES(310103,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,'burn','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',104,NULL,NULL);
+INSERT INTO credits VALUES(310104,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,'burn','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',105,NULL,NULL);
+INSERT INTO credits VALUES(310105,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,'burn','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',106,NULL,NULL);
+INSERT INTO credits VALUES(310106,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,'burn','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',107,NULL,NULL);
+INSERT INTO credits VALUES(310108,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,'burn','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',109,NULL,NULL);
+INSERT INTO credits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,'issuance','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110,NULL,NULL);
+INSERT INTO credits VALUES(310110,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111,NULL,NULL);
+INSERT INTO credits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,'issuance','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114,NULL,NULL);
+INSERT INTO credits VALUES(310116,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,'burn','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',117,NULL,NULL);
+INSERT INTO credits VALUES(310481,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482,NULL,NULL);
+INSERT INTO credits VALUES(310482,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483,NULL,NULL);
+INSERT INTO credits VALUES(310493,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,'burn','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',494,NULL,NULL);
+INSERT INTO credits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,'issuance','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495,NULL,NULL);
+INSERT INTO credits VALUES(310495,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496,NULL,NULL);
+INSERT INTO credits VALUES(310496,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497,NULL,NULL);
+INSERT INTO credits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,'issuance','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498,NULL,NULL);
+INSERT INTO credits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,'issuance','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499,NULL,NULL);
+INSERT INTO credits VALUES(310501,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN',10,'fairmint','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',502,NULL,NULL);
+INSERT INTO credits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN',20,'premint','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,NULL,NULL);
+INSERT INTO credits VALUES(310503,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','QAIDFAIRMIN',20,'escrowed premint','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL);
+INSERT INTO credits VALUES(310504,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,NULL,NULL);
+INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL);
+INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL);
+INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -902,6 +1211,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -919,42 +1232,56 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2);
-INSERT INTO debits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3);
-INSERT INTO debits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4);
-INSERT INTO debits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5);
-INSERT INTO debits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'issuance fee','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',6);
-INSERT INTO debits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',7);
-INSERT INTO debits VALUES(310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8);
-INSERT INTO debits VALUES(310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9);
-INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',10);
-INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',11);
-INSERT INTO debits VALUES(310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13);
-INSERT INTO debits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14);
-INSERT INTO debits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15);
-INSERT INTO debits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16);
-INSERT INTO debits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17);
-INSERT INTO debits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',20);
-INSERT INTO debits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21);
-INSERT INTO debits VALUES(310101,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',10,'bet','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',102);
-INSERT INTO debits VALUES(310107,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',100,'open dispenser','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',108);
-INSERT INTO debits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',50000000,'issuance fee','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110);
-INSERT INTO debits VALUES(310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111);
-INSERT INTO debits VALUES(310112,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',10,'bet','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',113);
-INSERT INTO debits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',50000000,'issuance fee','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114);
-INSERT INTO debits VALUES(310114,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',115);
-INSERT INTO debits VALUES(310115,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',116);
-INSERT INTO debits VALUES(310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482);
-INSERT INTO debits VALUES(310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483);
-INSERT INTO debits VALUES(310487,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'bet','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',488);
-INSERT INTO debits VALUES(310491,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',492);
-INSERT INTO debits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',50000000,'issuance fee','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495);
-INSERT INTO debits VALUES(310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496);
-INSERT INTO debits VALUES(310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497);
-INSERT INTO debits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498);
-INSERT INTO debits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'issuance fee','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499);
+INSERT INTO debits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2,NULL,NULL);
+INSERT INTO debits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3,NULL,NULL);
+INSERT INTO debits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4,NULL,NULL);
+INSERT INTO debits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5,NULL,NULL);
+INSERT INTO debits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'issuance fee','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17,NULL,NULL);
+INSERT INTO debits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',20,NULL,NULL);
+INSERT INTO debits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21,NULL,NULL);
+INSERT INTO debits VALUES(310101,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',10,'bet','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',102,NULL,NULL);
+INSERT INTO debits VALUES(310107,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',100,'open dispenser','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',108,NULL,NULL);
+INSERT INTO debits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',50000000,'issuance fee','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110,NULL,NULL);
+INSERT INTO debits VALUES(310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111,NULL,NULL);
+INSERT INTO debits VALUES(310112,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',10,'bet','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',113,NULL,NULL);
+INSERT INTO debits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',50000000,'issuance fee','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114,NULL,NULL);
+INSERT INTO debits VALUES(310114,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',115,NULL,NULL);
+INSERT INTO debits VALUES(310115,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',116,NULL,NULL);
+INSERT INTO debits VALUES(310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482,NULL,NULL);
+INSERT INTO debits VALUES(310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483,NULL,NULL);
+INSERT INTO debits VALUES(310487,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'bet','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',488,NULL,NULL);
+INSERT INTO debits VALUES(310491,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',492,NULL,NULL);
+INSERT INTO debits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',50000000,'issuance fee','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495,NULL,NULL);
+INSERT INTO debits VALUES(310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496,NULL,NULL);
+INSERT INTO debits VALUES(310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497,NULL,NULL);
+INSERT INTO debits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498,NULL,NULL);
+INSERT INTO debits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'issuance fee','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499,NULL,NULL);
+INSERT INTO debits VALUES(310499,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',500,NULL,NULL);
+INSERT INTO debits VALUES(310500,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',501,NULL,NULL);
+INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,NULL,NULL);
+INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL);
+INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL);
+INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL);
+INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL);
+INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL);
+INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL);
+INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL);
+INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL);
+INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -972,6 +1299,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -996,1244 +1327,1744 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'NEW_TRANSACTION',NULL,'546c140a707612fccdf11e24259ddaf29926f3e4c33ade3ca1104c9e08886c5b');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','12b3981155692399d216d3e4b7f77da5717f18cafc207e827530e0641da62da3');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','5c30d394fe77dfe617dc3968ca5691cf7bc3a37053864e4fb5bc360e7ac4ac6a');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"9e7dd13f1ecb4ec6481076dc9bb5fda1bdb9103747455f9de9ab516748201ef0","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'8d0ebe1cd6cf1569d3172b524136dbe202206e5535cc51d558084795e683c9df');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'549575b008e084e5fc2772e35ba7390a583ac09484ecb23b6ac656a6468bf501');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'NEW_TRANSACTION',NULL,'16babf7bc07fc5119281661b641dd0b9247baaa83f60e5689ca9c1706361795b');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','a1f154387403474aaf76475f237961c683f306c4a5f1816131b3c49fd7c0f2aa');
-INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','9e2a87ee92e2fc4ce24d3c6b3e7ce88050e0b95f870abd3136745990630bc5ba');
-INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','1dc8555054a2be66079b187273eff23cc0a23095f289ebc81feff690574ff0af');
-INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','7618dbe5e1cb84f1089d9db186f86632bec9be07ec44e219be7eeb4d4f4fedf3');
-INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','ab2fcfde6e4b056e7ed4955596417380f227e0afcb115bb93330a238e63b6937');
-INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"73d038390ff24d64df88c69d45b46bbc90f6b77f68cbbe2081dbe1e556a65e5e","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'8e72852719e54666135ae661db34889e6cc328141383cb705af047e14bd9ee3a');
-INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94c037ff26d792bcf5937c3f9c291de23436a4e92a22905ba0cad0e454d65d31');
-INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'NEW_TRANSACTION',NULL,'ec14780da15701f0faef950165bf626697607cfac975bef91917324a54c8a704');
-INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','63b7924cb099cf5686deca3b33388807937363032e975617728f064582a41e25');
-INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e099926df1dbb53683e1bb17b4d9aa6fb26059a2be013a88ddd0855e995f3409');
-INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','48eaa4ba5a5b5cf5d27ed4d415c158c9aade372ac29815908873ea3f7760e70d');
-INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','1aba6e2d9ea915a72fe74bf67499f9b450b2a73c7ff41fb13a77f9cf4b6beba7');
-INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','27d3c1fe94f1f0f1b4a4664fdfeb13094d24b16e7f346096ad09b00619d105ed');
-INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"a180177bd180e7945ff4ce61b48c12cb0fd21535f71e943ffc25ff67a770e0f0","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'25aa2d2802cf266fe14115851a5e4839ea5bc4293ce781498b88267b5a36d587');
-INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da785ae5b03de482a011025df507bb8ecf44564cfde0347e551f8ef9a69f7daa');
-INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'NEW_TRANSACTION',NULL,'b458b2ca2663b1fa4ce34a5852d07974da7ba18bbfe550817b88f049b5e6057f');
-INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','b1f926325e6efe8ab4f0fb14a91aaf868f28447099110d0d9f4f3ed0c3530590');
-INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','21b7b57192009568dfb55030b9068e709b86c32470116e5fd4f69bbb67b3831f');
-INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','e9801ceb50b37794182db33fa751ec6b785e2b4c050338ac939ff53ec62b889b');
-INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','e8de1c6ea7a1a23517e6f4c48a253a37d19b86be7cbee706ed135e393c17b5d1');
-INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','8bc1af3cbff61c7fd13b777ee089ac972fe2a6e6e6bc7e5f522c781718553473');
-INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"424e7f569243bc71c70002dce988e93e6b19cfb7f859c2a5195533147d099d87","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'d1242f48a16b7e6b7fe721bfdd1a33cc685df12703c285d02e9ec2d8d0257ca7');
-INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'140a80b2871f59a846efbcc0fe00724e7d1b32a4e411151a3af7b8bcf0136a71');
-INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'NEW_TRANSACTION',NULL,'fbd3eb1381c68b6e47677e9322cdc79ecb5405750ddda2a754d014e8f9866357');
-INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','697e46c2a52a184332256fe63be50f266155ae4dd4b34ff83efc9d83f745743a');
-INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','355555d5738d09e5e63a94ebd687efa4e1f672c8a76989642a9ebddcb1829c8f');
-INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','3d07c2d528db11c91d00ec37afe7d9f0de62bcaf34b84d8beee628709e1af03b');
-INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','f9e1162c2b245d5b7d7a06b89f02365bb04267e1e0dfa4cd630d4c92174d29c3');
-INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','2c90fd40cfcee786434f691c2a13d672d74452e89b2b7b30497c57f6bb4cfe33');
-INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"e47e38f99b22b4e486fc05ee95352ec049c4d7e9e4b67082cadc62e928a2a9e7","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'eba521d1cde5068907196424d1e233cca044672779aedf1f68ead2005b009789');
-INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db25e85ca00be5b31038e8a8145cbcc13621c754dd1e70d015e610faf8859d9');
-INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'NEW_TRANSACTION',NULL,'e583faf6392bf05be249e5b68d8051a94112f1efb4bb9545a6608620c446e6a9');
-INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','68256ecc078215304b4c28c977d4902b06a49afb875b434cde2ca4fe566155ac');
-INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','d48c787b3e2601f11badf3f9dcf02a5f405a3a2bbefe796207080654c54d4fd1');
-INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','837509748ac0fe95897879d4773a362c07f458a12d8e31b9028e2640e8cf726d');
-INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"b5346d07ec8d18e36cbabc930ea2dc452d5fc26b12af0d060f7fb7ff46b8f99d","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'0234ed4f579831370daece583a89a23f2e58a1be714c22654146dc258513e5ec');
-INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6eb60de59b1bd920ef391f6c49c62204b4fcad4bcac0529c1407947f9861f3c');
-INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'NEW_TRANSACTION',NULL,'08e8c4546b0c4cf02e0a4139cf2361e269d887f0ee68ee744ab2ac0da69ad03b');
-INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','885bfc0a82a5f23c47b2a565b5446e6e1da4bd2804bf5e74c12cdaac13d3cce6');
-INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','3d8a6183f7de103890335167c39486540b1c79f5d7564b93b19bf86b59029add');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','f604b84bf1bc349a91ced4a4ca49b6ae34ef202271a2ae54803923ff282b7142');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"2490d17814a7fac90af178d960f9e277e98bf005b8d3f076bc7c5d58634fc271","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'5883ad5a5a8acb5e3688e84f8bf845c096779b7da6243b0eef132840883d1a73');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc8c6eab97f5497307c5fdee8220a3d9e5b8098c80590fe4fba84721744ed9a7');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'NEW_TRANSACTION',NULL,'566c495d90566a5c625b4046412653d68d3f1467283405e89b679e07824b058a');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','39076c62bb4dd04f2b9a7708fd8096a7ad10d0f5cda96d12d3388295c0406c1c');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','467f256952ca9ae11d70becb6b4bcdae8a75df7cb91f1f1b17440eb502c58481');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e323eb94aeff040590bd48138be059ad8eba428df2d6735eb9c5c50028234803');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','cde713af018ca3646c3faa21b0c619ddba8f919dbc0f1de63215944a4721506c');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"8147e6b42edd71153d880649a4b7b75c3e2fc59f122de054ebacf5204abee406","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'4aa97c537855d72c8c422caaebd8174c40952b7f9c1ac4cf64162663d8fe895e');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09368def658d1d8cd254f8218dba1ec3dec86c1b8dc634f9472e50ad3b649586');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'NEW_TRANSACTION',NULL,'800541f39fc285caa006d3383657bb569c832599ceca9d2a443c0b33ed1e1da2');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','26e76f4efd1b17860fca1a91f29bbb759dabec7ab47b7087cb9d9c9b70148aef');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','d8c3c77afc9df233dc190fa9fece9cae042d9a255ed301ad1da4f8c8f6db66cc');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','40c85f1d2c1c9112279e1fbd476f190b7682c8e52c2d36db28fe31353b74168e');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','5bd202e1d6a0dc0c5837970ab0e08a7524183f5b5edeebada6528e0ffddb5964');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"d573b3b22e23c8e7ced1388219033e4b3a1c7711944acfb2926abfdbdd63b44b","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'8435090160b77ba77d18283ff9fdbe60fc6e3d5f0e504b3b5b7f8c79ea1481bb');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e6c148da45edca6eaf1d9eadbbc1280542428cdc995ab0b28a1aa6c6b8eead7');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'NEW_TRANSACTION',NULL,'8deb9ffcd103c2e2766ad8abd96cc6926628146488e3d238ad4992f05d27deaa');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','15caa236e02aa2c197a6c50ec4fcc2088a80b287a30bb9fb5febe077aea0d606');
-INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','a166b5c1f4910cad68e353159ccffe1cbda7a3790945fe149232d76b4c08814a');
-INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','b5807fa6b29f5ed2837b6f61ba5f721017a2a203c33dcb3fd7c0652e2b2b0c77');
-INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"54c64b7338e79af0bc6b238eb91692ac0331345cbd6278ef27aa3f6a7351e35e","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'5bc9990362be712640058cbf5a241142d6e760bd171144a6aeea66ac7456abab');
-INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e964b3f9aa5d7e7d92f6cc7ca07b50380f94722054f4c807f377a637fa64120d');
-INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'NEW_TRANSACTION',NULL,'fe9de9236b24fecb37edcfa1995a7a34fc3faf0a135ddf58ad4a675dffe87a7c');
-INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','40378d6136af51ed48e5946f52dba3cbc01a166c774a696292977c9e2fdb29fb');
-INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','006293062b3191934fb84d48f129e3bc600d4a44a29a75567ca8ae0276df409e');
-INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','2a97017b39888625f65eed074206042bef2d33516109ffc76b17d3e847b701fc');
-INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"895d6cc5aa14f7618cc66b2593b43d0223387fd11f1b2b017c9f22140613afcc","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'fac9fe7dda8d745e440a66b8d498581b43496f8692a48510c4e8389ffb38d5a2');
-INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f53bba8fbe964f4dd74bd33fad0355d574af066ef48dfe93bb4360471a5230d2');
-INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'NEW_TRANSACTION',NULL,'2803d6e566770894502dd4fc800de28ffdb74d523ca43e95161977bf29b966d6');
-INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','30e658aa3ab9192c83a4054e0266e37f2a5d9b314a0b87b0a68b8d8545384998');
-INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','d734ef6dca36dc6c61ea1c152376e2b0ad9a4b6d1ae11f2a2443113ad4cf4ada');
-INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9603465a786c9b927cdf36078b09eed3481d863a390eb52cf617fab895f6be65","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'696913fd618b7c83d5ce4c022154a75a54026399d97bf2f5045e1554a4985428');
-INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00bc20a6b84ce5d81e335bfbad1a23b9c6f7d52d1f63293b68aeeb0d10f3987a');
-INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'NEW_TRANSACTION',NULL,'9e7919aad0463a08858a41572b084cdf3255a3e158b5a540f00e11b7efe381ac');
-INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','75f6003eb0ee196aaf2e57ec9ecb3ef0f871b7a496c367811dce8a2c0109c86b');
-INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','dc5eed4d55fb16c1ca7867e45cb58cd1950bf252a4c8c6e7cfcba116faf6fe09');
-INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','9a1a39da5058a29158341c0a115fd91dffb302b900fca990411963b6f702ae1b');
-INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','00e65ad353c2d57201b0920246a3f6b4979870e3a3af55fe837f25f75c11c681');
-INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"f064f5cc3b48464bef3b6aa9b77a01adf3fb99168888a5615a369d1bcf125ec2","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'5f63cbf496064273c35b803f6201c57d4ed13b04c920b5a8f2f7963e007788f7');
-INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d0c28928286c35d23b6f92e8c5ac9a153090a9691be4ae0374f78aa3eacbce');
-INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'NEW_TRANSACTION',NULL,'fbf978a3363eabc17ab79fdf0da2be3cbded3aee57fcdf09bd147355345dba32');
-INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','2ffa98f911f670cc1864d6f01da6e73ec0803c04aa8376b3d27e38a696a5e089');
-INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','a329fb9322b03b20469c9429aecdcc2ae321767bf066a323e4510c13200d2fb4');
-INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','fb8bb6f9b9673a5e22b09c791603faead685d94351ad7e272d63bca5d9fa0a90');
-INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','fa0c2d44b08b5bd6c9e12678127bb5f01b75948c6bac9247b06353f2129a4284');
-INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"9c164d38483ae1923ddc825d301d86d8a71548f2a1edcfad8311e4111cc3e34a","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'d4c3031e9fa0f5434e901747376b14f941dea8b85b4133f62a5e17c3b32e37b2');
-INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6467ba727923c1d21cc8fdf3e40d4597ef1157112b8db2deaea08aa671b7ae1');
-INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'NEW_TRANSACTION',NULL,'b0417f1ce0b795969ab04d9c0935d8d2e0073acc74e73f652d23ca13921b9e39');
-INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','50c186ad62a5c6503ac412a2f082d01eb70abc663d7d811a23dd3accd06ae722');
-INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','319784ac835cb73a8cab714693c3b8f49551b2d24265f89b762f5afd282a4498');
-INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','43b8ea93abedf2cbbb9313407a417088af5bf0e4db7a6aef063f6005950ba2a6');
-INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','99b6b7716c483b5fc42474bc9c791e2066703faa436a90a0488693ff52070ad5');
-INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"81a62b796cd9dbf6eaecf4053b5896e384cf08135dd7aef545c48feadfbd6936","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'5953844425a0239d6166b76c6083a30f5c7d8e94362cb53571462d14af7579a9');
-INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'407d0197616d37eebd94516b1391a10bcfcf3a5a9e5010915947190262bdd860');
-INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'NEW_TRANSACTION',NULL,'c1b594e498e2cd5b0f79448ca70d0484eb3f43a62abdd7ef3e7a8e45ce370ef4');
-INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','ace52ea598998ca43546f48a44691735d1b0ebca1f84dd42859394f2251a3938');
-INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','bf15b7e943cd128c280da066371eff63623ab2686915c355ac899ecd22ec5969');
-INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','05eb9a075ef8d8c8723f085967cdec3db0dc50ec1a5ecfb0e7c0dcfd2a612e57');
-INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','70a828c6ae8b7f5e7a2542719828d09ff076ec6d7a7df43bc214b2ab3ab5d2fd');
-INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"ea46fd7c1ff0ff2b73dc503b3ba507ab43442ffac120f56b5fd0803d27db4b9c","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'72d45f76d1eb5992c1cad6d0456af3baea92773177abe23c0c54294ffca07baa');
-INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c5a574d812c323b6358f7f4ba39a5074929f6ac973162986f529c3b3f84b7c3');
-INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'NEW_TRANSACTION',NULL,'d9ff2a5b57a48f3188743f81df92789b5eff6b04559f04bf48be1c8becc45315');
-INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','a4f8bde36ed42c0f3b8e9a408b634003e90cb93b289ed9c4aa6dad46e07521bb');
-INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','555e7a69c3e47180f3e644a7c40ed0bc4b830c9ad82ec98a072df39b2a2b0601');
-INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','0d695ef0890616103e348be83432ad2af3d17120214c0c3205b7fdd97ce357ac');
-INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','df7ce2dda8f8f5cf5ede19a30b4a1b36a87dc983b5e26d965ca2928d1bcf97d4');
-INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','2ed751b1b76739c539f51a4f462268028c3930e6cfef12c1fa2a83fc299002ab');
-INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"32d216ca6a80cb867f8963ab1ddde2bd07a969e095d67c80aecd0950a01a6218","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'a821f8ab51571c4dd18514724df5101029c578addf32c76693816cb6c3494cf4');
-INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'812c982636c9cf8e031b4a5196e2185ebcfb30ee1a9f4e7bb05f5053db08d3f7');
-INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'NEW_TRANSACTION',NULL,'f0b556d905582d0bce6e2e1a1d8023417d87c1df218826ac4e75409b6f56f0cf');
-INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','ac1a2029ecb27f966545e75fa5eb63c20576bb75affc72c5128bccc429f0186d');
-INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','d576656db4ae1181800488ccb581ccf667bcab324e858e7ebca947d7a9931cdc');
-INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"720dfe78fccdb0831b951f79905c945a3c7abb6f13c3e258e7c3b8b7ddbfae36","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'7ced7a6de08f84e5ce88e5e41baa07aedf6271291948024608967b03027e7835');
-INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b183cfd7fc134167bd09598013ce934fea3ed2c2d09d33ffc54c22cd9c890994');
-INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'NEW_TRANSACTION',NULL,'75b27e87a63ac6070e2baa574d47dcf96a7a481c234c5c62ca6cd0e06eb06bf4');
-INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','34c07140793f3cb0887dd669f09575d3455149d0a2714559bd13e512db8bce15');
-INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','7a7636072f7b4aa384a4eaf877250dbde629c404083df357f246769e41eeaa4b');
-INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"260724f92886f32a80da2705559eda171d2bd55724a534c72740e05b348c1874","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'8fe0985551bb0cb84ff6d0cad2775a479570ee511664510ecab7e0180866b272');
-INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db3915176ccb8feca25005aaea1282c8a29a1634071a2412da865753137af9c7');
-INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'NEW_TRANSACTION',NULL,'5e903676d766072be26ca538acc9f5423ad6ffa64d606210941bfdf801695e1e');
-INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','08e6cbef19b75039b5ffd6f1c0fced94c6927626ee96aa3a4ba39cc81f9dfb48');
-INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','2df1def7f0d46a2e5e423a6342828e1592b463f1feb18586ae651ba82dfc467f');
-INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','f9fd7768484bad78f0a8200f83a851f1044764542dd274c1767b04d45a34cc34');
-INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"10830661175f7d2bf48585647709d277e5a895b536f58f83672c14d5026992e8","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'3f09c616d829f28a50d0d6d82a744e9f179e9a346016ace94aec10a4cceaf2f7');
-INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d11656a3f2442a132100504d2a8f454c74e0fffe706386461341bf98084f0106');
-INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'NEW_TRANSACTION',NULL,'1c3253ed350c978a77c4f52e54e3f1b4f0a06fd766ca5a4a657dbfc7b7161d12');
-INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','6b78ce4e8e11c2b72c645a16d82a22f45abf11399810fef4d37c915fca4535c4');
-INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','5fcccb6e110a08d797d00332d1c5bd364c0e34a176c297cc9f64705ac88fa509');
-INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','f5b0cebd9ab5554a39f677c09d23cfea47b98c185d423cf2724b504cd8184421');
-INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','739aa3eb7d74914b86b4cb677852150878096aef2b90da47bf179509b9f92f54');
-INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0115b475600e09263cc61a9b15501026f1f3e53d8e4979ac54d54001cde14f0e');
-INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','e98f73579dcf2b48de1ac7a4c948c5616497bc5b354fffddf60535dc032dda4c');
-INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','ceb0986ab7243ccf51f820c65c3ae64f19b6dfb58deca298950bd33f1926b131');
-INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','ebb04c2d395a5ea59cf3a85ad14d330a7517de4a0e37be88c9f2a9465dcf1c63');
-INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd333107fc51c883a23785c8e2176bc01fc1bf8d52ff8d37ee925e9991b03a7a","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'fe75251795e1f25c4a46c81ee7cd5feffcedfb3caded679af5b42f9fba268ae1');
-INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d781cecd7de855a5973c7780924cb5e33c92467892146327b10accedb0858744');
-INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"45bb0c5dd432a2d7313fbf6185637260877da537b18334604280a29539e73205","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'ab408ebd74ba2bb7103a6a03febb76131636cbd8fee19862f994bde5309c8ed8');
-INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'738ebdb88f2af10cb0b1da78b7ae09feb600a39a891f66c14725399ab8231899');
-INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"0b5b6279634c98137b3ebd37b0e31af63b183c0f8ae6942df3aec9e0b6ef725f","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'29217068dc4929ce8a5801e6fdfdf06ff9d287a01c31b21b1257f61520076608');
-INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7649fad0c9e91a4591e492bb8d2925787dc4c540c11d03833e377cfa3a798550');
-INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"41612e674a216f80e46263c28770962c5cacf632df3151fee409c0f9eef3a498","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'587725cfbb3cf28cb17203f743d36bc3e1a9b6d205c47148fef599b5d64e74c7');
-INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8df3c440d60bcce9047186009bb2c04f32bba66bfb46db7127888a68f0ef68df');
-INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"5cc0e229526c00f288c81848c45d12cc6a24fc0ba84e8d78041d84b8e28fbf88","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'69522c5bc9729276457134592074bfcb18c6d3ec37a13617577802b003a309e0');
-INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e25360f92d0aa24de23042aa9b34254dc7dd5455f120169f57912f62af302c92');
-INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"cc0a82636125f077fd262e62ce5e60bd457154376ba685a771a4b92388324420","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'acd02a3791ab6aade73aba4ed1532d2186f901a242f0a0b4d823d9913ea0c030');
-INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66ce8943d7b23a5375a42f59c8f13e48584707f27fe093e96b1ce08da7f30796');
-INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"33266041a43b151330c149d5536ca098c595054d54d88c2a06bfb257f64c4c06","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'a3ac8def5ded719d66faae2ebc6aad3eb85dcb65bbba749ded7e58585a2138a6');
-INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbc4a6accf5a0bbf877003df7a43a32a84ace808c725bf9c916f7c7c55ae841a');
-INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"df932138bd7a19f61e98148cbc5ef645be2d4e05674258fb5f1659bc0be276ca","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'16193a479c8858b1510c6544493d24128b23d8942d2a06e63647a426309d7566');
-INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ca151b96aa2674575015d4a042e2e3015dc3c02d763a9412c85df9e433af033');
-INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"647074e7d5c71b584b7661d02f6f5cac0ea9a0a9fd13ae78d4d2bf4c76793d2d","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'0a85396d417aef4b80874ea21ec9816ab1a5b66f79bdff2afffbc806404a7bca');
-INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ee5df1652b7f06752ee6adb92b1afe27c5401167b7719a597eb00a19bb16dee');
-INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"bfe4c7d60e0cca63ba44a61e12c48e2d840faf4a0aa92ba197a9d4fb17f7ddcc","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'ff59c1211dca0c13d60bd677caeee1b458aaa52d251203362f00489941ca8f76');
-INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af19ce330ad1121340016a970719c13ae6d9a2a10ea63368ad7d55d0f3003972');
-INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"96e13c2a5517d1740fdd2dd5c805a13a37104bc0470eebf6ab1ee5f6edc49343","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'ace6806b35b8698354924391f7aa5de4919b69c1580d1533c41b8dbbefd17f72');
-INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f8411c3a03de86941da27d777937007c0655ff334baf622957fdd10f2624215');
-INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"92abe74beca9968adb2f2952a4eb710fefe4df33f4cf2ea0319a0d36c93b8bec","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'5ea2b7cb1ba4161bf86d478dae991b2f8a5974c8404d40e265ced3e08501202d');
-INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e31ef16de1a7e2608abd8c206dda66d2719694a94d8e15c448c040b2b4764f37');
-INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"49f3542309f554440ef13516ddc8e88ae079b92a2c7c8eb97765a6ed6ac6cd10","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'d1b707f68ed492ce9e71ce91d3ce7cd2ae482d943189409f707a0c500387922b');
-INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4c185a3551ffeca1be73adddd54488894d539226342f5b9f451651d69081879');
-INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"ceb14a6637c8a5764c7f33049973a6101daa056d265b46c248c3b8363c919c6c","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'961dfa29f63b218ad992636b1e8b3e111f4c35d1fe82ea9d1745c5176528215d');
-INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbd69017e858dabb09f4357416d88df59fdb8b3d54ed341c9488f16e97f6c368');
-INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"4ca5dd8e74223684d3d8c28a79b4e872787788fcae088ab3e3066788ffca65af","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'d27e9b3616c956d062239427fe371ba4624d81cbf29816c0e4e5f03e75c6fff1');
-INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a8a8661a8b83d0651ee93ea835dc109cec5b177ba84532fb513e484e58550df');
-INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b500c7812d872ff80b668ed88d7a8898df99b0a2ef8d4ba16b85597fa3e1cd0e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'31e188ad0fa0d303cc8d27e550afd46fd22ead77f6a50668fe1fd2d6ffaa174f');
-INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31c98982c470765ed68f52bb29f00dc367f80bf1edc3a85b20b36f10da707ae6');
-INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"1c2819e818ad5ef4ef1d5eb2b9e7630930a559a1cffa880ad0d34fc482b4063d","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'daa93b1ba3f397279a51109799b5687959c5a38303ff8f44c1a13c56977c7dad');
-INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65cb443e794542fdc19e762ed688e1fc439f7a4f6b35c6623163c60f36a0d97c');
-INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"b39a9f69fbe9c498602609f3c6bf9bb18e6b97f83519c743afbc14e99d9cb95a","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'3c1821f639ae022881d702f24caa9bd9ce3825c804ac93daa993b0e349c81b40');
-INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17e90d3ee336dc872828c141e3514fb86f62a53d63d2fc5a0ca9b611e41bdf51');
-INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"49205a5e8db239c4c785868b103864f8727376c7188a58544537cdb035ce153f","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'bf983520c3b1ea951fc05e62215238a8f8895720fdc09da8ecc03af204763dca');
-INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9cc0b9fc8f1feb7ea0a6043a1ef9d261a7d1bcc4efad859f1e18caacd1135d5');
-INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"b4d3737b40df8aecdb8f755b92db906b8f215641fd79326bb4700d1f662b2f36","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'d79819641c5063124ecca38ca14639093ffeab788ed5d09b58181a585718a1ee');
-INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5619c920bbc3139b93042fc41a2b848c5660395eb49d40b0d5065da337ba702');
-INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"d5348f656d30e6e4b55706ba5a4a6dfdf262d8ed36d57c5f2fc71f8766d72af6","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'439d40d30d8979b4f0df312e850fe6e4aa63d26ea1dad88a006bebcfd14d3710');
-INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c2afe9ac873324cd100af349d21bea584bd84ffbd6467e6b65f195790eb67bc');
-INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"440373118703e7f53afd682abe5514d489a78722a600c1067430e7fec5f5fab0","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'8eab0efd30150c896217d1ab44531e6a984ea8fcc23ea8a626cfe234864e2f82');
-INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a814f2148eb18b4b4aa2183a97ad459ca6192125739bafc1282583b695bef65b');
-INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"7611f3db3529dd5fbd5cf9a5ca7affc454536e57455b1b0ea043751c9437a89c","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'3e1766bc4d88166fe5fdcdb005e6d391baeec555a908fc7a8c0ce437160048c1');
-INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20be98fbfeacde1aa17c79d7a0f9c6fa54cbdf97e20ce799c2cb32360ed5bed3');
-INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"110ad00303e1a01d59989b5ab6e4f166edff24c1a49e06b41cba8d56778e844e","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'72996aaf23b2023ac43ff5148897bc0673c89f3c125ee355f2c67d60a51f143f');
-INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e28f3ca304da28a188e0e144a605bd5a5315a287faf95a8df63628f12b3b6af');
-INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"f7708c99c134b071aa3981d012c773e12738ece583c1b2b2908abc6a31556ea9","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'d091ce2a08f748d77dd95524822e0087b3e79e2300832c683cabc2b63d2585b8');
-INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1709b7595b99d31e59531856efccecebb26e90a90628f9a19db57708199a119e');
-INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"15f23755cf1bc0aff99c1a9ed38462d951ed3ea24168c18786d71207390ca4c1","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'848952a49b68d30e83acaa8b510111f861645003d9f9ae434fa583caa37697a9');
-INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b53483695595fa2b461bc3d9fe7cec21f499428bac295f78712cd15fa96a827');
-INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"5796f08f5f53035af580104f79cebd606ff66c38b88361325289010a7a470268","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'6f053b79b2e0b6134fbf72290c089d9160cedcac178ce65e9bd9710028d9960a');
-INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39448d35a24772a03cdd2c1de37a52ded10df96f6e7608098e0245239c24691d');
-INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"645ba6137d35e81be31cf45092ab0838b241755dd9d33aec134c20c08cd6b091","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'33daab2217daee435439848dcdb3231dbbd80a241d74cb3f790b65562202a62d');
-INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09cb3c7b2e83b3c3e91e6e04917d62d4b09e6248a54144a1da0ab63a7baa4465');
-INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"98854c5467b3003c63ec7e208c6c8282f461bb8a9a65e2dd39927a09b44a108a","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'55ba06d421e022b08e7e327931239bfdcfb1e3d6fa8a99d6d81ba0e0ab266462');
-INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fb9d3b2b06e0cc2542b2c5d165711383b65e8ebfc2ef13f71c606340fde636');
-INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"7524187fdd1244a0d1e4ea4ab1c5cdf5fdd2e1582e30a0d5b7af81ca0805ab76","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'26219eb433e52a7d1f4ab448d6180b36dfd14dfc2089787ad1cfdc90bf461665');
-INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e5b43de2ecc6c92baac5fd492238dadb279764d79751753266cb483906ad1d');
-INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"0b5471a5d2323a894a74d6332822f0f216a0745089ac58a694b1c61a4094454f","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'6ba6c74c67fbcef8037e4393b486ee091f7d3924ad4977709df7dcd2cdf0c4dd');
-INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d5cbdb5fa6ee53449614e4c35ca89559a77bb7c50cdc467496765d2635a3b14');
-INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"ebed9381df6057bd322c0652f404116bcc77e4a0c6acf142d5faec47d4baab45","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'fe9d7eefd45c738f68c43a9b54dbf7aff1c2ad2790419ab19bbf159e27ad4b5e');
-INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6c6e393dbc63d1c5c25a0d03dab32ccd4c359ac60a8343916c5f6eb013fa1cf');
-INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"95629a91ab0bd8a87878f7f65e9d02d6114e7e6ca7b0a0fcb36aacd89f0eeae9","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'dde5ac4171c2d3dc62d291251008ff55f2bc212d0f157698f6fa36155660f11b');
-INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe06bec353f5f86e31a3395bde70cd30f40dd1ddeebed8d657dffbe67fdeea3d');
-INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"80cb6a5ce7cc7a796965d8351977fed0a4655f702f72c3fec64ec6dc92d23f13","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'40c50ec371a74d5f84eb276b79add6796478e67cfde7db653b4b0e31397d29d1');
-INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8345172ddcf9a85c707d785a203d632a89b7959f412dcda71d6e0f940ac5963c');
-INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"d8dfbd478fa699dc45d2432bbb29ce342b54fb22abf175d13bb6da5c2d3abcf3","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'fa9cecce47e8cdd6c665671b98de0dc6f39c3c03ec329b3023c598972d7d8908');
-INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cfc8783cc9778ba5fa7510625bc8dac61db17e9fde77d0e91be91b2a3a630e7');
-INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"8797bf8b7fa1c772c7c44e3301c80e0f723de397db4b8a2f809c096609242cf3","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'3c4c06efe2d17e81a247f631cbcc3c89f005aa688d9ce02176416a1d087b5aed');
-INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0de9af12ccfce1e7c96f276a713de69006ae68c51192750cea91ac21a683add0');
-INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"8e16d14f35b8d9caa018a8a40be0d0850c5ae513906d5b4638c692a6b764909a","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'530daf8a522d54e010eda2ed9f78fbf69259c4b0a0fbd297386a94d9482ea0aa');
-INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54c656b2ae20af47345c388aec9b0117167106bc35a81650c19141e92a188a12');
-INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"930ff03b64e3b4d399933ba76354b1d9291112c0593dba85d763c8300db1913f","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'a2d5c0c0d8ba6b57c998be6e6004cb33d8fcb754c5bde57baa4c0336f6b6c2d6');
-INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95a75f080b501cdd09c39464617ee0e4d8ad0c878d76b70683413d85ae49fa23');
-INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"0fbc130a453f3284eb9ec9c847ffbf5ff216ef3bffc06037190267cc2025e835","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'6fb182f01747eb5fdb168094cf05edb7e157adcb2d6890b2b6a137af1f9d474e');
-INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2bf2ad7eef6ba42c54c47f29722dc8102de7031cf65780cab2fba33c8d847d5');
-INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"fef609d5eaabd31efa0317a33730438569163fbab3fc09b9eff59a7b555fc4a5","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'2b03029504c2ea9abd111a8675e61bc1aeb1cda937040526876be2d84b941056');
-INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b94ef7dc1575f783a10a552d08b437b6f5f31e6229075c4f5dce7a14958ea97');
-INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"c29369e9d69fcd23979ef58b8cfabc2d6041efe31c810e33bd62b46c8d7866e8","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'7569afed6291ed418be03ce17f99cf4dd26e63686ab5209ef1f8fe71f646fc6d');
-INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'700710a5d928557f1d94ea9f0d2e4df703da76a416098e4757d8be4b6c310e20');
-INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"38aef8af21f94ace651d152fbadb529721e3cc64959566388d348d249b226d68","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'afd13c31f89a15a4cded7583024aa8c803ffc8b2013d17b4234774a4bb6b4e77');
-INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bf3547f5a9970349e4e825258c40fc36b99bbf011a9d12ddb6d8f68c86b913b');
-INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"e0764773525602d47d332abe4c68dd8c32d8c4585fe47587ecd218a7bc49ebc6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'386f63edcce398633ffe2121f1c6c609c074f7c8943a951b67f8027f55631692');
-INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb5f438e3a8e479eb4a63d94de7534f117fb217a4b05f7ab8e17945550626bba');
-INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"c20c09edd2f2235e7287d0439fe2c6c46abfe7ea5a04fa35260840400f54b201","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'922e44b36122d7026a5a4ac09494cdfe15844514fc834c7e43c24b1521ccf072');
-INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c35b81ff608cb4af1c1be5415d5e7cb31e949bb80cd8b15e080971111bcd4c14');
-INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"cbc39bca2b7f961cd5c661f187d4dfa1b5dcb55eba9dec87327cea7eadbbe663","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'513acd1c4a1f3cc2b1352f4bcc2ab72da3bf9cf2467a081b5b2630e23ab02425');
-INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33aaecf57ee77297a4f5477a37c28ea32739009df40c2164757f64988d7da536');
-INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"24ca6fdcbb7bdd7358b565ac84d2f14c2314fed7857544359d0c850996e6b151","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'912581921d36d86c7a7d15d6d916bdef36eb0a5a3733b63a785c271d0c55c3aa');
-INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77daaa74f1a875c504cbda47fabbbc0a249adbcb4ea030487821735551b9b3f1');
-INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"9d96fefa3d3e1d197e765fcaf64952ec79b419ced4edf858fed794419153b848","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'d29a84fd60403eb5f328529e891dd676a7b2f3fd586833d830c2282dfea3b9d3');
-INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2a5c1b15d7c108a8f75663a4f34720b4c7296ea857af9b33905dbab36ef375d');
-INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bd447b29f603c6d56257ce8a559c137dfe2fdad10acdacce2bb003e391655225","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'589496c2119f775706ef73696cd10d5ac546df25065c3417116a3d1c10d1308a');
-INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36d125af2b6acc2afe85548336a9e3e1225918ff7d15922080c487a641deec1f');
-INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"61dfcc035dbabe08298144762a6ab94589e14668d412ea20a79a0070437fb202","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'c3ce445410d34edb55f49578c8520e9792acb5f27df230da814a9ce277e73e84');
-INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23ecc6d3b2fe591e2a5f4832081bc03c4a1e4a202823d651bfd8a739d3d69a04');
-INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"0eae6329012b77e96a46de6c909ecdfd0887599361884a84a9218aa70665be21","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'88d74c4a64886ac7e7cc349827d0976e41685d4cdae3f107928902067e011033');
-INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0228a2c7599a57834dcce2e86ef3c7dc2047fa58b70e088c5fc0b18412782098');
-INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"4419538295a5c394523a396ad0cef24f72972618b2108e4cd084f0bbbf6a7cd6","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'d2a4de3c87f62d4596d6f8fe8ce3f10899c70369cba6bdc256591719b0c0e84c');
-INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d02530f64fd2fca45583974bfc7c72869b95fbba7459b360ace9ee4b2acb84c2');
-INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"6a299b36e4ccfd1e32f81f91009e367cacc30aedaccbcefbd0273e351b94305f","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'de37e9e67047b2b7886704c356c0c031d4a0257924827676fbac86d637925977');
-INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de4321be08b194123bd9140451a528f7119003450e47ee96205354f2a345af11');
-INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"180ff6f6092c485217d79b3c5510f9d8e0664d09c882fd164ae3a49cb8a6a356","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'622c9c721d0fb93bb6e225e18f9cf66d12d24111eb588da7961892bcac810bf4');
-INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'164f1d2a095ee39dbece043cd7e0dfd4d3777306ea92ba8cb01b3c6018e0c63f');
-INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"0e4b56334021fa1fb190d62b5c33fd7f37c126d28ef7a61a80d84eb1b7f833e5","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'721d549493f5593a3774902f7b5f45392bb5031102b1c9ac241113f78e865fcc');
-INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca57f013b14114fc51105b1448dcd4c6b2a6fc5b87a932854f1e0057148f58d1');
-INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"ec24c8cf2685cb4750e7e3da65223b72da2e8afff49e12f36b795105d7dd89c9","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'6e2658f9127484c4a6001a8d7c686fcef62d64d49b6d8467bf70f8b00c4126c1');
-INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa4fb804f18f6f6020f5c85eb0d2e90903d23e3e16e71f9128823902aed38e26');
-INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"2178b64331b1afaf3a8d650a93f6173ab0729b9d776b5f4c552970e79db18a0f","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'bb736085430a0f0028ababc151f7566faf4b9fd044227fe5ac7ee7f821c55d41');
-INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf91a0cc992d5666ef0db1265d34a9aef73cd13c76e1179a3ab6889ff22d7e8e');
-INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"29783a12523c7d590f0c9aa3b71f221de0359f61a368924800b80919084823a2","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'da546c441ea4cfd5265482c5cf6480945f023dac378b0d37fb14661861419c4f');
-INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a6c4e0233736de01eb11159c11cf8300fb79fc8831ad1ce6929700e204c951');
-INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"821a8fad56889c6609d97cdd7e6bc8b6ecc68d54318986551c747ac45e22cd54","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'edb7b24c9a6e175cc7bfea88f5703a5d4e9f1231352cf1a24159e78505f3c472');
-INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50279589970a0bf41c19e1e46eeb05493a378716effefb9c62a30506e9bd2d8f');
-INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"c765bfd546685684c2bfacdbbb248478a115f88dda12b4df64efb0b336362540","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'0e38d7bce886174adab5e07175e9a0802f06f9158f3cb95c6042d0f78d5fa694');
-INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a960fc3c28ba926e90d5e01d8afd7d26bc35e8632a4586ce573ada0ab5347b05');
-INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"b38c60aa1982b330713c16d5572143e5970e4b0273ef5461473e237be5133a8b","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'7015b7426fe1891e237a3a9bfc548ecd2026c7aa87fed8e8e8223d611b500ebd');
-INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7248222f5617b15364410ef319abed662e3c3be50163296ff7981bc1cef6cb4');
-INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"059af64961a1fef76aafd5d22aedd13466299a9727bd9b21072794674b02c140","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'2ecd531b16b00ace17e579796a728000dbfb01adb6bd050715e16a61b4bbf4c0');
-INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66bb0255e4c158a60207afa6d293e501275e60be01a14c3b3d6bcf531feac1e6');
-INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"f6134380063f36dde912c04787580d3c40a8c8393a595178165f0ff57b5ad90b","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'2e0285484db9de47e4ae0b402d4a6a38d134907cae747f315b8d02ec02b0d0c0');
-INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4e7aec3487d0651c608b2a1115b42c051a3e7af1af71137246e061547f0f1ed');
-INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"21d4d5920b914ea36e3c7065dd7f0af4b294454030688c44e1a011835ef8a49b","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'8fad305e0c52d3f65980309be9f805488ec787c0d6dd06d54d42c96cfec14ddf');
-INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6a6f6f320f3529ceb8bdc56ea1010d40c1f1f3bbcab217893f7391ae3037216');
-INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"b3e7328b23a6af5e3df01bb9bea68d2a8445820c50c2adf3b13bf79c3c4f9d54","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'606adbd91289693d75d7b7a3f2097c70d0ea84afff99f51876190c12f9bd5e48');
-INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba00bc596dcab209b04f8bb98c35e4602178eaaa5e6a8b3aa6c2fa76c449198');
-INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"3101e4813e73498cef2ec786023347dc13fb29aaf1407bbfee16d04f86ff6ac1","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'de8608f3459391d8b84d879545942c503e63d932f227201f9207c95cfd8abe59');
-INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03b72e8f76cca70253c4b58b9e670c40ad16aacb8e3a65123bfcba859b4ab028');
-INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"a10a734ce80faabca0177b12746f0483692fd13256d7d75af28e615b2324e682","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'3aa4c297dfe8a2ab0c4891601fa9308b0f47a6fdaf14c54bff0d74600ee9631a');
-INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3cfd221b9c5b1860e1253d049fddf7f5657e6f374619c53d8efd594e5042674');
-INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"54ccdfdb8690395f13bf11d70244d69052acdb3f9948e8238c0d4bede54c899b","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'526c4409af9c7408c592bdbac811732be41dd97876f303efcd449c9c3a2f3fcd');
-INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2da82f452728a4f19622abbcde3ae6161203cb364b4241f1479c69567d8ba53');
-INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"96a8a5d4606f2e77f429e6ae8f54576e51e1159969612a14739e69e4121e0fb1","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'f19cd5859aa564d51aafc457c21f24276478e0f6df66f9d2bc30c45497c792ad');
-INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d616b637eed28255aadfa5eaf99d32b10d7b256b36948d37f88b830f0186d85');
-INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"20fbc6981fcb9ff9aea35590a435ac2c7d1513bb4a038a8f62602632b6bee622","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'964cf3c911e0fdc50ca8e54d0a676f82534d74134850fa7b1a3f51be246e37e8');
-INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298262dbcf35346e2b12b020285205400c6d038a3c2bd37a6b7ac710876943b4');
-INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"3e376fad3e36d13f5c50f8bac968fba251f8192e0661df0dec9266d0de986838","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'42a5d0b5a619db911d274eb4745c088817fba7f4f3c8e9f3db098d14201385a4');
-INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f80a7b1519eb2fd55df486bdad477adcaf3dff280f1aa8595486a01a6fc64a3d');
-INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"c61c461272d69c03c027a144418a877a6122dba7ba9f2376000d53656037ce75","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'996755bdfe3e3359b2fbb18f2798fc3c0711bd0f8e79ad5ab82c6da3a1c7b27d');
-INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81ea6995179fbe867510a5e02437e472b2143dc7847eff31463c7d56e905b491');
-INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"48792e4348415165ef24cbfadfe83934dfd900c8f2a0bf47251604ad1f9819b5","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'6cd1bb277caa993853ac05e468b5d3f6d127b9e1ad727a3ae95ab0a37d931fcb');
-INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7828987074f124cd31eb9dc820d542e525effb0d3f7c05c12abef41db1062312');
-INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"44a37e3c8140c5d6cc507bae93571af20c9cf4b48e8404edfa4e55c8e5e82931","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'2915ba5c5517a17ed948bf75d7024ec034f7a05b8e4504177e4d205cf063be22');
-INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a73faf1e71ffb1a77c214895a5bd591f4165fa53cf240ab01132095bee53d148');
-INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"b0166f95f4cf48193827d3b5423889419477c07e9a041c41b72df8229e46adee","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'a5049c262cf4f3daee142dccf4153eaa4ef43629917e9fa4aab10e815f63d2f7');
-INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bf63b8d74da9ee40fc62ff24d9542f837daa3cdbca462680878eb57685fad45');
-INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"34ba529a171f062f8e18bd65ef967158d21a63f907c90ff79f00381c1d9836e9","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'c495b6ab1dde32b5ad9b9d3f7c84a829fadf3cb8e8e81e511e40d899eaf3288f');
-INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3fc0c176982285f842a9b38ac4b144408694cc6992cb6cd9ec999bf6e938815');
-INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"108e625c8ae24f372335196ec1678080f2f5d211a7e47de3eb1da4817dfecd5e","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'d8cdf6321a804a14911ea89f9e64913c46e3d630663b9045ead8b40b7cb09001');
-INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'803369480c995e4642a91c8719c0ba1bdc345075fd0ef617092fccbaed81b5f6');
-INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"d68fba6521389577f6303af99b28050b6cbceb05908bd85de1dacd982537db4c","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'59a569bba75c9de1a1a2b7dc6897cd705a2585782ed2bacfc19e87501932045b');
-INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3e3a918e4753452a20540590728115462819762349cd9193c2c3adb30414a4');
-INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"3f04ffa37371d7689609be3f5e65a6986553bf2e0c9db51e8ac815dbf61b01df","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'e33529a86d8e351188c5a2c34882fbdf9d5f5f517218e86a119e257840c87c7a');
-INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09989a99bbae36f3fab9e3759f90cfc6a3b2c41dc7aea4912836acc547813d31');
-INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"cc3e49edd68887f1f34db7c81e3125f9f76ba0c45aae70a5a4e4f7f8a85baf4d","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'1791bc5f229c8c0cda59ba5e0b93fd1abe64bddfacdecb7ece968c716a8c7c1e');
-INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53340d03e89adb7ced1985fa1ee172815c7f2a1dcd30f22ce217440e440d0e54');
-INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"274d30a0808c4740b2fad528bf374e4b65e3bdfa17247e7e1c924bda16be9794","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'5170face91fa60e9698fbed905d479fe58101677ae3b1db66db6925499e2fe09');
-INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11455546e6204b10fa32343ef3877425a7c38966cf016ca9eb88aca4a04e9539');
-INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"33ba6fe2f691128379ebff991b818614c4665fd09e4c54b61619d2d2ed54c0ce","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'a009a50ec47b864bb446ac192e83571b0a7308861c5b1e791de5cfe5c4946988');
-INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c0211ac3fc16bc6ff165351f3ed11a842408c00a49ae2c3e45f369e61cc9591');
-INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'NEW_TRANSACTION',NULL,'a70e31735a949b81521a8985778c87b778dadd919c9a077ed5549d9e5c4a6a83');
-INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','c51981e15bc52e2039f4f68859af6196d52311becd78e996f895c98162f0bc61');
-INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','20ad7ed09b671c2a877fa6a71221d3f6b4b11d949cb71bc0cc8b698b5d0ca72b');
-INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','f2585cee733294a546148e62d648db43e0d6dc34157f04a25152616410fed270');
-INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"f3689c9c1663d8e96f34d9e34442f1db962b00725c617592ebad5a5b1338cae4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'fd01bede9b2c84e075a9fd41bada35d619bceab81ee8cb7d978652ba0a7ffa73');
-INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c037fba90f0f80072bce5fe520db37107df94ec52b12454cacda230a91c82967');
-INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'NEW_TRANSACTION',NULL,'cbeadbea38b35a0b99e7914bd249617b5e0b7de2a02b22444713ba2dc8b3cdff');
-INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','c8de16700d2b18c3b392722293b608a3c9205d969a3a9f74c6b98f4453f3bac6');
-INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','1ca23aefd69e85e4e7de0a2aa09decd64b37b344130655839db3b5bc5e9229e1');
-INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','aab7b58d1e083c401b59b3b3d393265812149fe7ed6f9b3002ab02ac458868d8');
-INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','77226935589594e56fb6be8d285aa1b2658c2fd6a41d89c64d49aa1f4ffbc2a5');
-INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','4376ff1b7f28a6a8899bba4dcaee8be98e99baebe7c8ad76932fbf71444a49c6');
-INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','7bf049b103212b88272c28322a10d343e0b7e77dce22002a4b13ad9d2488e4c5');
-INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','deb6d11704927ad4f8062bba394bed465e1cabfb4f1e507fb5a2da6e63ee7cc6');
-INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"c3f16c9c50b71969ea4e21819eaf214b1e40316e91af4a3f3964a91b35808e6b","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'97547f9b1175f6e424984081f3d127ef4c296e4b6639f0db810e1788f449218a');
-INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0ecce198f24677166172e6c1d6aca8735d92aa710ceb623810be424bbec8c1a');
-INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'NEW_TRANSACTION',NULL,'0e9246861cd39ef282e01523316a6a4eb8e3b77bbd00138e4c62a4916c18e03c');
-INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','799f04fd8abcf53a547a06724f3eea0a8868056bcc8d24837f2281db0d95d04c');
-INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','eb1e5f20c9a12c544406bac4643752f9553f746b396f0e6233fdb8cff9cd6553');
-INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"d57ce83db250acc25efe3e0193a3ae93aa5e521eaf0063a745f538e82e0b6c3d","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'2c1d3c4706ef12e5389c584f790fb1115630bd79eac3ddc5d96b0a8eb978a02f');
-INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74da33886e528cd3060a802ce8a405fddda9eb5bd287a55c5264cfb83a7a35c7');
-INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'NEW_TRANSACTION',NULL,'4c39a0b8c55b6ef393577558c9f986771167e47687af1335ac24c2537ab81818');
-INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','b2cfaf8bfba2902cd123edc68586096b325c3510b79749a7aca9f1d856b91e63');
-INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','24c6ca54d5b648d22ddb5f660619bffabbdda584d7377f2c4ee6def7874783ef');
-INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"b04d2d8cf335c953fa24a5e17662783dcc80794e937589a0dded13744a9c69ba","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'4629f0685e56a9dceac8a5c8049a4299f1e79065d651369a48f990f34f4b73de');
-INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e54526b6f5c086bfe05e45491f954985bb0e5adb1b077e7f4f9feca3fff86a48');
-INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'NEW_TRANSACTION',NULL,'76c1157e49f2d70a1c2e57867b05e123b3c18e529dd7fba9d209e3e82d3256d7');
-INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','d3319058fdc165d1af6a9d1c65b05858acc6b72f309dea033a18beba61203f6d');
-INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','269d1191f5ad3b49f7def96a711459f28206244c4b544c6614438a65e456b938');
-INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"2e336a7a4575cfab7289b78ebf57f67f09e3efa3a4bdeb2c9b9397deb3701c77","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'4ec86efaea3e0290c3f83085a00bde61885294353ecf9f50ac983af41ddb2dde');
-INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dfd51094efe36da0acba2f631e102309b3a44920b3cd80044ee3b2912d8d681');
-INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'NEW_TRANSACTION',NULL,'0e8aecc840aa213c58612a95314c1959443d2b6c131cc5456afe3193e749dceb');
-INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','fa6fffa27dca0e9e2ac2dec5a91e8ef19da8449db633f8cc4faa65cba71eb90e');
-INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','214fc05e2f19b1f4124817b8a9670b3981c60213c6f1a7eb30ad0f985212f88d');
-INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"79e48332abdd115517204c76fc873417fc8a3da56e255bade91e6f8842c4f192","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'62ff9774fafe57e9d89a400b230b1d0e113a1af623746b3874b2d284d91fb0fc');
-INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a9ab7ba5e1b7cbe310f018f7b06cb6c0eb479a120f0fc62427e0f0c39a69c8c');
-INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'NEW_TRANSACTION',NULL,'aa0400f22dc7c1c792976167bcd4e81f427b99bde088d9236646b00d809835b9');
-INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','fc818d5a7249bf23a97911f7a6bba4a388fc247ab511e2d7a9831f4631ffd4ea');
-INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','75c3c12caf643b654efcd90fd2f96f732455ccf64a5746a65d60f98173db6125');
-INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','c0e07cb69f8e3c937dd76e10e1c24a904479e3ef482793ddb2656393fbcc12a5');
-INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"110dd70ced22e1a1c91201c1c1ce0afc628885b2f2b3c785624b851983a71dc6","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'0889def5e8d66b3c10068eaaf145661680cd6446f323911ae3bbbede01a2ab99');
-INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'469e0f5f36aaa6399edd21cbe567daa20ddeb376a37f033685b9bbe26d02b382');
-INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'NEW_TRANSACTION',NULL,'09e3fd3613e2fd1d77e359cc65db3ae32ab04f926a5b46707c7eef82bab72207');
-INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','b618c17b78ec14f7c2b79de59bad4674bd2cd1c2e24c1636479f42f3dd79136c');
-INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','cc444cdde1d53b89812fcee604aa43aedeeecd54cf683d771349b07416849a93');
-INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"fdaa97987f607fff62cd0459e4d261ba764a7ed75ea6ab1afb3ece06277216dd","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'b18aa0abd6f78eb79092f20d3cd6522a5893b6f9f35f32fdcfc9356c262d07a9');
-INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'923dab9e34624630776396846c39a2e583de574d5ca9594d831a15a06ff71514');
-INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'NEW_TRANSACTION',NULL,'a220cd57bbda37d617e227851348dd3ae26e0e270d51a55867bae00569f35dca');
-INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','06e92c8e3420299e4d17df1097d6f369f085657b5be06e745092be2f4f44a8a7');
-INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','e7895dc825ef089381127990af6981543b078d122cf13cae8e64afcdd9c35319');
-INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','79c5514db9b7d473c3d278e4496d58d7c1e09944d4e50944079f3c3a0f9c7d14');
-INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','da808714af39e5a311608f9a1b05b1b5dd55c5e98524c0f17febe3f82afbc50a');
-INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','9105dd5352453cf6d1732f659e5f9e6e17c64f71e0bd9d9ee486fc24a00dcdc1');
-INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"bf0b49028ffbb1d91272975e819dd6ecba7847dafe7def099bb7119e99ee357b","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'61b2a7ace03fe0c672a0d2d70d14092e48de8197edd133665913a15233fb7dbf');
-INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48ce063031772b00674435a9f6737bbce61f3af2355b18fb52c05ca19d26657a');
-INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'NEW_TRANSACTION',NULL,'5c766cf070714a1310350eea044806bc27a1fba2b25722fd14145d276d2dd0fd');
-INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','dd66ce68c8067d94ec900b6adf7ffeafd9d5cb02869aa9dc10e2a5f364ae7f81');
-INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','e23d3f48ff85c70a96947a766822715e7494cfe8fd3f977fc7720a0eeee3d7fd');
-INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','49b92b711fc9254b236b50c7e4bb0df012446e4abd534b75724f6b0e066fc51b');
-INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','f45d03eac246f287838447642b71974b021fc82af1f1e74cb05c6a7d5adb9229');
-INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"9bb53822ba08d1625a3eacd2e25ddb87d578d63c081b96395b39a13322c581b4","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'b2cf15ce0ffbb9d85ab5f78b9dbafc64447c411992ed18c413a2b9767e3c9efd');
-INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'013d0a90f4740dfec4c953e03749848617b1e23c631050b44373e6d1cf3d2d0a');
-INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'NEW_TRANSACTION',NULL,'62c3b09ffca901850790738368f120107a4a8095823a0e8005980c5c76f2512e');
-INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','365198fb9a32faaa6109c28bad97811ab5ce4002d24fc21858961d086d158e10');
-INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','8bc53555078f53a123b45816e24070a1f4c63ecde2317d9168b585133a5a003e');
-INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"65d2ccd2975d2480ed63306ab9054ffdbb76fc442ed4c7dad2aac7428d2506e4","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'dfa4cfded9e9e9c372e3797c466657426602696ea0f2eaa2bcb47c5786f382e4');
-INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eaa9af8a6377cd699a39a1f4ea607815893669c0889c9db46fcf842bebdc97c0');
-INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'NEW_TRANSACTION',NULL,'ddd515993029d283c9821abb34b0a1976c62c99debcad546d53ebc32d10b2daf');
-INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','b5b0eecb366f818fc215a2265b2f78e8b80f1c4e9b0d1b379a4fa9e652c30fa1');
-INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','ea7f2180734267cf4ff6049080a890525a62c056729aeb2a7e09e2b299a2b3c9');
-INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','03e74af714b780b978b4ee8a4f81ca4ca6358243940930fd1c1db9509b939c8b');
-INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"8600ea90c90218d55e9aec3aedcfb652432fc0f8c2bfde19ca62f768d1653101","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'2efb2fdcd1fac73875c985e91a82d310a9b68100947cb773883b9b3caccadd68');
-INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14e2aeade8973f39a21362fbfd685a79c313c2eb4da260e32c2426e8463cb6dc');
-INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'NEW_TRANSACTION',NULL,'050973f902e586e9691927b0441fb26e1cb81af5e132cde0459331804b136cf9');
-INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9e9ea37b5e4a5ffb5fe5194b3ae60c13f5aca9de78e7b08b4e3c408462c04143');
-INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','14ebfbe019c443b8142017c84facd5c973d843ffacc3439ede8f385b762fc28f');
-INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','4777b2c7e5880f4e1293b088c93cfc50ffc55c921cdecce3d8e9996cda53d146');
-INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','add53945e04372000b5b96efc69a39098a34ee8575d31c9964eb4857b700e61a');
-INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9f977a725f8071c565dcbc3cdaf85e8f126532c2626fa43e653c176184d33522');
-INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"aaf7654cbbdd946eeec20b756019f62d012569d28e633380b50e501ea11d37d9","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'b5d5fe80a0c3f4ec67b94256e3f3c8b9681095d08fb95c7cd9e4741ea8f893af');
-INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8789e5aef60fccf7ea0a9b1220399bd0baceb0cfbd0b07224e5279240ef001d0');
-INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'NEW_TRANSACTION',NULL,'b7cb488bb24ea29b3bd05bdf9dbc040ef4dce533817194da851bb51d63fa832e');
-INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','de018da93b7023840c6746051ffe6e776ba08d61211018b01ede163e9f9c382f');
-INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','c00ce786a7b91901efa874e517877e88cf03cb038e7e88c847f853443bfb07d1');
-INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','0c0bab71f9c9dd59b4977f847d915344b07c47bd1c5edabe673c3acb25ef3109');
-INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"1dce35ef471c90ab925590429d3bc5d7c2987aedf5acc0ea1b3be46e88f0158e","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'e0914d8f812895cfd69cbd172073da0e458e21af55bceaf2b2f37696818f9017');
-INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca92b0d22b4330d21c018d9b269946b56c37c99dfef42564d0364b5fe901bb60');
-INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'NEW_TRANSACTION',NULL,'9fc09617c8b83814a5253b1b9698d1e1c1815d2a29b995d33cd73a58f2766642');
-INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','2a45b5ec3e2f8b36e5b75ce091ff780430a1524f6c91161ef517f111efcbec48');
-INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','1c103ac6cca483f916932f3d876622b63e490e01bb03ecf41d708d30e79e9aa0');
-INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','7ec95bde65984355712965dd21e3fc8fd183e50b0e614a21631930bfbe908f52');
-INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"2d466dd469c4531675c2190d0e4d9fb2daad5b33426b3d22058ed9770cdae63f","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'eaf91dbfebf86b71345d821e8ea04df24cfa88e146d379cd77eea54bfe49b895');
-INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2da071cffa846c68ff51a1996f044b2a82d9eb8ee766621f6bac86eb612f98d');
-INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'NEW_TRANSACTION',NULL,'8f4006ac2a034a9cf676fd1144fa9854ec784c11cfa77472fa226770c7c956b7');
-INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','ca38710a6a78979b1d42fecd3c3e33cfe92ae6fb68bbb6e8bda54f643c0c515d');
-INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','febb9d33dea6479d80b6e5e3856ee81170bc33eefc4a3fff2e239b1d34ff3163');
-INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"c94709a97d76eda00339d8b9313c132c7124fedcbb4f13f7fc65521eec5fd63e","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'97a0961d5fcdfd5f0baf9b0960b40bcef3d271dd0daf3fd496ed509a901efcdf');
-INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2e7aa1fb2d189fbc5041f8c4d3c48fcf5eab4838b66d8fd63410965b6ec5ef7');
-INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"d882f745bd8f7edc17b13d0807c8d3cfccfbd9dd6678913bd354e2fe5334507f","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'1157db69c2733753e0922a271aeb45e3b7b9a8d85c23bbaaa2d2c83c89be94da');
-INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd334e14c566fde3a468532ac2a1d2d0d4a58380b5a95994c4267e6239923bd0');
-INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"aefb56011c816cb6b5e7a388a109f991957fd957de7ecf9c4f0ea8f7758098db","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f5f79ece2e8cbd96533482bf8a654d26ea4a65457436d73f42db99ad429141b1');
-INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35b1a6d99620d529699cc4343d0b310dd49052fd57a934003ed51745d087ccdc');
-INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"0bb1e98956bc350cf8101125e6147253e60978ddeef6b931e13c772056153ce6","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'5b6c8b974e6426a3d7beee41dfb36de41c74b42f64e768b45d0137fa5c944acb');
-INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'591ddc3b9581f682ebdf806b91436264a626e73b14e57323de6ff42ec68aa186');
-INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"7b105baade40f901ef31f2f73cd8503ee209f79db870e9bd51502f7260c074f8","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'cb4453e9fcde6aed9356bd547e5aef9ae4ed3d1d6eab311319a7c78bd2c7b539');
-INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45293c9df77d65d61b1d4aa93010d4cdc9dade3de0c3f88d6b8367af57b8b48b');
-INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"124d2805fa3144fd091b2ef1c80ce44f9895f9ec4a44e8c7b48237f1282b1e35","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'8bb8f2aabe4052e5453ee60270c4334a5a409572d4d44526ef46e115ccaf7a1d');
-INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4cc3de377f9a615dc2607b6716d64cbab60ed8f9f4d49d293f9158be84c8ec6');
-INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"eeac27ff4665134ac9db123eed51a6ebeb9f66b830282684cf14b80fa9ad4018","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'9bb2a04f3984e48532769bc1555800306f62226dd958748f7c9920521d23b4b0');
-INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5c9fc7208b916c284e5f89caaaaffc332790904cc268529ad4f85d67d040b65');
-INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"0d89c488b635238845ad30bdc78ec4191561296f57240b2728a3396900f69949","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'cf22c2d5ef906cda5f6b1c7108d55aea3e7c1725cdfdbff2302c9394686c561b');
-INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2199c9dfc0ece27a447ac1f479c58aa617641603d483e9679a46e0403a593197');
-INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"6df82c4ffb3e630f9abd9b4f4577221f22a669a0bd985620fec81c585f654797","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'effc64dccac124380fa8b5261a935ff156b478eeb88e5275fb2e02aea7b385db');
-INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78478c83c329c1f5f89dbb71b4693219750e1ba09064e849b9ade2f802e157b7');
-INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"8cb8ff5c4c38c9c0fba5186c78e3c57041831ddc55b169a74995edce686de946","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'0399a56f441239a0c987a535d508d6adc02a87a635cf9e63316eb7be38e4ef43');
-INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bddea9d3c1d0505a596914569e99faa26ecc41a268a1bca8f5e07db228803022');
-INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"9fd0630d7ebf232470cd1a8c7e051bbcdb752b88598aa90bec029fb7f118a128","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'c85a100200800e7fb7c645ba4a25518d0d8c5fab5a8f11bf7abf1f28a868b3a0');
-INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e9e9fb0e1ea80d07c26b6c92e636b6c2e5803e97b4df73df6c086b6be57829f');
-INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"fc7ec51fc69f7284dbd6df219ff906253036d1696f5518d346fe5a1997bbd05c","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'8d4b8b0a0d29f1386e6bfb67f766576c8874b1f75766b9aaf33c10472b1b4f9f');
-INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dac6ff46b81e4e4d94d892eb91bb50d629b0ae83c156c518bd7394413dc2f68');
-INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"c726eba0cec90d465a44ede024b1f8dc58063711870de6e82d1424ffa23f4081","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'ba593c53908bb1aaa1cb90b231bc4d754bfec57f3d90dbef3c9e460da1f4d6b9');
-INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f02d11a81f1360d1e32f40b4e0a57d03d4c15788b16ea7d0ae39bafe474914');
-INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"f0bfe24dec959d07b2b68a79c3c85caf68911d384ef64b4244b61fb86aa21eb3","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'a0178cb042aa0d3d775a4de6507cefdb6ce33098bf6e46a78ac6b538aaeafbd8');
-INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7384c39900520a5c9dda2df7158b5c2b218f84f5a2a00f46c6eeac274e1821bf');
-INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"c9d741a97b59ad670227903d4a4b5f63048712721e6ee4a59e6593e3a06a4514","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'29b53f7f1dab5b2ddc0538a403e96563f48bb86621113806851e5c22853769b3');
-INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4580cacf6ad386464e718feaac51320c446d68f89086bc7ee122e417e6177c68');
-INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"eb64baddde8b82bc629227449b9f5ac4cc4adab4b387ad9a2812591de19d6703","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'f9f2838ba221aa7a8c8c32bcab201e7b5d8c0e759734320bf4ec8e6fe692f4b2');
-INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a839b424e6a3c76610c51b97282dc3eb3bd87179eecffccf8a8b5088c15952ce');
-INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"ff03eb6a337397b372d03eed981a03eb5f3f9565f66bb943bc1e9fb931a3a298","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'9a0de39495965446c7b1b2c554e0e15b3e33878cd6323f131a12ce10c4f33b8f');
-INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'466d58bdb4e793984fc66174f1d392a344cf8b838589ed84ea7ef03dfa4fcdc8');
-INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"5fe7e9c01410af91855efed43e8f9a44d9eb0ef53d2fe80c1d88581285c86df0","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'3ed40c5f2c6e2deeecca33955ee555b0b26f07a0e7e895f036374116ccfbb846');
-INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0abff2dde79655806026130821c2cbbeb7474480dd36a038be4a6049e75e101e');
-INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"33874759d6fdcf012b2fc2b57d21fa0226cb3e18d14194500f282f3b11280f76","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'c0a40e8ab9dd74252f418c05b66ad4f1e42347ac922780c4dbf0531437bd2def');
-INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6979f8d4250cf7688616a9201c4e88dc99619dd5c5b4fc3a4b40f784b0caf325');
-INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"359ed3a20d949167d5d711db7a275c8e9a410f5edcc76a0bc1e277d1eb563216","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'9581dbcb589abcdc230a8e93b71a981cae2e93da6a86f562049ae0f4adb5b06a');
-INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'585a51256a500f785baa8ed067af26c41ab21e1c01982506ba568e5df564f98f');
-INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"d8091e8da964d953066d4973a4212788f9ca3b47788454f693a9a9557d8370f0","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'abd74320f7850470a3f8150aa04bdd385e7f022a6f93c4854031b19bc8a7d814');
-INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b0179189015a807c1d4243637189801692cb5a1e4601ece220e6dc502c8475e');
-INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"2cd10f30db70185a0aa3a4e3b085a99f9b68ddedea747d25a09fe43085873fd7","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'587894e36f8c79429252152e0f20ab051ed0cdcb952dbe44a635db8a46b20d0e');
-INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6058d08885254d4c0f6d1e266bca290b920b5b7a910accad3302c8a48cb0935');
-INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"0eb29408989eb9c5a38a5a2ef7808a99f649cd05a3d641f6e2d652732884d6d7","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'72db9bd39a718abc3fbbd40cbccd69adaac60f1d4ca48c4dd11445509ee8d74c');
-INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'551362bd98106ff5a52ec3e3b1d418c9098c0e311d837ed652417c6cf9c50cb3');
-INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"86088a65b7c10dc88153276f05db07d1fb4f6d4ad707c5a4a9875e739782e2cc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'8923984b88691964855f0da2165e365b40a522bad33ca6c2fc8d0b9070d155f4');
-INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8022f54132d090468037ab9c3bd63bbcee0a920d164b1c71289939f1175b004f');
-INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"5ff093890b48f2b0ad5d1b99f633fccab79c3014a7f47729399d07e595cdfd45","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'cf0d060bac83f0e697d26666548f79df3319e62f24cc57e15ac93685cf5519ea');
-INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40ff05b2468d7a7528434d335ebe48ec814fda27e2c1cdc024a72b58e7361752');
-INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"89b97705896f32061405c10278c072dc4fa495e92c935ba0c57c5d54cf4473bb","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'bae4bbb00bb4da30ec552e112beedfa459e2d30cb6439b88a7cfb6c9f59d11f5');
-INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'feec84bc0d60ae21dfcc514a07ddbbe4ea743419235b1f1f58ef897105751fe0');
-INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"3e036c1c3d33d8075922c286510d7fe6bf687cd7b6b2ca54bc183e36856266c0","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'3662e9c69f277e858f26efe86ba813a2f933c1b4566aedbdf10fa117a1fb49c7');
-INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5dc80387fac8b45556eee44ae8f56c01c7d601563d5f8e0d1c40936b59ad87f');
-INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"02e0bd55a0bda5403762446e66a13753ebaa5a514c1cd66c7f04ef46ef4df738","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'e6034441a69c2f07ffde8dbe9eb5e760421a49076dd3fe6630b4d33666d82e69');
-INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc8e39b933de9e9396c4ce1a1dc898cafbb300bbf0314c42ec355fdb7882a96f');
-INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"807eaade814d710f7f74b556d926b294fff13c105e326d6955b02a4bc5d6d29c","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'63fc268c94e13b4710b25c30050459cce75f5a1dcf2a4a7508fbeab5d0d80138');
-INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b264475da231cc25e5ab7479481fea4231cd0b5451a0874d704b27742862877');
-INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"170f6971eaafb88ec0895d5d9af3ed34bbb3eee703117b5b0e6cf8d8deafe0f1","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'0cac7028d1ec05841aaeaf1a834ce6c533dce30993eeec274d05901bb5a48dd9');
-INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2708451c3403bfa6db1001e07e3292ab817f2a5daa81f8e212fef8b652dda685');
-INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"e103e1f0ee51b5fa86d61f8b8ddd9b7918e0d047727daa43c66ad3d13d7b3c12","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'9e946b11ce1f1078baffc328ca79268b0be3b38ccefc22cb3010dbda950417e5');
-INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59591b7751409d89750a3e1571c8e4a8cfb13cc07b3963b90eb2afd7d6f58ffd');
-INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"c671dd04015cf20b8cc8fce97e40ed1f31df42f7e42a0989eee0a9b49044554c","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'269aaa135e9f181474665e691b737da0b8922644d39486c7eb7588dabf19ee2f');
-INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fcd2e1525f188154f3f0296b561479f1f03f4d36cff8b33a5f2312760f330b');
-INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"35a58ace6733dd96d89ffe8486a3d595754aae5271e3584aabedd6f8cb1076e2","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'9db8f23cd4610ba64c173f6aca9f165935911379a61164a319122dd23823ab0e');
-INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a796096f0f96cf07dfa7609db54ec338bca217dabbd09023e88f8550428a4fb5');
-INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"ecb6a27a09df864cd864d610a210593ec26988d4132f30f63c8607b6323e4c22","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'d2b5dd727c272bcb5ec87e9268b2fc678e8e17a0697ea9c1852f6b72b3193e12');
-INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a8c1f914215ce3bf69c480ae69b2d74df042ec681dda497e8302dac7dbf88d3');
-INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"6c18380805d06f23f130503ad7148ef1a215c0b217199995496a7670aad67c52","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'838225ab419cf9d5f798af135e29aab1de98b1932b603bf6540ac08482c03445');
-INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d584e87982318d313eb7e1194062191e3249600404c6c67b38b49a1dab2e4daa');
-INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"86d5f32768df40dbbc112f75dde5f7aef0aa1904a689cce3d24be58fc793bfb6","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'229747ef38f4a7557ec8416cd21c887301eecba435604e5dd8e0a65e3de14c52');
-INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'975513a1f171ecd58d3a2ee007bbdd5957ea44a90f071f6d0dedf423caba4da2');
-INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"206690aa73f071c14545eea0cb0c8838abdfbc8ebd64c0fd097cc2e2a254d481","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'107cceef85786f376fbccdf4e823d871e52d8d0a10f6c222c81b8b9de614afa9');
-INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4baa59fdd8af2b81425e1513e71758025da4b28d5e8d48aa02b5e8340323de8c');
-INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"ed1c7beb196128167ad8b9d03f1b9a1b7b5d70cd7add306919cd658bc32f0d87","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'5825b412f547d3f2bbb1f260aa2b2e4379d6c27929f23b0b09d508e73382be9a');
-INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee251e145e834420c1940b9ecb2b53d1788a11cc19982a0a34f58f6ec9b1717c');
-INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"977e7ff9f1e5f0c1f756e802013a6e72299de42a6e2bafad94b57bfdee7a6632","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'2af335b8f8fab3710b71de4f4f0e99fa844f3bd99d42bf2040b3b7a544d14454');
-INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'319349f4133462f408cfca8a629842f0030e9325e299ca410f026dc3a5af05e5');
-INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"a171b8e9e9879ede2f4c1fd42173d0b0ae0a07fc4d1e7f2f58ba50855fd986f6","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'057a3bf62a158434ccf6ace0e438a0c2db44f2ed39a264b3be89aadabd075bd2');
-INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90456499577651d1d1c4149a43b23b0be7f181112d5e93edabad2c8701601ba6');
-INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"e06a1bce3d693147d3df5c1a5ad3b7b421d526213ced3eec59be44220aa6c2c1","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'72135a2fa231aa6b312241af57786138272ee35a1fb7a33711347cba3f90c060');
-INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ceca05f7424979de91f3b1c52f76c01207188a246f07e70e6e60c2b58536ef8');
-INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"e9ab5031997634f6ad74021f5adf3d5a62388fd55401a584464d7bd1c7edd44c","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'70e0d852e54261ba664591d37610efed25118db43882a9e7e81863630675fb2a');
-INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4edfb9ee3f5a3d2dae339d253d3bbe999ac96b82b3d206a2314830534f665e1');
-INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"be1d3efb0c59cb3610c20487d20907179398843322cf4a26681010bc89d3032a","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'9719bc7c616db17dfec23eb64e9e94e2eb3b778c16e6d97e83b815454ed4730a');
-INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'915f4b97779bdf66e1b1f1595c796b2536b6c0559d134fec0d46ffbdb68c99d5');
-INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"4c81d40dc2e7cbc7e47272cbc8fd00b3b88fc7743ae9127216c8fd3cf0a29440","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'7a66c595220251f9b1744945af710a3c8a18aa5016af3cf9d653b1706a7d57eb');
-INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03fc2366e8223f2eeeb53e7667c47116bded5dcb5f0857c6033f93935556f71e');
-INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"4091dc7273cdb5d4bd19145a422394d0ce18572cbc6665e32274bff761d04c62","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'39e92a301cec11d0f142d5415721d8d55702d0d73d36e933c6ae5e89f94b70c0');
-INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'812e11b6ec4104ae9c9df8dfcddf972d653c5a967af6d5fb21e62318ccef4f38');
-INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"54055d0c951f4ca0806dec96cde66848cbb36f6bc836d96cd98db0ff9e4b38cb","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'f9439e2b09a39c2202df02e93c743476cd72746f5e23757ab10d461698e442eb');
-INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67ba27d87ca44b6d709810b3e524b92cc3bdce30fc6dee610633f6a4c4d46ac7');
-INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"2acaead0979ed14161b7b6665b5431098d5544d1415a8539f20bc27e880790d3","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'926e20c41cf25f96b42fe7e91be788c06e6da74c844bdb3bd6a5f158e09e7e68');
-INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7cda902f0e604cb206e5e065ac004a3c5081e2db416bafb3097e52bb02249db');
-INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"4616d2ff3ac7feec157408f1a40dda3e96b3ecbd1fd7977a5d89c40936b1d188","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'fa42acf12c67b75a72cb2877dc11bb81cf37bf89928780f769c226940047450a');
-INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'284adafd25c17d91a7d65f0cead82e168a1da0d32ae89732527053b179afe252');
-INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"a86e2d86f493fa42f842b5ae85a42f41a97740d844cdcba66dbe64a7aa48872c","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'b1a7729cfb92253ac5636c10510333e6e7eab4436bc00aaa6e9e5c7e48931236');
-INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b5db60b9083bc9f10b6959bd2648b66b5a6c818a09660119a7d0837a28acb07');
-INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"85a9f6ce9e41a035f7077c6f53371fbaf823985fb3e4aa88c8ab3f917b06014e","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'b6dd49bd4d5eb51954a01dd1f69470d7fa1e14e00c5428258e244a21de200467');
-INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b85b626de049a1b4bc7da6ea732d932e9967735ac96cb469f452b9a82e06471');
-INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"b45d7ccd18ec37708371b786d993d4f6cd880a42087093d0651432d357acee0c","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'3196cf83a908df222c38e1dc5fd6b51fd45fe185ce3c711d04a19a7f4934ff9f');
-INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9b7dd8137f10a9015202cdfaea8b3f70ba4ebe7a00d34c704db3f3a26d21654');
-INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"6cd15a6b0104e8343a928946b3bd0dc4ba7062b599e63576a456f9bcbdad2c64","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'03a19a47f25430d60e1d5c00a304cee312dd79480b79b2b5362e827f93de9d09');
-INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a12fa1fb9c9f079b6eb07e6a61512ea4a8e0fbe0df6ccb688d9ec802e4b9349');
-INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"696d4a61ff5e1174d4f20bdb76941ea081a4d2f3189ea334c4e95224f8c8c8a6","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'b4691a82156ea5efd5c2004c5f3117ed4b9595455ca6c1064b9ee18be45432ec');
-INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c394d9e99f158b77fcfb4269500d9d85834d033675cbcb56f242b87676d8a3e');
-INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"cdfd35fa4c56e13b5d326dd331f4ebf61f85518bbbcbade10dc40b1af4a15431","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'697dbaab004590d997dcf9f09682d54c8325cb1906562eb642318ff71d8e4d3a');
-INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1d3afce007d71a5ad43838748b5e414f87e3bd9a1eb963acb0041ed0389fb4b');
-INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"a771c459fa5e0cc21787d85a9b38e8ec396e77cc95362ddfa73ec9fb454495fc","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'07cff6450cfe40edf6fe9cdaa98a11f1103f452434b68f0dfb7fdbbf5c78ffc5');
-INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a533b21339b9ac8e412f7c41875b7025ae098d74aa0a12cf3b75a209630a17d6');
-INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"c31dfeb0e49cd9b9f45143ca853172c4f8d3ee88427c3e98f7cc8dd874355392","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'c438fb19422d38628b0df6f4f6eef1bf23fdab883a736f4073b1b4bffa300652');
-INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6096f58aed184bbd23bc3c1eb0f43f517ff3e62dc6b8061782acc6b2586aeae1');
-INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"7d8b260c7351e40751ff111c6c06d7c8aa885428710b3d1e1f0994c35e2f9643","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'b6ecf145b41733a83f2bcc03c5dee4d17f0bcd437ed43509a243f99adcad8545');
-INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6111808d9591a89065285a74abc17701e8ed38413b7c7b4946384a38eb2a0d6f');
-INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"af128c2ba7c50382bbe8e3b428f19fcd80958bc2e5d4c33be43712d47d435a70","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'1a1153b7d0a18de075701576fa19a63802a5cb23ae8fb5eac2d15a113ae288cf');
-INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0e96ea725b5dd486b2dfa346bbff39813e7abad6d9b1dede42cb553d9114840');
-INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"c963441968e83c301e8f29f28765581cc5f14e6623c040c3350dc589eea57da6","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'9bcc197a7ff8478ef4b84a7b2a5c75fda1a7c889a94a50d2716ce0b836eee8d0');
-INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39be63a935aaf39903c601257f3ec4b1b4a9677cbc1287ada4802a2c30b7269c');
-INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"dfee8971396dc54217e263b98b1ee284fabc170a53cf0fa2d123a1f9cbd14d64","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'ba4cb3d4049753a0fa26970eeda482a0bb77d6e9a993c475a8a25f022d1ca2cb');
-INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4e6a4009f9deb0ff93daa72fa7262be4ffc99920ea1b4ee6e3a04de493da64b');
-INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"493da573a8f068a577690df0b951ad995a49bbbdca22029102fa286d1d633269","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'21cd076770b269caf8feada57d04039ae73a1841271f7dccd251738f63595f7a');
-INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'243d567819dbfd1e995bef5aebce4abbae769fbd94fd2ab095bd089707a432a4');
-INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"e54ad17218ff9f1d0ac02978bc5b0ec884a467ccd1417779043860b108dc7e74","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'28e2a48aec1e6392fb3f35033f95db870544e853b7001ba0b4100492ff918912');
-INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e580d7f446d1f50b1a73ae8527e3373037616488adf50c9274c1d9034f000e16');
-INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"bb17de70c734bbc12be97953357cba4c749de77aed7ff5e0a5a7c95e02a48bec","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'0ef8ed313e6e1a779bfd74cc30b5875e3dca6d8bee135b4dcbbf510ba59476c3');
-INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afcd41dc4d9c0be26ae0e11b82fcf21a47fd8b3647eaf8e1051bebf24288bb6e');
-INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"2e03fe798f0a5c1f8dedb60d153f4fbb5c461b6df84a5427c4c5fc568c247632","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'748d8197285f2dc945519170295196d34944f9c20b4b5eec5ba21ab2e5bf7b93');
-INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2643f17725892c6489c2b63a5e916f096e9de9101a434f93cf8fc69dff0f5758');
-INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"de94fa7ca96ff9c889cdfda64f41e136ecdec886443ac534d48cab345400fdf0","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'c33f570e3260f7949f96d2190cbc0c43f9d38540410dcce376cc379e449e594b');
-INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6217283f2f56d5268871eea2eb8ba1d6df9c3643a76460cf42fc32034fbce7c');
-INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f62a4c12fb1ef9e3f82035ca00f8b419baa84c536d23f127a552b9c3d9df6e3f","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'b409e8a4b4ca45129b2bc6bf670ba174fb3947be4c29adb5874b4a8a12e66646');
-INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627d7a488d52503a7d93c607838ae1a22f9fff44a3c2e66cb01da1d66af0ad20');
-INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"454c2009be61a3954687ce793fe7cb30490d41edd77bd9d62006622440df901d","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'ab84b826b4536586b87f44c55e749878746ea0249d6bba215226cb5b32156c00');
-INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d37c5b2b193e3bf5bf15f02cfd51757ad7fbc83498d485c26bd290ea0962e0c2');
-INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"6a772e172863a0a850489c0ebce5b7c5467d17a50bb1b04f9ba949dba19ca8b6","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'eed3c2bcf3bdccf5c109c0c5d6a30f1240f8d85b4f3eed920c03a62c039f0c2f');
-INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4504c59accdf5e9ed29c7bd1b93724cddc1ca3dcdf8249f043ea94a13cf8c36a');
-INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"c5850f7e42e373ad7c980eac188fc4c1d93c1b70fa5113498aa6a50a7e583a95","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'8ee43462dd564c0ecc8be1c616ff38235552d097be9cf678c5025aea03ad146a');
-INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aea51e8bd340461c1fd54dae48c6874823549664c528cac0b529499fb112f11');
-INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"d67a467f3facea45d03afbe61753a922cd38f8de8c4b23e064a530e2592412aa","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'d4777ac9b1da5caa5352c06c00761f604b1a511e3283aa4c9cfcb9fc0f8bc55d');
-INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8159c00e96f190e71cf615d74c7668179679d1b790ed534b84577e7442a4522d');
-INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"de219598994c08d7db8fa07ab2a525349193cf9995b12bdebf550efc116f6d3d","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'51d97d8aac4d466c03e493bc62ccd693e17ba9b6695a63e0b9890f0ae601c1e3');
-INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c247912211dcd08a3343ead71bb65fee3a2edcc8a13e742981820abc9378ef6');
-INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"d102dd65505ea26b381ebc87971f3346b7bc5caf341923fe94dcb249d69b4e30","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'ab693b94cf21a106d9d5c8c00cefcf79559c9d1e0735276491b8c847a99e1ec7');
-INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6fb5f01947ad3d96ada1ad8b193fe09dd0f5e938883911ef818c880778b12fe');
-INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"b8c7ce7442aa512c5eb00e3c222fd2ce668afb4ef43d20af4592755faedf27b0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'a7044a47d2f381e997ee20299a4f9f13cd83b43412e4f57a26371e7078836ce5');
-INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'baab282316834a6fc2001469c0c54435ce3d74f1103634ca6c2aa6dac6951887');
-INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"51aa347c9fde3d01458f08a73c430406fd712a905ebc897c477ab43297fb57c4","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'1a9914516db95fa4422436fc6512122bc517340de74f2183754d144a72af3a44');
-INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abe9f0edd9b388088f84fef6860685e0128500a056a2554f8efd6086095e11fa');
-INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"badc62331f35d2d438ef5ac0d918e29d750aae86f1275164354eac7a7e7f5254","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'e62b3c2e57f6906fb4de76de867bf193dd6e0136ff91ff67f8543a06b0c9e8fd');
-INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e54b6b42c2c7c65aa3bd3e290bbe91609b0a5ab064760724d7b35d79a5558df1');
-INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"88f7d700b8ff35da0dbaf70bc08d827586f42dd7e817ae603c2f81058850c9d1","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'4a5b8fc9a0e805ee5398e8c4efbd7c47fd1a66266dcff1c4d37fcb5e82a9a35e');
-INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d1209f124b5acac0d34f2a9ca1b0ae72f5449ce514fed2a5fba0ee735b2141c');
-INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"b3ed38fcef537adc2756596562698c24287abe616870b22853ea834aed2a0bf7","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'56ae349412e721aef2b9de01ea503be6fca2cba669181668784793189626cae8');
-INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b127713e06eb45e6aca081fbcb490cfdf7bbff29ac0445563d56c5bde3d962');
-INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"62ffa442b4f5a7835ddc82c0f5b5362aa3c97ecb66b039670ee22893b6891ad9","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'726a2ee354a576b107587c8a44f6064254ea078087bc7a5a5fd2241697efeaa5');
-INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5a1c2656474d02bd5c14ff52d55cfb750ab531e8465a3082d88a1687a2df1cc');
-INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"015c140f5d377fa59b3c9d8b1c572565f35cd73b230f7530d42d7bf3e84cf41f","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'5d22eee2add60c7be63080c1940dfb8a1e625778bc96819992884c40c07e0081');
-INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea0086be6b73402de813de2c98c9fadd8d8868cf86517403c89fb7186175a273');
-INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"86c493dd15da412115cf100f1ae5090054ecc5c70899504cd8d28b4341c6b2f4","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'499b78a10dbfad53ccca84528d950316071bbfa7ca5acb4359b13802569e61a0');
-INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbfdc672a201704ac084752d2f0039ae416fa2a3207b8dc5fe4eb44e7eda142f');
-INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"06521b1a530800f4e086530f29d38e8068690ef94e073c38fe834876aa7f9917","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'7d5bbc382079d81f7eac3c292ce8512932a0c584cb71a4d2ee8c1d4b8b2af806');
-INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea19a814c482b366775c33f2426276afea451cc10a92ba79d2e3fcab2a6d040');
-INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"0e8eacaff59da1d2ba48a95aeb66456f4e3bed48ee495cea9ec2e0ffb98db2ba","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'a3da92c32f25bc8545a920c2b92ebcee2757603c3ae34fc8275eb955064b2d7e');
-INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e5fe75d3926b9b7bb4544457794bb99b43e0597956a719a8ea09ff3cd8ab250');
-INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"47e506e747a98d1964596e6c438825affd74e81533b2f48e21eb4e5a90262f55","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'0b1ef2f3969121dcbb0886816aaea0c80290f7d9d67fc6d004e652672c480074');
-INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4eec47d722e8967844faf9954ace0f9679532c6e2b4f7a63500928eab3e69e28');
-INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"fe470b47af5b3f99bbbcec04aa4e304ac0b2890d03f6432c9f9a3cb6ac22e474","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'bf32fe88e3ab08468ecc8fd75d956229326ad223e53ce0505a5fb1b23321123e');
-INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8369ed551e9d8fb1316d2d033adbd45fcb633c729845259030db90da96b3d26');
-INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"9eee9c3e3b358fdbfb78813b40b67c9b33bbaf1512e3d7d27f6c05e61d0bf6ea","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'c2490922799617fb2418829fd7b3dd15dd10a66dec7c8f38659ad5eace0f6ad3');
-INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8adb1ced183b2bee35472c72674ad588b08ca12fab97cc003ff855865ae95c2f');
-INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"a22e94319ba0331541ae9446e6313faa1ff5e579294f0a4e73d5a4cbf1368ae2","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'56aea925b0a758a08f9861ef19aad61ea0542a61ca7a1fb535f54d445035a568');
-INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'289bf11ccc18d45173c4dced549c3bb51d5ca0044eb670e51f5e30334e0aa604');
-INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"96cba00eb5b84fe3634ae0c4ab0bc5544b5f9a703f20e0c34c3877aa97769071","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'79d7ce567cd5dd83a344f97bffe65a71f92ed3c3f0c7888633e2283705037a9f');
-INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8d5445438dad7b77879c6f35f83ffb4ad1a8e9f6e48564cb84276806f0133e4');
-INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"36c279295138f4a6da31842ab3a843f35fdc05807920bb9909042562e3f72a83","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'cedb5f9a6d61d6b4c3affd041e9cd49a3ad35bbbdad62a15b086f985a9f01295');
-INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a709c68222561b80fa2139b587d9335b5caf4b0b6ad369864789a9820c93ef13');
-INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"689909b859f925743226073e922bf8f21ca99caade631f6a1dd49b16dff9fce8","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'052e1d45e266811dcec0bbb1409e06939967b1378bbf40df3d5eb6c838b48ea0');
-INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b2d32a14a744217a76c0fcb3e67d54f9295128fc018236abf4c72d50af6463c');
-INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"4457523f49ff3994beb0520d8f8c96387bcaec1e3dad5d4e414c0118768e1f67","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'0bf04158fa20cabcafe04f0ddd7579d7d8292a755f56ce82974ac67a4e96e59e');
-INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30ec5ce0d5c55cec171158008f4b1f79c52b28f8efb05168f79298b423aa1435');
-INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"643bb31e7baa89d28efcee7755e727165c26c6160da6e474bf0361ca45d4c928","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'c5e429b207647c401969cf8c5c5ff66b70a44294e843b5bf92d15236bf1645e0');
-INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9842e00657a4eebb1badc07b2be368f012b236919882c145fde8d8ef1834cef8');
-INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"7a0ee60726734da2812a9d04529425ae59ac22f6598b536a399f77428e3acb66","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'4894a70d64d04105917cd820c17fcfdcb59efa76703fa15744e503d0d365c94d');
-INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4747e31e33e446b85ce7a0f4dd42407a03773024c855d96f937c7e9b639d7df4');
-INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"66543655288b9354381b07bd124c91433357babb742999fdf19b7c5928ebb9ac","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'19c411012a760fba964bd68c6c0c339ff9451782ca5f3e939ebeb92eabbf7ad7');
-INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7f089f50cd6cfd72ed441645b8f382738b74a7caf62056033b749e5cefd3e92');
-INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"78c91e8e991f4e18fd9b2a200fdbceba6644c5baa7150ab48a55a06378fa2731","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'51272ffba651149ba99dc1fc82c12e9c174b6e4c5dcd90c457f4f8d745e2ba62');
-INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a436bfeb6442d9ee7d9f1df66c4e662b0f0a199db33783d8310b2076a3388b3e');
-INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"b8d234858f912396a71c45ebae9b3a21bace1a8dda0827b9e8a9b82a47cea34d","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'de4297d553a3f30defddf9b78565663f924827d97eeed1e28e53dad60920de40');
-INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'edff9a6fd33a82a20c07560a5fd06f29fa7cacde8a1af188f0473cf0a11c2ad8');
-INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"03209d67b7b17a0027728b8940661ea37594bc07cfc6780033aa44c481f48af6","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'54142359dad6e4ca8dc104797ba74328986f8d63e5a63b8f5dfce9be6e04f001');
-INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25e061e4ab933ee2933662b1d9421899c9c80bb361be80f5cc37b31313aa36db');
-INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"079f23e8476ed4f50d9aa11b1dbc3ef842c51bc46b622f75c06b06a62388e701","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'510e9b4efbeeb30ec3774cb82ecb054dbc8b1ff453f7d25e34f8416a5dae6e04');
-INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73289528e1177941a224f1be999eb430afbe68295f022afa8e829066ff5e647f');
-INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"36a8bd5e1cd13df3238cc21da9490b545e51981845daccd2d7c0f3e7476e9f69","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'78ed183ced251625fbbee8b5741ab3aee0a325a484bd65eed281fb2ecc8af6b4');
-INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e43f9466b4c0b44c290173a4877864786c97eaae304c78557e211aab8a206bd');
-INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"2e5d68dcda983499b5f291e65d92baaf171cc830e18385d212e6c66e5c8c7da5","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'b598bd4094f6ff546391c7a708d873350c11c202f75e7c2a0bdc950414128304');
-INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43ba9ef608b5831c880c7c61c16eda94d69a20c0429d9ea8ce89f81ccc37666b');
-INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"0b8f5bc09af225c25136f886347723693fd43c83b4a0602747803579bd4fe100","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'1d6a8b563e98562cd6e3e78b07709357d0a1dc5ea33215a0536759ba775a4d9a');
-INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fae908386c35374c947a85767234c9b4736644ad518991ebe30cfea1f0c6cebf');
-INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"58b268d9c7d1747b50ef4a6424d3e57365ce66afa440b9b365126437c676d3cc","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'ed09141aeb77f2e1e4910bc5a79421143119c38db89df7d3d90cb5ce1e3f2d8e');
-INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'833246bc69d118b64c3cb2c6253399369ca697d270d8df233d28d13dc508b963');
-INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"03e581edbb659df8a0b7a2996d0ce6b97f1f9dff6d10a7d1e9443f5b20836521","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'f85eb01841466eaffd18cc531b393c6299132d582abaf67a594c6745b536639b');
-INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0493b7052c60f74dfb64e66cbdbaea54a3044e9c8d8d2cc50d79ea2094e0d82e');
-INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"9c7ecbd39c0967b83ae38062d7674b5fc87e4330253c78da3d19d7c1d8e12fe2","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'c71bd18a7ffa8ed60f9fb71ba0d4fec46ca9f6e04aad4c025901209ec6cf1d2f');
-INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b3072a9309cc1651e858c2ec453961ed114952c2e7f6ca7a27fc681defed080');
-INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"128105377e3c494bd2ddebf06d4f7b341d300abbae44e42233771cbdb8f6b2f0","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'678aea37968f5bb211693767df4b4d30365c334e1cae1a587d941bd47fbb4c06');
-INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1589ad709fb59c16e0d83b91c94034a4bba7d0b978733052e845ef2b514df3a2');
-INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"f43ab6ee98113914d6107f8950d5f6fb8affc0764a4723aa3da76bb60462ebe6","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'0eec9954a5cd2b18f66ee814a97ea58c80e67ffa0f1d0ce5eebfe586c2f3dec3');
-INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c855899c3a2e5e608f3a377074abc367b93141b93537d64a6a89bfa901c46d9');
-INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"36833c9b3c6ada300b80182e1b9e78ba57b16030c2350a98ae24f85212a8d1c6","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'c8301087b578183f408a096f13f8be71a5c92deefcd92dc4f0977110a4d27c28');
-INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eec3860f4d6bd5225826e12d432032d44980d7573e601e69580e29f97a234402');
-INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"9436a06f0aa4299d6d9dd6eeb34a34763dc1571873ec7d801504482f84e0453f","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'9fdd35401cb53002285f4131f9a3c9eaaf0a3b2d472c6e3ed9fe109816873bfa');
-INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09b14051da918335a116d71050b1bc335b242036c447ae76823cef87f7774f74');
-INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"1dd11ae205fb0e3cd0e40f6b38f828c87984aee77d866a89459b419bc35c8b91","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'9402df61c5a4ee0deb7e508e81e0fe0e1b4498dcbc7cf56061f81ae5fce40d9a');
-INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9619ee7abef5c3675bb9445eeb3c75ad6fa8e86211119fa33ba30056d5b5d05');
-INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"2959b2278c2b1ec51545610be3ffe8558ee5b8d21654226a04e99fbfad17cb5d","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'c9d06ddeaaea2277d3485d8fe86396425bb1b60bce0abf820694c615f6bbf3d2');
-INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc60e21e4d4c7e41e37dbb40a51081c6dced640d8d2102424c995bcfc025e546');
-INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"efd4e825c77a27f6c0d8b18c54f144166479fb35ad75dbab439122b908f4d0b5","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'0e23a0ca5d66463e0258c07d1fb9f3e2775d829a145d6ee8f8e9c158d7f84e8c');
-INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eddac69ec8928a10bbf34486895f9f4d8aaf28be0a2b95eeee4bb23231f9eb8c');
-INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"07a2801c71185f1fd03a4372433bc536c79aaf46ed374209a41a1fce2d0e9ff8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'1adaf164f9ed06443535a61a703eed7f976a4b8d4d27ac422a70e8339901a3ce');
-INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f8a735aa8642c7562f7b6ddb2356355b5a022d9423dfdb0c0e11a83489b7be');
-INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"d652cb4035428a7d0c6ff73d8f6b3bc341ebcfefbd5129f45d77d9a4c63648a3","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'0abe26eea21b8f2162b279d1a38ff8cc254488412101d6b8b5a86a55c6dd2a44');
-INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00f31c6fbc895a84108f618313674f5f0f4c98b0d221820ee339d588e91aa458');
-INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"03298834b11f7cf4a87e5717022fea72055bc47a6e8d0f62e4a9810f4cb96b82","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'24e54922cf302206d1f40e743a79bd2a3796afce80fe0ebff1901a08c3be4c9d');
-INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e364a839c950b776a2e4e5975ab05f61bad1f263a35c5b2ebb7c629db59bc3ff');
-INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"959fc4e9bdfff5818ca84c2a68c31868f6d3bff79e7dcc5df9da122959332a11","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'f57e9ba5ffa57b2b842d1fe3cd6258b10d237b0644fac065a4f46dcbcb25f5e6');
-INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'591cd40182ceecb70b6a60c273e570050e820c83158985902955bf67b963dfee');
-INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"b540fdab5cebac778cf187ae4e15720474ada921e9ceaa1393176bd2a4b8a3ac","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'8049602f13266640bc8d1855459c5618a15f5ad21e95a0253e4eb1448c89298f');
-INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4732a6ad258167d7c340ea7e89790b6572183c5cf9f743ccc67dd286e0dd6593');
-INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"c5044aaa4b6c6310e113ab4b8d4a06108a09e57b6f082589aa84210ff6ef74eb","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'652a79720275267d30ca2241a6c001bd201f4b07968141ca8159d2172e23c6b8');
-INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32143e307aceff0944830b4e5590ad62e99ba3fa7dd3c0dd4aecb3e206fec84e');
-INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"64b6eb076323d0a896145203b0c7c201c2b57511c3d85d7b546395d75ed44a53","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'99be4412f3ce65244351707993356b8627b29ef71da3683da187484d8d1307ab');
-INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b5dbfcf0f9fc74e8952975616a0998dc888154b2b29635f1b9a2a377fce3ad1');
-INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"d9f33ce31a6349baf6626faf215023a0dcaa381fbbc85519a36790adea83a30c","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'81dcf7b86507a69fe619364ea6bb12c8af16313b92a87130fbf50b0a68f5429d');
-INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24fba9fcc7cace9bcef344f29cba1eecd129539d1a7974c49eaa3212c57b939b');
-INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"9174a71d733b2d1bf9fe8554ee25a8f90b8316b6c4bf8f93a290c8bcd96d7482","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'04a50176e204756185d472602ddde9d872d70f6f644f3ffcc082e964da9f86b4');
-INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d229076ccd46d2c32cb0de72ef02c66a2a659c7bdd8b41157346f7caa9fd876c');
-INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"26bcd4fe3cc5d852b6ee428aa6d8fed7ac29d4870aa3765afb64a7f606f34f98","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'6a44345b4002d421aa2498dad8b08620e82c3c09680661bf9cc914ac469a3e2b');
-INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37f352436da294dabd2f29e0d73092baac5bbfeebacab219fbe05bb8cf521af6');
-INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"a90b36102b9796577c3433977637279f790986193da640ed70d16c82dbcb1697","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'056fbec7786f353ed92e457397f44ed73d1a5603db093997532352a30efc161a');
-INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8557dd168e99bbc55e338170d798d75794a2b227c709c207f9ea8240203a93dc');
-INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"387939cbc42aadf395163de49936ffa63ea379a764238cedc0a52ecb280a8810","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'28ea009310b54f935563d5eb941759c73d669dc119fc4c38134aa8c07e6b763b');
-INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfbd14bbb53c0f0882343852243de00a9fccdfdc6ab05b48d4938c1c9a61067d');
-INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"12bb025b6e426c682d70a6ae543622d706b596d8d1848c61b0fd456113766738","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'136652612367227b6bbe03dfba46848ad352b9427fb978bf23012628b98c7444');
-INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dd57b03ec6fed55e4bdd8f003c77d9da0dc6477decce5fb2b9003a7d17be6da');
-INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"c501a04f979e29b0f67e8c4b2ab0cd68bcc610b98eba76d64c28e426e9162334","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'3e764e276f42e9a8ffb529eaac3afd3a0a0a4fe6acf3a2a62dee077322c2a2b4');
-INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68dfc8be224651a56f6395fba5522264828eefe60dfe877971a2e700fb2f738b');
-INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"d0dc75e494d5935319620e47fe5aced48a36185547557d7ecdf4105ce3865810","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'f4ee0365d4956accb7ac16d4aab3693e59cfb56accf260e686c03df1fd70a3a0');
-INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50d6f8b0601306034a8f68c3a60aa515b5db648b87550ba9ce5efce1be45bcd7');
-INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"021d83e2bcd0861be9bda8a7c6543a42d5cb2b1cad18986155556c784420bae3","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'b980fbf46735bb8c984320171cc2b7a7f91c7a2d0ccb56020d271b13b827715e');
-INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'278d2ceafb71a155ba593c78ff683af8e9865f0286087f78b3b83d706b4bbf57');
-INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"f20bae6583a51b6e9170deca1b35559f7a93dde4f14718fba8d132d3fe0e6322","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'43818a7d902bc72b542d9880abe1dbf73daea77016a8f7454af3790b433504c9');
-INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f663810b19b683e1852ec0ba2b8d1b207f0592e109de332e25fe6ac51e91515');
-INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"d9519ac42fde29980b3bc45cb459ee7e430192d8b5780930877da95a6510c14e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'fddd1bf5154fd1757a083bc8e54d4fb6fcf72787af8e03de258ff58a6b791ebb');
-INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'227b2b5d318649741c63e1abb4067abe31cea727ba7b4118e50eb864caef9ee9');
-INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"004314c5aec356c4085a994e40d6e7af4228da1e3ad37071c58a406c9d79ea21","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'e4630d4fc8ad1929b19e991aa9bbe72671dcd2bfa489a8c658c8bb49cef424d7');
-INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc57b48798c9da9738dee7f56ed55696c59b5abaf5292c46dc0ea92616169671');
-INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"f256e29cac9ed8fd9084d5ba5c67dcf17a9cfdbf448002b4d23be878f8f6c431","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'4df1f7def5c4149fc138704021baf3080abee31556ec01c187a0ac5c553df844');
-INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0d32e642c9d2d6f135d84b4d508f46c5a46c0685487584bda065fb75ae2b9b3');
-INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"92054cd8a49ac6948cac199791828d3caddd81f90d220fc2da94230f776c98b1","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'a55c827a11db7d43db88e7e3d9cb77457c4315e7a5f0b7c9bb62a67ad2dd64dc');
-INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a2daac7a49b61fbc639374eb9cbc6f342697da05c4d6e64ce3597a072cf590e');
-INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"5498543f7056d1878b53eee6bbfbfc859729deff6215caaf7b228b90c2ae0716","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'d5555b5d18c881e1e098c40a44588ed5a5cdf956ca1f0919503cce14617ee2a3');
-INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efe242cb18d35503ef1ebb0ff857d0e212e784b825f3b947d80192d515cfce21');
-INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"a48928b613ea6f3f01d29fdf8a6627a62af3454eeb3fd706201264e41ad28e71","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'813103e24cd207b7afbcb40621fc4fc3113a2c188a188016e1b6cbdac81b9dc4');
-INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'224c205f3190e4b29bd7d2669f4803b6af58d938cd1601960f1c278b8b5d0afa');
-INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"1e5bb681e064d631c8fdaee31e42df684856a141bb47c387a509b4c888a83644","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'998707ef2f6195aebdf1fe22cf9700733a6279fd2a96c9c8baef21f5d835c6b0');
-INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cbe7974724005596c6f73d35509ec81f4bb7746273459f5a973b79127921da1');
-INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"58fe2492038e1061f1da22695198180f159b434c09fe8184abb758bfde7dd8ed","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'ce6bed607fd9ec4bb190ce2cb78e73ba834ff4e8ddb8e24ec4e6c52da514f4ce');
-INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'053249ea3e836b40f2dc22bcfda952cc208499bc18c291bbc7bb4156f6250d67');
-INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"dc119235a0d3348db073f20e5edd73ba7886d07bd928c6593c8b531697a2e8c3","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'5c3a6e61d61a67486e937767bd1986aee1d7b1f21440e4a85f0ffa555714af86');
-INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ff2a9e6b311cb7d176d0f284a18704c2facb8c11a39deff666128bb52f19d15');
-INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"b91883ba3c87f07f7f3075cedc509a164fc69cccb3f7b4955263f0a427fa2555","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'aa3ed0c2e1cc8871c00da99faeb305bae7539bcef32fcc5f604fc6f8df986ce0');
-INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4ebe29107c0f7c86f942858a44b0d9dd582abd67ec58e5b01564c7d5c0a0667');
-INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"8c30b4215455a7b5c4fb35ff4b675702192cf87e37cf3a89be543fd46109e8ca","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'667e9ecbacf8a03926d6ddef62990eb09c25fd1d2e18b0c98e12797d244be8ee');
-INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94bdeddc6d36600d721475052bb85df7a154dfa52ceae42494a4146b836062a2');
-INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"12b9c9f7b4c06692d2e1c8ccad20ac1ad2be2bea92cbffd939f4ab8d28374fbe","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'27104993e0ec684a6bc4f26b88bec7bca070c09b98c57d215e998ab254fe30a0');
-INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee5ea575586ea93d65c881f2b55eda0e9a2e4e69cc25a60aa9613d3f2de43aed');
-INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"0ad73b9f29a65b6006fab73449dce8503f1afb74b31cc14d7cbb873df28c48d6","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'c1abbee3e6f7c234d9f980d6ae556c5dda03f8a166ade9a6a587a63cee11a5aa');
-INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'107e50b079d522cc9c8cd26cc4bc82de392a6866d881244938d45d6c2b3b1b94');
-INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"58e3369f4b854d4dcf2b03cebb0d9c22eb74381bf8c4f77e46527f6db4ff9205","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'db74f5c69108507e9bc1a3770b37b7c170c22ac2cbf12070336c40479727e873');
-INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cee7865fcf0e281bc9c918e127b2eeaf2c849faea2226238407eb92a5c56da8f');
-INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"35b3a89b3adf80381946f70c49cf74fd946b88eb9d243217623c04c645c6be63","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'4362e6df44465af97e39090a83223910370cedc48961a8c5defc67c02574d269');
-INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6f5a53584693bf96b65e0a7ccb4e338906d4753511833287efe5cc104dad1c4');
-INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"c2f31d665dead39ac346bfc8a6459ef003c35ebe858bf2273cc3a532df345a5a","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'4b2b1fc838ede0d37895de4907bed41072a8bf67905a87be586e9d167614fe77');
-INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0d9d2eda1d13c4d67d63527c890ab938ba2be9ae0e3b07e10617bcfbb66825f');
-INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"27744046c69e0650cb385182b7b1518085f196c8c2fb11baf13661d2229f4a9c","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'7aeafdae020aae38668ebd016589814cb04b5498d4c97a7dafd7c3ec12111945');
-INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4a64205dcce29d9fb5f19152e1cab12dc6a427715109ab6524f22c2fdaf40cf');
-INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"d37ff480b33c750eb958bcd17e37f77d69e5ea91ba2cd0fc5bb3368e788691c6","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'c14dd6f394c912e1f78b336f3284d52082fe7ed6319dddf384b084914db8818f');
-INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ffe27c15d9e5e956d7985cfd1f24c143bcac7d1f261d5273683f127b789ab79');
-INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5656eb27fedc0aa95a07805caadab9816feac61e3a7e97cb67cdfebfef2d3714","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'8cec667806fabc6114214ec7edd56ea2ee5870f498726f6117cdc7943134ef2c');
-INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0a3bd6ad2960cc97511853f1b0d13a166f37bf2258aecf585248253f8f9539b');
-INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"df2d34002ae7a0a83629c3023a29af627de3da68afd4369cae55737968d1ce5f","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'0873de0766c8f55947834c2a8414f7f902e2b8ada322b89333615c866b66cb90');
-INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'075e4b19c21f11938b6a336b835bbde550c25225611ab286d9a94ea1b4b2e8a8');
-INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"a5e5e3d49738214545b92d1afd827fb69c457af8294d891460eb14ef72bbae9e","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'39de15b0906f285dd0fbeeae3bc4628dfbd3cfb2a9368b899394377da5011138');
-INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3fd34976f32aa65b9dda608ef4c733fd990d287eca11a53abc5a5b61d2bfe57');
-INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"d06a0daa493d2c5c4a16315a0c4e43447a5cefd995df309dcf6709a2631f1fcf","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'6c5b83e1588beef9dc7b8cbb1c0353e5c537f06c1a4db4cb42292e7bdb2fd1d9');
-INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b01692d2dff52d5e66dcd964325f62e4c878c981de6b9ffb8e7a751665497e3');
-INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"f1bc84e08951dedc768f03db9aec057ac21d9a3eedbd644018defb10dfdd028c","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'489b8aef05f4155e659238551d171bed022d7e16f194ba6c6deae0494999c4bf');
-INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26dd237048f02e8ce62d519c68f2c1097c04fa1d97577b495a0a289cc35af9b2');
-INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"31341dfe24064025c6a6fe45b2443ca21d461280708f8070481a46a096880844","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'3a664b4c1207780ea6e620db075ea023725ef4db1723c6eb47e42ec686f753f9');
-INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'828085e213bb8e1cadca2b88267bc0d3cfcfca20d5450a4461121b85172be0f3');
-INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"f153cb888d8bbdf63f4eb45b9cc3b87d6e5ab845eb202deaa48c9d57ab78f23f","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'748038cef9c1ab529f2228b799c878304545ee4ad5904503318831eb60d32593');
-INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1ed7aedaeb5a9983b62f3f1dd72027c5d75cbcf0760277cfb263439c731faaf');
-INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"f5a8f5bd5e8cae447a96b75fc4b9a0d70e818a9654206cb23ad8d5ea07e92831","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'54b1f822690f2b4f661af89976183d553c21b94bf87de2548084d54d386d58d1');
-INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1d2921595ccdb876a4e28b4fb28d4b64a0eeea2b92ad563738fd8694e95f6c4');
-INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"c30fd1c2fa3af21d093e353716fc4c1e8cde49854002a411d98e2a0e76211911","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'63aa3cee9970aaef8958129f764ea591910003ac81e11a0e52ebc6b075709d1c');
-INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'319a00963988f39618da24696ff233524423f6bc98ad349f7a386787cad424c1');
-INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"bba3fcf5f4baf2b28664137cb7ac723d03999e9a17eebe6e564e15300415e455","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'cae6f4444221a0827eb089426a050994cde469b07e0a62702e02322309c03874');
-INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b9594d2c11e63d47e592c0890e30fc4ee66843edb1681584cd2fc9c30a0031a');
-INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"2d5aba60683d839b1579c2b69089c00819349fc4f4b6abc5a48f665230f67c91","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'b7176545914f2bef9d1f7553fe2dc88f0a9424f6e6a80fb536ab41aae4c5871b');
-INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85ed2066e85009618c60e347f8422f8251df8041811e4bc2d58781750862f429');
-INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"52e5adc7e30dfef0bcb7404f93c28177366b172a8f5c8713aa69c712f479b5fb","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'939b0e1d38a62579803b15b7e232fb09fdf265e97c637481dfde780dd1b490f9');
-INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b20ad12a28306d0393df3ac9cbd179993f64d7d5a6127ae81cefb34bdf45b07');
-INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"a4460c33d3af7eaf48cff39abbffd1b68bba521b1e1f814f0add5c91b00fdb27","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'437c32dee0983b710f9153da9d5cdd5ede6a4625f520daef1bdc76ac8122db63');
-INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'edd42cabe729da6afae6337663c887f8f04eb94bf613526bd0be0ab7df499355');
-INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"4daa321a8062e35b68c85d63c6c71cba86af28cad34ce1ae7a4a971f34addfcf","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'5ac262c0b71bd5cd645cbe471cc55d2ad7f9a9110a6f0a56a60936e19a6f64e4');
-INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac266d6ba19abed5ed4cd26a7dd645b575882ed265b9c8a0f3bafd70331ccaa1');
-INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"3e156c57def9f6dcf24682ed855311663d61079a0422522c3b660d80a4e88430","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'5b632a71481e8bf1300ebaf8169afe2a0a26564a06764f173d12b15318f6919e');
-INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80fc58bed5759dd8c8ea67dff9ececdbfddd533d7934d38a53db84c9295429b3');
-INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"f42264c5306769fc6bd1bd6f1955900113ec16b625e06d62ff3001b2e6b69707","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'5b347ce289192c5b705f5ea933460f401bb35150592960aa2159bdf3bff0e0ec');
-INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc2e98eb84313d5ce465be60f1c5985172a8ce7ee861e8a8c8872c5eec784380');
-INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"236d34af3aa5893e9aecc8fb65c1efedc4f4e38874a2b20b933c973da4b4691e","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'832ae2feafbacfe2086a03ea78d7f019f28adc7f684d40283197d4c1b8dacb99');
-INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ce68b66a1c947d95cd31605ef1331ac27dacd3bfb3844afb5f9a35083071816');
-INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"a70fb335be86478d6730dbcbcc8d738e5e3f55608f445b5a033f9f5800951167","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'c4ab676b14505d11f21f05ac661e952588766f3ccfadf4b169c781e7ee27606b');
-INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6486590283584370a433320b46148680eb7bc61685b3b8c7c0e7ac16bc7f6dd6');
-INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"7244980c44845ce8bd26268b39a1204f014f6c18f968f57dd2e765193b71dcb2","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'fc048aa91fef9cc58817a1bc83fad9b0f906e38cd957cb030a85901ad5b54e3f');
-INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84dd549642023c2b654131fee5613ad2e97c857e32840897c4b8cc981a0eeb01');
-INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"0b2884e47006914acf505e50ea5272ffeef43e2a646cf0b1c57afc47bf943c5d","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'c3f2afd1371647737db8401949f81894f3200169d26425551e3ab488c45cae2e');
-INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16e20ae8d506ae4aef0c40de232f4aa3abd0f19969206665543774ca2d1d278b');
-INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"ff50d8f5f8dcce283b687ce2aff46b5b1250eb43a11bb5996164444879dffb31","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'52fbfc186a4863f6daea6f011bf3cb165239ba24fbaad6861433b5815f9b1b2f');
-INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8b3dbeb0745231dd64d0429601658c351e252a4e8056092d51b43f49caa643');
-INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"02e7b49dd579b3355aa9063b38bec6e6e749b3cb5882483d3b15886e176f0610","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'3e6f6557fe4b56aeb5c4f6eea1a5de262bcc57a29e23d5db30c54162a0cadf12');
-INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4898a0caa8214aaa40e630fdaf2759baa50e7b3f9793d4e51aa166aa9b1f9ad6');
-INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"25008bffd8cec7dc2c3ae13ac7c9e868129e3b9203911aa0fa3db14f5fc89a9b","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'147649185e22eb7d1c28a3ab69da3bdf1ca995cb0ee9373190d40e4dac5212de');
-INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9faf5f0284cabc898ea2c55e5ac79c635300f661e53cbafb9774fd012b65f786');
-INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"4bb8f22e461d70d953ff1b9f0ced8b1cb143ab1b8dc38bd3a1fe3fc803ccd40a","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'a1d7761acf6c243177de0d599c608505c5ebee596e47662fb52bc1d11351ce2e');
-INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bed61c0476e008fd79342b4b314d0948d226f957274d5c95746b07968f3820b');
-INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"509ae7a1014f0442bec8eb032d144c64dc8a11e6970d0e32a5ecc4d41fe68760","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'86bbca1d706ca90721df1cff6333531250afa83b6ac2656d92630351818730b6');
-INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cee7a046dcecbfae2a140761dd630066f11e8d85fee3ed7760f9fcc6f5fe13e8');
-INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"a7bcd9f0ef4a4deb4603c21e799e2c9418c9a085af6aee86082d3c79a7b4d880","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'65b7ff2820dc2212d9ee4468d47f424b46d40a056f7b74f2b62ea292d4d23e30');
-INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a052a960325dd842544d4144699cd41de0b5353034a10299de5c507a6cf29229');
-INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"a0940fad3e49fdf8668dcb4c9d773e1a5eca6fd5ef23fcdf4be0ccd1cbbfe405","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'8ed876e8c98d752c330062851275a27dd892749cdeead4f29d396d4bea398015');
-INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'044b9d6a1da56bd6289c4072d25951d46e1995b2a50db8a6ccd23bde83964bdc');
-INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"4dd23e9dbda9e5647e194648a2be3ef8597c5f9c4c0e5c58448d4195599de8c8","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'db919f8ff9c06c5bc9c6b30fc71f65e071a19521fbd923432f2d2e3f732f8fb2');
-INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e33a5d39024f0ca7913463c972e32b89b124c1d5eee9d5da78d77b46c4b8cbc4');
-INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"b406c7ad8001546298d16bfa1f0e77b3396787dc2324be51ce33e9cae0c6fd5a","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'a8b6afbdfaf1eb814775c6df0aee9bc06b5504b92583480ec85d9ca3e5b12d19');
-INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'956081709c83ca009034000bccfacd7767621f393840f44f26c0aa955fa2fd74');
-INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"dcb7aa5f99cbb70b4d70bf3a360be2c4a5756261a8792856828a6cc1f282a644","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'113f909b7769bbf2f8c37c65079534501c2ff75433e49c67d65339a5d672e972');
-INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7370ab8abb168abc786831d8b5bf0eea1a53b9a2f27dcee6274b43a0995c95f');
-INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"0b50391ad17533ea1807be4941305ee75a013a8a5330139e36818f60a9f7d8ef","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'d83c46b01f30d5dd5f9d219afb798f74bc03be7ff08dae4abbdea14288c891e9');
-INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3f5020f5a08fd3dfa760d40d1d6d0767e3cd01852e025a93f12812a639e159d');
-INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"24b3947f5fbed58b6a9c47ab51ef2e654114be20f84935eaa908c9544e275514","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'d2009c761d687481595acf1ed08da01be1316dce2d621cf91f080794b260b739');
-INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c2bb49cfdfd9997238a41b41ea7b194f0d7bfba36813b058249d06f040fe39b');
-INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1db78c9abe493106e75d3629d221d046e1d6194e44df8f882be38b521d33ab53","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'1b6f23733fe5a1e8401ba21f42407a878e2862f59f2baab52ffbd911f2681f43');
-INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af01c0ca2b63324b4f91f3ad6ed1d787cbf9c2b35bdd95d793b24cf50128cbc');
-INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"b6d94000a7b7dc674d610bf89faf7c0d43bdc3e8f391f6089ded1557f7f0f286","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'3a94ddc27cb661df190c7527ac5bbd6e257cce085a7db17e8e99222e9dec915c');
-INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1fa8f76791cad2cb8d97036c9771cb41188afbdfce890e511a98f636b699a7c');
-INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"cc57c30a8b34a715c886a444cedd81ccf2c8be145642f2df64d376d0acf1e1f3","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'129f8e595a59207966e176c60fedef4219163ad5a8dc7c602c1a2c98ac070662');
-INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed524d1fe8e6a8753f49bba5b89d0d1f64d5b79a4b235ddd82e63818d849ef33');
-INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"b77e2a71e0857e990c1cfbb021c0a04fb17b64ec9ba48c60d49e3dd8ecc6b0ac","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'470094f29e2425ad882597ac02b83f4c3e97f8cedda55c56c0579fdaa4da37f3');
-INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecdc9786125cf4fd9f6cb615c2f53c898f3895c002401796e8ce30dd80694740');
-INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"edcb77f23eb738d688c1ea5732a945d76279766c4a1ee1effd190bf3f726c05b","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'6179d0fa06c3ec4c0430fde704c1d5e87853775f49a5244e3a42fc3840785e7e');
-INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c4e2c309e63dc58110ada76dcc91a75f63b2f35cd0d73e34992c2b5a89ed83f');
-INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"5dc738e17243a84b37564b261267924bce9c6cce7595c74d8808f0cf03432a89","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'84855b112acfadd4e1adb85bec3c0892675f603867764561e5448265506ab323');
-INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28071441e14fd21e0c2648b3c42baa896cca7fe6c1862c844e9bb655fa58ff8d');
-INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"f3c6ab9d0253858a08da5dfe893c8266a32c796eb2e4a6c4f64ebd4263f9250d","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'d70d7e449975611955a8cbabed0aa3e087eb0e440277deaab2c92754b9d30829');
-INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952a1b806d4dbb70487c81c43bbf8a468521287c30e772745cd4b39cf7553937');
-INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"40541eb5a9dfd5c5a299a13aac804fb1b87e790891c55b66e9b36b1838dc8dfd","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'cb1827a16748dd163a3d19da98e88092d59b747698ea490bba8020347cfc997a');
-INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc1e8add1ce90514e58c8924a9b0db2bbf3e1996a32c20b0b63e537713cb28b2');
-INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"7273cf6a0294acc31eea0e0a9af603500f59a9f115b3c5acd5cca992f185f061","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'1a6a59d1c8ba903c637ca09503555c0cec76c6aa55ee1834ff215c870272ccab');
-INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26bda8bdfedd56727627c6b1f56453450c965dadf660efa648a90ed9e556eea9');
-INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"b26574ea33e8a4ca0bd958b82248a9fc9fdfe403aa717a9e0ef31474bcc32e58","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'1cf45d22cfb69e8ac6069a8bb2813c8744732006bd9f6dbb2e73f53dfa09b92e');
-INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9d5c304b42171e9ffe253f8fa147c4f1d36aadf65a2fc2395c68cb309d4ffb0');
-INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"8076e1b2af994482a8868a28ad8b5d41a5fbe2ccb349d65404e7c0dc59c6dd2e","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'1885e90973511208f4a1ed806ac34919965454c1d774c4e4decd5b91152239d3');
-INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'805863fc1974b7abd038080d32d6f18c5d7db718d30d7ed30f3c88612cf86eb8');
-INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"3862df7b71134b605229146563a78a5ca695a37c4d6da4b65d21876129c80f1b","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'2b63f35e771903f42453e618c18175d0fbe152fe134374f342ddda1320087bc9');
-INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d8baeaff01e8ea04eff7aca37b0c993b01f020725a840198d4d2203b824187b');
-INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"3b6505bd17f14fef0f06cf95c6bd3d3d759479674824f738b1c7fecc151b9b44","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'1cd16323d7804c82c87348309121a96a43ac276dcb166bfffb9bd762dfadfd1c');
-INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa292c3a60f644d160bda876222e3c47caae0b16ed08f3b7c71e3d9c7e47112f');
-INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"c052edd088e829c9ac4ae5ca349da7067bfd5dcb8dfec11c4ec1a635d3c8c9e0","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'c22aaa3b1d6f115f609d425f7d590577d0395d5853b15f5b623c756cee574919');
-INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3dc914bd4ec7a7ddd272b6a94aa1cdd84a54031a5b04a107ffa743804571d6b');
-INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"3bd3565fc83516439eab9db5ac6d85d8763d16c16bff122cc6e70b5c48246030","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'60d6178063f4632511595a98a9d31362cf64099d23acc534d6747e29032ac37f');
-INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66067ab5b53982b729427f21a3d54213f0db8265c9c5ee4a425ba72fe4ff9f80');
-INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"4b488ffd95c4d443b431c66d9d4442621cfcb3831e920f8f1d291501e2d3eba9","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'f3a1bf86d21a4b8800c139ff5a90ba282960ff9d204bad1f427c61b71417e47b');
-INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74689edeb1b1f0c30dc64411ea70defd384ef031fd5ed7e57fc874a95524c897');
-INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"5b336477cd043069fc94aaa9efeec573f8ea2f1915382602469f2ab6bed6d717","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'059aec2386690ffbfccb31121ae385112e32113b6819a546c56080df6b7ee2fe');
-INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1724d287b1a6a7548060f25e863ef22310475569cc73f3f5b8be6c8492cb6ac1');
-INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"d4b6b0de6209af38f0a99ee7cc1e629039233cba66bbd546aa874c9b5ec949fd","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'4755672fa48733826b36ba5403e5aa76562d09c8b49b335b18ff3339333cf8b8');
-INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1782c6c7e4e779e4120f633d2b6577409f9e7ba3e811b0ddaa6543329f44138');
-INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"9f34557e605c362c267d01a10c0e1230b96311675cf37ac22fefef3e348f90e6","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'d1178ec356ea0f8273d3c4874e29b91865fc7c10668c493fc7b84e57fe35795a');
-INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0376f314f81299d0e129a46af14c8a6bf2faf64a19771f11f83b10f6fb83ab29');
-INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"06ab0afed2be45271b993ebf500b3fca4df8e920441577bcb1842206129b58f2","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'976b8750f2e23cd550d92545c25e0e518c3de5482d09f042e321e0a86e909cd7');
-INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38a31563e816a6ff1c665c98818b1c18863cd691abafee6457db8473582bed02');
-INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"471dc3888257e83dc49fb7acb75a3d327ccfc572fa4c2a597f68e97ced7b706c","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'c477e5818999b464d603db7cd6f6d533c5974484d60ecf8f4e85808a5c16e59b');
-INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c651fa84db988775e50b96c1e1a8eaa4fe6e445be7df78b1f66d01e56c97ed12');
-INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"d0edc182ab52e7db475d67edfa4b8d9b4d4bfaa79351ab7c7d0a93cc1e63e465","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'b3cab3f27ad1cb4e459d5a678d609a920e2ff045aaeb54b24a308d35346efafa');
-INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3424406e6e7a3488e5b6cf332299b875fcb3f67658e82cce1a2ffca758d253af');
-INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"f96452fa9d526175036d137afc49a849f0839c4338d29815ee3eac02e3df6f91","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'e06c59b644b6f7d0e076c9d56760c3912a1cbe747c52f20d46e4aa7f3f42487e');
-INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85941b9973080b70bbfb3bd84cf0526f2fd623e07eed264ee34373160882b7db');
-INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"cf505f0c309fbaecae7d9e525557f8d1501a3a08d66bb8a7abc8d2a8db721add","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'09c51419799faac96bb0b74e78bc988afb6f2677e4a6c3048d450c8f00349e71');
-INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de9cb3854db056f8d79c61635e16e635e7fecc38cfca3f93cfba3af9caf72fd8');
-INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"af696ec589d2b95f36e16039d388a57c38eafee5f3de5596a97f3c823c77f892","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'ead46ba2bc4bcaa30bd0d83e0c3f178d7ed59b40c95206e9b067aa7eb89d8be1');
-INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4cb36933bf1336747a87535e8fb492863efee4bea6256032817d8b1f007a3e9');
-INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"ff573059e90f4aade75d1f2d950dcf046ef2c1217b589d0bf2fc9c38c6c42012","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'c052ffbc9dcea1b669da1f9c24ce2fe23dcbbe989a10666eb99d34e4d018a494');
-INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6ee8e5a8544d7142bdc010a437ac0fd8b9d0b405ab46e2f012a41739aaa91fe');
-INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"73a44e99dcb39be095771e34c74ee4b6a7a0819207807821d621545ca4b6a91f","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'98e4db07cc27002685aed4f2e3f44b5be513616338c65cb41987b3897d9c10aa');
-INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10f9603f860823fe7c0041b7b32ba493f4c512bec7f9897e2330425f65ac0037');
-INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"3abdeb2a4902cacc07440c8f176576963d48190c3e66bce2ccd97cc15d79f752","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'9601ef4e1f7a97c38cdb3fb12118708212658e8503314a6b2d709059caca0865');
-INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19595e1ce63799e1cf17ff42e3c9184952cb7e881084aab50b30ff0302cd37f3');
-INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"0d0c1c139a2f9304f5111dab26862dd88c97f061ee9ec716cfdfa8f101cf9f2a","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'d6a8b4f2f588b157b6add892ef8698cdb07525e0e329f23ddfc39d473217f839');
-INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2314ad34cbd1df79347c895a6458f310419cd578c9d9a0443bc9531f4da0408b');
-INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"a803ff9c9a83a885463f0f41b774b09c5dad9ef8827579499cd94cc6ff218858","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'88f1941ba21db63ae1f84c806574d660f553d65c1fd771ed235dafc2c8a57ef8');
-INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cdc313f543be54b6b769ddf6c7ad02397acc8c4bc0f8a23650578f654b9610c');
-INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"fe10c5d1f27a192d9c72377818077b94ff7fee46c54b8bc52cbbca50743ccb56","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'73b4137e48f35bbe4c0d2c00a3888ab72f692f0c3c2e1cb0d6bdbe40aafba60d');
-INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e5a83a3709d68030e76a7badcda8b4ad6e4bd8983349374b59e7b4decc36593');
-INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"c654695d92ff853e15ec8399c1e5fd6b552b8a2e4da3167f792e2325b21fefa0","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'03f85888653e99b5a9dc2aacdd84836d2045b9de61dda1a8bb487b61cfa423ed');
-INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f59c785e52643a9495592d7e37230f5fe4fe798318bc43ff09fa97efb958f17');
-INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"0d9072553790491007aa13b4d406831506f7f770f8ac7fea5ad42db6b6cd2b68","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'b24a614acf334e08f3a782cd59720fcf8655ded14a62bea864371eebd026fa72');
-INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a253f70e61b7c772edd20fbe80c999a4b8bb2b5f46f273f2140d0bb20db8ec29');
-INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"e0a3b19fce605701f1ce2ed25cde785ddef37c8ae11a1af97f32f89a9faef45b","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'b0330d8ba67c5625acc70e1ed9032a98ca97ac8215dfcb98e4541ec10cf082f2');
-INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00285f7147b1685bf056dce48382d3229584aa8ba3f3e84e6292af9b0909346e');
-INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"f2ce43aa9e6374f95a9c5d5b55de0396da45be6575dc5223742c2d70369bd00e","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'9e6bbd94216fe3dad3023d1df951cc76d47bd6410e7ce0a9010c8a5a289fc2de');
-INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c71cdd430d52495720f1c369c6a336122405f4ae41c7112e13215da86f29abf0');
-INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"cb79907543638b77555fac7568f2f744f22ce989dc0e7654fd49e132eb7666c8","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'c4e20a73f84e81717e410e545d0c62193973ec4d1689172c8e7054e00acc4fd5');
-INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'813fd24841da041865bd7958ee50bd8885e32595ae8714e8bd085907df87e1de');
-INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"02047850f93eb91d0d83851054da00ed66f6f6c0fea04d627866f6355be4273c","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'4a2b5a155e5ea16d4f79c4a78d0e4aacff94e2b739cc37b303e98d4222571624');
-INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9077a26a353bce1c4ded68e69ef8dbe68a119a70d513e545623c169d9b797417');
-INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"3d6595616fc996c9fd880bc5b227a7e2d436bf27f6f06ab15cd456c4322fffb6","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'465de55cfdf746cfed472139dbe66784e3f903171d58dbd6730a84a26692079b');
-INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06c305fc5488700139692da3a31a63f2888a63a66c5ed351ce8c0121c650217f');
-INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"ba499b294c5cb3d50626ad04df807602e4f3fa955ca6b35795202f437182fd6b","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'471449da582614e6e811bd8bb19d0df17552ac412dc4f468f70041cc207ed748');
-INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c69af71feaf63912ba5f8c7adb62c082aac76b7758e4ad81ebf5ce92980eb514');
-INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"a57bfcc468c3f5d57b1b178ea7cc8c1af55f42867d0ba5d88d4e55b2bc79fe02","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'437579be64c3cbd8fc0e1f5be300c388f731814b7db704fa06fe44653feb73dc');
-INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38bfd097cedf658884d33dd3785ccb37ac75ea4b649baf158364d8807650ce28');
-INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"7694e14e12a15ab6aa8143f1e9fcaae46b1746f51398d79a4f6be6c3137d6c89","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'cde94367a5f6c294f93a31ba919980d517ea236fb5dabb49eddf8086c8357e35');
-INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'108900642fd9519e02499eb0acf7c8b988a03356304d1085236c0ed593152cc8');
-INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"226e74766ac5ef3a15e7d38c05990871f92ef80cddf954d17759d2ad2ea59d02","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'528f264197daf1ac29cf54ee9731dfb2215430732af3a28e01220e5308ba6b58');
-INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c9753c74bbd96effe17dfb6631115ef366b62fe111da6f94db29c1be1963e68');
-INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"fe3fa4d5ea7f9f18f6564a1857c7ce23e418e46aa5b63b3365d6cf73ab930e07","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'696ea398b589cf3fa07522cb53f80ab981b7bfa637fdd2164e3b01a49270335c');
-INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ad771fa9eb19713c4bc17c1e60e25edb8192ecaec7a3d6b72d5f67cdfa98ba1');
-INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"1eff4c9279cff57e13e005fad48c92f7f5bd928e4b5a3d7eb102bfd0bccf353a","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'d1f211f122fe9360d5c0b3a0e06775be7a701d21278cb41eeafbe64502e46bcb');
-INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4ac045051c91e59c7c2ac0e01d456fb1a7f20e4c84376a4ba3f69873db802db');
-INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"61eeadd7e8f4c94b41e9f3c67bad3ff29cc1d19f580114b3ca3c2a929596c036","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'65d7a38b18e3613675fe753e20445584d74280dfecf60d17628fff0f2d7924a0');
-INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5df5537c5359d58298ee853855dd8b6160f7c9c78353355f944084ac43946281');
-INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"0b46e8c3b291dbc65e5a2ba99739bea530eeed734b7cbd0248c3b0ab06e3d817","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'efe69c4fef56b9ec2bc496bf9e2be018e1e8dadf0395837ced13b3de98e9a194');
-INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f69b3474ff3e9034c270c54dbaa1db45f088e747a2e1c5aa33c685634195c59');
-INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5771cf30f52a621216658854604973564d9a3a5b659986d3f5ab042a8a4a2674","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'1b5c949c59de9420fba4554271b75fc969892d6f7863efe16aa6370f1156e037');
-INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b889bb3c64a39daf4340032b9236c4e37b50b4dddb879a005b2e9496eb269ea');
-INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"9b0c7bd03815d2708a3d6038b3783da0dd241e75b6de17402e89a05ec76e5222","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'e2e3e267a53dff7a250227c544014df8d9eab3a1a2896055b66e5cc1cc159f09');
-INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d72e0d4347b8ccaed36952eb52bc062e62f2df7472d086fc3b98e6e19a0e4778');
-INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"d0116b9fb089a2865d1425244075ef65425ce9e5f0f1b70fe7cf97e5ce6b8f47","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e9aa72171fb87b6205c63540ba8c151486d9e75538ec24f73d17e60fabe3e452');
-INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c3bf24484d0a9b997c09e77108bf76d427966c8d3d0cd21eb06c4cfc28ecdc2');
-INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"2a6b0c1cd6ba6cb2fc95fa6fb0ce6369b7959d73680cfa1a09697626bb48f4bb","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'85e15d192679a3a848b3a43064314adc26b218a6eadef495171e1c76e052ecc2');
-INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75546374a5159dbfe12909fdbab31f235b5614acf6e67b896bca68e277b99693');
-INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"af3dd05b7f7751705f9bc0aaf099568289d0cc8a62b80cb8cf957b67ae9ccdc0","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'f100902b33d1b7d7393d1bd89a8707304c3ee6e1ad76b4b9276b7cd99ee39110');
-INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fad57c9c9c176559896028262ec33cabfecc91a62132917ca30be13866fb8c6c');
-INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"071a2af66f03d51498ea342dce8d818d4b2df9e2e5fb7ca9344988ae7676b0e7","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'dcf62ad207f7ee34b9fefc9c1765a20d3157c0a7899ee3a5def4734eb93e6fe1');
-INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0494f0c85bd7849ce2807494697ea7c9add64ea254866840b39a1a0c7b67c277');
-INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"54a59c638ed8ad1a8b9d72d0f9afef9616f7ee9c77b1cce9793ec14119c819dc","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'27c0bb29dc5507b17ec060ea9d70291a0db3094f2b432f040fac0ab24b88debb');
-INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b230a720adf50bfd60022889f72b636d6feb5f0088336cb0686b549746273bbd');
-INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"ed53197fade3b880a6bcd70a41112b83879f5a1b2733dcd044a152f6e06966a1","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'d12e3e06d0f7e42c9c2ea9fe0036eb1868ff4596ad9aeb9178967f602c730324');
-INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6041d4b34821c63d5aa30c4d94cf60f84bef8387fa873734714330f0dc227da4');
-INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"f9b1e1152ba3fd730692c61dc7b897b74290425148717cb0c7d26ddb2b066764","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'fe0e61cabbb381fb87d33340f98d63908bf80f90c0382a7945c5f359c1e50778');
-INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35f7d35198d95ea6fbcebae7f7e3a14041e9fa5334f7a5fe0a52e0f158d6c81e');
-INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"95410fcf3fc291907a1969f9cdc8646a55fd0979f748332a10a298ed1914b4c7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'45cfa48293a3e407b54e8a74e6cbd177738ed0bbc411a689efc2f4209f3bc78a');
-INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c2629c411a28ead76a0ee6a2abcd57603058e2a904a2a38b273dae0b3be17be');
-INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"650e904e246fbaccd362968543bd414fe4e03941d96f0a8c1c7d509fc260b738","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'3e048cbce25e568f57486bdf53a84f540452a89aa89fe67576eca24b2eb2118b');
-INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'867328c646cfef1e32f0fca4df9d3fb4ef61511b7cb40b57808d4284e385cbfd');
-INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"33bc524f9a329407e3509a4623d89f6d2c3e00616c4314b86bab1d1b802a4a6c","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'ad6fb148953100261a6e59742a063df47dae7af64819bf500fc1951987b6632d');
-INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c710a592ac76451354daded1749e04da469d3aef5348ca06d55c53716423210c');
-INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"dbbc0a977c9bf6385e4652c94f97702965df6eae2863730b9930e7aafd8d6c84","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'84e8b0bee4457215c6b65226095263a7a58b7f80a15f2b22d1961d45c9243866');
-INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb984decc48afded3dfb2c185c88fc451f656054ed31eef55b61475827c2019');
-INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"b2a4a9c315f66980a2a3525b322adf6ff4a47e60649559bd2e7dffb68b58c29a","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'ebde57adda129b6d5d8d0d0a240a6ffced9dd3f801b37a5ef4a7a29dcd09fde5');
-INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d539e6acd05e626b922941e5e4a7821fca47b828cec6bc62a29b6c9ab4df868');
-INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"a73650310ecd6b53b89787e20449de8e844aa747b6211dcc0b33aa389b3a5d72","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'75c4c7fe59aedbc14189c0436a02c374d365e135508bf5a70bd3f41d9913c424');
-INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9eb6c719743efbc15ba5d869ffcb0652ac19c8cb5c57090e1a75a912c3a5bfa0');
-INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"b31bc14fc3a9af3b1b3977100c36b1465781bdbe9390ff267afdc51d57caae39","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'19c5e2afb72f492746fd0010162739d81c7e045ac8257f77265ef6b631fcfca9');
-INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea97327b55924f2a87c8a40f5afc8a940910588e15da3b344cf9a65161adbc62');
-INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"f1f4e9f44d7cec303a3ff0e9014c66741e8463d2e1e2644edff38a7a06ae19d3","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'545868f480a7f7b143023d4b05a269ac47a21b3367df75e4cffcaeaca92333f9');
-INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'816ca26dd2157cd6ae0175ca7325f952999a696cb38a3947317ba7d3c9add95f');
-INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"cc0cc378fba640609764042b3a71687c5ea7085f9fd3528fc22cb4a0f33c535a","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'c2fc4e16ef740787d3b2067feec437ab5a1efd394d44a6b21af3d84a28373f9a');
-INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e1aaff3a997c49f62ad62d606657b36111ecb5a88d0559113008ef81993bced');
-INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"1a17b268e299c081550e6b708d3a67c8e9e5da464a248c07bd7ff2d37521aaf6","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'fca812a74b22a329dbb1d1bf541b5e2694898770d3cc1c722c3774b69e7cbe40');
-INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4b732b1fde2e9af1f3e74c1264dcc390d552f0142489ee6db5e2d747ada8e34');
-INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"8994641c9faf9510eb6dc0cafb53c9ddd941fb6c7f628361bc30a57b70d1c635","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'b97a7c7ca4c2629b23f43d76ff57c022793cbafa704518373b58d54bbffd6fa8');
-INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'849d9a8e8d36986f9a423fc26ca60e03f7dc9150b995d165ca9b4f935d406a38');
-INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"f65b2c8ae6adc575a288d4f042f90176bd007350206178e62c024584d6ed287c","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'51b1651337fcaeaac2a159284bea2739e8c096f86fe63fbb990ec668d3d6007e');
-INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1db2d8c92b8bb12a5b339a74222c16d7d10f2345091c9ac46a4227092fd4472');
-INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0f246fe11fc2b9fc1d2b8f7517473f6a7eb91915d765779783e7898a8bd3d5bc","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'ce1c2eea7845468babb5023917c234333bbbb70b30c6bc7a79d65cb424264e49');
-INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'658111887d2d58b83265e810781ea306d883b01ea16633382f86df7ff5960cd7');
-INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"6fac343e1053a7a48346243c906493f98c138355761619bdc0677a0b3d7c697d","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'9b13c7254ada6938dd9641a2d79dd1166f0990b7e19152b6cbecec54fb5874e6');
-INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96b0534936d3946dd261b370ce7d75e869be0b954d3d5d01186824db4665599a');
-INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"7208036024f6c4e6557619b9625abd7275a52a91f6bf0d62fbd20736138665f4","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'be5bbadf241a951c795d86a1358aee9107e081bf3a9fc6e5559d7822bf4d0998');
-INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'088dfd9a5f09a48154ee406b9b69ef2fa7d880fee8a30d502ffbbbdc59c33131');
-INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"f2e9a33842fc7f9a1482b1c985a2a6058b8b56535c2a508fcd3e3dba930e46be","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'2c3302270dfdb20a4f21e9e2c7c640d3985f36867d42a0a07194b9fc9d20d435');
-INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7398ba1c70ffcbbe30c3160df3a8a9d5eb7be97d0e659e86a9cbfd312811ac3');
-INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"6de02c61011ad812328b595e95dfd62a2a21ed94bcf59d87fc87c758a9ccd48e","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'0802f10c74be8a93fe880c75ab4fe651b117b99f1a85c23cb73fb37064c0ffbc');
-INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e0464dd087e19bd96567890af7db362e9ce34a70293e47cada45576223f22c');
-INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"800333a93bd7fa0dda3e2ba69ae3e54849f6eada89153cb172fd950470da26cf","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'d8c2be819aaf7ec730281be6ac73e8b66887a9c25048860de083fd66666126e3');
-INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1de37ede9ea9c1d500ae58ba414230f24dc7da456017fc1be21946312b8af733');
-INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b33be7191d7e1afb1140f19fd44bb07daf83897c2fa1af45fc75c15bc85307a0","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'fcdc2bbf1841e5bcf01bfe0ec35c5dcaa77fd8b57045864bf0bd7c327bbbeb8f');
-INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'095da6c2c34e1eb93a092ebd6591c89a2703a4e96132ffeb280b4019688f8bc7');
-INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"78fd0206e26ec2c77965dec55fa417738c919261b8a436e69574a786d313dc65","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'c0f7c94751e1261c1856368e53e778a2724c37fc9b84ef6f113f2bfd6dd92067');
-INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d039a636e64bb554fe16aa7b229c5be6e53254cacca17dbcd5af5f6b1b9b4c65');
-INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"a75962c77a91893bfe4fce4d8e9b6e6f85d863b7f2b30060f7eb61b913c8f988","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'0ae1af9be2944e42fd01075e11cb96bfba7a3cdf09e5a0f33e8237d1932a7d78');
-INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f615c1234ccf178b321e726a1b9499280b4f6f7989372029ebb9474c20ab99ce');
-INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"9f6da7f4b88f3abd9705318ff6a1d23ee9bcfb11c16f6de7a1dfc5c160c8f5bc","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'8767834157d1b81d3dcb34bbf4b0d9c1b69100c12742ce203682a453540716b2');
-INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdccd7effa8f3d868c3aa19a6a1cf1a197ea2fca227d75832e0239bf0261f57a');
-INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"7e1fc55016a8c1f7d8aeb507891febc3d2ff083d15a8386cb151eeed36126902","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'0fc9cec84e455ff4158f65340a27a941cf882a244d6832b7130c00063938e031');
-INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4741661fd18ba804a46b66a8206e2e4d69d255c249a2126677d0d5d983192158');
-INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"0c1a84220c5740d841e1019b76849a49f2760d82afac404c46ac333840724478","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'fefcfa2b10719819b1787bd1c240e5ef0091a7984b905f1ba90255126d0de1fb');
-INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1a4b80e92fa6a61460ad971578d5142991dc59b124e111abf5271b04d715148');
-INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"c4f885c7acac670739975c95af4f377eecfb635a112cc87b6881d6972cf46374","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'0fb97117605179ca9551d76bad76c845ace309512f347ad177ebcaf9d235d15b');
-INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce82f8f1f629a06490818a43e22fc77c77bc6a14dbb971c021f4dbf8c3225cce');
-INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"95024e723544b65f52242f2c4ec5e71264a1aceb8e4a02136a0772be1c7d60fe","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'e8441d84271bb08db667d506458213615ca6e6e6a27e231ec8dda2ba1fe30449');
-INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'baddfb70026266664d3dbf9f0e86297cdbf91eb45c516684ad765f2a486b5f5c');
-INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"015375f1837c56f1921aed0b6297ce0ed5279663bb9bca13ede1392abbf17d81","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'7e1517affc502f1a5829bd788ae34617acf307202a5a4d745001bf91f875f17e');
-INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f4390b17b3f51c2e0ccd028b06888cacaa190747dc6ad0ce2224073049f1db7');
-INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"9f74f2c9fc67e4d2364b85c8d975f11c53dd96dbb33512d3718fa815b5fa070a","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'a86fe9f97e8a4072a400d479216b3ec8df1d70be1afde17dff5d4626ec856249');
-INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aaf3df9f8c11158b4a84e764e8879dcb233c64cb8fd68fad2b5b6c78a5623b4');
-INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"53b6ffb8648293f11adb26d10dce89a55dc0b6645c74bac3b8841421a2715476","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'c085cb1e893d8c3975c5b3d3eb41db247166c02c43ef7150426ec88542ff4b32');
-INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5ffd248d468b9d7c6e3ec5b0b4f8195dca415bbde6b6ba3c9201c65da423337');
-INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"318599633adc13ffcdc8228c39103c9f25eff9a3b1d1b1fc308d10bb41d7f9f0","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'e1bb7ddb805ea8159c27db9cf763ba7b6c0b79488871a4d152334a78611d1c28');
-INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f1c39ed77a48b9fbdc4ff8bbc7d28573c2260d324c05a327c09ee399324db10');
-INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"bc105cb041223f0dd3c20019e8a7a9aeb127d6fddec1560d606cd5b8af23279c","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'7924d5a399a4540c2f4f3116da35b6d45f55431110a5a82696233d9a582b422d');
-INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7f7755ff91f629f7c4db281b525630dac3666d4d6484710a46434ad6771ea60');
-INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"902cbbb20d2a0003f4c579bfbedb04e787a2a5ef5a8c485a269c215c9628db32","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'e28ec28be2abde4207b1a1b485d76247d3c4eff31ebbf37153feb63be71a9390');
-INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48e4a252d12f73e6174b2ecc063744711f3846e363b913240fbd46bb6cc142e2');
-INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"1c8bc40c48e73b0993830fb4073e2f2ae056111b5bd5d22a87831c4b88d32973","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'f6cb15a112de1bc2b40e8e92a15ae5bcaf94dc6c77f3f7c1b909ba954b36de75');
-INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba2f191455a71a48990b4deb6d2e02d68a58eec62d6061dcd1bd827cc829b2f1');
-INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"910afea0bf4129dd27c06428bafaab6c8c8bbf95ec371466640072a26eb129e5","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'a8f6baca44495fa70e114820dcd852c0ab0f1244fa6bd9592b14bc06ecf12d58');
-INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31c96d8ab5239cb1fffc1d5b2d3ad2adccb88b1f3497ac1154cc84b77e1e50ef');
-INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"9cdf0d22a1b690bfb2f542326c53e25e0f1d2b83c434bdc8294ce03959faeba6","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'a8d6ba7902df480b6eb2c9ca744906241f8c4443b48eb2a452e940750a184bee');
-INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e73ac4910264f354d3dc880e6d9bd6f4ee1e525977a8e6adb63b7164acdba43');
-INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"4b565f4fd6c07a96002f87eccb7e693fe8d7cc6d8a81cb85cc6b06fb071069c4","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'b03327abc12459c72b23cfb1f6a85f17bcae8e9327659d920ac78c5346cb542d');
-INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca05aad5114f201c07b19447a2209497dbeb2674fb81c6c487462461cbab5c0');
-INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"8e77a1836fdc196b50c2a525208fb5ff587c38486d1dce443a2fb1a7227119f2","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'fc6cb424c053d94184c96d644aab793c945be406a94663a650a7554923e3bf43');
-INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abc523f28435921dcb8e1ddbfd3290382a60f473a4de6438278390a67632e795');
-INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"7668443002aeaae041ff7859c252f642fd930c4d51a616247a798f47942f97ae","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'d96d246ea8fab86d905db910df5903b95f21f63444a81bdad5aa607824e56011');
-INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6569246c41383967663c6ce160d9353d5784f4102077415e5f0d90880399e3a4');
-INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"1fd22e6bf448e0771f8c7da5c0829614f5f45612bd6592104c369b001fcfd266","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'f0781cb6c09a2f9928d3da3c397f5040887377460824bea18cc22599c2c01345');
-INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e914308ed1b0915a48531ae7a065d42798eb9fbb499d906f17a1c2e7bc6d9114');
-INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"194a4ec47379a92f7ad3ef8b24e797fe33173d2036b687596fa534356c07a672","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'1286b646248e80b118f3f098cac6bc165225064bfecb31363689dee1aecaa330');
-INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed79192a246dfe569de05702616a437fbbb2f53316a81c0d8e093cc17630cbbc');
-INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"5de4d26d0f94ec5c143e465eb509d22bbd2016bf9068ffb5e5c6949384a648e1","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'f66a8dd023b00f22b2373decaa27d61f45dd8060175fbb190230f382c4674f80');
-INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'006d9ffbc894359347318d63e04356d6bab16ce67052cf7f128584ca7841c684');
-INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"232a974e8b60494567216ff9b2b8744fbd48c5328d04a63b29c671a8274df924","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'b2be66737df94b4d7fb4cf2320bfc7c4e5a83898d1b62a619aa4e3a341b17e6b');
-INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18b479f6d41da4206626706c2bd3a28b1fd974ec618845b1865df84dd6516461');
-INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"bf9827228ad31a03a85dacfd3a333afbbfe662611550bd431077abd226c87845","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'e5b3efea23cc9dccf7d03f071b9c2376d657ad90183bd3fc1e9903bb96d9a754');
-INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5124fe74b804d6cc2dd2779d1ee5baff2d73d67af3be2ae7f121f8647dc899d9');
-INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"7eb2b6f227e5550b5d0d75c21818c58263a4e86dd6b160b0b1638dda017d3062","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'fd2ad677bca480a18af5ced47143c05151aeb54f60aa4d76546a006ce8fc0e5a');
-INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3123846718863c10494e8cd9107186dcc6c97a692a744532909eaaff6532c09a');
-INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"3341d9abb5324b460d6a80df5fd0b9c4003b38dffab3a503c27cfd21a3cd60df","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'3aa7fca689f8b8013a527d51d62daa361cfaa519fc8e576b50f86083bf3bfb7e');
-INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37337a4740c58a8bd9c6ec9d56643fafa487544646a3b183e97f62bf4a85821a');
-INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"7e02c72085143c68bf4ec2f0d7f9cc74a5bdd0bbaf28d7c441401a8990e64fc7","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'752c3dc5582136742801efec96047f8e4d9629763cfffa194ea428a4c53fef1b');
-INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0790193ddac7dbafbb73a540e61b69b11873a226484e079183c4bd6994338abd');
-INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"b386b65006170bb4b28bbe1a8235f9fc7104ea3e9e34d51d86eee06326571d99","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'511b8c8347d973d9b8f1d9ee936fe6c72143f5ce4a528ca68dc384a64d47f9a4');
-INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08d121ca65225b4deca35f1ffeea18274f14940efe4a37db847545c62a67b433');
-INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"5f9db4e525ecff94de73118f2cb2ffaf872fe2692c4c35ab221fe89adc13b28d","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'28d75eade23290ec865ff785ca1c63cf2c9243dc95bc4f8d82bf27e90a439a61');
-INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58d9417c92e371278b4c66b7b0e672ee707adfaf0671af3b32163b3a2af36dcc');
-INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"9e0597d4190ec3e829b62fe7ccc8020109369dbf72ab2b14ea115da386330813","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'a3b11851ec5538dacbc1af26720393b516b37718ec3a9a1a9917b4a77535631c');
-INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2416865c62fc3def7d2f2b54ab17c8a5a7074c5087388f7f02e248717f3b35d7');
-INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"b55fadb9aadb55ad049079769711016434ca942454f5bc39d9f6dc4417b24dab","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'72050ffd0a53c9cd0ecbfb700ed3a71857b5f6eea8c515ab2fb0c169a3b41bac');
-INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'303ea8af5847852164cb98cd9665ee54c877274de3f250255066f30b776602b9');
-INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"f56692ed7d8f224a45a3c2563e2441b55626f8845abb6879fd1364cfa442c189","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'8d6ccd03507634fc800d2f5f196e2719d271676e41b3a4a10c450e02e9c17e45');
-INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a76eb7864bb17d3c8a356485f35850c7fd2ede9380ec2591222586eb8c00b47');
-INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"b64321d63d483d9e7c09026e749bf3e9ab67e14d2e6c09363728bfa02c102d09","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'ff509c59c1998b783871d63eb343a37772ef31b0503206a00ed632b63340f8de');
-INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a352d7a028d8c0eaa132b048b8e92c50381ecbc6fc6026e31e49ab0a7673c56f');
-INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"fee9df29e116470c1165c090931eb1bd7e45795f53350fa87da5042ce529edef","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'8788f15ccbb6a1615e7c6331a48693cbd8578f1b3e6356716f64e5353a3d1b3f');
-INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8165ac5fa015181861de009edddd84fe26ae17f94819adfd44c71305d21b35dc');
-INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"05538970685115a9ddaf41d458a3cce59ecf7b9b6a888729efadce1014e7a899","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'fe7faf3eaf3c55e7da5a0cf0fb71dc7087324ed1229136e89661bde080589562');
-INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9692c3a472c5444b1363cfa1bcaf3d8bfc766180a78ccb193345f1ab7515f0d');
-INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"21985f293ab45f0cc41e2760cd3cd2c3e5fe8788ad16c5008b1853869e574790","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'8abab57f6b865f269d498c0716cedf32a639c95f3fc20a9c539b7686c28786ef');
-INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a798d40e364f3e3ed75dd72641abbe03e9eda3a88539a5d2549fee7e7bda6537');
-INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"e0e319bb5d4189cd952e021faaf0146e2872b62dcf137856d61959adf81724a4","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'acc61b348e058d3e43c32c52944e8df0069627a00d20b4fe0c6ad11d79ce1cef');
-INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'072164832a73c759e1d382dc254923009f0e7b3e823c8875cf380b05a7f8ac64');
-INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"64c5499c7eef627a35277d801a7480aeb4a1e845ae368475da0c2edac597968c","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'543c295d80f847548f50891fcc0cbc5082338fa06a2fe52cd44a65df56cd56f4');
-INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c403b21954602c4c957c47502b2e7022aa3716de2d2c36e5ef4c33578c93c85');
-INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"dc4339e5e79750da2e11a43ccf76b285e85e50187e81bf14237084c2a3c414b2","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'80910f75c06ef689502379b3b9e2d47dd8569c23e79cab4c7207fcf43ff4b0eb');
-INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3025535a30f1cdb11dd117ea3d3a88714704b393b9c95adb5c27167d88ad7cc');
-INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"29eac43bd800bb93099e696e1f4cfe1bb7dfbce8316e65459c5e7780d32488c7","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'1f86114edc7d3280892e38cafd026faa62e04e57bfca3b4c3f0c706d2d958e0e');
-INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4247d0d0c381ed2f8496a7ac7283e86746431a92eac0739aaab03d432b833674');
-INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"b570ec3ca500cb58c1388584391c16e4ff5061ac434b7bcfd8185a121f318207","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'9796759d146dda76bec968e339798bb8d7d15dd7d7e3a5deff8f524fc6ab60f0');
-INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afe113bc5017ec093d045ebad3b876c4285d478435cb596bb4a07dea31b684d4');
-INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"91b0efd57597544fe96539dbab912ef18d57dc237a42ee5245dd95c59eafd375","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'12b84b930fade08afd64e3deadd8c1380b02f17b338035bc069658ae55fe0678');
-INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22f4fe1ee528535c8ca9f06de7b19276ca2253cd448905d06bc6bc8b870991f8');
-INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"7b6bfcc602b144da1f9c12773523114a4a54267eca14f4c8f255a9ce8b2e85c4","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'7747e67979b5921345f46cb90b02d008115fef0ed06245d8ece1852664c015ac');
-INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7656a9228fba2a0c50f69b84d4f95efcf484e1e69d796651bb48ef313860528c');
-INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"ca813e8e604e5ac2adf5fa18e2776ddf48ef3b2f34a1471fe71fb80ff73769d1","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'90007b29cc22fe00aa1f1f07d6434b23f89d7d0fcfa004a2b78c1e5071cd742d');
-INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2436515329e54810890c6db79b1159dd199f76a9889e8547d562e5b4ba56b330');
-INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"6be534a6fddd54f6813f4f6247e6c47bb0eddda08e28edbafa132bf8115f390f","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'4bb91cdb138a33ec0aa314809a3594f7993dfd0dc361898f5e1c5cd14d984164');
-INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45ed97a2c348f54c87b0c876bbb8e36418e30638e92c3669fe3cd939b7e16c48');
-INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"a3b69de49ae3569129f96bc994fd0566acfc5cf6ea0c346e7297aea967283636","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'40d72016d453fe0917bc4130f3f9eeca1d6118db4450f19c0851aed64925fdc2');
-INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9cd6d8863b33f686ee62cfff0ede8ff52e4363395e32ffe7d6f4360b76ae54');
-INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"f8ffa3c414d806885764c093a7a8d362aa78d68751e710cfc89e2e318d59817b","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'9ed37eabb93626a455e23dbe867d1a658343e0241b1ef0c96704dc9e9eb360b9');
-INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddf944b8a8f51c7b858258be57d494b23e9560873168aa2e37f1257deeeb0bca');
-INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"94b9e9f9260a35300ea27a15a0a9493350c2a6db704bc0d4ee0e78a5818cebdd","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'d9e49c4f083a3fe05fbd82cf699cf0dea49c1d969fe3c8aded6729d0310ceb68');
-INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a883a6e54ccdf32e1ae615890bc511ce7f3c6f3ca887982f672cfa2729786ce0');
-INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"8146c8dfac8c08e8d1a7fd45ace0cbc146f928616343c082603dea1dbe0375ee","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'a1fb107e120519ae2d58765773261ca6de01871757f18babd1add7b0b8ce3504');
-INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c34754a8eda4721463cb7294c891337d0ea0dea719a6d6dc679fa35f82fef71c');
-INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"dca1d2b95f7f534e3dea2e7a2019838753efb31c5ced981701f50940f3cf0d26","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'1f006446ba7cb88d6da4f688ff40cd74dff30cb9b518eca0e177dbcf162b4898');
-INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c524cbb4f97887e356032025cfc936007ea99e9c02f32d4a19ece948f97427ee');
-INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"827cc7c36c8f51da81c980c10003c324cfab26a15e2e7d5698ae323deff752c6","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'ea181b53ad0b6aeb05d534286a5b4ce579f1996180c84ca048c73d8146ccae78');
-INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8670ce0cd80395968349c10a07ecf2dd3a281126a70cea46e42714e842bf801e');
-INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"85d72f558c2926cf357f739ea311de5aa840cbe82c35beee417a1520860d7a59","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'6c789f4c787bc7d206c9c34b585ba7ec2531c99af509bcdb7880d03e422eca5a');
-INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b32b407c45ae3b511bbf2c1357e6bd877200e0cd9e59fc752920ccac81e251a0');
-INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"77ebc95e7c6af80280c5d7915ec2b599d700151c4160dbc5a8d5b2a109bbe05c","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'680ea83c61f88681befe065a0214615aaa87c08b1f80bfbef86e0091190c454c');
-INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aad4b37318181e9e07df3563638d5cee3b8e844692ca314488f774188da4d18');
-INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"1107a47b26211af98233b1c5293451ae5bb9349c73368b513ecd337ad2a64d3e","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'7ae1c55887e2a06ba56df342b6e44482f074f1269f45e6e09a0f321096535843');
-INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75c8b9135af539c7d0186942244a44d53418c9c645ad524cab2cd161c8c3b09d');
-INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"1a47a0616e0d7d4153e694dc20509140325be90d30203a496bff146da7aadaef","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'ae00c42031a982b4873e6ae0e3b2a9200e8e5ffb823097cf42211f91057eab3c');
-INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11cb7f1b6283c22df45acfc77950a60ab3308029d73975166f62d2f02616115c');
-INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"a6aca492da14b2a2a5911a1eb9fc2b94007ac2618d18c7141e0c917af583b09d","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'b269650a5b6e7cc39b07cab24a1b0a15d4ea0a3439988e1e264486d2c9f48123');
-INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca065dcb8b9a88c7458d9df502691d73aa8df796b91b157fa431bbad558eac37');
-INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"d52d5b979c57d1fc9b43ab2133ffe65f383646105c22be971c618325a4e295a3","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'8031e7cb750b9df5c993656fbc2cc7ceffd6cdf7fc68f86d17c8c5273f681dee');
-INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac56f97447c36ef56ea3266c6f9ee7f61ea25e53a5ee679fa5bd8d70de9cc9ad');
-INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"0ba84d839fea22ea4634d16617df4437859805e6ef3fcecbf9319648152c959d","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'06eb9d3d5973d582d65e27ca9d513d728afc8410d8fd5dcf48efac44fc3b596a');
-INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffdee696c82388692828890d196d797a07b8fe662fe6461a971804d07781a149');
-INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"7f501e4f4dad5fc70bb3c56d1378bf4b292259188c56b5d5e53a3c5206c9700a","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'5305032631837bff041a00d02defcdcd6cc2ffaa61de04ab666c5f10631c387f');
-INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7157818897d244931b5e988177aee3213ba518003e3319ea5a01669f8d13266b');
-INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"25fa3569e346dfc876bba62b9d23783c146a543cbdeec50fc6e18332122fb2b7","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'5b96ee45bb36bda39b728b75fc3388fc023b1d953509151a719681eecb2e9fe2');
-INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f2219c07e6567722b27a3e4acba46ca7ef5e44fff5e5d59cecf91ea8bfc0db2');
-INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"a139b9e0838217dba78ff8d8503ed732bc0a94ca9a5aa75ab8938c99edee297a","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'1c47d3ca71c9b4b53bc6a34dfbf057390e21c42b37cf9ace3f2c763e5a894061');
-INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348c7e5116a06c072258ca63ef762b6815e364d94a51c436c4b39e6187dcc03d');
-INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"3162a5d50ea03633b8b2d947cc3c52a5df9593e245376bf80756f48e7c1fc2d7","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'6880aa7eabd3a07a90122d7e2befafd4d8033e06d2bf43b947720d66875643c8');
-INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d40a1cfa9cb9fc419a4c794cf10145986385a9090b3b8bf8bc52d404043b31ac');
-INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"fcea4b97a5fe73cf70e2d0263371e1e00e099bf1cf6ec7db042b3bea048a265c","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'2fb13c9ccd2b4e8e7176164dab7da5a8591e424004dd70acc55fb0b3ef8a06ce');
-INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'609fa789756861529874992160d291f9ac06045fe7d6efdc5d4c455ce9f6ad3f');
-INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"1b3b759f56da231657bf1c579b3186abe1a28fba2c262a9e872f7ee83aaa4e26","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'22c4e86bdc51721d5a2aa39798a3fe1160c88462aa0584a93419d8999e3d0f59');
-INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'154695937508218d4923c2cfb70f31a3363754ec79a927205e1672c3e940fe22');
-INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"23d2c60e160ae68a16ab609dccdb9b78f1b7d3feeaee2c97c7dedceb13c02eee","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'4b2d7ed19ac71fd7bffd1a0ca2e8aaea254536bad91d7347ed62dfc11754956c');
-INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3168762367cf19da64af47f9a1bb079530cfdf5dba76e3c3cd4c99870acb661a');
-INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"51e2478b9f02aba026af477be07173549dba6acf715620c3080db983d5818ae4","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'82e009bdf089739a08c957dc9b7f3480f77ed7241316a9260e78fa4893c754ea');
-INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8fb0b34b2d9c8329c91816dd5ab6b3e2a422af06a690c66e72e7bb282e3fa14');
-INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"9d406a162538d5a0b083ddf1edbc2af4da4772e3dfafeb471757019b03f07860","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'e96dd31f7b61ed62944d885bb7c0e8765e3a105193c2ecf9dbab8616d837d314');
-INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40840ee92578116cb46a9d320bfd786e8d849382bdb3a20091778f66fda8caad');
-INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"216849b38a9a9bf850733296d6a14b539b2c2261354e26019a723dd7403ad006","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'93ea38d98576d3b413ad3d3dc01150a0b0f975f14fb002fd2a300279fbef62d1');
-INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa663be034daad94420251720adbc83390569c72b9d666e0af9ffa0cd7ffa63a');
-INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"c974a643a40e5993fd5ecf85e7a627f6ed4c7d32da8d2bb27528e99f226d5efa","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'79cd8f598700585a9db6c245cfbbfc3936dfc4e311e74b942b94335b4cc0ac7d');
-INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e03bca690f86262b5e1798954960513061d9abc44e48bc1497b61e4867a4b7a5');
-INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"6c8edec3773ad66f3ef89d20d5190b2c19318ef48bf3752e7f482a7671b006c3","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'b51946b2dc8b0e632cc4507f9dfacd009f50c40f0ef00725a21be6f134f4052b');
-INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee841ebec84d52bab39a83ee77e675c2af011ae9160151e852b3f4a3da323f4');
-INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"64193ef0680fb09096cf55f02405bf8e2a133b12bd8e1453330143d72700f164","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'309046349953638835366c616fb9519c7807ec393daa1d1f1b016b11e37ec21a');
-INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'283f43a2ebf1c77311e26d3087ccbca917fbc09a1a31237e1b6703259137d82c');
-INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"65151ecc33ae384e013535fc1f6cda04494809cdedb5a2cdb891f0f38035bd3f","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'3fd67efc6dc4dbcbd8dbce151dc184130885146b640b070e564b01dd94a0286f');
-INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42b0e931336b3a9e4978783458b3fadb3cef3e93d2142fa0de9f08686246b438');
-INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"01d3ab7b218d6bfef3c5b6b6db851297e951cebfdf60b8d4835a44a665e163ca","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'4a58233b8a45d8bcb90243c57f232f2e0f8b25df73b57a9428cdee49c07393e1');
-INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bd2dffb34bb05bafb4644bf6e73acb8593d94bd287b34da48c04db7788d9071');
-INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"d8b0a242ba1e6003bbdaf0bf2369b95d39c736ab52e66be2a9113941655e698a","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'b4a57989c5b5f73eaa38409c9b6a536a610fa45d0271e95f7a4e9204b00a76b8');
-INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cac64b14b9ad1200d2550137097af7b3dca68f47022d9568a2e87b55fecc64d2');
-INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"18ff66422cca18b8b49392bae2d93ece152f47035c44ef71dda8cbd5a2cd7f96","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'7dd1f0627c173eb8470f0c20cb2772446f1a2556940ef02855c32bf726ee3d52');
-INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cac1a0344bccb4c9fde6baef165f6064d9c31df567dd81b655cff108d90c897');
-INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"d7bba011aeaf59c39a79cc90a4d40f11c86d3a44c12b722cdab3f2d32b96b430","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'23fdc6f80a5418af7c93bb4d99067c9d594a148c8de0c2fe1ced9b8cbddc1468');
-INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5fa9622365fca1d80fe1774751403b7f0916d41d06e2cf84f3e840bba69d30ea');
-INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"fc88f701c65c71e2d90d31fbdc10378ea284a88543543af540b49d970da6e1b3","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'0da432e8ce35277b43d2203913fae52ea809fb1857671dd25301aa0b5f8e6d2d');
-INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa01b327c5ab1faa2c277e2cd98f1ef3e90d234c2ce40c9bf343d589e9e7cae7');
-INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"0e2148899b497e6e1edd0f0401e2b364cd863d67a16b2d2ba01575249fa44e61","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'243365a3fea954a43f3ef3684a1b41443924a12aeb90009c806085451c1d032c');
-INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'518ae498546c5f85634565a22e6d7e5aad302ff8c7e5a3c57b5292faf01bf6c7');
-INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"a4956f7cb1d7911fe8b00ccee3a92b01db13f0bd2b28ebc66db307c0307c8632","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'b6f52d0058bef79d9e379c0b823571808aa9c67674a0737a02595101b01c2170');
-INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c495c0178b0949f9cbde08a6fe52adc84d31749794b5b8a069ea6fb6cae46ff');
-INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"cb0858f2c2d1df41d5fce1f8f312d4f31646e876d82754898046d94166f86988","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'97f4112465777a6f518457e8bb85df8719d97b78887e40cab0e47e8b5220ff79');
-INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22e75c14e3526f538dd3cebd1fd765d03a579fee1d7b9489c5271375e952250a');
-INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"8e43ba092a6ba21408ff40f8248c07d7eb27a7deac290ea2d4161bf16d1e21c4","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'771ea7a3f33c176c89953fd645c5fee60bc332f710b5814fc545d3110002e808');
-INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f025b38e1f5b9a35f307e5ff1cae4928067ab5774bafc70c9b74df32a1ce372');
-INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"0423502422f1719bb57b16c22d7155922a4e57dd46c10c67443ce901fabace72","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'aff07ccc15dc23549d5d7236d91f3995d8b881b8da7100bb551f4f8cba985463');
-INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'186e3e5e3d52e2a61846bd311eebe63ff02c0f8d022164f55babdf1662a89290');
-INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"f4202e68bbe225aaf543a2595773a928240b7033f7f920803d1a2281c5e927d8","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'f3697874255c471b0d56ad6db01b1462f65c43da638e07bc701578e270658416');
-INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36b60aea8c286f2eb84987e0fc4dbb39938d5dcfbc028d140dfcb6c718524c80');
-INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"fd5af776d6a38d7d8789a15aa9d76e6d304a94a4d5ffdd2943345da446b6ea80","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'34a7a0662b79710d8eb013521aa1090dade7f845cf71faec682f26d6de38d078');
-INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37a084ab913ea2ecb876a5545da3a5852088aa19d824c5a0254e3380c8bb0440');
-INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"7d18be6c377428f660ba384eec7a473fa7e44627922722cd5b3721c81452432d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'5be437f7c8e45ea22baddcc2ae2e25038cb58e4fd5327668cbb7cf3026b07e84');
-INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43d35ae40327182fade05159acdce597ee8ee28d194404ae195b2b8c096e5271');
-INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"c5922e3df1d54ca1fceb420ba9ed3538aa432da592b8d11ed98dd577bbfd7973","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'1df99d149bee35c355a0478d87ae17678e9e17f076fbc8c637a85c78d881c8a3');
-INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc9d5326db359acf5e089db9255cb9dc3908111c17c94e950a918f79a6ff168a');
-INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8e306a9c943a812c6f52865d39d2964eb365fae7b17b0329b4c251f8dacaaea1","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'a638b66e3a2435b38b413856adcf09cc7368dbdb465486e1645b1747246c0aa7');
-INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'455a1d8731f23bbfc3cea479c36ed8aaa829960de42eb7333c4f90c0b94d1ae5');
-INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"f28d86ee84fa30a79a74e3205d45c40c3525c6ea58f9201dc6b5c79fdb526dd3","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'61ca639631a5af781bf6394aa6d553f790f1ddd8233c534af1f2bb88da16eb62');
-INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'574379f2566bc6a3c4ea5518a13a519c6cec397d7f671cb972168c3096511424');
-INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"70550cc53729dedacfd7599305a6ba24dbd67d5349e610da1b3aeedbbdb670e2","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'6d6bc73bd2b78bec4bb3b384f75a35f2b0019b08417230acb09ac50f1ee5fad1');
-INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f3e61cd83ad2740bef889bb0afd3e0e8714827c7f5e91ffe7e23927ff48c6f4');
-INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"48b0c3451909c475fc3273ac84abf136b6b81e2cd6e7022018711a1a8a46abf7","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'7862ba2769a5e82215138b0c82d5a92cd081f9f287d4b252bb57b73d2bc74c5c');
-INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b50895884f390165f250d8ff217c68c27f6239ef7cb446e4f9768231f698f0e');
-INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"9cb1f06768f23821c73219929b52fb339a5aac8a1f60e905bbe974759b296606","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'dc733dac0ea89f426aeb06e9b7d7ad78a1c49c33a2dc38c192fdad269d75b373');
-INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55a9fc7b9212589470b8c2296b2c1bb727bb409b3ded7d7e4eb555a14adcf07e');
-INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"da021b6ace7610144fdb7bbee83fdf5f617508c18b3b28d111e9abb6719d510d","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'4191a6c528d9e3592e50517a33fc21eb1d9a9fc67a61d190e95eaca7a573e1f5');
-INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94c8a66a496dbecb77775dfb4a47e48c918843f47afacdd6c3a4088156ae2be6');
-INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"464f88651f885a9c3604bd83352de75252aa4a53b40a94e55cf04cba3860b315","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'1facd311ab129059968667890dc4c44fabc922d2b340426dbd3d923da7476a7f');
-INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f91e8ef3a234f9e493290a8325593ea52893d43f19ce61164eda020bb8993d');
-INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"626b13a5e856517c5e8246032184d39a3b70a8d63b9abd7a56d824ec3573e3cb","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'4687c73ac2597be5f12182eead8356b50b8f57c0b5936c533500710e38da6990');
-INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffd624f73b9fb69f9fe559bdd2a603efd83d477216239a7592bf7948ba583d47');
-INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"34e034a1eace1f9cc331b124f20bf9b02b06e9920c860d5258bc846afa59be6d","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'13c80ca6da56a22f89bd2dabbc8d47d823435bfb29305f227b38a9b90f5d575d');
-INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'899153a5e653add3e86b72d3959202fa0e3b791f779082883272821f2152c38b');
-INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"c842b12fd725cba9dda8fba23d55154a026780bc6af2b0a8193126e35560c1b3","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'c2985cf018a637bb748510adc24e3541b53b41e2a843d20d411f13bd1b3cc516');
-INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'030fa83539ef0d9adc89c89f682c95f4368c1b4f6bb8c80cc331bac51e9055c1');
-INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"f79b69008dcbe3c3362ee21d19da76108039cb558761d4dcf9e1cdb946bcee10","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'04c5a99939244be7cf956144c2339e008ab87dddde14695aaff41f20273bd7e5');
-INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c8e3abdf615ebb954d02be8ee389f284fb442bacfa47d6ff3eea3bc5ef24532');
-INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"ad018c29e0f488918c6a134fe27ae637509d72341a28725cf82d74bae0b2fe75","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'911502c803c19ae3cc210355f82dbb4555fee8ecf5d2c3d4fa364b7613c624b8');
-INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da4d0a8be2338d468665ef0e83edc75984247440ed51fa381468634355dee81f');
-INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"1de15ad33c8b345fe1ad52110c252cdbda801e4fa7fb749dfba0dac2dd773497","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'2182d239c37daf55f3453bfe744462ec80d327ca7e1d07d14fda2aba0175981f');
-INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27eb0ef8142097ff12930016df61844a13ee5be27ddaae865a9ccd1ecf58eb98');
-INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"39f1eb92ac050aa56760fcdcc747dccdcadc1bc359632b6dd57cecb59d485378","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'7e5193ba5cfa445f3ee9d27e36ac433c03f0424dce7960190b2238cf23f70e5c');
-INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42a97f54b937fc10abcf28335e9fe10f8dfef309f3b07497194d470e3e3c9fba');
-INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"a2889082db39a64176b16ba1a33377440b0f45dfb7d30b36265477d98bd5a95b","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'d732de638703eb0405dd0819e4c040e688c7cac022e903b3596e5d034baf7155');
-INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17e387853770cfbc5929c0413f0ebdf8688c1c23d0fbcfc21a771e38f90afeff');
-INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"91296f5df4dff2e619fbe8e9d6d94a1e3b196062fc936ed6f07f72b95d912b3e","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'43817d40495dadc675443d99234d60971295373d152e957bd4f88973028ac79d');
-INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'577723c1a9c24e4128ca674f9d281540c3af2abd5f00452d1f75d3cabf8fd49a');
-INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"8d17e3a799c3ca2be1da35c1c75644f696843093177564b37431e1e40030c925","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'e35c2f71ad5ddf5f1ce082ddb1b346a6e5a455db27a09f7cbec4215e6e506b09');
-INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f157e09ab3ee33ff5075f6c35438987a73ff6fcdddccc0cb00e52d16a49b9680');
-INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"758117c9999addb364c604cc287e6dc9e51cbe5e326f2690d70ce87a81407597","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'5c3baf4e81492838346d43a8db803573ad4cf495658fbc17e29fd3f2c38755d3');
-INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afedf2a2dcbc8e2a682e7b6e15b4c7bf807b4d6f402aaa53d3fa0ec4465ccb65');
-INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"b6b19c84723ff33624fbd5154bbf60083c48b83caeea4ceb6667ecce4bd710bb","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'4bcdde5adc758d74111982eb244df543a338acbd8fc5a15616c0fae80ced5565');
-INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72419405fd18be47d89f6522774b6af80b67d0a4781ca1f7edd404d8894e1a06');
-INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"2f940bbc941844d4dd73837ff7f6c96ce80efcf385e2d44a1ce5f68d545da057","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'a32d93e81943b01a6488ef9cbfeab167ff7e44de63b420eb64186df562696308');
-INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c5e75794e76a599b76935df860f0961b1f986434b6833002cf3dcfdc6ed19f5');
-INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"6559100889b99c05398948cc0d47d0cde899cd6ac3006ac5fc344a0847a87940","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'6cbb9d8ace57cacc7d3fa2c8ef6bfd245859a19bb0a561fd0d83a695e0018784');
-INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17b17305f369fe4c9391b8178c6ebc51493aef4f93b0be959553a5a70d516839');
-INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"9666d2dbbeea540ac615ae637bb58d5e2199bf937a396750d2a877fb8f55c75d","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'917abf9d2a6380cd489958549adbfba95495493fbc56d6cce6a227a7ef02d55c');
-INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faa15f8cd833ec336957ba1584ee7d75fccd27d2aa39bc874804acd58b984e7b');
-INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"a4d05b2dd9af6d5ba804421e6043f4ccf727eec75ee10a002baafaed45bc772d","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'6ea49a9e94758c34d0a6f29fe0ba86c72afe8cb1a8c83efbe1323c19d96e1b53');
-INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00593790d945f542e99532ebb28f7b9764a824f32848464d3835d6151fbca0ce');
-INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"1e684aaf8da9104bf057a078360bf99b878290991bb14c8747d8be386a536095","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'2cfef57aa3c8f9e21aa70255a0ad6e9aa9bd7da6cb8adcc7eb2b68042501e2ce');
-INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'739df8f8054c2f8257cca0b2c622c9af6028dc1a839226d6158146d2de65309d');
-INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"8cb254cdf81022602324076922901e7d7c4675bebc066252bd20a7e83c23b76c","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'cdd5b4a201938c27e1a5a1092b31c28f699245e04cb9668f1f9bbc9e06cfa3d5');
-INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1662f26cd1de1a94637b89b7b465f3c50ba3125ca77a423f1d0e1f8f38a566d');
-INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"fceb7400129cbad4ae34656a15a35d8e625e515fdaf78a9f644c43f1da3f836b","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'ffde69c1359f3c51596ba5394ba1ee88955f073b64ee655da8b35ec50caaf29b');
-INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43e42de2fc7169ae3cbad447d41b67c575d9b6bfe704492aa399afd529817e5f');
-INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"b878bf2f4f70e1c15eb60535887db7ba9e9414ec524d0f426bbde5a459a56bb9","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'5a87e59a9c05de74ac90860674b846d5d49cb74d5444133c712c833805a689bc');
-INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62cadf5755421415913c5d560eed5b305d5dd31ce4d1f266de4d636f1c3a6915');
-INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"855cd018f577fe76942fe9837dc27d3be5e71bf378b611f25cdd6381b04ed703","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'a3d70a487b6044e3c95eea60fe522d500d5d2918dc0e72458a4fdfe2745a80a0');
-INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'821b3fd6dc9048cf0fcb6cf053688a43a3bce69a23742499e86ac1b49d6ef821');
-INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'NEW_TRANSACTION',NULL,'0f45ee1b3835c1fccf023988723e6417ea6c0f7f720e4c58fa91e40c1466370b');
-INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','6ecfe5575b669f21b359064865f1c9bb8c74b26874516f76285e89d4cfa86683');
-INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','6462aa905b0af925a57c823e69d3ef306c84aa404f5e5a2fc56e638fde7626d8');
-INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','1b5ed01b31cb5ccb2e028fa4040051128394a91faee014e4ac71f0b42d10c865');
-INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','1391acbdd92c6914b33730638fe422b2d8c32209e24db74773614202dd38272c');
-INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"7b058d359a23326a73d98644d5cb0312360ee69f98c85814b2d574408f8d442d","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'064576f166bf4560335b73566312e863ba508ef5ca8cc515b35ec94d2c43056a');
-INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23905f9fceaeaffe8fd8205e8e7ef0381550e71def3477840d0ea6e8ca4ce39a');
-INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'NEW_TRANSACTION',NULL,'25dcac7c514e43b022f13dde277d01f07e34d04c169cfb5c3c5afa4055fc77ee');
-INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','1130241316e92f1b325ae030d52e42044fcf736e0b70d536287b1d9763251963');
-INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','31bba9e7495673e5494e8a29d03451c1d41632508ebcbd63356da3eddd16bc33');
-INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','ea4a1dd56cbf00772a206b80ac52a56f047d04ae944e184bf410c60153a3dd17');
-INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','476828b7e81c5ff8e743230bbdc0dd7215ca66a6657d6610abb8995c9d6c764c');
-INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"222ce836127c79d43fc5847a1cc427f7218fe84d23c2454ae1fd35585c9234dc","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'35be26a82b06ea4c825cfcf69bb54db25b29594679018b0f5637ca080fe3d5fb');
-INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50a31e77ed57343037b156c33073d6440cee941bb68549811894fa6073eccd5b');
-INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"14e0c00fe389f298230aabba0e084ff09875e49dba8b5259fcb99a3604081345","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'6c2bef84bf104f147628830fb0a6a62cd73f2ba8acb1a4735f7b9a1c2281e562');
-INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06166f5e2be95667013f4145ad494da26ae41fa942e6501893e3917ecbc83d8c');
-INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"00e1362b924985f5761ae514112cc30c143a610d15e936fd909a52e8735eaaa1","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'371e5668ecda4e5afbcd1d162350670f73db37a7ee9379e6bd2040a2cfd2a35e');
-INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6149c3cf41b52cf56924a80ef9fb653551155792ff249202a53e04df19feec72');
-INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"f424a423cf7f105c5f1000cbbc4552b83589f70e959c2a062eca313f5713271d","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'89aae05553f4060f93b3f2e833167d5eacf59af4a34352324f9ac1fa73872dfd');
-INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7f756215982f2684863b35c89394c1cd1e908a25799c3076ccd5e66f3f1a8cc');
-INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'NEW_TRANSACTION',NULL,'b12ed614487828369c55e5b1d4b2f03e19e25c784987f684db4b37e3bada93f6');
-INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','9814f806ec0a44c5516952ec82005dc266bab824e9c5ff5a561604ab64b861a8');
-INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','ddcc9530e04e102c39c92e639e067bf651cd6fa2cdc0d730207a032c69f22b5c');
-INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"3c08e19ebcb07664b7679a724ed18c73d7c8c7698a56f85f2fec5e7eb5a3ebd8","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'d4cb876101724460143357840fbc52fcf58abe833492515c62ed8fa59f0bc219');
-INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eae83b7a8ff1239a17f7883139c10d1148de01867b8ec6b576ab547f8afe8a24');
-INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'NEW_TRANSACTION',NULL,'a7545adc7e3edd8a3663cf3a7312cb3cc570f76f768405fb141795136d34699d');
-INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','c213d1a5981baf96cdcd1e819a0fc4b39c6f76dc08fc733b3016fd907264d9c6');
-INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','f2f7c3918ac31ca07c3b0ad6f5e06e773b313112fbfc2c60f8053f0212c64645');
-INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','9c5182a6254be4797ddc1f14c12bb24d52793ac62c19010c30beb554c66ee7f5');
-INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"900c8266900450b11b7b896e61baaea9e7f4677b5e722ac78cf07985c65a2e5b","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'ed6b915e22e8a409fa2b33fe2cdc415146dfb5ad948fdb0f38b02a8e39dede27');
-INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89f11ac56228e7baaa687cbd0ddc2cd3b17c8762514d4b129f2024e45c40c0db');
-INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'NEW_TRANSACTION',NULL,'60da3eb28a28bc683d6f02a04cffc3e39b73fae8df1a6bd5beb6654dfb5ed06a');
-INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','2b739e091eafcb4788c71e22598bd5a3196385710f4b6da7c433bdfbc1521a6f');
-INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','05529ba9fe6bd0a05d6a769ae54a494974ff121a297a1e9d87fd2f3737c1207e');
-INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','d901d91de05eda6c4f6147630fccc798feab22b217345376b19564d88ff791bf');
-INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"5c74cb1bbff97b44622a3371822508ea90e9b55e22b7bcf5aa69ae39fbf9ed8d","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'0020a9e2036e7e162ba0993eec3e8198b5d6447d01c59bb8f9f1540d0bd07fae');
-INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46b1959fef33b5186c3809f621d07429ea11335864611a7628c117b2322e2671');
-INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'NEW_TRANSACTION',NULL,'5417817db77a51837ab1e76df5da53e82bf4d7328d22a1b54e643a12a404578f');
-INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','d8436c03d871105ae7e5a10c134be61b64c7d1ca11112bdf91c4b13c8e371ab4');
-INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','2e48b7c90904ebec7ace728bc5081a516f37d0930e54ac859714ad7a541b057d');
-INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"9985c79b656f017f5eac15b1aa0e9bef1b0bf2fbbd39d687e915323348af64d4","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'14e71650b169006959875f7b5084286a04b43c458888c528d9d67425c7de5c9b');
-INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'355c9246d2ce131427c7cbb44b7263df2624b3998aff40c52d92881768761c3f');
-INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'NEW_TRANSACTION',NULL,'778249c906f7e7cf260766e4bb2185d837426c031b8ea0a0b0b11d00cb53f3ce');
-INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','1d985a9eed36451cbbbc5098bfd838053ca2bad8e2113e5a8e9e83550c0e240b');
-INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','595d4c87313fa8ad1756066979775615b977686a170161cd9e9cfab631d5d11d');
-INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','f66b193f9ca8cbf62005bb295c25b2933d1b065ce821ef358e3bc081c68340ae');
-INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"8822b33c741af78b8def7d9bca7275cc62f388c9159c953b0fe7b621ea5f21e5","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'fd8b24f607f84b8c89ff52002f69c62c04251457deb91deab23e5e12db9f970e');
-INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'757d54ade49634c89ee7d03764119cf7d3f3d02be12f88cd47de2ad18acccd5d');
-INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'NEW_TRANSACTION',NULL,'f4c2b5bf218e18219adc11f6730d79ee7ae432bd2ce83277b7d9ee6d3b03d247');
-INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','653a9e8bf33d868ab2977f3329f5a13e38fc04b436d6260820250ac6aff868dc');
-INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','ff4768e79ac1c023111e46d2244ce5cebb3641a2e28a0cb58e11db605d443c2e');
-INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','c7c47271397ea1fae622abe8317ddfc3285bd7e5864c11e8fdf3fe56af75cc38');
-INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"fa5278b9c27ee7e35fb9b13329e4146133c9219897aaa6fde667e2eda5ac015f","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'3e45bdeb72be2a4d15f89d316f8838ddaa53c28c44f51d47169ee5e380e190f7');
-INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d78aeb9f3c476cee9499343233d760938002a1033030a0e194207d3c05e6ac5');
-INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'NEW_TRANSACTION',NULL,'1cf9e21ca746dcb13d78709ff7c2f4cf425973e4b21419805473d8bdd730f340');
-INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','bb1d81213d41c831d9f274a7bba5dab17eaf28abb54047ab502c094bc804a145');
-INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','e38dff1a8ee210f318e067a1d6eeab9539ae1cff1fb3a373b5b1d8320ae672f3');
-INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b81539f2a91b5573ae6e3ef2d4a66e84825045faabb76c9e8a6f4d8d4e7491bc');
-INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','38f60af10e894580446794ab76e7415041909a4f5e2fb831565a19003bf92b2c');
-INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','66a46f7fbac9dd73dd3cfdef37935be17dbaedf84e80bc271d98b453b55ca7ac');
-INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"fc77802662487506752caa901851d67dee6b960606286e180c6e9cd5a5f6cba0","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'dcc9be625d18a52acb4eda2426b904a9f3705c17d0169ef5a599a4d3c1e7505e');
-INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5534ed8e92a6d9a48ca4eda565293aec6db342148be12bb9d3191442d9fa180c');
-INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'NEW_TRANSACTION',NULL,'43e3415b4145a5590f6a5afa8d4504c4d8da54ad210051f30827219c3c2fdb3e');
-INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','bca5b6094c0b737966b886b4f873f74a950201f8c2c1b300eaccba9302ffc2ca');
-INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','ee96dd7403e45bbdfac76a6650f5658eecacde8c2e3145ee4f8fbe236001c4ac');
-INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"2a51d45368d39a8ed09a7c24aab6271397a8a6dbabc960b4b26d051547f15f3e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'dad207ed9ada4374bfb2c16c13461f280445bcbf4fe6eaa02ad84a85f43ce95c');
-INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'033be6d0e91a97e72b3c4049dabd2f51103f1ed08e131002f47cd3b2c87bd9ee');
-INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'NEW_TRANSACTION',NULL,'d445536fad880385a09ea8f8c571db5d846962e22d73d1df7877267d2225bb4e');
-INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','fbbc1698cca418bd05146b74d9677fb9004c85da08184d22d6ae16ebf5c8c479');
-INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','21e9b8d4f4ab26e26b40589f6e7d32555d8fe6fdd805498ce10988223e43ed63');
-INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','89e8d35da8387d5cba9a89661a74a0fc038a35c44701e4b0108b098d98cc0ac7');
-INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','d3c98eac03af86422635ce40a8734fde5e9f9de0da64cc9c8d4ac2ff7db144b8');
-INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','7defa889de305be9eee759279ddd244050d36737a58c18e7a74d1ecfa4cb6dbd');
-INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"ab785cd4356200a496f5b85e7f824d03bb32b81cafa403176a6ded65e0aa8a0a","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'a38d2d584277614090198d84e749895c90713937e48c826e463dcda9d3b809ef');
-INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7dfa0d09df5a56bd6b395a6c1fcd828210a651d8cc2c8c7f4ab29abede24542');
-INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'NEW_TRANSACTION',NULL,'acd5af104268b1a1a315169f3471ae60567b17d0526167fd8e72aa7221ee434a');
-INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','f45f02b352396204072b49b1c51010bab61c28f8eec7af294c1cc0028080f889');
-INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','8e9614349a6a7d706f9b5dc54eb99027441a0bcba7d8d1d0b77513a2542ff1c6');
-INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','9e2eb0a9fc9ebb9c646198d7a112754813f39536ac3d146704a13eafecb3f4d2');
-INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','2c5c79c2bfcbd90f39020f11a43c2cb729a1e2aa91d3dd608462e9559af4f57e');
-INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"c426ad40e2d4e6e3e6301c9122fdb9ef7f28fad2ef6135985046a4a9b2acdedb","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'d1263e8ed1921ad9189370e9ced2f139b48f9dfa747d0be0778687d357f51fbf');
-INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49cf9f2fce618e61728957ca57f60ed91b91aa41aeeb6070a1e9c78f761dcf1a');
-INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'NEW_TRANSACTION',NULL,'95ebea3dfdfba0701505fc32bfc3c1be641a748c7beeaf3fbb6eaef9776a7aee');
-INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','702b4bfa13f6f72e6f1e2f366dcdbf066069a123b837d168f771006e321145f0');
-INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','a7a607fae1884ddb9a700d69c873683717b222d318c8c4bab2d989772c331882');
-INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','3f237e8833f78a8c7161379ebaa962c4c5808bb31fe6893c2429f3156bd8095b');
-INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','06ec8d75fb7b3f69f1dd768553d163b81a22a14665960bc9fbebdc131f268312');
-INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"1417fc5280cab90a898e1b89baf5e8ebafcf666e43ecc2042bae44519c54794e","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'5a5431dee42084db9f1b0e25a7cb62b1ca4dfe84c134f03e3363d1a4b2685918');
-INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cc3dd3b7cbd6f0720addf83a3416c2ae6f5d4b6e123bf7a8b508cf0291d7778');
-INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'NEW_TRANSACTION',NULL,'743374584c811c99df321f635069e30e45a04bbb09852b63877d577d661157b8');
-INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','c34a327de9621819f0739d73ccc41ca5a43a8ff84cbe849ef115d04467961822');
-INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','40e4d9f12cf8bd4fedd966c4a6d8e747dd897195ffed2f6f1d2b2f87b9db3bf9');
-INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','c07d3fa2c035c3a32fbab61d56b43857f0bac1bdafc2334e8e1304641c4d9e60');
-INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','c0cb5c8b275b8d1817a84f95d3d8781ec792423b83953b0b82f3b24ee9cd96cf');
-INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','bb48ed3f46129a17a13c7d35e31b75e6ce28e1a3140b42b82509c0434b11aa41');
-INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"ad86d199894b3c4e8a2d05332b58b81350bfaf9686b5a0896fdc286cd5d95833","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'0dd008d5b870413afb76d63564e9ff78b7cc83058bc392adddb1a4e8cb2ff472');
-INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'245867ff1ac2137e90796a618b65e823168f9e1c6d967ea6df5bc492072ec288');
-INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'NEW_TRANSACTION',NULL,'79e67ae32c32be11a2f2045df58cde6160517f30d7b369c115d2f90e61144473');
-INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','351a12776d0362b367fff0462748835e1ea40fe2e57dba96ef9b873a294d91ee');
-INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','61d2c63eb9b6f216e0a80bbc8717ab70823fb3dcc3cee052d598e24c42a27a1d');
-INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','f64cf907d4f2c9d0f4ec95f248bbadb1b207cdf9e20d33570f36049bcb5056b8');
-INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','336527577586500fb42b47efe1730c1bc6edc2113d7e36fc0fd8baf9f0273b50');
-INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','4838442becdfd8bda42304cd8fac639cc1be8228a3e365495e079486bb357ce0');
-INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"31fb849548f5054c3f49f5ba1fc015a6169db27f00e90ea2baa6fe453e2744a5","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'6f49164dbab3030de67a68c13b2b5daae5088c8786849946395a067e42a9e80d');
-INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8649e7910125cfc32b7e9b857949bb99cad54353b6d400383fee168222425f68');
-INSERT INTO messages VALUES(1237,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"b9fcbdafddd46fdda061f6e9f8744b426b6ca37e32b315df1098cbc7899ae9b9","messages_hash":"dc4258fd460745fe443598c0119627362b7bceea1892f32243221551f45db0c9","transaction_count":0,"txlist_hash":"032166892f568bb97f4f69ef5bdf49cc1b15cc9f8c7f6c1f3e1f9d54816ad7e5"}',0,'BLOCK_PARSED',NULL,'f32a2bb8d084588fbe43f794dfab473a92ce6c2ab07d2d92adfb32868e475580');
-INSERT INTO messages VALUES(1238,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94364a367f61802c332630c676cf3415e6175a8c60edbe896afdaef4ac347e55');
-INSERT INTO messages VALUES(1239,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d","messages_hash":"4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96","transaction_count":0,"txlist_hash":"35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1"}',0,'BLOCK_PARSED',NULL,'0ce34415dfacbe1fcea7c7d629e170305dd1a7fcb196e7e6ff0d033afdabda31');
-INSERT INTO messages VALUES(1240,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3ac7c926155b4d1591ec0870f5cd8629b5cbc69e4030a8a9a259bf7eead152e');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":"e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0"}',0,'NEW_TRANSACTION',NULL,'4a87cc49a20843c26b1df763f3ce6b52d59ed1c028ac6c36a1d96f52bae51b4f');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','885ebea2d49f4a749882f86e10e9b21fa6abc1a52e145cf510b39f1aec3bf6ed');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','60ed070dd6d08a8afcb118fca013550daf8919696f16a8830e8184536c5c92b0');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'d4cf8a624f76c044302f63aba8daf9799694941ea251bd7a39f88954bb411315');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c40adcd29bd386c6971d1826236154e7272070e3939aecaa73a5659eb39c1b5b');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2,"utxos_info":"ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0"}',0,'NEW_TRANSACTION',NULL,'965afca74493b295ca82e11e875f58c913fea311185bf15fbdae93851d9651ca');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','dfc0b17fa4a97e06afccc87c24fbb7b2ee9690de70b3739bd570cd4ced5149a8');
+INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','3601db0efd870070245923a53e4103d25bac7ea07aec0873967ce2af7c59e0d9');
+INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','69c133f7b7135486ac7ee00edcb20ced09224d33b74ce5dc6b1dfa6476b625b2');
+INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','81cd8e7e7c9a522bbb5edeb55fcb57f69777f03724c212b82fa372c1a4b7c7f0');
+INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','c59cd5348a0e48274981749db99d617a54187b29e054c0e4e5e71ecb75d54212');
+INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'d431ea5c36c8281924eea675245c1a57bf6e7627bac0bf7de1ae202e6ec18026');
+INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a732ea775c3074c37c07538237a921cfa12b99981c1fceb7ed63560f5503c8b');
+INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3,"utxos_info":"8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0"}',0,'NEW_TRANSACTION',NULL,'c623ecc76935dcb8986103a8c6590e0bbc401223ba99900fcf2b57e61bdf8e13');
+INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','773f817e9ea734cf7567d73494998fd051354c7153dcd01e19051fc9b50b31b3');
+INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','f1918d0943111ca12faa0a2d582b839f3c6f7b7f522fb2447eecf3ec21af0ac0');
+INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','75da65c1cb4fc710f930c8908b52ae371ff6e1674f75d5cfb831d21a653f5d56');
+INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e5277c57bded43ba153e9414b1fcc3739b812b81bf401ac5e4435c7c5d1eae3c');
+INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','48f7e87482b45a402cb6453ff16eb5f39eeadb4002dac42d149984644d4d86ec');
+INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'c4c4820a2ef1f9c4193770028ed8c44c2d9728703979f55e545ac817cf87f6f7');
+INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00df60911b15aa382ed254af3a3624487eabcfd421371ca936c9d9f1fc563e3a');
+INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4,"utxos_info":"197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0"}',0,'NEW_TRANSACTION',NULL,'bcdd799ff3074eed4c39841d84722bffa0987c1303effc3c1db69db9d7fbe186');
+INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','5cfbcdb9dd51a4074410a6b41a04892cf1d4bf12d2ff195fbfde0a0ec89df6ef');
+INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','8566b0c679622bb955c467781d9b57a112194af24888c3501e63ecbc38f51434');
+INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_events":"creation","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','3f925e130865a7c1435d9466b2e761e3b235e9f226f8201bdd0b2468ffcc68f0');
+INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','0da26f4a283dd456401e2af17ba06532136a36594551b92416a68b863da9a0af');
+INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','f760bc0ebe62320ec71d89b27aa4f452ce2a54088c87baa139dc922416c6be1a');
+INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'f6760ced99e0cfd61d2c96f82ac131e36e4e091c7d48999bf5b31d075dcf7a76');
+INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea9f278a9d09a5b3f943d01f9733993daaa92bb2d83549396ff05eceb4001806');
+INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5,"utxos_info":"44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0"}',0,'NEW_TRANSACTION',NULL,'fd60331ac14a6cf0b5a37da04efc294f561cc5e03d6daf1647b26a8af85436c7');
+INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','63eb85bc9e6ce79431a845d85c6c292975402064dda9ff8d8fabb514eb6ba952');
+INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','0e874f68e1ea54e92d714c0e388f9c3a8084ea59cfd8bd918b6568758fa9df2a');
+INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_events":"creation","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','aa6e01961cb1584d941d9f907034a568a687ce7a9e04ec7def596d284b550630');
+INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','a9332642805ce7ef970a9c1c7839c194692a274a60ca292ea984a80defe9f205');
+INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','dc531da38c647694df8f746528e5baea3214d33e1449985b29df2ff15890d0de');
+INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'85da0c8f33d4810f09384309fb01cb17d91a545532dde211b377360abfcccf85');
+INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b43a298d8c3571ba4b79f2e7af02ec84af43fb311f316510b98cd92618e38f');
+INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6,"utxos_info":"2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0"}',0,'NEW_TRANSACTION',NULL,'082641c57dfa01635f6e174bcfa502f8e015b58862895b3ebf870bf7869e8f25');
+INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','a9cda90cefd6e27f76a3d1c32656c031ece3ee6d1d2a48b54a5184c05319a14d');
+INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_events":"lock_quantity reissuance","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','7a55a2655e99370897df1aaf08912119432f6a6698601b0853745ac06a5148bf');
+INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','efcdc84809fba6e411b0fde1e4328f0b857e7b3700161634fb5b640c35ecb057');
+INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"092fdd31ea597da3c6623b94701387a103e4ecf16ecce9dbcff7b2656c69af91","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'a037d88ec45e285a451b9c95d9e94c600743683b5a3f7903e2516f96e04d8a45');
+INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8da22c3ee67e67193faf605c73f9196368e64a2e29b76543c906daf5581f413f');
+INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7,"utxos_info":"5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0"}',0,'NEW_TRANSACTION',NULL,'fcfef7c418b630a2f347870e6686d24d6b3365c649893bc5f14b406235025248');
+INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','0d38d78e9dfb703a833b464a941470b84cae17f03949ed87d6b1dd501183d53d');
+INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','0ae23e1c5cfab65ef2146838eef55e13f5de565e78451001c53fcad63684592f');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','291b04f28169d316bd30b1281dd3352470ee1ded3bbe38abb98d4bdba502c506');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"c496343e196749056a9c5d8cb32f31cd989c9b8def81d208af418014f8dd4e14","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'703dfa038818bc2632e3226775a850af56dc940e56e0987a2f345058fcc463db');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bd4191bbee69d5901a40a3df48a05b139ab38b8a92b4b4850da643e23f0f25e');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'358a32e1ad8648f9160360e1336353aa86c38a7890e7f09e24bd9944dbb6d321');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','5fd165a3dcd376cb327bb85ed77051e88e4d311c9b98804a38a2d1b0e6a3034a');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e0f8b9262f765a22057b1d1181932b06ec42f740c4a9a9a40ccec40d8b292fc8');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','d05e2c92ce8e8e7ab7147233d447fe9b6df4a6939f35131fbcdf68a509e4699f');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','3b4dbbd0ca1b04bc5f3d0e9d2ba90ef45f0a78034004be8d6e62fdd582abbf7c');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"ba9300cb8828b0fbd75d9258a33dc126a4bb9227ca937a3719320449b907d39c","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'6d222fd31a3b9bb7622f2ae9a85b3b4518f6577297453bc66f61fbdfc80c25d4');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'090825474106ef69cd1bc45547423d9f5485a84cfe723cce91199322dff7b84b');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'5eb0328e084157a282129515d5b5d6eb1c81c51b0d8933d6bfcbfb7709f00935');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','6a8104bbed3791998f8cb49bb11b10bcec193d873c5341819f75570306e6a416');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','a428a377a95ef5462197ff89e09b92158a73aa3a38cc9c5afb15fbc96c334698');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','191f0a1b60a636d061641745702b2978757186b2323af2403ba13346396e28cb');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','e297c355233ecd2d1727b006054b44bbfd9ddc330113451ae94ce163e1b34742');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"e8c0d80c8b8d9bb2636dd711a3ef82861868eaf2ea3773be0e63fef09d970ca1","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'36ea72686c98fb18d19d8eeace3bfd8456b18cac9f9cde02d370253385058cb5');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0153a84cbd3ea5c65dcb17ba9d4285333cb360a7de29d98c3cc47dcc3c9a01c');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'156748847d646b8f33445175b5f81bf41f98745d897e80aeb7fa44c8afe3d5ed');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','12a382494d604ffd6c3c0bca0bf8511056f0fa65665cc47668516434cd8f9be4');
+INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','cc32702a3df249b82b87eb301837487a502c377b65714fd56d072c62100f7122');
+INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','d0cf88061bbb6882af4686cd84073c7d93aaa36d9c0bc73fe6f8cc2e48c3f48b');
+INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"27c208828cb07a131d9b893b23c0205d26adf423d8866fe722e5146da11bf99b","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'afed2b29fa0fc82ac4ae04cbff94ceb04e41af44e763dac52da4b2cbeba68d21');
+INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a8d7ff478fd233e42b7a5fcfd3c7e9673a26067a841634f79c6ead954dadfe');
+INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'d4af102623b0f3f67071f605f7eecb7253e6d4c0632deb1adf5c6c4b0c5b27c6');
+INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','c8a3f56df0fe39dfab4b207aee7c157cb8ca02ed77715166df1cbd32391ff309');
+INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','397f360f6ee9de4bbba4b4bdf6bfaf5d56a747359fc83937c0116a131eee36c6');
+INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','3257ee461b98e1d2d870b6eaf586d03e89688cb060ba1d10423161d6c8d93eea');
+INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"c0d077873f1037ead989052f4de498361c3ea82b92bfd76c15569bc6f1190967","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'0ba63dcb38116f5a40e08be28553ea7c321469318e21481a7e1b17b2c4a1c911');
+INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce93301fd3698ca80c99266481ba17b4cb4fefd2b8b575f0e15a064d23813d6');
+INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'877a01a3395957430e89649733c932fa058f9522e3918b10f49307979542fbc6');
+INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','98fc51613e90b2b1773f7cb59275cd44023a4170c51b9e045b5507f5930c3f01');
+INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','bd4b64b5d5681e49affcbe560edbd433df91bd9e5162f5b81c10772054ff260b');
+INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"36e98d3aea754604da80ea2624deb96d78d9a250de7a6933a32cc7eec0c01c57","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'0fae5215b6ca33535ec5df86ae9ef9c8d6ef9309b45da0b9ddfe365646a77907');
+INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df9b6ddaa3406827b4cfb7dea3905dd85d4ec9912985589e84c969e46929300a');
+INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'f1c46ec5f624ef964893a37bbc39347b35e12e6f7b40d7ff244017dfab0ee63c');
+INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','00cf23754d6556bb95ef54e5746aeed15d39733e15f0ccb655f0826efb4ff969');
+INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','baf447db45b75ea7c11882fc887bba15f22ba0abf9766b1bf5404c6945e09fa3');
+INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','ba082eedde64897daba9ea3df17deb22c203fb113378a970e0f6365dca1084dd');
+INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','88df74e82749db1f40a23de1f079d64232681968711cbb8c0f4d3d0e2f00b7cc');
+INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"4f5d5f9d6a0d00e9a73ed3e5d8ac4cf174e48b53351a1e41edb760491d1924e7","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'85e387d6af6dedf541f6b972c57ad6e83d75a0e11244e945045afaa17b418333');
+INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'838b5f02419dd80cc5e628414ccf09f6e2c90872004f30e2d0106ab0afe8a93c');
+INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'4e7a0408f413e5e7dd5450125b772ed060b0cc97ca0e7ecc902a2439e7920634');
+INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','4e53e0d8a46e8d93a0b0f015f20a11eec0fbcbd2f0b9ca95a2f113feedaa7c6c');
+INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','0fa940a2141f7d63b60fbe3361fa42b5dd7b5130fd31a7f3dd34675a79054107');
+INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','3cf7048e821e93f7878b22f0cfcb4845d3c9d1d77871c81a418c2bf2bbb11e33');
+INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','e485083444f0669ab3cb66f5d9f5636c3f25dea641801dc544a5c085fc28fb0b');
+INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"b68a5298c856d8ac685da6e18d78ab32c536f6aac8e82f71be8853f3a9c61419","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'34c82cb44b7b8ef3d59e78786a89bde3f20ca66332d39ec306dc419407e75b61');
+INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24f654f13d3496e2ac1aecf11573d96f84c674d7efd2b88feef5c03a09130a57');
+INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'1ecd534ff2d71766540b7bc36662cb3621049d60347870cd553383f6f595c842');
+INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','4ae10ea7cc13ea487db75fe471758624d24beff210d310c1f06f9b545aad94a8');
+INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','e79bfff63fd38b411b156761892d3af5fa45cc97c61eb48269d1acd7f8753761');
+INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','daf0c448344700055e705cf71a5a45a9d1699557433d65ca736fed6ff2a8aea4');
+INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','e5e14d504d802072679eaffb72f23b77232e6ac30c27e8cf0f1d0473e2972304');
+INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"a01091f05d990839c3a44dfffa01f561add27ae20e7298cfd5e881e7dfb4019a","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'4d141512bff87b0fe57a172ef695ff88c14a6e195adcd0d9044ae823aea35a46');
+INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a5089c350aaec6928a029a4578fe73eb4091c839909b8afb69a9ecacbf2f6b6');
+INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'db6dcaaddb0d9057a1187dadf0a8c814570ac195bb1a5131e69d148c1db080bb');
+INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','6a9676339ba199ab0b62fde11aee0ff2e3f89a33a8134bc6a3c9cc6810ac34fc');
+INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','7ae43414e240cc0ef85a52425dc7776c27afb88ed2a25e68feda1a2c21b0dfbb');
+INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','04b5875fd75477df2af459c7e063587f4abb29259e8aa8236e48ffe5ef697608');
+INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','586e624b643ddbe00049fd62e48cadef9f5435649df1c7934e7d1893eccce8f0');
+INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"0c54f16f43b43b38ef3b7b4a83df41a2c907791fa27fb957774a9f41366f6696","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'d521b33eafa577d336db14b3c2fa0d802800729cd0c8399b2b6d2201f848793f');
+INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce19584a6bcf31671c8b7992d074141033e6e038c0316ba8123b032d393b3b5');
+INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'4900a21d420cd54e1bcfb2cdaab36bc52037bd6d0de514f3989baebf3c7b16e2');
+INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','ca2160d5d7516c209f4fda95e59f0088096bb155559d9e2e827534877b9caa8f');
+INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','557a2a58c97221476ba8fc66281f9fea9fcb14e349e54f29066b3e7182190e16');
+INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','c4f1f1350a6397e4ac380611cb8da40f8907546e8350dfdb97190f26c04510bc');
+INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','dd633878c38e42399cc1e7a170d7b9f1898fa1c84a1098928d9d8ac129281f66');
+INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','b4c6c4bcc7c4a45dc0f28e297f6ddf3b208f8897f674de443b7d3aac14c2b53a');
+INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"18db8ab5cdae89dbd2f3737e222c273ffa8eb8ad685e8ec7f760d925e502209b","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'12974860565323108a3f38f8f3e0f476ec0c076ff72ff95a13fb071d257efaf4');
+INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fab6a7a8cc7cbc042f0a26015e4fbe01b2cfd3afff7a3cf09cc61abfb4ecb0e');
+INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'ae0f10f0fca02426145bc14b0504c3df0e7d0c5568f3013a4661c6125aff5c65');
+INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','5a65f443afa052a9da1a345bfe1012677d547a0a003e134823bcdf7bf7b9ec1e');
+INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','e2fbe9821c764f4e551190e9c51a121b938932de2c42719cd485c533dc442677');
+INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"feb24386a3df5d6c2e66402b8eec85f6a56a7449812d83aa5a7527c1148dda8a","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'ff356201fba7bce335cad0b16e8c608cb35f1a38d620082c2a6cc1fd8e86e1f8');
+INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68cc8e091ad6b48d6f0e43183b40b9dcad8b96ca686974a6edf6d3ba8507f132');
+INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'d73ed807f3001b83398756b4e08290244254ae6f5cbb133562b5e19c7441df2c');
+INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','f5cdf93b2d5a8bcdcb3e9d0d86c0f6d0cc977a74b70b0b72ace0bb771424ada4');
+INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','1000f3db45325eaeca07543ef2b3313557760b7bcd289cf9a824cb626d0aea66');
+INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"8dae640fff5e30f6fecc9f31ecf896819fda3a2856b44052e9b3c8aa694efb7b","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'7a0b40f8d191097a5dd1c4387e4c0d02f2e360eeaf1be0d9830a7e110027fd36');
+INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9980274e43981a49fa2034529527ee953a34318228a055392ce6033f5e083c1');
+INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'be396bb1b1d6a6fa0ac7b74153963cca8afa685de2d66451f2d5793f0a97547f');
+INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','b0ea315e579f96b8d2692379bcf42a8ea7660ca6202f9d5504917bea5fc747ec');
+INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','2a41895194d05a99404424a973f1a6398329fc774889b46294bf24708d644048');
+INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','0c595a7091239c5a241bbb6c62c9562470c8c82a6fe0435a6600b44313668751');
+INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"351d377d959ca20aae984048c9b1068ec29075c4aa7f52d6c40592f3f7ac34d2","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'1b51ffcbd18a9dade043ef1ea668a20de880a37da7c3379f4ce67a4e5229486f');
+INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae372c0bb35c31509cd6af98cd1b488192521a366fed88a2b5088cd8ae9ab418');
+INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'07a087a98d88302e240058937a791153aef6bdc0c673c855503bc151c5ad386c');
+INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','cf5c20a2348fded359cdc5ace9748255f0a0d8427ce0b6dcd64f50555394060a');
+INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4c043c3eae3dea42928d64a307bf27ff2cb1d612c92cb79f66d31c46122f8eac');
+INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','649a87ffe39feda535b5a6d5da50e90cf71d245c2b83ece75c1d0741a0dcf7d7');
+INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','203dad72c1a2ccc6d4a056fcc67a61348cfdbe7165c59d22840fe576afe7e43f');
+INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','83ea5a6ee735343f59e79f07db1adce93ebbb6fad92eb4a4ab324aa771d3f80e');
+INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','24d5a25d409b3b984bae985b4a18101cd3ec8ddc49da820853129c9e8b847b57');
+INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a40893547c5536e8887f36284fd146148611528603afc2bc646c7387f07d6583');
+INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0d66cdc960e4d876830b616a927eb688e8e35e5bc369234c226fd40a72abc104');
+INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"a03e4da1b25118ba87fc3fa5487ddb147a24be33caf30848353080392b3f8f90","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'3beda015b95fe5058271139d5e1ac0a3db0599ce81dbbc435717ed0be91b64a2');
+INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25222f5a14cd27585cdb850db94e4d7d1e4eea1c55236ef84ad77f7b22d956dd');
+INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"ec0a35e9d334d20325c20dc0af2071cc0bd0011c9f2e9dc495764099b25f868a","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'5d90da04cd347abca028e54f447843416bc2eeb780cf8c9ce887b9de05994c2f');
+INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a69cc3e3a3882c7f3cdb25582e701ba0d02b4769fbc65fd37eb607193fbbb417');
+INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"7d66e5032cbbfd62641467e5a15a69d28f69b1f0b7da934fcbde3209c36ff15e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'9a9d254505ce537d6f373fb36d5699db441f4721b614fd4354ff6a5b560a058f');
+INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f9835223e5de16c4609a2d854fb1ba74914329095b7f9d1e1d049a418e461d0');
+INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"e57a336b82b7d62efa497619daf7dce26be0c2034f763efac3b83237078c159b","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'dc5a7b729fbcdb54c9a131fe23db6032abcbe60907027e200344f3945281cb9d');
+INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6773a3d2e1a83480bc4a03a15a13081924ee8ced97ed1701055b989e96d68bb9');
+INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"ad26d635f4b961d3a78770ff225d37876a77417cae3eb6d60a10527cd2cd3c50","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'eb89d6b00cde75bd51b05c5f80d0d846d97e2eaf28ea0a6dc95d444d3f170e12');
+INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'435992adae41f808a24d431a0b34ddbf5ac3d9be646833202538008d75272cdb');
+INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"0c83d5876fc4d68ddbe960e1f2d8c8eb234cbf159af47dd8f77824955b5b99af","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'78b04f681576d9af5a1343a72291bba422ff069200fd81ef3ce6f600a2bdbf97');
+INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3dcd0c0735761007da3832ce7f5a9f3873c47d0d5d3e2b806b8d5136872def');
+INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"4d68c2eb143296d351c03e7651844ae0a8009183e30c8a0bffd41bad2d4b9944","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'c0e59ac5e3bc62fe19b8b1a3a811638edf6bcc21a07e00b5c75d0296823b873b');
+INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40e02cfe09b8c1abb6e94b63cd8c125dcb3faccd6b3f547739564ad87b65047e');
+INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"4f0797f7f8ab0b2770b7c5629123ff73c4c9830990875119f4eccae443bf77b6","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'ed917a92516f4bb7effa66bba8f4cfa9daf711ba0a5cad88bc072cb2ff60ef8b');
+INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6186ea926f1947ddc5cd8094eafecad004d0f538e6615f3629c08d26546a6d57');
+INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"227f74ee23c06c8fbaba67b1b7614338ce70e468ddc8cb8a6d884fefc9065efb","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'2cdd0c0e4226a428e37c46b34dcb3a20ed1e53e2995e3e0727fe62dbc1d6ffba');
+INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cf4bee6e8672476cda46296b691cbe015df484beac42410c90da37e76287d09');
+INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"cce012e3c11c649ed7964921096877c7362a5360fbdb27056e4ee925fe6d93c0","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'85fcbfbbedaf5faea4c45cbb9c1f813618be72ddd86aa22142af23dceb634edf');
+INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e83a59431656233bb412fe2bf72e1b0ffe78fd14bcfd8724b55b7c6f0d5fa206');
+INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"4212d1bd8aaac5dc6fe4d47c8356dbc1ba1095167a37bd1fd0cc8d736fd5cb26","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'819bb619916c103459300f938afa7a7150d208d4ec04c9ace658cb6cc60a08f0');
+INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348dabbcda35b91503e0175afb219c4c765eb9092ffa011c8149b24eadf346e0');
+INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"c7c8e5e7340ff9c4144369ca8a56f30c3e0f9c29dfe33b2b69849bb4a3ee998d","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'de4827d999b9f3d4bcd643d59666f2b012fefdb8c82803c1f2f216e4b9038482');
+INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee309f06b7c0b4e7bdfbe5f5929862738c8122db545c636fffe51cc5bc2ef2a9');
+INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b30046a31b25427b4ddb094ba78211a6e3f75ac173a45aa732f4d66741f777d9","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'0ac7d43b30a3177a3d184069021ff00d660a9c1a3fba92a5515e8c0067c59012');
+INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae09e73205c11ec52191b4aa043e765b37782decdfbba170c33d5c2415a43a41');
+INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"749396e3c27221fa9b14646dfc76f4199c4af0eaba73d490376ca771df435311","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'f6ec24b9bdfc23141ec4172deb37c676b3dd2e7cd0afcc12913e2d3b65d4a918');
+INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348456d38b1de61b12434665a67540b8a8756b309f36949356badacfc5376782');
+INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"b2abf73f136a990f9bd769b3d298aae8f38496d68e12697e2ba74d7aff1fd2eb","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'198abf823b2eafe69c27c5f8ad9d2227979febfc7e082e460152a78e3baf1fd2');
+INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d1b768b23242f95f4f6d5e7430dc1fcff178c26e7012bb69f449adb7e2cd10f');
+INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"9639b0de61c2a6f7cf0a9e9b114d59395ff3ba20f81b4f16cf52947338324e16","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'87bd3799548aa4f91cd38b2ef6d687b90e0fdb8598308b7b207c8289cfd20f1c');
+INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2475e76319ac0c000b9567471e1771dd19e409c1493bd95cc3a23e64aa0e8219');
+INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"d92bc42b8a1d8d5bea9bd21b5c68ad9f0f89c6e7eda9b0b20b15bfba6d9eabdb","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'82fd3c6f0e6ff79d43b0d75e06f4638d5888d41b46d89d7f09ad6014908ede9d');
+INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82e9891eb29f25402d73cfd10febf4ec5f4422db52c5528909d03709e94f864b');
+INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"2c6c47b437bcf19e9f304a44dddda5b2f6fbc8a907975f661dfe9e6b8109c47c","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'f2ece19cff6357186b058d58c485024c026ce6c7575377902cd12eb742576f77');
+INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ac11bdc4c21de16d968440f58a8ee3fcbc091fc71466da559416ac2272d355e');
+INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"e4c2effd39fa758e00ca97939dd1f1d9a5997e95d23d2a0ac3af4ca64d8575be","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'cae21bc93b23d9d9f4bfd7855dc127044b00b15dab512b7ac1702b1f823468ca');
+INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f436dbab3e5ec0617e81b3a3f7c2fda321b2bad15ba22519af6166b8e003b2a');
+INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"ae61daf40f4954d6e3a3f50771e77255727f9dd72bc7fba5a6088d6e07d67b3e","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'9c3787f0bd202cc4b4f88ed183c607d45034189fea2d274f816252a71218445c');
+INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc58709b5cce0bb235093fb2b5fd4fe6518478ffd04cb9d754c446dd15e4be89');
+INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"bde4fc33ae572fcd28318e25c0d9df37d6cc42a5e4936770954bf514d9b37728","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'e07a979644dae05c2eb17a30ab6190c369a9586dd18c09cc7a56a6417631f9ca');
+INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d41f3657240fe8af9859e82d80a1ae5f1017d62f92ecc908588ef41305f79d9a');
+INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"5b37661a33a03123831332c92c5ae492d3c0eb8546bf809ba75c5e603329b711","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'0ad95cfb31b04731f3021beba1fa2fd79473ab6cf15e14fd4d1fa06e0b13f4f6');
+INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeb7ae937b45e4718a7e289cb334b87841af38e86e80a156ee92a3f7cc2a3042');
+INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"720af2db39c50a777e24e2b00b5a6320e5fc3166afe767faf4e778ee9dd5dd8a","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'d9dfdfccf937d50371959338d3c127d293b43952ae2c1a5142ca24c13d7533a8');
+INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41ffc0557a723e74d5e67e4cf1113ce0be275ad597ee6f52f10e9330beb4fc5a');
+INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"b5a557d94ff33e200e321f345d047a2229db60aa45f65b8065967950bf8852e2","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'f78a267e94e24c4eb50f66c8a26c52c128634604ddae0bf232fcc2fe72359244');
+INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6813fed25eef2ef06ffa1e318e7f7221e7f716563eda0c1f0e22bb7f76f4436');
+INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"c4ec17550657727a9a11daa68ecb1b4d88190ce52dbc83bb18d764b6bd478723","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'1c261c338c342700efc6cf518150c387f4ce0db774dc563b7924299021123272');
+INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c94d4b16452778397a73514e8e3975a752844575988cb44e6ca84b7bc1488a3');
+INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"f8763437f47aba90ae535e1e2356cfc42f4edf240d9be69099ec911f64f407f5","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'1fc858caf02bb3cdd45c13147d97b425dec70f765f6be31ab1b7980aba8cc25f');
+INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79dbb898b7a621771dafacb09f45caef4a42d2a87bf6548392c021f4a965278');
+INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"646915bf01632a560b9429d393de0635b2553d8e9f83a6d92f029a79880cf170","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'7b791eb91543922edeabbd4f2e63612770b9c39d82530509576d9b54275f591b');
+INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22b426bfad9911e6625d52032ad137129206dabd05907261cfb3e7fcf31c0a4c');
+INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"0000546f68b557fce8445f8fe6a1cac6c813d7a848d5661bc112f36efa03c1e3","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'9276381768e1171e9bda07b0b0a1cca2d91d96d60adcbbfe62275fa57eb80da0');
+INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2045e4c49e65b4d474c12dd8db8e4faea3b5d86a7dc8f0aedd96ecb4e94b92d9');
+INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"a46538569450db26d72774e237e5e05e057d085455862152c45534a7b2831805","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'c63d7dd1891c4a6634dea1c779807c97a978eaf6a20f65d6e6506d1cddb20422');
+INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1cf498205f124eb4c7a7877ff999b082e1b9c3b4a5961380eca3c9c22bf07fa');
+INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"b89e6463177226a7d916fba3c1bd0fe881c7cc8544b4882dab0fe619ea40d700","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'02bf02d0605d748a2455c733f133451247a50f242b5408c929c234d423b6e939');
+INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20d72a62f4c9670d517e620366a26694cd7d8e63bd3df5164abf337431e739f0');
+INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"70fa5f396f6b6bbf5e669c9ebc50261da201c34eb2733b0bd3e9c29410d363ca","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'e00805db7ed6ad04b86f015b9b897a413027032466e86590c1dea59ace77ca11');
+INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fb65ed7c976b8f36e396fb215ab99431dc9237c23279627fce7c39e68632e4c');
+INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"9a5736cc8c8944fff5f4c695a6c228e161685ebb08fa83cd696334b1352b7828","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'1780b59889df06463061dcd8e5df6cf0fd1f2e9b700e448e5ac6934d38c32381');
+INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5e35f6732027460ee8d8e3ce94f1ee5b549d32096c2588e7151e6230cd28744');
+INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"14045040d34f9f8ef2ed53c11c4a6ef882e4cbdc22dfae8709535eba1cf12011","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'f06914860599822f367eb6185fd6fcb5f78faa386bb915ba89d3bbc5bca99a31');
+INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92945cea7582bdcf0fdd4e6cb31b063ea6aac639cc47fdcc5fa8b36c4d689257');
+INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"88b3a77a804065f58fa8a117e79276ba2b5250c4344e604b68620affd3617690","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'b12881078d64c35b8f69ee437ac2aa881d226cf7e9c6ca82bf469c8311a3248d');
+INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5cd478bded90018e1f0e5f264ca289f85752d3bb8e29055a520853d8e3449344');
+INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"16f838aafbd52bddbd49c4f4ad0b23dbeb9a40fa6aecd39a1d2522d7c692ad02","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'90754a48593997e2134e7644c3a378b59241c20375ba80c1a1bcb7855ec7d2a5');
+INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99e02de453879f47f57c704a2dd8656b7dfd53afb168da09239c01a500b09500');
+INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"741def8beee53dd41b1c93d0b3f6fb297daad05959c8d3463c821f717c494955","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'5a997201f2ad63f19c7afd1a33aa09017215a34201054afeba1a1ef6389a0d64');
+INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23d9d0257c99fedd29cba0c3310b95f967b08a2d1cefe63502c4223e43cfccb6');
+INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"0a31cda894930eed849e19e9c02ef0ef1d09794686d1aaf1edc6dbcb8c0a237d","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'caab47441ef61794fce55c1e6fe013e9e3eac34790a62fe63d7ec799d2bf454e');
+INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c01f08a5ce499d8796ac3dd05f6d013fa6ddd92e3d157fd79e239a021662bcf');
+INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"0fb99b765219ea3a5f10fa5f81d55b5c0062acfcdcd2def532023e3afc3e5bb1","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'447e0309181021cc240ba3155ef111f9fd406e9c8d6c14179408acfbec8f5e82');
+INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d564c153bcbed5fa6ef4176edf18b694bb6f11e48f7af3abe6da4d6fc43c6324');
+INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"d55aa61c630c66fb07fab12428d118c0480838ebbbcd0fbac08e8a1499b83eac","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'a306c8f20bb82e20b7ade14eefa9da2c51216425b95aee2082784c4a9212a929');
+INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9229f5923c8a1fde960945d4b7c2ab329e0191e3494c6b1f8c924b9705381a63');
+INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"940a2326385c0c4d191460c35e274353005ce1612fb42d615d3c0385a2838ffc","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'d01380b146c7d023d0e930c2d7441b99f821f2a8cebe14d84cb3f2242cb81294');
+INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9c8ce8c9255eda9cba98c8c83c2baa35243b2ee1f047769fac41f971ce2b725');
+INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"5fe92e88f1466fc6de163ea775fb9930f5da3d02842192e742af948a166ddf2f","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'e56a2d986c1a1a5376e2c1e647cd3d71f3866bcb138656a2f59891299b9cbe5f');
+INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a347e43500faa203898657c03a444d3591278dab8e5c360300e042acfe662cb');
+INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"3068a8d1ee7733af53b4995ec8ec168bc0790b4977a6ba07155a782e9409aa30","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'0b22b8cbbf86b758b43f579cc8ba490db0dfd6ac29eec372d027f54b3611f5ce');
+INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a79dec41c2e3455ff20f17cae03ce2e8a346171084386f97e552d1bd7d80b74');
+INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"ff216a1f3d27c07b519e4f0878ab90c2e5ea4774982b7d0cf59a8078cb811958","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'849ffb727ba3157e4c753dbc19e9f7085e5e200c3d3bbbdcb1f7224fa0f7eca7');
+INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a97cff25d5936cb4e11a0e397d22b66acbd36007023e2a4ecda1e7067fd8925');
+INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"ef6eb698344ec32b9fdd1d18680accf1d52a7cb0bff5e2afc4cf7434a3d01452","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'5966d09f8ff1403f9c36d31876637c7ccf3e8e4871fad5d944a3f631dad6319c');
+INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c22f6688b1f9edd08459f7943525e539b9373a222ed2c7d1855817a2589f7390');
+INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"9c2e20c4eb44ad863b815db1585d2d8af43f1069dc6285dbeb0962d7d7734fe9","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'47eb753ad698d8fe845d5c72dcfae5ced120ddf5b765d0f81a1d378474bd9a69');
+INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94e3da6140911dd9664f740b299b06528a50dfc31f13df9fd9179423f37485c0');
+INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"b75f05047f221109179f51bb1692764e36a8f68293b4c4e72a9fccc0c52186e6","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'4186959fe1c4d92d8453c61e06dd6f6a8c33c33d1dec06173691f91d3f95b10d');
+INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2c8a1f764db6a540fe12dd6fa3c69df165fcb790e8aa58a2070d8da51c428e5');
+INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"191d810188a47237554db70e1196e13b81fa2309d4c0eeb573181df64f4bdb70","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'37397a9152caf775213df2455212e8d2a4a2f55de9228db686389280fcbd4b5f');
+INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9eab5631b15deb0ac20ef29bc6a8a28aca7904ddf3357d8d87d9060f46959490');
+INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"6fb37efd1c21aac24a225c862e2b88d11286b2530e7993bd7435e831b38fe823","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'540c6f6a18c9ed725a6dac13671036a82d51c0f2f597f23b46e10e52c581d33d');
+INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff25adf577d41a352e6698e4fdb8182dad62ba416fb9e733d43533f4b9403568');
+INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"4fa7f80fbcaf4e54ebe864cdc7fc81078d45e457842300da587e9ac70026db17","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'17dbfcdc9f91e8f575f134f1c8b66cd85e8598c46b6fd8a03f35d0a713d1d47a');
+INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'123e5c0d1a14995a35536de7afb6dc77671dfb5c47de31db8ae0f75388ea7af8');
+INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"bf949bb3796dbf2bbf30935905093ab1fee2e740e4dd3223f2d95fbb465f2943","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'8ec3d5c0e4cbad2a1b5f3b1062ec9df4c2005648e7f5cad7f38b99de3069a7e6');
+INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b1115e9572ed1a6eb879ca7e10d173ce3f5085cc6e8873b8b528713436d4e9');
+INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"e5f52986f6913f9ee078e81ea705e9f2f5f8002649b6fa45080a3395fe5acfec","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'3113e6c2c2f7ca580f2bafa3140f9b7f2dd0541b1ed7a0d6fe967d5d1d93847e');
+INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4171ca939dfca9de8b6952e736be595aa583226ed908f250041b3634cbfd8055');
+INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"38474dcba9bc1f4452082b63a5281eb673202f6177847430e5faf3e11232132c","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'0a99da1e4a5708d50f6f11945573acabcc315ce041b724e6e561145c0079e057');
+INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97285cbd8fcb068954e6ecda5f92e38b9a5bc9d66fef8a2293830a84c62307a2');
+INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"a0238475bfe01e3f54e545c50dd345d0ae1768091b1126a6850a85fd481a8cfa","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'2f40e1cae6565842b0eb9689db2f3455d51986ed508e2b1ec9642133a0e2aeff');
+INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9938a442225bdd4650c928a020a27701f3f44a15511fd7ff8bdd45ea5e416d13');
+INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"f3ee3bb3ef907ebbd81baa164a4f59c023dd4bfe32a96b157d14eeaa5807a061","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'7c7120557037aeb62580f423d6e6f9f824add54e5e1f76bc31ea712e370b7920');
+INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb4d8842efd92165c73351e2278dc743807cb7afa86caf53b18d55737ad97e8b');
+INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"88e42f2ca73ebe9930962154ad1d75e981fef255900700a906980213b173b775","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'c2bca3181e955aae35b175fb4d89e5e3afe694981e86cf2e93c784ff3b699447');
+INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3715e1c0681bda5494e31f35361edb9be46600a5109675cfec813677de252c4d');
+INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"0b82b2c2625852fee6d69747d1d008db2acfbe9ad39af34974bf2c2f37adf2af","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'6cfdcd50dccbcc01ed55de424a3a027d68c667875dfb9039539bfc307b45f6f6');
+INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc5aa6e9da562b14a8365141cbea3176c01ac000de76193d11f1a02db3371d6c');
+INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"c4f86f312ef180a2ff9b49f8a3c1bfb363ca4a01ce5097eaf575a711c35312b6","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'4d6db5c4eb35fc31ecfe428baae84a3defb16315eb1b842f98f3b8ade63b0be3');
+INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b16fbf439edb21549949b07f9eb868b09925b25a89a7542974936e75d2b1b0ff');
+INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"5c2a47f3451c0f085fd5015c8881e0b336072751beea8291527a6a7e9cb7fcb2","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'61b33522a219f71830423ce925895c09cebe40c3d9d98a4ab7bd11904edde065');
+INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffddc95a949ee7b86bf3dddb6241f69221114311238d555843e6b105d8ff1a74');
+INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"1f79638ac7ba93860152e158470cb85467a5d933171b727e55c7655830442d21","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'ab3e3ac437bcd033c50cb20b9d1019ccc41d59400c7ea4ec6e57048f315293ef');
+INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'885be58b4c74bc1349cfeb69326f12bd820f1a9fccab88b6a0dedb1f051c4808');
+INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"66fe063bbbad8d3b7957863f61677bcb41768aa09bd8ffa94f3b543551fde349","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'a9ba1e381f114e2ca485c5f3d83f7e4fdeac731bc5b4bad571d7cf14b36631a9');
+INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a0ea86491f9a5daec2b29fddd534fba76a4d1d2bce05185283beb59b8617183');
+INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"307a9968bffaa2dae3e73953072a494d7dc3e2ac9538fd2cf11d2235ce810403","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'d2a87e03bbad917787f701de77f10af796dbe7b0d755efaab23219cc0aee2761');
+INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c0e11ff330215daefaf66c1b9532411fef08fe6bb8418d647561ddd2abb6e84');
+INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"f98c24b0a1a28a67ef5fe5546470b70ad802a873a1ea11650da7abc97cded386","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'5dba024fce9a6baf120302e652612486104dbb23c0a159e0d7f2680bc6a0150a');
+INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ccd8ad27774c06cb0ad669887a0c6af0cc4744f14799bce4841a169e4d9492d');
+INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"3d07a3575c13095678c39c78ab22439018cd5ebff95822da5a20eba2cd064c0c","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'74e9e4014c714ecd00a268bdff9d2d8bd54f0832f8e56d21e3b5ec425beb0ed7');
+INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2db3c12cb5f1866bc688fa8534fc0302ed6f73ee6675ee9091f051fecd72dd6b');
+INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"2b7647f75b93d26a0bff732e3a2df4c58dde0bd7e4e075cb89a7f11c9b4b6b32","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'afff709c837a5666f6b5fc56ebcc96e1abf23e46998b167a91016df4544393b8');
+INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00bf5f3f0834d291d95eb4e7debc986920ee994dcd37029f6f2a611c0f8a185f');
+INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"9df8b71401e3ce380fe0a7fec1a3fe2004da522abd249dbe41ee3dc1797c4c05","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'9d5b63c7682416f043c479a6b724684d03624ff5faed3fc0af6d22ad6418589e');
+INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43ff44fed4e256b02dc468c991d8b2fe63e4832ed5f2bf5b07ad2307cdd4f0bf');
+INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"97e5d595611e2e43b877dc7a8f1a5b0713efb2bf09f009b7af4277380920cf43","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'893bdec2e5db3f7b4750d779eb0ee4b148f701135202ec6de7e141a2db390f92');
+INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fe6884e8e5e4d8539745f90b17091c71ceb47091cbb292e6a09e5785b271dd6');
+INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e580ac2d8a2be303a110c8ab5bd5f4c686f730702f5a91edffdaeee1f0b0f945","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'25fd1823f79dc29cc12a0cd2cc5e51d2b2a729336ea990d662a66b731cbdf0e2');
+INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41ab166b31523fcc64a854d8e4b15d5a1e99c6a07c001cfe6024d390c581305');
+INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"f4e90d370be413c612ec975fbcd25a12a11151c054962c1f4269452c299135a3","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'44aee1c92eb9e81db667ff484920481a3409ed8b1da46092b578396a0cfc3025');
+INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'847eaa0537c8544185583402fa4f0f694654a97114f66526737739c1fe57d78f');
+INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"4da72822920fe3161e57cbcb6cda91eed27f39515bf0e5e367d58fc74211191d","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'b2e8233a3ab30e09ff09e32babbe17c0e6b28235959af0e0742a78fd98557696');
+INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528e710fe102bdebbd3ddc8de8a522fc84256616402fdc63c4d3c4f9f101c741');
+INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"44ba1471cdb469c413e941ed34c08176c7ad50c1bba20e211b3813a80bac5ec2","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'c4638d8a52dc0e4827c011b0c33336065039f34fba1ac19be56342703fcc59f1');
+INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dadf5c5dc8b297d636ea9001c307f69654573280095f4d5389c0837f15eb9ca');
+INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"f519e2ea81399121771f7e37da3f055879b898f2d864a7631c66089b3d41f4bf","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'8098931ee0309e121ec32e00dde234b276b6d7d07b056576229474112b12013c');
+INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b40fd894f9f1a8a0ae461685fd788f98aa1709178ab66c51e5a8ddd544fe939');
+INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"a9500840cbc887bafdbf4836c04b69537486621ee914e07c4119c1624ae37b89","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'2df1e054b15946d7ea0263bdaf28265332da126f2af08855c796d9517b8df903');
+INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61328354d993d9d026edac24881004e2f1baffc09cb3f806f03b8291f02ff04d');
+INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"64ad964d4da1d8c1c41897a56aca436f59b6313572aef0a5acb7b39b9f0fb54c","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'2fcaa2ac52139d6f72f54d2416e3cd58d2c53dc15b63468b01cc036e93bfc56d');
+INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'929414d98050efcbc0719c737f3f1abc13dfa3afd19c4100ee3652a1496959b5');
+INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"9d5b59fc00126a4800287f92235473c774f12700df541e87de360481f37d03da","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'d9d98325d8d1519407e8f6ddf4b24ffcdc3baec586d216628500a8b8c76397c9');
+INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4e9c73b8b11fd0e256a43d3112cc1e14b1ad06f9654c7c1096eb9352e3c7e99');
+INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"51b025141bec636c636c349544b4e3c88288bdcc545ac1b3f3810210742fd443","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'241c39f54aa73978c80709b80d50249b45f7ed9a0c9b2667669fc8a289dc9693');
+INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627abc339fb2b17df8e4e84dda27cff5cd95048a1d0d970519679f16fc1f31bc');
+INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"e4fbb9bfee5ec512c49a3672528c11ef3b18bbed9e0b2750f586a3d25cf0de31","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'2d88c79c947abc53a770d05651da0eb94a2ef9906ff26406f7658b73c45b267d');
+INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1da1bf93e8d1c0c6e9529e5e4018c350c6589f159717c73fe6102584d002088b');
+INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"f7e91f99556223cc69b33032fb7d8d42e1a44cd0c078a58cb82b3990f87c8d6b","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'07477477609c2e5824c75e8aa0e218c89d87118663c59d6da39e37dc7f2cffc3');
+INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a60c3588e44ef19db736db2e08d6f8ad645b00407256ada587eab4fed235bad9');
+INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"ebc9623688b02331d81b74790f32e8994af3659b94aa6b4663e2ee926520e8a5","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'afe8ec8c58ad129e55e9e9ac63133e82095f26fc27316f3d29a7313a601d4a8d');
+INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f97b0de40bc1c8ed6c79518c3acf72ac4973c3652cd786b25ecb5f6617638fdb');
+INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"2c535698b22226e968222a9e03c263e7e8f16427786053ca41661c1757248b59","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'f5b562eaf9dd6a74220e2ed6cdc6464debbdeeb3972291da97aac3dcaebfc004');
+INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7644433df01a1e6ec3a0fcfae060d8e86489308252b070f194633dd5480a937');
+INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"1bf4589d685eea753559bc8b6ab3357f6b4183ba4e6876f6df46f5d71186380d","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'80a89f24258d3f7671af7d4544e2962367b41512b06d858df334cda2c4771640');
+INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9725bb479b5a2e49b6fa2110378a60dd4ab5b27704ad202b82e0685bfbc870b2');
+INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"bba464b87bc827b22f557d585532601d5915ef329ff62a2ef523402862c22beb","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'2c84bc9796e7ccdc48c04913902c5835fa14ddf7cbcd4fe77e7abbcfd2aa224a');
+INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63f4c932b9c7e03ebbd24c997ef3ecfe9fc8e7f93a8d484ce6439756b4463a2f');
+INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'01a1ba30fdd36a6034be5f4aca4ef7896a67f6c23b413c35a881e4b52778958c');
+INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','1ff379f1d6904f11609bdf2b065569a866cbb1eebae6996e90322b47cfbfa160');
+INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','b7682dcff77464b04616cd19e8be9fe52b0960804c2c78dc946f5e24255ac160');
+INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','90d037cbf22896b70053813f6aa39aec9e5837ca28f7050bbf5d262b602fdc7c');
+INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"40f5829d6516e39084234f4648c84fa06ef771504f5495e85f24de09e1799775","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'a3f8bb4992ad9f605d59ee00115d7dc543edb2f6e9635055e6d7e856cfb3d4a1');
+INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a9d12782ee47f64e343e7a344e81ee827781dc0f45eb91b5420e909d5884979');
+INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'450682ddb1876742492f8fa4c941dffb6e33e7548e0d842e4873bdf02a079af9');
+INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','627f7010f86cd4008f438dc66641d4abc7fe0ea856dea996051342a841fb8e92');
+INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','6d58c722d7cf84020ed8f2c9d999e5d7310b0615b8c259e30d602cf0ef0e62d2');
+INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','2bcc1b958b8b1c7d526bdfb63a373c6bd918c23cc9299b1d6bf9b9a27163d6de');
+INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','e8a546079fe7293007399b67b76d4df101b46f6cac8411d0fc9337d0f6f5993d');
+INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','431cba41fcbd718919e41d02834269f77c0302195ab7d8832ff5d205fc62f852');
+INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','6c7113c490377ff180c4379066aac05cacf9a1027547fe5127549594e8c83bbe');
+INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','1e3e2ba653ac8873192b453ee1bbd0bbd223d76e4beb16dfb75c0663a232f2dd');
+INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"b94df045d11f891d822e72da08f1567961fb0243df0f4ef334025702131cd40a","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'e1fffbf910a13503320d6bb0007929655ca2afb0dc239b21a82ee99e3ddea12a');
+INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583d3ec73d62d07a22bed44b403cc6a1e830f990f3f2315c9a548819e2305e1e');
+INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'131f66b475c9a47b24f991bede0973be7ed15a4203248e59da86a560833d2990');
+INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','f36116971f1e069cb18daacd0563f8eb519998dfe827714ab75b6b506530c98b');
+INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','438502bfbf6bb4968a3d643fadb42a1d5171f46a0c63f3a7417b344b0987c3c6');
+INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"5c1d9b70ef3f17c6bc39d8c871c36d82e9639e5eec4836090e7e52ddad3034e5","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'af587cae4896351c03fc7eace26482e9a8b0c2a700c6f57924fc321c14dec4bc');
+INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcbf15fecc175538338c9cc68721a16150f724ed65aa7065a12e7ecbb6a106ba');
+INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'3f88ac4c0115a5c09a2c19c1e2f4815bccb690d10750602306528fe710af7a0f');
+INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','516bf0802f83df4a9b1e4d826f6dff4c68dca585b362645ee916c4058f1dd3fd');
+INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','4947b3e5808a998778d75a6b7c21ecb5d2b4d8c0f8f74b7912262d465bdaa2e9');
+INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"05cf59ff88094509b01f55638055e78ba53f86813af6fce19888cb9bc45ac61f","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'492a16e533d66f7698a8e06dfc4b905ba4b4cc33d82ae7917f461b06ce842ba5');
+INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2595ad3ba4db0164431e2d2e5393396df79d026d247ca0fd0321bbad93150d9');
+INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'6eb42bedde8cb14217d4c673099c53dd01d06d019fa8df58c9254749c2a14194');
+INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','7c62c358051aa20521ff496b06aad13d92935f5fe6b7aa29b11a0b38542616bf');
+INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','214f2c8eb83257a4794adee096a3813edcf09303ae80b9e122d1daa873ed755b');
+INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"45f70031485c596e497a39605f5e0c5d44ffb8e28016c8f41856970d19b4f731","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'4a76838888aeac92d2285c99e2e31ee23b5633550fd4a58b09d3431c2f450b01');
+INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc804bba6ca0003db62afef344d0d70a9d3b4575016271376315b407b360ff21');
+INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'32e8ab7aba01200d24abb13eba1f18c042a09622440884661c6ec981e051e8a8');
+INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','b5e7c396c55f35b9f531a4c90624de86f99ae58374dff4fa4b56e7bb9557eb12');
+INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','3e1ef5a3b13f34571d9d21a26e3e798b356d1d2eefca6c2d0f9d02e837f97029');
+INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"d37b622ca0ea82a62aac2916bc72364257a746d8f70a302ea13934a6cb464360","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'b2edf76f00e895bd39143ed7a5fa96a81f97843d855684e6cd9aadb49ee2a471');
+INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e866e81cc4f2043caf895f73ab16f7dd05cb0eabb673e8def8ae8ef06441af5a');
+INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'1e0390753c49814e3a30bbc7d6a9060a7c55a4ea4d8614cd16ec46d21fa107a4');
+INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','3d1f47ef21fdfa5d5649c6dae56d257a115002977841f32a38c281042fdf8358');
+INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','cf7845688c2e18c6225255ec68cad53dcaa419cea6dd232eba6c5e25495cbfda');
+INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','d59217330c5eeb330855586fa9498c927e22cfe76bb93691c508fe0175806f3a');
+INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"930ba28dee6b3cc8ce77fcab02237230c0adae11b7958ee6912b2a5b9cad0505","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'c15d999b12e9471608bebcf25d290ff1c295b6d220b4174277d71f53bc50df90');
+INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebf68454af504969dc2b1632dcd70bdfd0e89c14710e0bb03f3f633c3f6f8051');
+INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'d075c191ddf66cc9997d2fc03ad34ceba04fcbd0f1e942c5139c2dbe8a3da42d');
+INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','a4f824d84cfed8ca84d22c8f7d3dfb646601b92c18dff7c7a4146e7a4490e87a');
+INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','829d3b0d7fe9ef0f4c9a318d8a24eb36e3faa8f5e1a7740a9194c4584af21901');
+INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"61d47596577859f94b9405538f6dfa58779faad355d12ca180ab36ab34cc6db7","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'19cefe5c314463ac898f157386ff9ee024cf66ffe68908e467cf0d092f2db97b');
+INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7272a403c8b4330e2da4c9d8f2d21447c50b3117ba7226a510bbd15230d58741');
+INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'f4d24bc52b7f03b806dcaad8c3b793c657521cafafd06ae3527c899180947f1d');
+INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','405168d6abebce2e05bc15a7642648be9da307d30a7a4558455eef04a61fd058');
+INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','96391a49c5d67b007508337475fd1d83edf8aa7fe71c446c15c22187a785951e');
+INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ce57dbec180ab5c9b188fb7658699ae4e0db7c49fc3d4825ab5cd163db4be839');
+INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','12e42d0bb6836c2cb8c5eb3c23d8c3ce92baca0017868c0c0f45ba2d256e6d96');
+INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','0408e349e3c989f694efbe598cc98cb43ff09b8588ba3d2e94901106aadf9ced');
+INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"52dae041d3620204b2e5251d2aff81c3c532d7563a802b1efb75341b039c43e6","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'9d1398cbaa769f67aed63e5fcc3aafd20d11f5f5829c872ca777b9e04b705983');
+INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7d9c21f08fb481668ac6e268bd43dd4283b5a1a5442f06968d3af5f99fad680');
+INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'6a7a94a0bbd18c692afcd732a18f9bcf15d303eaf0b1115edae9622d4d9e5c90');
+INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','afdb38c9a81e321c221746d0b2754688ac27f97bb0d9fc7039e16cdc5a46813d');
+INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','a8a5e6df1606eb727f399395a18f9d831409a3d58d67e2bd306ab9f016de4462');
+INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','f234a2876fd3dc0282eac2cf3d54f7d32e89aed0216e6354376e83b7a190ef0e');
+INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','136bb6e15fcaf16e7c3c05d77ee3d610a2f26b501ffd7b73e31cba2f6d59fa82');
+INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"d22bf6bb8a648289a71bbc0af4a262c43073bdb9cfed6cdcffc13798cff15182","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'c3b2dd906cc5f1ecc04d7f69dfee20e8b6900e11de0ca8af333f445b3df8dd82');
+INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e17b9c58f5868d90c800ae7243d25e771dda947abb3658e49c3febafd208cdbe');
+INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'fcc9a59c71aff9dbe60a57fdf523d3ca945a5874a2dee8619ad12bb9e06ae8b9');
+INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','8258455a1248258d5bd341a37527bac1d8e170877a27c2fec65fb48d90183f59');
+INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','13c56e9ec3043324cb9428099982f3a4c64fe516dcfa82237da4a5104136ec9a');
+INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"6fc454b12684651e8825bb6ee751f550a0535e508aa6efd9e8da0337360cdd04","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'8055761a9c949eec9016263d9dbf013f3cdd2babd8b82ce972f3a33459470396');
+INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8844d09628ccf63d9bee5436dfb5ab63e242b71fe06bb6b5792910896fc3f9e3');
+INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'5bf43d752f41806df4e82d95fa7b611f6f230e59846d029f442744f782282349');
+INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','746554024b7dd941acb856be68dc84813329b83521242bc00852d2dbd337aa30');
+INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','9b6e1741192f315814ef21e9d4ff73376d876bed54d57d0714022da56858307f');
+INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','edd35d7cb65bb33179d6c0e7664aeb8a5abdc31be33086d0400b4a2df1b1e6c5');
+INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"624934c6eec1af21cd764405d67271ab9ef74d140a030dbbbe3500db1ea961e6","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'35870c687c8b876929ac8a23ae0cd9cd487dc301395537b93171c38c5ecd7a36');
+INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59a2cd240787c2f7bd7a690dcaa2c8850adadbbbfcca205661f5c29dd61241e');
+INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'e8affaedc1ed349aa6829cefd8a93c2357621dce830481435d183d2187bd591d');
+INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','c9dc9e6ed526963258b45bbbfe57dfef05e91c36bc0d04046887ff10346e1bfa');
+INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','e54fa716a9cc83a3531f5a4d30f47b85dea1e481b6c1b1175af6b75c36a0fcd6');
+INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','4c454a5feeab6df1f6e67303a6e20fa0ac6a8cb8a13bb1e9a52be5073b50ca20');
+INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','6131befc2361891b9420e13205427db9aef3dc48fb30c2ef6c5ae7224e8e5ade');
+INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','ddee72c08806af739f4b6877e54868bf5d86dbea90f852d26436b4e9d65b8c15');
+INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"6a160b25500904a8e2fc0ecc0f61725c5253b352212c04c9c3bdf6a2f51fc58e","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'c32254bebf202160900fc8574ab12510e7ee0ff954e2b3a9f2e052a89b04ded6');
+INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9d4f7f61ed587ee435be92e44c60984974e601b070df1c179f94a48ea67e9a5');
+INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'208f595725afa57c17bf0df2d5f5457350912d616cbf4c860a63595c0fcd1685');
+INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','2f9e9963338d8de7d98ff66ec0cb3053b239916f907c04e3a43d2f92bcf63b43');
+INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity reissuance","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','e186911f2b06a8fd1c42865fbdbc4f825e7a287938c05e48d0c1b47be279fe67');
+INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','f58b5bf76ba7ead42c6c8b63759cc3a61aee954eda32f411a2beddfe13136d49');
+INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"086d1f7a591a18bbfc77dc239eaebdbae88d4b1b3feeaaa73ae4160b6affcc02","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'db9207d0d585851b63df46961303c99104634a28b1f5cdeffaf3e7efc7ac54fe');
+INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f778f31620def8a3df1bd8318d69698e50c62adbcdd3393eabbccf76a19213d7');
+INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'29e62c8de67d2d763a191e9db5c3a4d19d2c128a302855e1863242d9a116f66e');
+INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','2aea10b2a6177cc620647c61cbbe265555a2ec8cb7a9edb8f24c67f4d6875e59');
+INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"reissuance","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','47e2002c4852586b1f677d5e34c75ce546e9bf11e9ec8973b60dc2ae0ba7dab3');
+INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','041fbf86f57ca9c3212b41a530c9e8389f32d98cd4263487a6def85493122561');
+INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"1b67e80c2ed78bff0402e73625a62941d060bc4f27ddaf8fe7154f74fb52d915","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'7a65227a8bcaef553daaf8a4478eb9bd54d01987acbd397ff7c152d2f166c8d4');
+INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98c3b0ce5a298fcb97624a054c0534b11d31d6ad6ef453346a92e94049ebe2bd');
+INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'854b08d75b4c9c4f060a82db64a36b50aae4c25253a49a4249b868ffa298a5c3');
+INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','ba5555f33a7f1003abe93302ce2e8550ec9673f08d8d5020515012544c6cf93d');
+INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','d8460ec04c121c12a01832f4bc0e2919533d9d52b8e47fa49c1761520e393d2e');
+INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"6e84c64caa16d362b020f0a840ee5fa183a559c15b70b5caff610d8daad52749","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'715f4659ad23a91993e2692f7d41584cc3e595b60a2e63199548d26831835ecf');
+INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e96f740973d3e748ad3c127b37106c685d4c66f2c65f70c0ed38fc142a2c6bc6');
+INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"a3b51846c0b35f957176678cae6a7edcd009b9b36e2596e2fa26b3f6d9b51392","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'28fed8f71a5072303ac53a5759d8f8867b7db9167ea9ee181b0d977a1650ce77');
+INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a87870dcd7ecce84fe417cd5fb6edcfa99182ba59e9d5686eff2db6ddb361c2a');
+INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"b0351f3992fa660d7e32c30f900379e620082f39f059f1adecb204afcf02bbca","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f5bc2847afc752f6fa72154d3b52b4c804d0d138714c57a50528aa612f5bfcfc');
+INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a54b64347f6ef8dacb5f0341b5781b17ea02d4d421920ab600219a67d3d7d87');
+INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"b05a87dda8ffe8ec3eabf14e352c9bfcf7a41d059802f8bbb5a6e1df651de722","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'7147f73f77a14f3c83d5d163781d5e2714b4fd5e59f57f1d8277e7c1bc4496fc');
+INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd0821b2d8351b6c793122b6a603a9768ea028af1554a1501314d164b78d4e2f');
+INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"b3341f00f5fd0b73dfd94077420635517d58688c5e641b1c33ad43fedf837248","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'3ef9152d9964275a5a19948bf6355c8cd1d01beb92811f2ea3fad89d011995da');
+INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a1c48594d907deb05210c47ad4030eb5c3a0defd2da4ca67ba8c8e85ffe6580');
+INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"579d901dcca6e7d2399219e7b852ab5ddd8043c9337d8ace4c701c212344f4a8","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'1ad52aa4f5ddae7ed72bcb020d5531d016e593949540fc7c3ab81efb87187b17');
+INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d10e0554a90d309cd70b926cb2e5052981103e2823ff005a83845499b22c68b');
+INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"0fe6b56f84cda6614f46ba676bb47010aab75e0b5d2f3e5b5da23803f361238f","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'d9f3c32f5d99e491e8d31b4d82c6a14a3dc48b12c383c6b195272c14c4d4353b');
+INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c3a60d31769b5c3c39896420e7e4368f13312e7b4be5f82b7d0b7667aaaa341');
+INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"19e3f582ad9ad6250e8057ec95e180bc0b7b02255ee1729935f4f77449e01a2c","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'708f351b97db723fbcbe1280da620b706286e6e8a9ceb5f23f81895cd407b282');
+INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f37dbf7bec424ad442d15ec02839c94a8c8a83ccb7c3ebdeaf703b078702839');
+INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"aabc1930e9c381224cf7b7da9b0bde42e4419ea03cbdde623ea2da37cf1656ff","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'86bdd7dc7a2af4c51c19004598204e02e39e55af1d4f08322dadbdcd301e3040');
+INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06ea463137553a9a66dc04e8eb8079c2aeeca5bbaacb1ca5448aaa731f9bdef9');
+INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"b3897b1dd915774c95bdd265c8fbb1a1e658be0e702f4a8ce50f49d7da133297","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'d10b4b960cce2507177241a2d1bc5c7aa2a24bc32ef0c6905c5434216b98ff6a');
+INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'242d01b4e8767243cef3e57964f1a6f4b62d73f64eb6cdee3b1b92a4abc66fd1');
+INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"aa83ef41420cc7843cde9408ef559a19f994482601a3e5fe45c43f08898c4f54","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'308adcbac8c4eef777742c4d5ef927da2b7511257ca4e62aaf31b833917803ff');
+INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07e685d25896483b96715994cc1a31b1b91d089e774f65b4d50ec774d3e7d945');
+INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"b55631834f923612a73b659cb27ae27ac880e2fd26bb79f706200023c5bc4e9a","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'6ad4fe5ce17aa3a4016b8a7be853e5dbdbd4ceb842c597379f15fb692ccb8538');
+INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed8405ac2f510db716c619fddabb73660cb0353205a296e55638e69d0118dfb5');
+INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"c132bebc107e3136ea8cc78a45a644239f989c7617ed2bdeb5eb300858fc6538","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'18e1ee42d7c4a90048a150e4947893e0c821500c2a309823b8e39b64cdd814f0');
+INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18aaeff443bf81a9524a0ce0809479fc00d05861026cf5c116c54dc6f238d35b');
+INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"85e11a92c5fc48513ae7e83710849b08180eadbe29ad984faca23ce667fbaedd","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'57d8a68b3fdde71c6baef60903fee4ea4c6dd701555b254000b6756ff7a42d5e');
+INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3756622a8614083e6ec615fbd852fc533935cb6c65aad9a679ab7338e024ab0');
+INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"f793793de86957ef58013a06b6ed779c4c8c330cdd984894693d3ca268c80496","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'b46300d27f470bbae9bb1fb436d2029291220a5dda4b6f8538b40cb5c44109a9');
+INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ffd054dd1ac0df2acd70cc015bee11264bf38a1acd08403fa963a187b1599a8');
+INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"5edfd69343be580e6f03a9c9e91a9f7927c91c7cd21553fe1249ff516cedccd0","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'d6871b6fbb3f3d422b14d0dc12c02216f1e1d63e964a201291e6f31fa3cde575');
+INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e21b23fe251cc8bf98862c7c41b96bdde1be270b88c0861b8cb64cff3f6f5e');
+INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"27476a9cb53db260e8909ec5922e944a87edbde6d374408e7ddd093a51c9e070","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'08e5f76cf56c81392b2ad46cadc0b8347acbfaa9612ea5dfc63bb4d9a7377cf1');
+INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'763819001fb13976a676bdbbaeb7b39a280aa05c3dde599cf7397bbe8fbd4516');
+INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"07725c61f535cdcc7c1ca6b0da84db507c5769ea9e318cba17c128ce1befc5fa","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'59c09f216d4f59586803b842fb9713afc16752c41e0949568f983df0e2a02c14');
+INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d937292f720ec3d7788a33b485706d152bd1e2eedf79595e4ebb07198db5857b');
+INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"3d5cfbaac42499e555831c587865e356612e3c6e46d94b5ff532ed2035f0dbc6","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'684c6466781cc44b03dd298eac7b8d93900d4d8cb74806962ab4c19affa69c97');
+INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2936aadc952dbbeb9752ba38d5b0064fe1aa2c934b99df077ed4293dd83b58e5');
+INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"4841d7271edd65089af68a93d50e3f86933bf4d05548541db6ccdbf71d736e54","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'c30a700b01bb746e96aad7de29eb6a45aeeb109f535ab1e0068def82b51c917e');
+INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82dd339120e9c4ccdb8096efe84bba39a4ebd91e64e7d4bf43741ba1abbc734e');
+INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"2637a61c95e25b3ec2cb739d236bb8030c57f29036adb7bf981f323cc39cf06d","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'8a49f9f59554ee9dc1fa57b32c2308699185c59fd9d1c4ac64dfa5d6dff5e77d');
+INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69aee8a174893bcce44f02e3acd72f7b833f161760a4cf68abec96a2131a5bb2');
+INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"c09f0175cc685bf77e9ca37ce6a069530c3a4277aba629628f7e70fda8d86549","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'b7cb06ed6f7b9128b6325bf86bc70178c38f6afe53425f40b2bdaecff80992e9');
+INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a5eed8868e99690c035da3839e0526ec0b5ebaa0ab93037bd8608ad976e411c');
+INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"c7a23246c5a4bd1a227775cd80e66548b7f1e4678d5bdd55959de1740f51268b","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'358096aabea7cf6037c4946a2b575b4e75e2afa04d32edde3bafb1122fb80981');
+INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5dd7200c50f6550f131c877c79317ef03b9d4f0eaa0dba17666078eeefa0cec');
+INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"3b78c856d3143016af3bea464ccf64b4695596f7a03594a6b53a918f67de7085","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'d256040b0552c6939302f08321acd459dbe258acd39cb5d07269a831ad94ced2');
+INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be5b0ceeee892c79fec5b7b88424ced87e82e03b16d322a8a4d34f5807ce1147');
+INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"acdb179c5a74ce2b918cef5e10e93bb6402e182e461761806483e0b2baf3f2c0","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'135bc3df6e267d5f80429f47020e283c916be2c5eac5573a6403961732ff67b2');
+INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e3aba8486a360aa6ffa1bca87adff726ad13cce9bbc943c2acca99065cb9c3');
+INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"c47d6be26962bca640d2ee4fe08a9c5ce88d850fcd1a9c3d24e696620b583e9b","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'8769d1ba3b073230c406596c158d275fae50dff2c32a9edc2733980d4dc90e9c');
+INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb1a96d4dede4e039333400b8be56f624d0e7f00c79e460474f97eb39491a9cc');
+INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"85dc1497834c1b15c6af18bf2b4c481409f89ed98caffec52221d181d1e59897","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'5323d38622c59ef197995a756374d2ad550fe68d668ae9442e4cbece599da7c8');
+INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92d903475daf69e8e595743ebdcd470f4995509865b88735963453042fd25054');
+INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"996968a15427d4f9b35b08d9b1b02a56c8428dc360092e4efab1c3fc2fa82842","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'fe6fc52f3fc92e05f662626d0de69498bdc895fea6f942855b85af69b2b78819');
+INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e6d45b5f688704aa1813a2f5f2413c7ae65afed21aa95cf971a5ec5e024d5ec');
+INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"b3ed6fdd31f986960976fd3d1812a9a97c6908ac4771a5470a64df9547418e7e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'d06f36557b62524a27e1c806722deceb3157208bade3e063565a5dd56694efa1');
+INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'613a320a3b75ff5d3018d88bd16caed4ae305f4617441ddc7d55192e649847e2');
+INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"72621b5af8bc398e97c0b2cd3c6b44071eee2613d41abdf85c9eaff10b6b8bad","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'619221a43e37adc0bc750a2bfb5e983c5a53bb238d277cc0389f504d30237dcc');
+INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'016460262138d698d91e6d577dfadb444e40d9590ce26bd042073a939327a704');
+INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"eb2f714de272f1ce572c182db7c969f22f84995e4b2f0d186faf010812f2bd7c","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'08bcc0341ab3d9f674553dd5f42d9f3cdf0200f3abbcbf288deed67a2759acae');
+INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c8cfa6a13624db82357d11bab8d06d08e82d49f34b67f4a3a7e78f7cafaba4');
+INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"3f60c7681688bf8bb1e08f457dc677cec77cb3fc79c555d50daff1d7ab15c503","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'ec9145d2ff24aaeadb2317c577cbd716588e28405fa556c5eb81537fba459121');
+INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d4e5bdb82ae4ebb175786192f2275bfdec5188af42ab77c9e8b4b4f7719f607');
+INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"647c2a25eeea0f27d3334e58f9e0a7563b2ab8cca81bd9880d7f0f85bbe745ef","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'de31939f7f92e716a36ec45ba1c6898bfe6d0bd1d83a25854a53447ba66d714f');
+INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a200db17f16754d0b62b79b8940e232d15ea83161a73aaa2d37b9f41e113e3f');
+INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"8644014a3cfb577341f9010e93cdb4f3da7bc04d214715e11b9b7170e6d805b2","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'445cdf9a52e897b550ed96161620903c3a5a0692006b4eb2361bdd0b601c395e');
+INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b8e2f791f40efe9337f2acefb4f2af83007a1d5c8b3b000e208306a5562331');
+INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"f9d7ab71830b2129ff8cb527692755d60a9b44fd51dd3304142f0833652f43a2","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'b94d154841efbffac35314806f5f0a0e499efc76c1d41f548f566eae626be0e3');
+INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d80b668e6d41d074b51dae49bd60576ffe06676d4c46ed1c47544f88ba8889a');
+INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"9102ee9621eddc59389844575d3276e577caee437a74bdf6d5ddb7f30c978753","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'d042734ebf17984cddafb2c5cd54e203757de15abd2c4dc9ad057f58e67f7952');
+INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9041188d1161e4d6e327c41f2b8989b5de854c59fb1a19542535f0fd24f1391b');
+INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"b422d3aba369d1ff718bab0d5e8718448ad9f6f56d88857afbc9edc90dda5a1e","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'7ecf2b475369f8b6c8f723d8f9b885889cbbe4655b8c5986561143fd43aac9f8');
+INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b68066cfee2ba381aa56f0e7ab076fcc04c8696d72bc79a40f27e787019c890c');
+INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"187598a6a8055647c1efdad1bbbd82f96e11188374a121f14bf23ba0e51f5f1e","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'cc022e2523f9a9d367d6add761080f0d4d65bbcd74dac31e5ce0ac9c53627bc1');
+INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d6700f83543a2952fa818fa6aa9738efdc30fae01290cf7ec7e0e0c18d02ec1');
+INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"051f58d9692cc8eb3bb0f85ec07846684670f4ec8d697e8bd8cbc4ad65b5ea11","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'0bb8dfd483085c759442da3ed25d5d1fe05792083404e2df77e8e4d532bf0e55');
+INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12b204290e66a2a4cb7f7499a66a4674c946109feee5e1ead0de53a842e4a268');
+INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"014066182ef2deb918d333d51858db41257802d247501c3df7cf38cd06ea295f","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'98d1b07e82d51de991574eab69bb9114a41ff832f96782e411ff4fd471cbee9d');
+INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'653ccd5700c1cd62fde0fa104efbd1f3d316c310e57ff302574e576a009c6e2f');
+INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"eb63655fdba3bafd8b2db80a5890e9192722636140738cee397360541a8a5fc1","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'3221dc3a664aed35d7be87e11a0483262f1929b81a9e55717effc38008bec150');
+INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'792d507b53499df2975449cf49b5160385ef5be3671f8f47b960755028b07135');
+INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"bec1523e67d65b982aefb200ce1da4a644716c0e5877cb9ec54e1d86c9983a54","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'d2e22f42ee6fcbc4e5af270a7d0dea8e583068b9b133b191f36f118060348d3f');
+INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b9a38ab646d8919eab0b3e4036533299010bfc8f6e2b8d407f578d31f60421c');
+INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"514956ec19bea6979b4ffcf31b74b233152baeae385c1362a4e0ec8682e129c7","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'781f42293a72302589515872050d58242006cd65b2d094ed6f0a0443c5dfd3f0');
+INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fbf0c41eff2eae0f88e57042533ffd23c85d9cc40836f7f9cdf76289ecfa5f8');
+INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"44af8239abc53571c2155a17d75e5a9d143bf0d20f681cbc81504ccf88727c04","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'9c9f93d7a6fd0b2499755dac6e6ae0ce9999d20db6cc9635f3a976c1ad4a9e0f');
+INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cef891a7f882e8a6950f4f36d8d650d59df543286ee33021988013c6d4d3cec');
+INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"148803f5671b6c6e8acb48f38bfa937107378fb496acd68d1f0e5571be8c123a","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'8c8eab9ad9ff82fc98a1236e7378686bdc2349829e916c8d60b41cceb10d1d3b');
+INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'395dfff81f645aca410e26726fb9111d92b39fdb30977dd3cfdf7e05ed678c42');
+INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"fd7f4e92adef34699dd0f6acd232e616d1657e13ea5ab9809cb1128522b1f07f","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'727a0e856b50adc0e26f84349a475ca9ad67f196bf242854c83180ffe6b9c1e4');
+INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72b2d48a9c633257ba67ab96da0e43135d7b37945187529be5927697e08dad82');
+INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"8ea4e1f130055e805bb996dd15189034d29a892d14a980db3e4dd0fbdda79ec8","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'0b729d83a9f5e2afc83c3b93d31fc6877070c7a28c8d65257d38b124509a5525');
+INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f474620955a8cf137dc867f104f0e8c9a6afc0f7f8b812a64668cf2be9d12a0');
+INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"87366186f53ca7a8eeca7ce436faec867a7d2d9bbc78d9ee1981b1121eadce92","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'17c045874a8cc835722805d77948a49393cb4f9c23598dcadaeb3aa591dd3fac');
+INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6238f8d91ae81807b7c7d19be5d575df691fa9ff6c496131a39fce678d228195');
+INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"297ac32dd5d160c4f996cc3304d4200b748960aa3db1b8ad6eac83a9d005659b","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'4dc98ba9c52209dd92920dcf00d6a690b5b8f2111f94c9748be40e29d3affc54');
+INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fcca45ca8631e3ac9b2fa2105df18b4324ded13dd132700cdb095033edbe7f1');
+INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"53cef4f572c1881f2cfc889b735f73b7f2f30b4cd8da5ffa4a97e6837ab9c0e5","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'1458bbddc58eeb4a65bd3cd6b80670e253e05b8c4f18c27865c1d1cc46111a39');
+INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'510d49b4ac2d15c1941840cce305682f0ea92f88ab87aa856cbbccd1de8a402c');
+INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"0a7e9c4108dae596aa7efe98f41ddd7bac323e16068180e14127801a6d769e91","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'141487de1a3425e8d5b139103acfebd4584bd2864d052f9627c8f3646e2941e0');
+INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'826f88d2f361c0213e6f97491c33862b8016db058125de0342e416f0dd472619');
+INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"a959dd943ffe80982909fefffa27b474b822a8d82ab34f24bc5f56af86b7781e","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'b94b1653caa2db2cfaf26e040f3001b6e8b79c518a433d1137f9dd0ae9c2c2ea');
+INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c0fcb1fef51e1b0db23f041842637dca48cb59a0ac85b22063d0849d15b8a4e');
+INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"8be097ee641bccb50eb7498f0366ef07981b01e64b5b1979a4cde7495e85ebc0","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'352d0f35c808c235bf8c58188a46771125ed51bc6d2379b138ed9cd7bc94c0fb');
+INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48b4978d847a86e69fa9e55b899779d6e9fe78ac1ebf091bb6d5846e2ec74be');
+INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"d4df5ba45e26cbd17af5e5796e7f22681161cc7af5a0570cd8d25cb71685f059","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'b369c177aa790d3d6ef4ae9678c892de188a8e75a646f56caa9a04be042dd568');
+INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8daed5848e3b5e9d392874c045496f011d5f40f9dfee7f2c4a9f58f2f608fba9');
+INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"78f1036d3d2063f358bf0a27fc8b0dddb4e44f0cbd083697e439d5307dbaa7c7","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'306fd441b11e6a2df7d1781cbf4d4b719099e5eccb37e6ff0529ac8379eacb90');
+INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68308f27da86c687d2cbaaaec0033be9ecb92870fe23bf11683e8bdbee814ce7');
+INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"af3d8ca73a122e4851105356df23498df5f2fc1ff3398ac078fc27962aac622f","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'a97b6b754f2fc68a331a780027001b963925cef455b4086cc58c5c1a95724717');
+INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf924eb04fe2e5ab9ec83ccd1b2b5358bba4215a02f0c4fc620090e82c54755b');
+INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"e2a7881775aef920b3066b9f6ecce7041085b945de142875562bb65e2f40269f","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'554c7ae5ff869f45198b2f8d7687382e75bd81c085c106090a552135eeb59eda');
+INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'736ba236aacd8c7abfb260336d5353ddb54fa3f135372f07f30ac6bb25d1a229');
+INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"817325fa148dd39b8e4449274055a1c7bf46fb948413064c2f5a10bf99b6373a","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'34f4ca32ee765f4f62ab197a024b13b7e6a1386908245e6b80fcf99b013c782e');
+INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9435e820dcb6f4de6d4f14830e3f5b43280625e572c35659efcc8faf395995c9');
+INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"b8a6db792a4f373fb53b6a376554646253c138753a48f0005a1219bcf0764128","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'3b40e3f1c84960529571a2c49d69ad13543ee039a465e7520097429ce02fe2a3');
+INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ecce1034c6728d3160be21e2abdd866869f43ed961d92bdb66812330d76116d');
+INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"9a5355a93495d86366d29e5274ad2d7abf970c09f134c778851f735ff0f8c387","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'7dce79e46b7afc49539f6b727758fe904ae580ff97f8de3da1ae18ab18bededf');
+INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4c63a4dffaaf11cd58abee9d3ea96ab6aa891148fe0077c9f91425d4d23d4d5');
+INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"c850e09446f0a52ec6404ced1544e54c9de294c7bafa6e6957e25ac056bbd4f9","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'eb32802c06a4543e478fab0ba7f143a2e18d153b29bbdf8bb7e9e488d7a8618f');
+INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbebfb36b5f69d7fbcc0c8909ee4608e8e465961cb70a80e389f5a009cecd478');
+INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"4c7cd1688e4736625d5ae8bd877af13f0c77f2ee8b6a02506108792b42804a38","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'8f17cff8c2d8295057d35d767ad48089830507d7e90449d8f8a6828489eba2f2');
+INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2102880fc2da1a4c53bd48a44650d9c13b202584d3e297b95f35e2555a897ec1');
+INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"9f424a07865ff4bb8d7431b8a3139b46fadef1844da81374666993d7ed66f922","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'993d959f1a881c30e89a03d19fc1bd7398b18535d7c2e1dd20a9ce27a45edbe8');
+INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f7069303a3b45c06aabe4c5160e5da8fade83dd16eb02959848eb8c946d4f2b');
+INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"aa920d97a7205fe9cea1c1f6acd1655d454408355eda0c11367715ac4818a56d","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'5173761e01329bae866ccf481398babb5aec28cbabf8e9147ce150dbceea69c5');
+INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'488b6efae80a850025bd9fd0f898ade04cfe3b13ae28b4a51b8b9555f4b4967b');
+INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"fd195f7ba187d845d0b094cc88e0db9f65b00c98aec1106a857ef405d482bc1d","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'badbcef2c3aac0a32d928fdb8c5e986b8585627ae19bf79a8ede3bda38427f13');
+INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da05392c60839d9193709b2335638a44b97a817fa25138c434ff7b8e4d1ea5f0');
+INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"a972f87acd57c8bbefb7bc372e021216008cc4ad482ceaffe9cdda885e03dfdc","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'5477566c887715cea87a2c06830a3f03ecf33fb844944e71792f53f00d531751');
+INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d0e42cb3e020368299b379773d6a7e662a101225e8dbed879a9b3de9d9df664');
+INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"151b050b1997cb9d24fc2bfc4c649433d2be4068fab9203f01ad75a4b74b339b","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'3d727444a65ef9db590a9a0ae7d9a65db12e53546117aac19935c11dd1ec543a');
+INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e22abaf2376ad7b6af9277e7fbadad0c82ca06a8d4f2db78f10e0c0072e23b8');
+INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"140a5d6a6e2ff7c655c8a001fecb2984ef92b88c7f38f85678188dfb0960b170","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'cd15d7d8f657bc7df5cedf83efc2ecc4a1fcd563524080fc729ed04640ac7b46');
+INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8a42fa700c2aadec64230ada86201e182cba09a9bf20e5f97a51641a909eb0e');
+INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"35b1d8731911e0736da008b74e2c12fe980be036e1db49770bf655871cb259fb","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'a8502b6effb16162fe990562ad97b145b78d7b26635825f22f7f5fa9ec7218c2');
+INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de8b7e7ea0ce965e9b5d9e1cfae8dc02cd95f1245228dafbeba114f338000a8d');
+INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"7428246a3a61bf832ef19399079941cdca0f63d803402ffc2f545a3818c6dee1","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'f7f0937bd5fe5364cdae9dc9db4c9bc12eb65b645f597a8485df3c1100c47a51');
+INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cfa251b23a3060d36fc58e0ff2dcedb1e38dd076aae6c443122a9bfcd275ba4');
+INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"b79d05b5c0be3a83925d8c966b40bafd0cf6d2c8281db588dbf0b8ba543d233c","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'848473bb97fc5207005ff0b264b311515ab025dca7fb07f2e8443ab974c6e749');
+INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f00c131bd6bc4600a0a42fb5e56e0dfe0e8f88bbcec7a4cc427910988105850');
+INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"1172f0a9041795ff450522332f728ab624d8622c69ae9380222a2d081dc0c009","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'6ac8a1b3d9f2f47b817f64bd17f27ff5a640288672a113b96e91cc97a1cad740');
+INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72164de9117d8a204a8d07c0777d5035d02d4862d211d3a3ede158a13b164ff3');
+INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"13c68f42ff0cee68be1d5f4e3f4a20eab37bf861727baae26bed7dac4a5b3b2e","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'75a489f3b8aff324ff743717d0067ad97ea56ede26f1e8c1eeb10dee96fb5be1');
+INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71384f6883d317c84088e357a0704b408b9e167dbf6311ff014d2cb88cb3922c');
+INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"6da4d2e4e687a0dd00fb6771c3373e860d1869fe211991730ce8767a3924930a","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'706181eab08d095ca15aaaf372e36109bdaf21afd4645d09235c764805b5891d');
+INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4ee3af67ab3e048dcf075739f06ab0fd3e80059474df037611428deee99f591');
+INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"87c4cb256b7e744bf4bb9c028ada9f03cb3fb33f7a346569270ced535a140acc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'4148f313edc6be17ffa9afee76445dc1d75fe1c03f667c911d557a950c054b08');
+INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a40403569ce8538df8e74184be2bd6d5dd887c6a414e3dff157a9b1170fb4d9b');
+INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"e6d9afc16c470f029d83bc5688b74fef372ce3ce9729502c4c4bb66029718d52","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'f396574ee59237c2c6e3a3f08836a3bb5657b85d780700c9e42017adc238fd97');
+INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c77b9405a5e309a0f14265135513c4dbf8edf9d76cb652043d458f14743642d4');
+INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"39ca55962499e7a312b65dc560e59af1fd7ed815324ba4871245bee81f27142f","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'b3fc6d1fdd5384ebd161a2443c7e222e0234862b52a84f66dfb9a2ad472ac4a5');
+INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29cbf9173e96453ae2358b8b530402e91a015ee5b7de31c4d0492ed7c0f4ca22');
+INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"2d7b4bc4a272129ea2c9d6b5ffabba1f9401980b42b47bad08461532576ac640","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'abc656c4bd1d6019aa58a7b4b1c2a3d3ac1a2b56909436857bfa9c326575141d');
+INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09ee44af64e7aa4d84351634c2b9a9aaa99d1a6864bdd5d2915cf5198741b260');
+INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"c37025b4cb18e69f8996e322f0540d9fb2524db4ae38859ecb56119a77d9dd90","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'4393eed2ffe3de9388cae5a032009233d705757c37436f30c5d808661ea8afac');
+INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55b743c1eca79883925cd881c63ce4fca8918478842d77aadee2791fba8c14c2');
+INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"44333c1fbc3cce8955d3332e12464c5d7dd930aafe1484b2eae3a5f8d7a9365d","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'be61a589d154b878199a26a51c69a9d6ce0812c4bc621f5561018884a5324cb7');
+INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0f66cac63275f6f014868bd45afc36f691f3bc71ed048abb2daea3ef2922828');
+INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"16ac28193eec0393435c18d24fad2edf984750bbc25aba58946e6e718f8bd338","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'1ab94bfc846a3bc35b73a739cc60e5f91e78d871854588a20800ded751f34c7e');
+INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8528ec5eea032edd09405ddc2126e14508a0c728f5973fe8f013f9060ca5ce8');
+INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"3f5b9f1efe7ef5c80a968126dfbb01f52b462087a0109a26545dc80d13790e04","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'92b0f81cb78a93d4a232f7cdbce66e6ab6bd7ebad3aff640e0e87436f4772b37');
+INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7799e7341034052555ea067514e76938a9fea755ab32d30b78c0aaebe5f03d3c');
+INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"5e5cf3715a123e73f08baf1bd2a3471f0b2af521da005cbc953663678d733e6a","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'98e598eb7a8751e717f69a2be53a8b2f89778b9e15dbf697309fbaf38c4b30fd');
+INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56b99f531f3c99934edad7654eec39946a0e9f61114f097d9a9a3d1242d72edb');
+INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"152b66aa4612046bf3f69f278f7e650bce71216556952dbdfedd2417aadab7ed","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'8a90a7b407fe09eab06236ff5d9b07707c1c0c396d48c213c40d05c5a1f8e225');
+INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d344b52162287a2724bb68953ecf9e25ee5048ac5f1c4c798f11c2ed0e3860');
+INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"5755372731f19b400c2457ff201c911c724e8a28e6957cee53452000c7f8dde7","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'4f4ebc1f61e882150afc5ef16ad9da987be9c6d37abe81944df92f60ffe52436');
+INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4304cfde0da5c1f0988cf063b79cd0f3e3de461ff103be9b0ab9f6af40313e');
+INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"5e9645b8acfc57e5637842893c6ba66daa306bb2141d351a509b6f176db61e54","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'ab236df3946b4ee6fc4b6a3a67323f2a378a7ee0114107c6885cfd4238a2b594');
+INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0d72b3a3bfffadde39dfaa7d4a69a838c2aa8172a221f17c18e2364abe693bc');
+INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"7a5c5aa34df30375a10c02e40122d512dfe7c27ec690fbb597dd000db891a021","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'d8366fc338b8dc61c3a5f6564ac7fdc52e6ddee7d995ee5451505452813e49c6');
+INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e36e828ce5d26dec0eddc41b982cde60d567c2a6226a1c1dc5d8d3c2b06f6f1c');
+INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"78b6c7393349880c72ffd6fbed6bcf04c7c028bd9ba95714c5c549e5d62129bd","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'476415fe9265d2f042892203e368f5f3c31096763052551c59e58b8be4529242');
+INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce8e2f97776255b3c8f21e4d378e74cf8fa57433063341327919df072366061a');
+INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"35b8bfa4ff2dfaea86dac467cbf8bc2746ea25ec23bb63a185999e852216f155","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'39be333f7dfcdce95c229942a888dcb23bed70e782aa1f6873b38df3a67ad422');
+INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fd27705d444769231661fe4086b541205e21f435589fcef3b6a2c5cfff55f56');
+INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"a9dccc9708940608179b8524499d8c07bb34ff3a1e938431c1d77a5c20fc1249","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'72305ff08476ac296d2513f0fbe1b366478cc403397188351b80882d6b700e36');
+INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91f7f3eeca55330757db7b862807489080abcca95386741dfc5f013a6232efff');
+INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"35cfac507aa4fdf624ab85dc72d7154f46f183596a34bed1a60014a27c6285ae","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'a26efbfc24fcfda46184a28a4d8c6ceccd109dc2cde393e63f299ee784b7e401');
+INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'427ab14fe74f4a8fbce2c528c4b686b1fea8ba488fdf7e033b2a824ed67d64ff');
+INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"b2602edfb952cc3e4e9539bc38a9ee49e933971fd47237c42778a39a4d8efd44","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'3b9b5985d9bbbdceff0854876f8444680fead4d86c3c99ee8ff270e8b10aaa21');
+INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5297e3a69c45da7f65c66392c9ea6a1c7c01c9ad9b6fbb891142b69a5b20abe');
+INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"fa2249ac9d2db16f2071d109328ff02df2aebdec916bee679b89b5100c0f7e9f","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'a9a1f0eebd94b2b54b8cac12cb6946d0ff8fd84a30df09c4c557e9a2b0739bb6');
+INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'689375c87459c2942f7b2d301f3f43b9740611872fe83f10204c84acb48cd4a3');
+INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"70bef389a3fa6e1ec5a6e3a6d8d5c2afc9f7af76c929ba6f48b46f24359d7b6a","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'293854c5bd1d6fd214eab6fddfbb37c65b5f38c510722dd8e008d1152c2e25e8');
+INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ee20d4df3c72e29bca5d418cf37c1ff2660f9e51b984c06f90180b1e1b9b83b');
+INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"53957a0ac723e36951f1c4423e09ab7c5259a88654ecad878260c082792bbc12","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'b3f2a777d5cc3570818bfe65ede9d2069a7b9100b5c60a5efeb0b3baa2e5d268');
+INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5174fed35fa6d334aff5ebdcf08f24c3a43680f13d66f959306f23ef0c0b2512');
+INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"2d5af408810e4075f3d957c69999abb481dc3e950cd616b92c9df0e32261781e","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'d288c6f347ed72e391b0b8e228bbaf5bedbca3bc546cebb4b0e5f65a3bb25328');
+INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a061b68703209c664c0872ac1e0a1ad4956759fd038af7b95837099e4860a507');
+INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"0d662eabb735aa267564ecbdbfc3a244574284de980c67494d8285a7380e6116","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'8c678fb3967e3bbd8563bcd4475bdd2a28762c86abd812503669a14a554f493e');
+INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'350b6ebe36e8f1f1076945bd75ea160f6f8415fa8b980d0003614e80c148ad8b');
+INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"7ff8320d35d5cb301432d711ec4988360ac3c2a81e7751fbdc78a2f1119e8fed","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'9562e7b66ecb28bb446cf2984738563c17694b072876d5ccca346119764fddef');
+INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96d1831b5938392577bbb50ccfe6321b3d626632f57bc182a39f8ae5a55003b7');
+INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"a012b5b4352afd51fd4b1bd5709e385f3bf5cdb212bbe99e2cca68de491c4db0","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'d492bda371bf51bf84040fcdc5f6d3f9cacea199c68df71eb6683788e12981f4');
+INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af5dec24ba8aa549acd8813b075fef8a8d5c95a4b1b353f8ba26cdadfa845c21');
+INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"f2918e64a3525ff790be88f04d060c7fe24144818d340cfa90361e4ee688ddf6","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'a5a84976a7cac04454dc122b845ec648f492b60c0e94410de766677e0643e94e');
+INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'551c6d4cb4fcafa5fecfcee78983907daad2a6b86b2e58d0e3bccd5ffd79111b');
+INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"2945a07d5e95f38bac8f3c506d481f03288a461050c31a933d1abefae694aac4","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'db93d47f69c0953824671082d2614e3d21b0ed0e7ee8ba84d57043fac532e896');
+INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45f12047d12a530fee3cc228d0f762328ec8ed680a0b75465b052a64e568251a');
+INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"0e0c36dbe732237319afed9cea84d711b9eff7643f6d6a39031df4c2779a8161","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'d1141c24a13d9f78be46bc360fc18ed199ee5ab6b2eb8ff6cf324c3ceda327b9');
+INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9279afb46eb4bc1e4df564ec6c18d072c492977fcf9fad206a58570f8ba72ff');
+INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"37046f25c853793d3b67aeff55d55b88ec468be97297d6415212751a77e1e699","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'6b6512e7f58e8fa014f2bf1dd3c75acd48ffce0c5a03d9cf4e81eab7ac8260ef');
+INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c381256f8960525bacf55e946fbb14cd4502554640c556470aad4b29b5532b4');
+INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"1d6813a55c87558ff4f76f83ae1031c8a3256294592f7f3245009634ffef4bba","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'34f5d47a220fbf43ff29b0c04cfeeccf06dfcade8495d45d457096282c9dfd2d');
+INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9083a7a81ca1de84abea3bfdedd700cc88bc5dad62c2b52ecc246817b9f736a5');
+INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"8f37c582e65141859105bcbe6b7829719b536e1bc10a49cb1bd858885551d5b0","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'4304b4c14cf36584efcf841947eda164a86b6f2100b9d28ceb79575a2d6225eb');
+INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f36a749d8d72db6450d814e070b727cfd8632f68a8291c14852490324bf2d740');
+INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"c6c60d14f2a1632c741d9c7ade5c5d3b809ef46212288fcc2577031b688d7a4a","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'91bcd49b4a04608c294f87dd59f8dde27df657fa96ee4c8f1b264ade75941c24');
+INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4248abfca49196d55f2c45726545766151f6861fbf6da26131b4c25243671951');
+INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"759e6c1e020dd941ca2b330f09b13ace383e8372390b94fe47dc1374bf512a4b","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'8ac49c8517475e490f416057bad81367f6727dbc8b51ff76cc087ff36456db76');
+INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc54b3a4355c3c284b53dfb1f44ce838b047c604f9f2ebc559c13cac943f5706');
+INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"0deae5db369a00014094253ea4c2e18b8d47c39be5ee174fc9d3d651e462f6b0","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'faaa1ec56349a14d22a27a6bf84b7eec83d6378457ada7c42de455c33cee37d6');
+INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'078d20c0ed31448fb13bdd7a4dc7b6eda6261cdefbb2367c77935af478d8e189');
+INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"24532ddb646f9c8b137a341c8a96c698c4bc68f7b729b6476953e60ebc76b19d","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'48adc22b662635cddc370d69a5ee354b93224eaf3801f5937812ddf2c127f95d');
+INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf260f19a43edf7f84ee4cef8fa5560687f8805a117a097487f61f86f5635cb0');
+INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"c8dbae5e6ad6bbb74dcd774787e221721f8f10896a536a45f4ba581232449aea","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'18d26862f3c92073795c79c77727523ddeb2110317633665b7af436028f17f1d');
+INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e187e5ba49dee6f348907d68ddd53fd318fc33639eb7dca88550d03226941bc4');
+INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"41adb84f61b21dbcf0d72e8700aa686a3b0480a6b790aef7dd298232cb5427bb","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'622019f0be32e0ecdc566a8f0895b464b459bba4e36521caadb3e93495862843');
+INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c74eb7a4940aa84116098977dd790bc8bc2c256c68949c72a7600f5e27b3817c');
+INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"fb5501d2647743f35d76c930765a5df2b226b798d1c1e39995d9698f8975dbe0","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'dce1cde78169fbd24ebfd87f7dcad64042be1205f40ebfe5023cf3fc691e1bc6');
+INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b5fd0aebf343d4605e10305ee3d15b43777d897ca00f74a5448892b97c2c337');
+INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"dadd596ae77bd1f94fc5da78525ca52a70898b9c94f8c90ee16d21dbce71e2ab","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'8c60c863d776846db9802c44a3dbac4180a7b04d2320e3cbe1e50f0c364c295a');
+INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02d565e9789f0c5b8ed9927b01ba62dd243d9837686c6fc6472dbbf34e3ed785');
+INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"36d03440afd4f38ef6a77601dc0f78b9627b883b700cfae60c8d72a9e9134c24","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'27a7c2e23715316670f30af3a16619720c4de41b87cccaf12d723ce3df9a2477');
+INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1e05a0f9e2be8cc035fcedef7f6b2eecb87a5c478df89c1184b44777c131b42');
+INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"c2516be4dc99763c3c9729e4500750c3c6bc282751fa840bba50261b55d78d1d","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'8140d34d63f1fe8f0f6f924fdaa7ac0fe632595003bb155b22e86849f3097f33');
+INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2e10f84c448880e8ee5fbd7363b0d4b99452ef1d87cd9621cfe8c5e1bdd4512');
+INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"d28b0def6c30f405a4772b0c79d951b65cdfdf2ab1974c332eed0ae90bc6cbb4","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'7525b7fa2fa22d0113e15d82da190f0929a9ab7ab6b8f0535f429b4bdcec45a5');
+INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dc74f8a916acf825ed73f909553fe48c0566ab893bf5740ad1e255def0c8f5a');
+INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"d459913eef43573187e8ad1c6eb5b0b568c6ad8f81c9ff8bcef33e8f90d1da3d","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'60c4309678b370b6c361aa62b48a52becb93ff259fb7a17d803ebbe4c9ee63d1');
+INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73631abdd3be8303bc526c5944399594d9f05ee5d1b299ec37ef11db67d67ba2');
+INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"e60149bad1d1707535622f581a174706ec02007bc9cf745201bfcd1de425f23d","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'b9ef4f22af8bb57b7b7dfe44d97a3dfdc1ccb1b0967b98372e0d92695f9d7dda');
+INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'621485c3603de77f3d99d5aa88f53d57ca691eb51e61293bae20f7e60dc2d145');
+INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"516e650d9d411a8da1e7fd3a4fc2d9586c0bf4888080c8a777bcf7a7d9ed959c","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'eddd09d4e476703a97b20a559c65c617f3c29d8871cdf9be5c6dd7367251cca4');
+INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dcb5bfd010384e956034e58cfc0122f16a2cd8cf396dfdf6200ce112206109aa');
+INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"2b7bf49e73705d8f3087cf6e9105af6ca437f4500ed459ae8578963c4b2b7497","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'4df2982dd39d8b7f969cf625becc7b715e62a7ac9ec2e486a442a43e528796b8');
+INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73a541a41c9f5cb2456edf839af605a6bcd1fceed1afc85b23ce6ec0afed8536');
+INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"34eae453b89d76bcd5396946c248050a29ef931a2df0f28b1cf2b0e95b8c6d4c","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'50994ac6cb05c05b501c5a72ba5a2808ae3e5e41b8a48b10986668af88cbf2e1');
+INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'512e80dbe76af10981413eaf3552c3ac218b173efee02d4bd9196e3e95625958');
+INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"8949c7e35cf5582b600bf0cdfc6fab59b8dc4aa5bd428a690ea7722d20e47759","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'5bab70976656c8c8a734a35298939281ef1f6ee71be6c6996f21574f034c4bc1');
+INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cab56e3f5ec8ff3a772b00adff2910f6c87a570f33bc0b3ceb73e1dccfb2982f');
+INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"9f0b86012f8bf36c17f7c3dd1ad2fcdf6d7f8bdd307f75f1c44c31a31ee80da9","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'6d7ec69bcca39c0b6bc643f01de6e4bf560d7e6f1b21fa37c753e84dfb18a965');
+INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1b91dbbf570a0ea987588447071b06aefe05b3fbefb7dc382a00799d77c478f');
+INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"7d301d9e81f060ea649f888ea9f86a71a4fa1c81803d7097b11c02819f37e860","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'8db095f42cdd4efd67eac99b6b0717a0bf6b2a13e50d7699c1cf3f4108220c8d');
+INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8b262b06658472c1b2eddda1f781c13a818529380faf3acd8edf285dcdd780b');
+INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"916a66f7a82dc37f61cd55ba904767f3470aa0a01c8efc64676f56e9471337ee","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'5371ea4b8495114f37b5753c0eb52f6483e71fbdc821db5f22df8dffae740041');
+INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9b43e3dd23dd9aa084ba769ad5e9027edb5d18c676155a3f04c37fe3e01ca0f');
+INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"795e9868fc7b21c7c3b93882423c46776e928ef3bb589ad3a7563e71aca294da","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'0dd1e8cc2fb814475ecf018a9e8d7f61288f11c5f00cb9a9f331a5b6a36996a0');
+INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92c74b2121a5772142b0c5a721bb7f7a48e995bdf49bce960d2999ccfdab446f');
+INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"6e3a1fac8679a6ec025227a845f469f006034af44c34e6552d66888177ed77b4","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'e68ff7d1d8014a660225f813b7eb837037ef2bc506f7216d87d79e3da9d7cb42');
+INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59753dc821b94764f4a6fe7d922a5c6b97704d98f88371ba1c276b8fdf469cbc');
+INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"cab4716514e366e297d68dea26c6115e37533800e7cf5efc9d77f6118c26a9b2","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'e712affa0e095e94a46f110732bb7059afc3db3f77f9c4b026b59d150d1445ea');
+INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbeadae09020881ac4f81b77797b7896856246dbec72a5d7aac97c6e15ab2b84');
+INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"216db55f165298733175aaed6a0af3cad65d6a756b32ab61bd08b2527ca2c125","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'b439a973e2b973f78024cf4951b6bed113a76b1d06d54feccf209c75d9abe35d');
+INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccdfe9b604b8df8a0e19f6f748ae3fbcc09fb053bd4906d51bd6ed70657e906f');
+INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"6f86f4bc7d8a4e3d2a957c50ac7ab53ac24778ea98518e31a9c1c0c503a54cf6","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'a8c8c84bb73627ca1ae28ee20a263507a87fbd13104549494e0d23b7a1f7316a');
+INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3abb1bb12a636b0019953c9238e08eb02ee6dc34297639f8dd66ecc57631e2c8');
+INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"7b162fe8efcfd71be3956bda007ee2ac3f19c6e2717167c6ad4c65374a3ba19e","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'51dd43794b8b6c5594c7ba00ac248dc34abf067d7c7a538a34bd385f45576779');
+INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f7f2925a7bed280535db1006f089903a596c70d857a842698ccca5ca62e140');
+INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"02263467d6c228054852ca87fb5837f613c03c97f195c6bd0241c88ddaa4a972","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'090f7e559d7390d0329ddab8a2526cd36af0e723e3f332fc6b789441163c6b02');
+INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a06b84cec2aa2fa69ab63e1572728aff0b021bf8df5872c8a3ce6c04b13c578d');
+INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"dd1a1c3549588e7bf19c0b8922be68eedbcead52701e7e9e28adee8f4bc06b40","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'2fdbb84405ec1088cbcd673f87a9f0ee3644e6eb9881a9113c7a8cedaf6e786d');
+INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f2bd58b2aa1488da470ac54408399395a1490dd2128aeafc71310f59a80d102');
+INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"43c6887a6c72ec8782218a5127c54d2d9f832ea21e7b3c75bae7a08c60388bd6","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'3fc0cdf18a760a2b4029738f5595caa8f86a7ded113133289683f096a008e2a4');
+INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34dacdc6c09fff7f8c8b639fd316698b5f9e895442c18ad136650721dd819895');
+INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"1571d520ab94cee90a1f23480807b9c117936fd17fc2a7dbdbc4626fb7345d11","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'9cd6cd9516e3a742e8d56613871489f461256bffeab1d4beb98568cf7c160eab');
+INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'576f5045f6ab92f4e76bc38c1798979efc30e406f8faa81fd5cb7db13095a6f4');
+INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"43df61debec53dff5f035e4e38c885fb03d3d49eadf67f86161b63e8de14159e","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'6ba3cc4222dd6c2c3bc22153a2874ced32c402317a371c2e1c57061acbe55172');
+INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5e747a87829077a81cedca079aa518c2106a7d37014af9ce0231e6e9b017dae');
+INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"1e547dcd71029e46e5216ab77cea02471424278cc5ee9413c0a193dce2742838","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'dae4909989df69f982390b5c27f5c96ea369b3690cb2db07425d1f2b555c84c7');
+INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9098100132d69de6695bf175a12247a487197c357c7acb04f09da7e25b1033f9');
+INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"a9742221f4847c4243dc10c5b16136ca3afe384dc15c168faf38e7f874f594d3","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'76e2d2965a83501f4ec42260abd6e83d698330b9bd7b999a43683221dd2ac17f');
+INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'555c6e65af4121832aff50e6448d0e313e332112c628456c74fa8067889abdd7');
+INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"efbfe186ba093ed52f0721acb4eb35cf5cbbab136743ad41cbe4680ea9f47074","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'5de5337bb4c18fde2423afbd32d32672730be8fe43c4c5961041c08a9b70eed1');
+INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d305a7c6ec2d3b3315dd00f78c52af29f11bdd92760bce6317f5fcc375a4ff3e');
+INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e8b10d57552433f463f1e0ffb4125c404fed0edd4006e9392a32c53dc80df0cb","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'fd240a12051a656d3d77da30759af5804ea9eb6293d07f4d6d13b9d6573526f3');
+INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'575da0403fffa3a70557ca9d05fc34a7a424d6562107bfd4422ffa60d2951ecc');
+INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"6adf1deb27a1ba5dbae17302608916408f89a535342d35b580dcfa5c63cdbfe1","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'50ddf3b6fac9e651f5926282cf3d17e2f037e9fb8bc1dbcd687925e29ace2e1b');
+INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f2a834027f08d94711109d2c59810ac536adb7ab9c71ee56f781a75a1c1e398');
+INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"55784f483ad47a1d2d770ef328316cc95135efca272ec7a29cea3fe529e94dac","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'6a0bb8db52ba56d0e912b5ff674401a3426c642a0c54bbd2847967693533d5c6');
+INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f853575a4a2240d42850064d6e9ea20045ee3dac22054b2a71527bc36902d64');
+INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"173a591f47e20f22c45645842070f1aaf26bd4fe34482df1961ed91514f503ed","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'fcf9d8d51c4c7b451e978b8a21850c2dc8c5f05d79f48c4d681b308aa7fe2510');
+INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ccb3858177e24a22a9ea8de78519ed6d82b9ed986736e2325130daa51e9bb82');
+INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"1f59fa2d5d68bb98a56da510f17227bb54ae7fc1be83759f412bfa9139fb2028","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'d35da3bd3a0b801e7742444db16883c215a8e99f04952aaba2b2c5b416478b8a');
+INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c13bf3fd61b8081acc9947162180280df320b1c08c9d1f247936719e5538a65');
+INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"6b4966d50541c79683bcc898431b375b29ff04550e6121c6b05be1860075a35c","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'ff6de6acad8ec08c2fb0f05275d132979fa6008ec9bbe904d707bb2b04ce7fec');
+INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51b0f94589ccd65813c8c34de5fa42d25e0536b8ecd246b800243e01ee32fdf');
+INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"7dbc8b54a7067f72247eb37047895d28609a7c6f99d3345ea62ec6476e51025f","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'76047f0a0c5ee77d395df5e1a1947f3b18692cd952892797eec074dd551358fb');
+INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99380d25df39f6f1d86a4dcfce37eab416e3ee07cb6b9da309e7774da89ef967');
+INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"d00bb65c3d296ad74ae8b847fd54ffb0d39e2c6a4424713a8c3d8524065fa971","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'be1ac8fb61e9347abb60d086554c82fc10535c98750382619915dd85726a846b');
+INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f0a96483d93e15e55f8b58174153b258527e1ec90fbac6cdc5aa7115be26e77');
+INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"5fba7ea49972341cffcf73a94e4e79822a9912d37bb9479529d8d04a9f58f9c9","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'f5a9ef78cd1c5b6fcdedbaffb3d84e614c152b66650de0066e0beef973ce0061');
+INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4114c70fe28e13e97c6fdefd219125790171b6ab153f5076ab648b82e192c67');
+INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"ee5d2f2c7a52c515c2b732c16951a5a4bc28f192a485fac34786280c79e995dd","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'eb5fb28e6fc598ba042e742708759890d31f2e9042ea17cd83231c4a71579cee');
+INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'093531c3850e8bfaa8a4e3de98f53c96cfe91d8c25be161809565938d27e1e34');
+INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"7c75707088e96538a3bb9054dcfbfd084d7aadf4a600e2e4fb1c9f190539f36d","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'8b467546460d24ef616b0ac386eb2f4bf2ea01b1b0133a3a1b98d514eb0fe613');
+INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902334e86d446a2993755062b91439e0fd6903ba16f21eed140d0621541564fb');
+INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"4196f21aa3f1a7dae2df161c60f946f164fee7f571dd33343bb898b98e708323","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'3553f5177d8e6a4fa83f7037038c5ec6fe9b5d45dd598b0d8c4e0d68748cbc84');
+INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35d5ffa8ce903d9114cffa23d75b202899fcff4e85c71f374efae95bce4322f0');
+INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"9353fb7552f2f62bf2bed57c132ff8db34b02e45d35d8bac59c4b8af942e7aea","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'87ec42ea93436fc9cbb9f2d8d6e94743ee54dc1e9de4ab63953c2f6457b1dd04');
+INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff967096805d49deeb5f80db2e5a81fa8fd4f123667597b9a3bc8dd0426ef038');
+INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"a80a2513e09b9b94fa7d8d63f75adfe5bfc1b63d01b47a64f9b675f880fa0e0c","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'c414f5d749acdc03048a0966668c3b707c85fa6f2ae3b7ad0690ac8c8c1fc88a');
+INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7efd9a1c18a6e9c583cece0715ca6b2f6058b8f7bc5e961870b93e73f118aaf5');
+INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"4e827684d9b5da8930adae84c99977f6b7a2cec6606bbaac6900f1330b34d627","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'fdfd86ff38427436390491de4fb32ead8b5ec51534133aa11f92afe750d6c0d3');
+INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86bf931b9d4ec6cde901f5a899b683ae5384f9b045b72c473af9e8ecd0ee5004');
+INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"3023d5b620df212957a759c348d88041dabee74948ae060bf337c2b4b90384ed","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'e798dfb6e138b48ee76e446216cd00caa89da4908a279201ea7f4a1aea8e1f9e');
+INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b70e7b5a221e00da45657233e7d117897e3f329618607ba10dd0d6fb1c86506');
+INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"6f5f434a19a426d95162078c1826ceb7e48d49a59c4aff96191ca67f22fc0bb5","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'fae23941284d738af1f708fdb0040e16d4594da46839686009bd25e732c61bc0');
+INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a346aa34a9b50f15ab3ab3b36c70b245d88ae9098684d084ebee98786c114881');
+INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"17618e31edf25d02d7d9a73fb7b3b5e027c403826427547fd9950b6774df0e3a","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'1b4543d909b6893ed0601e1b74eeee4267d26e7369f3a945c426648c0d499b0d');
+INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a331daa969b46a93216cd9fb5f469ccd7d41bd8f5e1322015d287c2b9c1b5e33');
+INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"31245f12d3eadd04ae9ac9b8408a032f62645c40c240fc92547d6eb5ae2dce6b","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'50c908324ffd72d154f5a69fc79258a9cdf7a6783d9a7ceb7ba8752efc1fce07');
+INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'121a7da454521c8a8a55b439c9343e4f60be43c803af6204b8daa10c53fcc1fa');
+INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"1806d9d4c6ae0e5fb500bebe257e679df3d452f457b925aef003e43c2232b3ad","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'e73592a8bf88e34941f16ce4a02e82cb0c834969a020ca76fa4263878196b0ad');
+INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79ba679088f8b760942be290ece94b639c0dc9ff6a9141eb8f81b72e415cd1f2');
+INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"b11dc2a9eb66c3eb29a0a3b8881839132adc4e607709e26320c9c14111825857","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'1b957736dd151acc75bb701fd9ae487c5ddbe081b5beb8d921854f94ac589188');
+INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbabe7aebe08a1b183d5d0b4d2c188c09e7f15a056cd0031f2bbafc545d66596');
+INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"1f55d47cce2676642fd81bd18ac461c9e8d862dd48548117f0d61125aa9f8e03","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'54ba96ebd74865909cdbbda88baac924a548d3fb737c2e583bbc13d01a2dfa41');
+INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0766a7a7fb533288a8e96fd4a0d251c5516f290e31dca443f344d1906ef0893e');
+INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"3ebe0207f41a5c9dd7e268db3311cc89456886f11d257b432e905e6c2d1ab2a5","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'cdfdb5652914575a1d4d01d52b5d1e2a8d3878e9050f4602534d784ade3e5983');
+INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02dc1fee928c1d1752246238eb9d19a22e834ae782be55ef57838da5a5632eba');
+INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"cf92577378f8b09c4103667a88f04fc28b046d62615d02bc2f9dab69057c5e17","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'309145a957d21f20a02dad95225bf6d94762f92f6f7872c8b274722371ba6e7c');
+INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84c2fec811042b1a39f270bc077d1dbeba02687d93bf6ef12df7f3361ed5329d');
+INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"f37d3670aba3a7688d5eb86096a8d5fd3afb9069fa5acc6f2c4479fcd60fd4a3","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'cb95b878b91b4bf2b1ecd9fbc09944cf71763c2b86943965f8a1ac25c45471d4');
+INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f6e6113b82f8e545b416fd0875a730f69a39ebb78272ce41f19bd6fe929c700');
+INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"8494f375494e3c9404aed3ddd3aaaf01b52ba5c8003f4607cab4ce2827590a1a","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'9fb26ac2f54c27752979a5f77fee0f56240ac962f0946c35b020163ae22f801c');
+INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9fdec67b582644800d2a7aff3b119583878fd0c7e9d8bc4dee45514c6d8a7f8');
+INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"0831ce5de96f826a12fb7a871164308afdd4e1e9f3dd75d2de5a22350d093353","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'167f5db57b45ce42f3ccb1a8d1f5b37125aae8b9bb3dd6d383d473d05ed1cc48');
+INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87f844efe59a301d0eee7d2998b0597bca9cc0a25e08ef77845fc994462d1c4a');
+INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"cf78638ffd89b36786753e30256a6b8d0144d028b361e38ff77c69737fde0f43","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'017b1439bfd84965162dbcf47b14fc48e972b2addaa59d681485b5a147210d0d');
+INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02fee0c70be3a4314039cae1dfd16b1517cf6798e841b019cc71d7f63d751136');
+INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"b525a86c2037d3b867bbc8d0cd7639bc696a49eea97b99895a775c87c65583d8","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'12796496c9373b6fb66f7fb452ac257ae8774bac73cd4d6ebaaa9fdb135c2b00');
+INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a44b53e637964f550c6124ddf181ed46d575c2296e97247c57af5d7814817c6');
+INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"0f24250de541f26fbb74fb1955a8bdabd8000cdba48ccb3a4ed769a8a3e3a3ff","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'d541b1ddf78a947155f21c1fdb9d9f879a573999cbbd60de6d1e70ca9a6950cf');
+INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f6bdf20894e6bbe5e379e14bc0fe6ded6b8b023ad6317f8f32a73ea1fe86bd4');
+INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"d8fcb18316694e727a14588803bdd46f88b9e3dc274a9ce76696a7665944a94a","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'216c8fa98e193536628b6fd2addc3e81b2c5bc7d095934a66a104d83e47b338b');
+INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd7582ab929f5202142bb13c0e523fda1761112483e6d4a4734a0f69feb2682e');
+INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"afbd710e177c6d2444cbb77c57c8b7cce0587d9f08d93c77a6d77202129463c0","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'50fc350e9dd7d7b439d806bc64f02765c88fae832a59339559acf0091471e44e');
+INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a01535213dd5fee7e704b380406ccb2d3edf5e7a3e0e3cecb03c4830eeefd3e3');
+INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"81891111fc43ca92daab85026153966955f2580b74f963fcf47d7442a1198713","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'1bc163f0eaca493a251df232d8bdedf00bd164e534d113554ad69ead65918914');
+INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'448c1c2344e4c38a2a7d959c68835c3d1a80979bb283360702b8191a032edb08');
+INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"8039c2a4fb969f7e1d9d8e164d7a75224a5db25113d064da0b5511e264a93532","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'62b9100ff91aec6fde5f42b396da2be17864d9360eabeb7ef33ca085ba84cf5a');
+INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7d8e5df0eead063ab0861e1dff34103d05b03eccd7f86107b290a4f48eab900');
+INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"201f06ba8bcb29ad2f74b5ee77f3d9e6a58d0c8db65b51a33cdc238f0ff2b296","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'2240818e18e9c676a0884b19df3a8e6f5ca46d9e2c31eb38814d805228c09d22');
+INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4adede1760e36c1806b2d6b7ba2feea55deefc27ebaf29ea0a0ee13b80848a');
+INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"ae165351292f3bffe75b08022cde38db94762e96a98d5a5119a5c38676b98654","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'29bc9ddb00267692b914cda4026cbcc9b3a9a1ce5994940efaea14fc62105df3');
+INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f207ee308143c6bf8f7349b156d5ba48ebf6f5dfa93ee2b525e4a224953b776');
+INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"70e10c1d7bdab6f045c84d998d86112f4b66c18d34ac9bfa28482d5fb2b3acbb","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'bb9b803a75ee50cc5491f98f9e7e43b65cb939973ba2aae6bf80d6fc3078db5d');
+INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a924a96eae6ba4aaf6f2e0979ec69e5ca0431d27685ceeb6f3444ace0ffcc49');
+INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"eee9a2dc2372c2160aae86e38d4d3de693e7608c518f2f415a9b995873c852af","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'ffa8725ad762bfb4e04825d883ae773db61e48dfc2bb35327082232411b3f61e');
+INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3197c9e11896092658dba5bd22983faa3a949102bee27426925292adf0210802');
+INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"c5167949c03fa8cddee58c868c2e8d2ba26120e4c006036a6594eac04928adcb","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'968efb656f55ffc1be13b733ff19b0221e1f55b42d9fc48718e94bcba83fbff7');
+INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4dbc370409ebe10171c8d5b291a048a66a5df2fa026814a08cc7d0bd8ec94d2');
+INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"113cde1c0fed76b41d3290402cbb78053621578d0ba3fc65bfa53ce42098d746","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'1f92cfb025bbc7b450304e4f4bbe4b5c665496cadf7b08b7e67a7e789b074793');
+INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5269073c8159ef261a23dfa29b19e5e7d18aa4071208b7e13fea251d29f3019');
+INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"8679be965882c71cd14321d7adace95cfcc872d03b4eb3c24352b7ce6806a31a","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'2d8360e24e1184f0c941cd7e94d604f65233e5f754c84ef23a87048ab11a1808');
+INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20bac5b3b10cf1c7c81d5b3d04cf0a6e92a3a170acad33464acb1ba4e189b2ee');
+INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"541c9d8613f122854c989b9edc899208e4d84d72267067ddce4df927e3865dd1","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'73728b4df321a17940bb513302c158cba7edf616e02126b9b8fa72704b90eb05');
+INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0354edb817b0a57403ee87d98e9dbe83dc9537d46fd8835b1c9190e2fe8f319');
+INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"1b977693de35f2c9c48a5af2fc529eff0b71730b1241d493e278ab2970943a24","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'0fcc3a9a1b306e62d955e9610a2cef7f2107351049f57b845d91e56b28f95b19');
+INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c467bfde59edf95bab9e68a68c2d5b26034c3d501948b4dbae7a7f043b49991');
+INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"c0b67d556e4a533654a24b3ccdfd4ecef5072118195dee65c7740bf63423ae65","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'19c0889aaaaf195db4d7f3851089173f00c07bc591486e34d81da94d1fe8f1a4');
+INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74e7f7f739f4fb681c032bb9840b09dbd0a892f18c24c15e66064408a91ce77b');
+INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"bdf9020708eff06a99f9d0091820eb80868d784faf336e0e7eed6e2246e7f46a","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'ec38783912e232d5e8e2c41604ec24eb09efc033419f21aa5bb9548037a66be6');
+INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0b7570ed9e1be1164e5df2b0fd5b2d65c35c064c37e0d76286044f9334a9f8b');
+INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"e9dec9062e926e1394ce7810dce4e9a0fcdda4e5ee401e67e547113d092b690c","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'1e6049b45568ccef9096a51bc6c02c477fe7b6ed8683223bbe68b5fef0d48845');
+INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd6535d3c7747f7a9edb5f200d35ba74cd7bc90a7e69c99849852ad0a37537e7');
+INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"a96c2989033f189cef59c58e81c9ead54f13782fb93cf5bca337e8bf8b38b265","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'0a5a8e62cd873154d67b83561715ea5fa901b4e8ecc6b0ef0c8fc89813f975d2');
+INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca06523dd7a27d4ba9feaf0cc658d3746b26b4d1fa3909e84f57dde36ef028ab');
+INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"cfa3b4ecc1ec97e185573a9cf950f1cd3d0eea0b34fede1201a40555daf18752","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'0007f8417aa737cf81bef3502984381645e1571da37320e4bad8f309ed5660c7');
+INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea3283b4201d0089c28f8336832469067f13c7f264d9dcf34ac1084c1667d2bd');
+INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"1fb525686cfc2d2c62e869f435c83b05fc8e3342069de7072fd99a468f0fa636","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'3c64d40821e3b36e91db4dcbc2177e8bc5f44e10ee85268f1790192cef89eb4a');
+INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6a0c8adb6c7e696610bddcd876a792b1ed0c8e3fdd458d4f4b245ca0e3b4c2e');
+INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dc0607a7d44dff313eaf827411dd9ea22b093d2cb8998e376fed1973c75f5f33","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'6f036bc42b829f1f4cb35a314891db5d65a01b7b270182956730ee6b4568e3f0');
+INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d182db549d4a250dc6dfef955c9a48a298bf976d556fd2eb7ed03f00f962e8d');
+INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"8411a1ecf5d9b7a48f53e5b5b5f746ffbf1ee4818fbad5b76e01ee9184b9cf6c","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'7af675eda7f9b51986a8a34e2737ceb8634bdf85097719aad548e165bf631faf');
+INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f84acc72c89041172191f57c48a965bfc2e40ab645f9a78c9becb794a4d37291');
+INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"062bf7721c34786a19dcdbfbb61d0e73ee06a5d97473c9ef12e454ec3328ed05","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'fb4e0b4ef1cc74bcaa9afb408c21cf1a51916eaa63203bdcc7c3e1d619e6f5a1');
+INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d27481a91f20e68dc384ccef0328b791f5dec92ab5249fc5f72d214ca3aec05e');
+INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"8a0ac9a3373402279cf87eabf6c1a2920fbb1fba6377b4559a95ecbe7817a533","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'2886c310bf1ca6cab13aae07662b29d64d5d37e87642eea64bb421dbabf6fa32');
+INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71768465e7b4c20adb865425c144b85754f5ed86db6f5dd97343ce4b4cc29468');
+INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"464607010e49cfa74b86496dc251e9d622efe7e24c2575435706b9e4a6e05ecd","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'33924ac157d0fc043ef78153ece0000d3510fe878e1f367e85f005ca2a77a7c3');
+INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e47d3aeee59888158c6e98509ee91bcbc22eafc377cf6c76d156b2d2d984244c');
+INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"644bbcaf78d2dd3bebabb66550ce8a31a4f145748e0eb7c3a551a86675cf3010","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'b33de726b1a4d2741d6b4258b2f9d6cee9f9fa835c22b7822bc0be0ba8f87b6e');
+INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52fb386ea73ff91692591a0eff3da818cc2526ffb3b58aada1176812dc3ab7da');
+INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"7ae602e7d077e6cb45c2cf958f1978e1ee08a124edbcb7309176ab324376c907","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'2c2098fe0c57f750c1ac227c97d629485c770446836fecc112fe97191628bbfb');
+INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dde7a796484a71cbfd1ef0947a98c8f5c3c882a0cf77a0e6083cd5e22e9acf7');
+INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"73d961aa283a92fe02b50057b135d3d027ac1bd35496353976e2508b26a33343","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'564f55528574505432691cb272d9cc662eb3d596261adbfa7bdac679e99c7457');
+INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff52a17864f065dbe66a26423ef5020b33ed50ecb865bc3e4d3d24c155d6c3a7');
+INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"acd8aac46e499a58b59f622ed57f738f780b8031204b712499975d9a347e07f1","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'3342a0f546302100750e7a10ad22356cf45f79d580d8ab8583ac4cc911c72728');
+INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61ed8e825e14d9fd72134d60829e8a37b58a88a2698d5e19d28f074dc010b684');
+INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"a707d7df87cf26dd21ee9cef6b143fb5876f8f680f5a3dd5f7c20712ad245e60","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'4c73cbc39ed9a949c6b8eb155ad3a7847aeaea81d7d5054e64aba57e8e4bfb66');
+INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e08c34f61e6299bb268d57d05096eee8d8dd2c0ec235a5455147e16b2b452842');
+INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"75bee8dd3f5b11ee602c473057d847752fc2ca398945facc181b255d662aedfe","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'c4c1fc57d5d10623b10d324eb37cd9bb19447dab8d63fff52aeb30f0cf0bf0b6');
+INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10ac8d126a168e1f91fcfb9b748ad96045d09ef6043f815c5340fb4d798d535e');
+INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"d574d1728571509fb854307b8fa5501a08ef8f464298e3c462237d61028e5667","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'bf0b4b3a78e9db34e69a3e55337ea0e30ab367684de83f51384f3707b784b9ec');
+INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a65e34d7abc65481a7f30f9a8f6e194397ee90e6a3858ec657e25352a963de6');
+INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"ceb97ebdeb9b5f88fbf632151ac15c82c51289e32a69284d198a67882555f8aa","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'e47d595562589aca955caf11959aacb0ae50b14795a45be314a258cb0f618cde');
+INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc9751544daaf717c48ca5becaad4c4f1380cc3678ec530d7719b718483093ee');
+INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"139fd14dae8c47ab2328d67ed59fcde87f6c23782337466c5b4f9fa8f70ada77","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'1f57d7b47e85afd9922f2e17d47da432c73da28864c37f879c20ad85352fdb0a');
+INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86bc5de71ce156071da96d0b42e363f605084a6cb4b32129898059a6faacd0b2');
+INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"2e9e820523416f34de2ba2cea26b7c5159b1c50a2a1b7e6613d2d68ed58632ca","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'b43079986b2d9309e4361a047835bf0081cf003bbb696e0b9ffeb9e7b4eea416');
+INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74c9da397f3a9bf448a3f675b2ed39cc40a479001d2b3e899ec464aa3df29759');
+INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"b8f734e3855b7c0f738249f3f0817b5f87076d03dcd21af9052c1b264b7d37f7","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'01ae050819f530bed727f03676658da719dd30afb98f28746d96a696fb0dfa34');
+INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'830f3e487c47ea218b0b64f6399b55d553e22bf170e14519789ddc96a8faa4b5');
+INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"65c972e34bb57ba13ed04604f8fb4c01b41b9d43605a08c830b6695ba3367718","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'62d538adb623fa7a9569ac67e53d2784861be3fd645e2a1ad604d46797594137');
+INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28d53ff671209c564ae1fa1f0e607887e618954b024fc02262fb208bf56cb9ec');
+INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"917f18cb9a40e855401434a018ae02446714c9677e4855a5c4a7b3256475a785","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'29983fb3b3b23142f7665356cb94642779664944035a6a77d62e040f242f247d');
+INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f0ca846e4186e0048533d3450abb68bfdff0072e9e68f00630550b8e8b72fe2');
+INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"991dc50ad5614911258f82d15a340f76959b2604d69f3bd853ab58675d3cc0d4","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'7cc9a8db39694af45772fbf7bf5e26942fe72530668a2837e951f1cf8f54fa6a');
+INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50309da11a781e46f4aab3544b50781e8768796c9e2c96d85d780136bae913ab');
+INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"64fb69a92910d9101a56a7c423d2078da6f2cc382dd5d4a3afa162353ca6946c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'b2cfff093f0704df3fab792ca0afb1d295fb42a42d317dac9ff4432b1a3d3a84');
+INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81f7ae1a1d6179629a68cf2d8532fceed3122eb940fbf35b9c7c86f1574e1082');
+INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"fae0e171a6ee94889779ffb5945df3e2e9629b14d0e8300e118afb4fbbfa1ba7","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'df88c966cbeeb234b0db3a708cc03cdbda98e6eed74a65332994ca14e1771827');
+INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b9ee5c28649400931a99211724a3332eef4614f8d317e69ad561b8381874ff');
+INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"384359eb9ca6bce64aac5d7ec11b53d8fe0a690a60d4abf52dc82fff95936bab","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'768adf7ad9af17d0c326388cde42d4ff276b26d25226c016c45b59dc89932427');
+INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a23b8c27f40c19a775681b179f25dbc018e26550fe1c757ef9e97a0f6c860631');
+INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"ec570ffb8a7d710374026f84a5ab4324d1c826134e1a70ed7a2f5eaa5e179719","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'67505cf985f541bc647bc2e8b838f1091bc85c2e4a68630379dbe45c8dfe1a3b');
+INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60455b0922d3c7836d3bf47e3824c54dd763aac9ea1a1f8fc896558398d180e5');
+INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"c343404a071b294e7055538c070f1b0cef476f68eaa46fa57736572f2d12cc47","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'3e006039b2b349413a44da03541fc2bf154d07ec0c193a618449e49b0fe3a051');
+INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c51e3cffaa8ce40001e940d7f4792ef15cf7475297cb259d9e7983773e6b69f2');
+INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"6f99c11b1778951d24facf26097eb6eac16227dd30c851960464d57f22fd3b58","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'19f45165f446c9b9891940e71985ed58c2c296111cd1a84d901236a9c7101917');
+INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1f1d4966b8cfadfd083b5f3fd2fcba1f8eda4821d653c7974e33f009c7463cb');
+INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"c0aca83a6f7fc4a960b9ab476a95aaeedf45b6f76157f63f7299b09d4d1d9de1","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'56661f0957a80223072392490825b805f5ada09eef55290bebd70da78911e177');
+INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9439c3dc8ccb46d5ef55d633f1f231a48f576bd350c2e5bd339e467ae64008a4');
+INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"3d372c158d70bc842b32b7f3e2ffd95ef9cde05628f534cb678de6e798fe622c","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'48494abc55262902bdafacd28936844db06e6a14b3a6cf9545f57b4138a525c1');
+INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dba7053384e90d269cfd3505e5a12bde22dcfa2c91704cf243517a696f8fe2c7');
+INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"c94247d2b698ff3c3d3f83c3b22e7db7f0ffde8a014edaa9e5e2c87921d3f02c","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'bea5c431b2cbb2d45f2eba6fadb6829545eb6c077e7c2be7dcbdc3b788525c91');
+INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd94a722c458711df5e3a20d96fb52fbfa4eb1dc51a899cc26f0edd3d00e2b26');
+INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"08905851c02d9a073f8f2fcecd03e843828641bdcb10ad2968380fc186a3f1b4","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'3b05c18229eb624cc389b9f0c4c6e17879025341838a9e029c65cf0f910c86f9');
+INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'098583efbb2bf92d5647610b52429ba84bc68875364fb823124fa46c5e11c51e');
+INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"007702e6e29eb293977921f36c104e0f4a0151e5641d0db38e2e4510748bbfe8","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'f1131a6f8c59e1dd7d4f949dcedcb53f2b120acc4a54104189ae12fa0a6322e8');
+INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f757c97395fd62ea1a0fcad41ebc76be0a25ea0ac7baa66c59b0c712dfc632');
+INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"dd2d4d64d57ed022b46659c5345bd760406f71a79002023e27a1da13a27fd57d","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'42bc48810b5223456564cc2947b41005754c56f96b7fdf0d1072927d65c135ed');
+INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba55e06ede0ded2cc7b3eff0c96c63ad0c439d8e0030ae5fbd35e8eded62d3a');
+INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"142c384f5bf9eac3a7fa5cba70f841941584d621abf435f9a8ca4b9b1ec864ee","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'575903f2a6994ee5bfdaeb5442510bf655ccb57aa1a5ef69dfacd54129f562ff');
+INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92055e673e2e378f6d403fc32ecf20753bf314696df2f4ee3047ef68942c4bde');
+INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"4668de14fcad314bf08e3a241b8c6da054c49ee9c7c7399990421b1899240602","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'0d0f6c0a7c5c5c2fab6406e03c2ba921a167b4e226dea5bbe4f335789a084e41');
+INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0527dd638164fc299b649b3223965c24cfbc19ebb1e8458e37172b2ea63110dd');
+INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"ad2290997dd9a9ad9020a642bedda1c5a0efc9329496fb5f9053247868c9fd3a","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'35e64ac39a408d269ddeca899fc238be69a02962dc2d6fbb653aaaa061082f2b');
+INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'482c9d394ddd34bbd5ec1886a44300469a33c789e9a1ff150358caedf442f835');
+INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"205d060f3443635d719233d90051a36842a58541b94d0243920b5be732ce375c","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'8ab8676ac6f0514fd1de57af3679afe5cae3d36e240c41912d44f37f96a550da');
+INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da4190b12aab68787510c08783d34990cce3069d4f04b984fb1aa83cd8857949');
+INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"edc87e0d6f923dfd82f66871ae016eaf7f64a891a32d55e64e917e952ff6659c","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'d8049633c510080e5d3c2ffaa35213bbb5e0211ef103ceac693e103c7f873202');
+INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61c9b2cfa3715da3be5979dec49993d07f77b8a7c512b6ba13ab20b7581d1cc0');
+INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"f92c7d9d0de8cf9858f3a0eae157af19ff857638d8538b1742f609d6d8b3a7cf","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'edbf11a7ffb7a77dbfc134839c2d638637ea81f197045296e4c764453baa8c4c');
+INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2a886dc1759747298db9b294f4094c8acfbc80a12e2a8f62b539613a9e6cc06');
+INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"4fa796b5f24a97c4a005d57a2208afa15c640c97353025a2107cf72cc9db22f1","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'3a5d6244c0f78c7720c6125c5da227fa42b7532f1174335eb5764ea401bed65b');
+INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8bfc1ec3ab3e8a22c7422dc3e775ae0b5df32a6dac99cbc6fc8dd20b0e7f477');
+INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"b6c559dd500838db20c2aed3e148fa89c309263658a878eb2a84c6091997c93b","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'a665607b2cc03905c3213f3e299d379ae549315c7f1923801738c0639ff4eb0e');
+INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e280edc41f9956fb0a9d1a853d85af8fe92dbb4c2ab8221701ab9efed2d5be44');
+INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"c187583b8a55d536d5e6eca2f9cc06f02c8b2efd94db3c912c3df09996b4a26a","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'c8e20ebfa9624a5edf9b1acf156304d77fafca0cf15f077116232a24492c256a');
+INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cb995b6a06f6dab27fc312f0c725a129771df400f46a73eca94c9362ca2a71d');
+INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"decd1a4f3f0b69849d4f1fdbac5a1598060202b1550bc219fc3e15ba2c2a5cbb","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'dde2e1543dd480cf7a9fcdc5cd984977de9c549cb6f1bc6a7a814c4f8889415f');
+INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd1144d3dedd994e8f7c37856708d536474ed26a31869c220cbbcc9a96f90e24');
+INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"a731b3051144292529c7d6b902985492bd424768dc635cc7e031c5802624f1a8","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'fa1ef6cfded3afa1a7de416690d80b46dda80c54e7a1c481786421855aeffa94');
+INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cccf13c313151a5fbf14bc8be2773e39f31074194049e8b2b03f8f7e0135e436');
+INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"1e5e3139095ea2ae9758a112e20db4c16fea90ea959b772eef8e330ff37768ef","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'f12804498a0390bf1c90e2f564765e402d65ec8824132a03add3ba50ed2ad4da');
+INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f25a24e5ed0727b34e2f0ab7c83f1bb50185799325a4d5dd6b230d3130302db9');
+INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"4eebf2b9735a33c0e18fd4d27ca8c8b55d872a6389bb0ada35e09f27c1bcb8ba","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'95ce2f4343003290b00e1d847d68a77419b41b5352f5674073f0c95434789c35');
+INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c33eebb7caa1fc83b68f4c2eb80d1d52794d85449ecfd75b112496d649ba6221');
+INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"12dd2bbd984925a5dc916a224558e66cbac276542ee3a21d147288296ac6571d","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'79d84af98adc03020aa88dd61f7e581fd167c5d040fafbc10243931dfadfcbcd');
+INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80f2ee499ea85bd1a2cd58d81fffadbe926a5138092734a726841551c978add7');
+INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"41e4b81a51c4ba0ad543970a1410209b3be1a0d3ec684025fac166c8db52ca50","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'44ea9d34e3e068999ef80128c8ad71dbcd88b50489d4107fd0aa87312cee9278');
+INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca038ded8e200ef491a2c97ae486eec395e13223f49a5c312d30d113bccea626');
+INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"ea35f102808bf8a26d5e7c768cf165490601ef4969b4682c047128c4d6f97f3a","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'3e16697f02d9a6c40dd870d67bc3fc714cb08b855174300f67847b837750d91a');
+INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0684a35344739a2cb14b5b32223d1dcac54b3862b5c7f539bfc2a280c2b2998e');
+INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"244987449406364973d306dbe62598139c0929b88023589a365812a5e71eb49e","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'451c27ece0961dd8a6e32e61019954db80472bd38f09ee4ce33518b47c56f5b3');
+INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f26b0dca198ee769543d544270f2d97b271a7a1b35b7f585afbf306dbe0b88e');
+INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"031d4dff64916ac3c9258d70572f74a1d6ea472e35c1ccfefaa23ebb8d79d633","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'6cac46a5c96f5b7e277917bee5a3fc924abd5fb8cf30f2b7b3cb639e02e902cb');
+INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17a1fb7bf613a347b05161645a93dcc80bc9fcc6a56c27a8927e992a0a6dbd42');
+INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"cad4178e8f93daea91aed22c2be78b57b41e0ecd881ba3bc07b895fff727b3df","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'4212ca32b91684a51d900d5228dbf7ed31eb672bf6e7a68d13ed570e80062374');
+INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cee3fc4b22cd85ce7caac211cb53b5b3fed823f0f75ca0cdfbf3fe66dd3223c');
+INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"77573354a998f422c5069e51f912f1d9e18c810b8f3bffc78047130069aef993","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'3d8444e782c2c1c26166ba23f58a700cfe076263ca34dd77d82dceeb35c1c0f6');
+INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e8f4124037c1bfaa5253e889bfd0b7d61ac6886d374f9aaac579c9470f7a8d0');
+INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"38204d3168af99baf64d6f5d1adf616ba0d836b15c0f12f8c5b86867a4f2f913","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'619dd2849f67adf39f61b15e6a0d80412d91a63ce1f9b0cb20e1fc9583855449');
+INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'185e853290b52dc77e22c4ede2545a64a8fb080ec70ddaa3f3693c6a3d555590');
+INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"2acad89b01a594cc31f992a3d44effbafc348fc378c58ae1dec71ce8eff51437","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'81719ee67d3883a55edc217e9fbdbdcd796b256521fc4be43ae150bc30093436');
+INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28e3282abb87e16db1ea238e61aa6707199ed2a683e2e5483147b0d7f305e636');
+INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"826d24f8aae326da58576b14bb24b92f4be288b8313cd0b38ba1cb7ebad45d25","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'33b6c45bda771527c503d045e5eccfacfb7337b2bef3428d0b7420e83def4a1b');
+INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3d9a8dfa46199e4ed6acead3018a96be85763e8b1e2f5fd9bbafc7e30b8af75');
+INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"64d584d86ace25a27fcc630c93bf0ec1598ff84d36c7a00a9fa49135412ccf9d","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'233a33d7a1e6359ad7400690f5dc175b4f8b62fd8ead081a3bc37020de828ed5');
+INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d82ebb958ef8a50a094c13c0f1570222429c1d19158921d242d02111eeb4ff66');
+INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"7e6df1662019e3b9e2101670d0b73381e2690e512c97b7a3366c04d349cb1b5a","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'38db52a2a3e8fee6f3a745dc39151c9a1e1a557e094960ddaa2e03cb5674bab6');
+INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5025485ef694326793133a939370cc76fe2571ee74214961fc5ba91be3047158');
+INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"58e90cca3333c6d949a32184e857631b1b37b190ec954c49f20772e70af704f7","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'2e3e30ee3f0b2dd0fb310e3baae61186f2d5c99ad6a02f4916a6e42d4ed39685');
+INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acbc46fd8bd7d35f29c3d892d01b0d836700148b26fac9790559cbbaa2ccfa8f');
+INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"bd5e3e0d1b88381f062d92dd3ed978aa48187c81c403cbde5832ffdb85bb2311","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'88a548cb2a66dd3f61f2aa8849cf9e418221f3cd75bdb078416680f060b805e0');
+INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84f4472532cfd216b00585d6d159ec5a683b079ea507fc386c5c43538b856859');
+INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"0fcf86dd42300375ea880171e8b2fe8b4b5e32e49a99cf47f44f683e6599d447","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'53122dfbd251837add96d76a548668adb95672451b4d6ed17e8923d109a9008c');
+INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e41163cb02d0e620c17903487fa6f996866a34b2df05edfb804992bd0e1674c0');
+INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"7858f1f096a07367403f604be1423cc72c7e4ef081c0d4772801fcc5b0198e38","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'f580a022e093d7e80698b6abb686b683adf8c53f4380ca521d8f3cbf5a0246e2');
+INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8694faeafefe76118898a1eb72b826ce82016761ecb2e0021f0e12f6ff5b182c');
+INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"9124a7e2148fa8d962e232e568710593fb3861dd53b6288cf904693bfb714bfa","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'4e75f161e93dfce6d979c4d1520437fdb283e27534d78be7171d540d098b1bca');
+INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5abfe9049647154a2d5a2b0e82c3873690cc9a834b3043559225e6fdfc47fbfd');
+INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"318a1e2865a422b38ca84c5791a5c58b36e521ec1ff8a4df6f0a860411817733","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'7206be8b48e7dd299ff5c86b88c53b16c861f6f8d6f4d02f0c53d9b3fa6483fe');
+INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab97114c7a6c0c8fcd072d8331fb9a0030c089367701ffcb54e13a31958d10c6');
+INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"e61cf39628b1d43a48443e294f0bce4a9be814381abc1628835664530fe8d41a","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'2b290ed7430462dd2335a8e2f2526a1f4cd88ae787638069bd8c1085c4c8da4e');
+INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bafc0ab11047ba67df3f81fac3fc83878833eaf22f8620d4fe9812c8d9fd55a');
+INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"3e868d60c3153c31ba83298c1d4aae099da68a21e9b9a4092524c1ac1f7de9aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'59ce4b4c278974b90b6ec5147845a0ab65c25954144e9de07b5057c8b69274f9');
+INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e573616a0e8672b463780c1c4e46aa912dbd1fc5368002b089e4d1c894e94fb2');
+INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"6169c9dca78bfaea926977e069d40c841ba291fedbf0317372889d6e677ba2ea","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'6acdc4511196a67834d69fb3ea794b13329ed48fae84ebd4a546ddab3a16c38b');
+INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ced60643c0a3237dbf8bc845ce73930700ac4917ea0da85e71a8ada72930d98');
+INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"8003f8dad350e74b3c92a05fd97fcfd40df87c238ff0ef1e970367d2fbdd67c6","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'fca9eb6bc2d294cc4dec78a8223ddaec58275fd5214bad9dfa40b647c72ad979');
+INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7975e054555e89431e7a24ed4e59f4eebf527e5229796bc964ed12a1a32e2a4d');
+INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"0b32539753507a56ef0903e510f8702e6c46dbad1c711088663d0ac177bc18c3","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'a71e9b27b3c618d5b9723277fb68048771d077a93aeebdf441cda8d968c2cccc');
+INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d26909a410a9b4933c75be63660f68fdb9e50362bbf4d225c141ba38a1ae1b2b');
+INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"1831fd632b07925c3c872734e5a6c8477f5c9627cd4fcaf84ceb0f1c672f8d57","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'8cfbf4e5c7c34bbbbf3d783a9151034498951849de3587669872f45ee9743638');
+INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9df75dd16c6f4440f8e827e3965a38bdb231f4bcaee92078c83e598526a28fd9');
+INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"dd4b574811986e7ee1339e3e93d1729c86df7bf083c46f3d1a312bd5055bdb96","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'676b04a6084411dd69c77a5660f2d8358f656b3669ded8b0d5a9e8e943875431');
+INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1556bdd2e78c42441e1e32baf388ec41ac88f7625f513327a9a7b103e6f9863f');
+INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"e2d559b62d0d4058a4ddd55f79be891cd8d021019238489d050c7d3eed81f931","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'db2f6a3c2d9c99cfbd900642d08b974382269c5dc61163e705f5a2f2443cbf5c');
+INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bb3ccad4cce5cd9a2a0feca8783878cf5a989dc4d632fe56f8f1e037d93a873');
+INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"1ee78026540d87a193c602de925e52b645eef726dad5fda2fc759eec5d6257ed","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'cc5f8bffceb5afdea883995f3087460d15ac7fdb156512bcd2a90feb793a9d01');
+INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca3cd4179a5b1fb49e66db1d49d7abcc61685701861c7011c149182c2679bc72');
+INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"00d006b3b5d64246407d6de8ad00f7b7d79c0d3a7912e41d4b7959d542865438","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'febb7acc6d3e5dd5bd2ebf560f74b456d2d240480dd24ac7f3539939609b80d8');
+INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8a3f9598ac9b44d511fc54bf47af6217a305fdad1d43e68207c274d721898d5');
+INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"71f7f745bfe6891be3de7c1c9cb73347b4a8dc627b6c861703f227c4ffd134ab","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'24be5ac1d676f6822d173f0ad337d56adff28cc4de445271b41efb416f2749e3');
+INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57e8a900c5e0625cbbad450834ffb8160d0fcec153273da1064702f4cd0e544b');
+INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"92bd7c3cfec934d773594b68e1f913273cd994e94aa4292b753783e8fb0d5f59","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'1c41926ec4f2277afb46f7d5a063fc822dbcee789412de290831e91aa8b8c23d');
+INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3fd9bf3bc24a83d3ebf0ce962ad16c449b0d64c364cb7280cf42f1ee3e74fc7');
+INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"ea83e7971e82ef366ec96fd9141737579bb3ebc10e9f4469afd9540a830b9d41","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'5691bca473d9d2b81ee9659c9305cc4c39224263b6faf99bc555373a47497d2f');
+INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9927cfad33f3b79911ab135b895087b40aa2dfc9e7fcaebcd9b4826cdb34ac84');
+INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"c0c7c05ededa44c7e65c0908679eb34d7cad986375e15ebd0d0f683c83729a58","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'9622e1c6f62b21f058be4d5728b59ff234ba32ba227ae3448eb674a58ec33067');
+INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64c1817c9205023016ae9433a52d5e49fb630128409fe18664de8388443c407d');
+INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"ed4a29c3387961059f43795861d929aa20a337a664fd984331f2276b35d2b526","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'b0b73cb21f59756bb0ec32472be3f56328217648ac2e340e5667fc52a04eeaa4');
+INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'950f2c08fc5811ae2e736cedbf31a0dfb66e15f61d614bcd90bb1f209894f4c1');
+INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"ed39c524ec141484d36b2d000b552aba4ddffc254462198954d1c365498b344d","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'8e6d3b6a53d1b91115b3cdc96884c37716ace480d66a9ef5e03a756cde2c575b');
+INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dc9c3883de16aa0deddb072c29b7357a92b31ff07da6672a9f34dff05377367');
+INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"68c3c0a0602440173dd56bde3c36da766981ddcee65346a6ac0b563e3b7a348e","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'0cb3ff674bd9a55994df6db8a3d2be9dd981d7f6fe8f43795d286fb2ee07c506');
+INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460da74890e66a488f29603427e9904a342e1927fe64c396fc3bc468bb05ce30');
+INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"1ae61f57d27ee48f6ce52e9b7db2aa123f51b13c535112fed565e50f3356d5a3","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'9e4575c0c534981e81b84cb6545e162a715d365df52015aa32ac431d94ab49da');
+INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9cfa38120e4780cb184062d57c8283c4856850e62c708f3b45dce5f34de36c');
+INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"0d00edc4ac46ff2e00ad11b61ced839ebfa03a9e33e7596bee093e404c0cf55a","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'9bae16cf986f176fa96865060a522b402f64e11528de037e9dd048abcd19d5b0');
+INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'796e7742737fd71ebab4207f43ce839050c51b9a2f2386b321e1ef919049d69b');
+INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"552784daedd82dd951f7c620821a5dd0fa63eb6e2116af6ca470c260e47248ea","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'f9af01e0d60e892b506cbfcaeee771ed000c5629b94d14d95998381535099b6a');
+INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39dba48fbf56080451f2371a19a15fa3e60e876632c6ca19234e46ee393fef7');
+INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"d72a4beea7dae0c972feafcb1542de04eb1f407c2446964a77b4b15f2d489bb2","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'b886443113c2c9bc6a20a897ab335eca307faeaeeaad94cafb4939c119d036f1');
+INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12708d93b971c1b4cca6d6d7c8f4ab89c5a7dd7515a36ac210a5eca790758fd');
+INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"6c4fdf12a3944933286f82ffc2cc8ea5717e92a79662a1002ee87b6c3c328358","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'fbf996db3e159633237fcefe71fbfae38db7321ffd8db27921bc84063ae4627b');
+INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b05ba01bc0b9f84cc06f6ade7407f4c4bcaf479888e02e0179fbb01af9b19e2');
+INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"7fc9103dad9e6891d9b9de61a14acf6f0a5ad35bef48927444252504290adaee","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'85ee792b39421292c637bc37deb4329eb51e262b95d249fc78549985080b90f0');
+INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a13599fca4a1b1afbdf90bc42235e632ee0784b77800f7c85367de691e4c9f28');
+INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"11e6afd0bba96e205869c3a4a69e66234f9392e0302ff5f5ff49e83c834cbca3","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'1186de8f0fcd0bb97eadf7c49c77d48b4273581cf0611da71c67d9e790d86eb4');
+INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'227040116c94e346010c9936b008a4a5fed7e754bb4edd4d7687a0efbf3e8ad1');
+INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"e52c228091d702041c31e0e38e84fd66e446dd2eeeec5fddc782877720ceaf7d","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'29f1850ea25c8f495cd266f08917546718f2bfbd6a824fd045c2ee8389576b0d');
+INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'191088d4285da76e973dde5ee5f9dcebaf510c9d81ea078a2988affd327b4e0c');
+INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"3d53a7993178fb1677adb5db2583a2a98b71a50e37022564c92a563f76970968","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'76ac5322db92c9166230add02ff14b7017180f303c144879ae64aa6d446a9eb1');
+INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f4d606b447998aea4b3ec187667df56892abe078d418a9164855aee94358194');
+INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"1cc4811a488ed35ebccbd82cceba623aa79b82061cbf44656730fe1afdc806e9","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'19f69f017e3fc8f09357ecb3febc1da154ec53a9998f1b5a3c4a00f15af1c73c');
+INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a1be73a0d02c17b02fc7e7308094c603f2160d5b18176a066754c06d63e167e');
+INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"448db6001da6b26f80f360db92b09f5d3f7fdca4153b6d8043d5c1ad6a819e65","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'826d599c2410062e5eeffca63de57b0e3c5dd9bcd3de6e12314b119edd5be9a8');
+INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e89c472bcf576f4c67ce98ba72d69a731789458db3daaeff776eecba11d8c48');
+INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"520cf9ed4916983937a5c927df80dfd8d700027da8c0c9ad89b485b484a9e011","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'e911439858e02a74c53e99b79a88cc53629a431ab2c9ff0c2b924deb1a609763');
+INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c23d38eb8987be93029c66762a83840b9f805f8de7ee2d5a5534bd52310bd8d1');
+INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"75ef5223cfccc9addca156b0483556b1e66168a49d0e84cd5c07389b276a4fe0","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'46cb583c174f0693db9bfd19ff0b5db58eee53496b1e9020b4b86618400629d8');
+INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24f15f6fff5a459ba28f7ce648b42c559a0d7df72c14d08b0b1f68504c16ea96');
+INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"b93119cb624bdff14cf408f1fff736d5dc1635780de76556f31787c4769e1492","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'c7bf88df9c24bb563f562a64d30df7c3b53b3908197b11e6d4c6a1641a6ca9cb');
+INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'802a8ce0253ef8d7250f14cf0bf922fd06788a827718214f940eeee58753843a');
+INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"c30bc0cd819f567ea23116d924ce974964dc9769bed4fb6ff685acfe007bf684","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'6e38a71d17f85168c6289a75aea2e0b508d1b4e956ee2d8a03b0bf7a53f3b322');
+INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'717440f3621960a49b4705eefc39757850d695bc15c617953e32ad509fc9b6b4');
+INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"bf14172c1c7249a7e6b41ed7c80a1163f6e4a573dae8d15afc1ff8e64aa111ca","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'62d0ad8d87f68edd3574a836f8eb71dafcd33ba3806f46e2cace0085410174dd');
+INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'753e325d854b0a33955d6643e7093c6895b5e5dff7c690bf20cd05114fac75d9');
+INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"6d5cbc8eea82b8eb7613b04131adce13a45a3001c5e6dc037cbce36d4528acc3","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'9551b01c1327924a6f35b50382703356552f7576f3040bebd40024bb15a02e4d');
+INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49dbe471904f4fa5e4c184769d3dc84f794fc6249af4367810023c8260459ca7');
+INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"9e1fcd3d6621686486774cc32cd0fd9685461be1facd2e63278f74bfb478ad75","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'0fcccb3377b1731d18ed06bde7dd5e3d9048e332ece92b4576070c09e9cd020c');
+INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c681abe5a2919b7d6c7478293fb1e56da7e5d4d98914686883c4e1cc411a45f3');
+INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"f3baa73765b6ebe741681361c22127cd7ca4af545ed41188b81c54477fe4e10c","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'9e2d63cb4a30e1d2597f6fac0580463ca9c3e8a2374fedb66120506319bb79b2');
+INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d395d64d248499e11d0283ed6041ce1a3a15534c84222594c2caba11e1b65205');
+INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"9787b7b45182c6d57118df7ddc9a5e8023ac1165e57b2e7225cf48e2e47d19ed","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'9ca3925298d00bfc613b4371fef483205e955095ef49bc4c3a9c93d94883db80');
+INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a591c2cd6eea252334945b507a67afc9bf3d1bcb5737802056fc487d33b1e1bc');
+INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"5edfa935fdf026ead1ae0d7f99f6e6bc2d48209879f4c841df19f6245596f55b","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'07bf8f86d573a3eeedbdc8fd9d28f8d7a121321af7a97f654529054d354b7d0f');
+INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c1a0e7c82a0902a4e55ef78d09cf92fbd619cbe93341afa4cd1c0e92693c198');
+INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"75d90d2e7b129814b68fa5dd4fdcfc85ced4d68c40fa2849f90c67977e9a9b02","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'3d6324d9abced80d34aaf13eb59867e10de5d1d71574dc0ca0fbd0ab52c8f189');
+INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4d1e5462c33891ae403dc6283997a8785bde3b5683647e8535e450103ecee29');
+INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"fcb93f66eab0d100dd46545b1aa8abbb8d847df3aa49eedfb562c499bf719740","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'0ceaea1f63ec5733b1d2d5d01e4108e06fd88805b029fdeccfa793087b9ab098');
+INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecc5f6d4a0bd052dae97c2c0093537795cf20c0b2d02b23e260ccbd601dd6d95');
+INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"fa4c558f1492ac0046e54c69f0810e14ff56d10c5a8697437d5e52a3a8cfa027","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'408bf77aaa32c5ef7af54a1c65e05d750f28f6983e317fc0cc83684db2f53dc6');
+INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c5b4ce62951c4d6dfef1292bebe2d1c20080d36b4a6e0b3458a78b4f0738334');
+INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"de9ac9c6bdd7a18930a0a225ec8711c8b43ea886859373e1227ab969f969bd5c","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'07db14a4ed79122cbdcd74dd46e0aa981f54b8bb6a2109c75b1975d7c47f9c43');
+INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5a6d6bd3df26e487b581d3f26eb6dc0e31f294f478651ccc8c03f0adf601e2a');
+INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"1862d4012155a9831a3287984d9717d9f1e353e0f478912adb9d9a54950813eb","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'63272ced3d28ad24b523840b35db1276f4e011dd22b7cd4c28fef745db9148bf');
+INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d7b3a599b526477b6374c7650e869f600786df612e020254cfd1191406054e3');
+INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"843e91b4f8f556351d5f34b5dc9ec9e7f4dcf7b7f9a950fa53fbf6cd21f5b097","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'8f58f39106d1951afbb1def3d2770b0988868abf3ab4609a98135cb6425c0d08');
+INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'554ffb934d0326191a4bf46b9690371874d2136b2b947f519d61b0dac5bb7c1c');
+INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"01ef820183eced548e652869011f1d2cd7fb0c2e72e34ea87c7b1dbbdc117cfc","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'7678c70d13c8af7d375336e1aad280baae271c0b7e3ccea285a7175efb9c07c5');
+INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93a8b35895d1a797a68dac5822ec58b74014288e005e550767ffdb056d692fb1');
+INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"f51297150aa18a34815b9fa1b190e53713cdb1edff7b14da41921f1e1cebd227","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'dff46da88ee3362a463d5304d4c841e620ef0f7080af1d4a6c02a9a5104a7bf6');
+INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ccfd58cf0c99a49709d84ecafb9c809ee3d967f9de25db4310cf22cc957f26');
+INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"51e8bd0ce5e1fe8c1838080eccd47b2945f767dd999de275e2494bce24f1b80a","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'504c8ff4cfd78504339c99ad883d66e7a9e1a814af5bed2fd8c279477554c799');
+INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84b552a04c2e5d5a29538be8e86fa3ab498f14c5cf8db019b56f14f40e03c37a');
+INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"6f8b700a381e9b1899549129e333bcb4482147d7a3a013b3718bb376ba9d12d2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'47428bb9cb6f5d3abbe5a8a1a87f6a2ca6f14d41bf59809de19f0c4119729cd1');
+INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aec1b949c601aacf37ef9639a048311ef15a2d2d6d7ccd0cf1054d370931cea0');
+INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"37e351cfda5d24a99f5519eeb2ad241d1ba23f926599e591ec1a5a87a98d4a2a","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'24da0db5b031dbd0330abedcd77ea77c68ece04c9bebd4ece8af1f7f094ff3f6');
+INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7fc5d1a61793056515488b6bdddc982284c8abf37dd213cf4abb22783c6cea0');
+INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"889bec7116eafdb2d75800de39bbf44e28a2b7104a0f72091fe1d44346f45ce0","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'041e5498a1c82d5877ba1d9e11beba8ea2cafff83db2f08e85232609baa1499f');
+INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5988fe70a0ffaa1529e2e2ff71de79d98229066dc84d90eb713cccc68ff73af3');
+INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"053a7a0c1e332363a315082c7d3ebe0ec46010ff292c326847f097b23fb94105","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'4d7e573c0a98417511b658e6bea7b7ff26fbfb1fc7d39572fef44ef6c2359f16');
+INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a70d5e2233e64e0226686dcf72ac402e78cd718bc7fd254c0c53e1860a8715a');
+INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"0ec21b071e93a654fe0acc298eecd6755d4f7f968578b4dd4a2823031482bdaa","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'8535b7d47b8486465feefa5eed38d7389edc67121a33b4feb2a39ab9e5b040f5');
+INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c847b0bd86fd0adc2b4c56221f35c2186d36eaa72cc2233b2fb8647df7b8ca96');
+INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"d68b4737689fadd1043e2a1df010e8a5c571c02aad90ab8657bb915bc7ab5173","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'1979c0b16821cd36803b25c85eed5f07fca313a04b50a4446c6571f3b90a49c8');
+INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67d1edfa7889607d921199db2c7e97f79775666e430781465abfa167bd39dd61');
+INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"845cf1141b13f3edc1b3dad5f0b76ae13255ff744e520f68b1652f7444e8e369","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'6e6787bb7e64c51c7dde17f69c11e20562619cefa57ccb61fef2272b8e862521');
+INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8df9c873717b781a865c98b0660bffbac4875c0b3506210d3128a9b304a693');
+INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"ecd60ce5bfca5707c1659c5257c7619c65ea946ffc84737f7e431397c7b75acf","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'a147e871d4ceb233afbe34fad469d2e71479caac347048274288497ac912e115');
+INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'308fa26d4fd335d48006e956761e7e176705886400a9825aee081ab230d502a4');
+INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"8d8a4969412a09dc50881fc22965607a9fbec8377e905630f1c0123d466b23a6","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'79ec58da7f8074aaebc051c11d914159abd5a93ea7e9cc8ee54ad0f4d5f5303a');
+INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aabb8131643f9eb69c2c758e928b485a84473701b4a0625e71c66e9e3b3bb691');
+INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"080360e72aa3a0e5cf5db215604e1f88f13245832a6317337c594346d6bcb0f5","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'3bab9178fac6da19fc10d3650ed5ff5c78f59f584b575b1a0645fff390ca4940');
+INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d559d418ac79feeeb9c20f07dec990fc0dc336cb8326240f913a159646269ed');
+INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"24049c109410fd7e9757b5a79d44a9395f8be026386172809c40a9a2aa1c2f6f","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'7b83ade2df620cf06b117008aa29e8262ec7fbd69e575187fc652fc67850af9d');
+INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a71e7fc447c529accd4904c3a2531fe2f3dbdeb8a7aca7512288ffe06ebd7dc9');
+INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"28487ea66f848a80139cbcc9672e74363859f4bdcb3c0119f97fdcfaa6bbca9e","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'70ec7cd63f353cfd42cd51c791ddabdae0e1aebca2d229588be91c3f857a4e71');
+INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cb73e053437688f642c657169e5c6c3340bd4c4d14f806212c80144872f56eb');
+INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"fb5eaff1315e3832032d216f875007cfdc4ff836230107c46ed70e7c398a8317","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'206fd1a8db76d6eaaa8ce6d62d3963ec70c7de1ba0edee890e240e5b4d137b86');
+INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc13d49b6494e380a6d32ff95ce76fae6cca2dfed6d720e549ffb146d75932b');
+INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"ec477f826248341c9c69a641b4e2c492bc066e4cac8c5acd8fb672f1a53680ee","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'27156eda8c7e691447eb7fcd77af7b54c34edb4935e19e2c05382f8228a3a5f0');
+INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0da755b0a6d64fb7119eb95777a06811319a6a85fec95d7bcc3098ddf337f09');
+INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"9ee92aeef748ceaf5d7430c27b9763de6acdb51e7354d2cd4127fde93f665c09","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'f6f15839f6b591003614d4ed7caf7d28110a9584ed45f7917c0928db971374de');
+INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'baf75f25b8c5075cf7cd384d7133735754c6c72b274b68de76f91298fe4d300e');
+INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"b5eeb4d5c377450a9f76cb9478336b2c2c923d202e34baf26921fdb376829d4d","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'26457d0d44efe09a32c1e30c0e4eb2cd6a6961a24ac6cf450d7cda2edf409ea6');
+INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dce53d52f634b4eb40d134e98b3d81f1eb23dfc5df629294e3caa965b742d150');
+INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"14adbb4a27e071e03732ca48f299cbb499a42dccb90f47bca54973da2d69fd2e","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'683f0dac06e5ed1351e5b6d08be286ed8dc32557fb5c244c1838233eb5fd30a2');
+INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b3a3464a29c61ba22974d812497627b99467503bb075438bf3fdb3f2b03b1b8');
+INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"0e89d072dde10174bdf350dee0a3173a123b935ff900e1aed112a7b3874d1e2e","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'cfe609f84f8fbce57c2f6969f4c766ebefc31e1e909422765f5423069758d853');
+INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfe90476bfa992603ee1ee9018e8fed84865b3695b8c477d3ea1c423aa6b8d84');
+INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"ed50aaeaa24fee6e11ab673511fef6b34e8ff7dc93a7ce1577d490df0618b260","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'64a9026f6efd421ffa022df28c7373f23da07f4af42d3f948422d7b5caba6ea0');
+INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bc37167067651dca2c293136f4148181a0adfce7c129f36f12260c2d1942030');
+INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"0391adbb11914f1543fb6105d4b5d527bd4ea3c7925fe93c214e8a990de812ac","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'45ebe5202dbb1f4fb6e31d20346c2f504bae6dc4e3fd8404a6d470e757c31112');
+INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c268f3605e645894ce1db9da13386435fb2871a6fafa0aecc19c570fa51f890');
+INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"23a87d7e855d65d799a49edd6f528f46de68c6503d31f5a2085b9283ca96e3f8","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'6e98349e010eaf5063d4d6f50ff2da16560b589e7b2472ba98d5483edb8d5709');
+INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5e082be5e2511ddc2543127d776050146ae111ca3a893f5e3b071e66089d8b1');
+INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"a049224ac8ef93b12a2d484448fd7d630979344992b734ce80ea935af759645b","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'34d831e0bc424775aa8ee29652de8100eef397fbb4f7a8a092f5bec7dd3cfb10');
+INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'182aab6cbf8617cee6e26122a2d7fb632a21007bb68d81ff38568d300edc8652');
+INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"af3417fc486fd4b5bcbc1cf4738466b40ee693fad1e6ebd84bac9289c42499d9","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'55b8b6c2dcec8c16e8be4449240db2ac98aaa24c144603aecb982360e92e50c6');
+INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e702f7d2d1c22b79ef9672ff553a400ed9545861e4a31c7a47ea9f82bb6e9da4');
+INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"c2e8f4987ff436411c6729a50a8e8449c189df1b3c57342d588080c675978eb4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'34800c40dbe4f68f05afbc93d888d6464232dc83246732a8b501f37427faf5cd');
+INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36881e837301cfecad61a96454be7826e79a80e0f9c0e6a98ee1c955baca1810');
+INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"af856b378def6d5b5e4f47e88ce78cb92f05fa481859d35697df2351654f9737","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'768ca77441d757cbaa1ef108ea871cfab29d47316b0a20ad0609ce238d1e5d1d');
+INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e595838cbac97821d08c23c4091dd78c58fae91ee5ead971407848b70d2c3fc5');
+INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"ba437d66bd9106e5dfba9abaca8523a49402154241336c48e5fae18055348265","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'a6ac2c4699657e0fcb1aeb8f49ba4ad4ad1aaa45b2f5d9ba922d5b0766089c86');
+INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348134a24fe5a2fdcf53b226819cee513e935eaf5151031add36b897b837140c');
+INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"394de9c4af6f1e72606fea7c07233bbe50c658548ff8f1d36868b19d4eace8e0","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'02b05ff856ea660e7f0bee3d59922a86d34359022cac345b15fe0ba86e2e7f2f');
+INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49be2315724d0413e497e9843640e7385210995231ed1d284e740eaf7003bdc7');
+INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"b12cd5754c6ead386f3e75c6770248d05281ab99cb08db994a1bc184c8e37c87","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'eb21c400169d0055a9d12be8c5adc2b2620ee1b7508b0f6fc79a736a686105e4');
+INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dede9c7bbc889de1bd39340420e1d583a13980d9d34ec77034e9e6c492eb9c33');
+INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"4f1fac34f1c683f047ad57f735ed40315439b5efe2d8e4243527b3b6c60b3cb5","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'e1e4b5c89c88beb7798eb338b0f197d64bf6333376e8d0da34c2ef3444b82bf0');
+INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91c92a8c97ab3feba64876837cf2d823bfe529d307ef197348cd7b945ffa1f48');
+INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"8f34423881bd18aad46c3452b07649edde8d7b0308cdbcc57de76ffae059ed14","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'3f9c56aeb7727caf7544ae6869054e1663bccde7ca045cccc9cc89cff897eea1');
+INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dffe3c46e73473d11792002f426022120f3ec79c7e7a5aecbf629b52382d5d6');
+INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"1c244e91c5a685097f48f55f81d063fc917c816933cad2bdff2357b8a7c063eb","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'97c47134f3d2a66774ec8c7e79bfa8f873e550b670e1219d495940df4429c71f');
+INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a244a017fc3e1a158bf1e4cec83568a7d6276bb5bff5673397f4221bd6c28611');
+INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"bacd8f1e97108e18297d012e2ebc95279e8140cfcf6c3b6c145d015e45b35cbc","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'11e389f2a378a677990d3ae74cc9a0f5340433db90ff9383b5ce4a9f1fbce41a');
+INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da5fb2407bbf7ddf4bf4de61b86e35367196cfc9a6b6f2e688a14dd7f2fc8313');
+INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"d669de9250dbd03fbbe5f4e4f01f1f1e6a95a30d98732340e8c81743d1430004","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'633be1618d5d5ff9db57010807fe192489dc2c57ce5fc618c19c87be18b0d906');
+INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d3b1bc5021e5bb2bb7a441aca9f5996f2ec5ef512848775821a31dc38b71908');
+INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"d2e44226c28c5e6e097519438fea8639215702130906c4ccb2573aa22acf6924","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'81e46672fde221784be3ae0f4150c07bae991f28f8646045ac51d8d7abb8f1f2');
+INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'513cc937d65c6dca33c4e8750a502f632c9ad238af3bdce159ab97bdfd4703d1');
+INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"be181e7ddfb3aa0527e059763c972e160b9d3e8b89f77b1dc87a9e870c4fb3ed","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'16e1b377115e110b41bb11474eb54fb262c1ae84a581ceeb132971af7803b15c');
+INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74b69d754e90014b6ad74cf1839d25850bc6f59e3013740c5a886a7053c8b91a');
+INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"598149869bcee867166fa1d679ed1a2237f77a8df3b009a2830cea292d990248","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'ad66e536467e2fb5e9505bc185f3050e9589b93170d87d44f7383000f49e543e');
+INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae55d6ff9a31af6ae7a2f6cebaa8d1c897e2f64530f93d8eab9babb668d5bdfe');
+INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"afca019eafa05f1493f11ecf78cbafb7e057d1d65f4dcff8ba28353b89912704","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'143c45413d704dc18fea8439a2daed740470e8aa83448ab6595630cd476b54f1');
+INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e7f7854fae9adeea6695a307452d2da150a672c2e2a1f18865e2d95421aa3ba');
+INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"2245beaae679257ea4c041f653a25d5682678c562573c0a6d705eba7e8de80dd","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'08cbd1718ad3ff627d7aea65b091da16fabeeef5dd3337b4c3faea5ca8ff430e');
+INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4403f2e8f5e0f338673857838fba8756dc5d6399c3e5617612e331a1cf964d2d');
+INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"669db1defb1ef01bab9fc747e8d3e8d0eb5c055f665272510c952988febd034d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'372ece358934e82dc55eeec1d09d4bbe6073e4fa3ea8a6b9c38a97e99fd556f2');
+INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26c10e8a0c31cbfa6489ce3412eb2abb3660ea9d6706f5d61a6f8ebc5dbd8ada');
+INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"08be855eb4a7530f27caba04a0d694acf1ff7a11a4eacb3d423fb305841c15f8","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'3d7876d757ef85d834eaa6c2a08e6a3eedff8581391de9a0dd0b772a68105bd8');
+INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eeab8334ca24ed7c7b6f6b2dea705210d3b81e7b0165bcd681128ada7c193ed4');
+INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"c6d61883c60555b2ceb5db12f80b6eb2a5f1ff9f4710d56dde9cc5856ae5f904","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'4e439bd8a7872e97f4b5ad3da15b0ec7e478942fb3bbc186cd2550e64c519b36');
+INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe3e8a9ac5e357921fc39a2ddd374576f7e066a170a1ee6f05492669eb4f0eee');
+INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"fb5f1049a29b4bcefe05d7a7369e02282641d032abae4502def0a3f1e664a83c","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'aea744e45c20af673a13a22c0df53318e011f19c8e03a653e8dab1f43d412db8');
+INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f9539cbf20d5efba8bbc5db9e9ef3920a56dd66c6618253f48fcda7471f4946');
+INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"7e489e12aacc1229f3a6acbc43ea1fa8d2d3f2138c86a72981006ca3c2bbf2ec","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'a7d596698a11ca66f3b61b3ea5bbe88380fa61457ed1db2df30f96c154e67ef6');
+INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e890f102e3680bcb61b5f680296c567cc056c9683239b0262d164815eefcfc5e');
+INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"57e01d9b8b6d39d98340d47e2500f9c8eb6ed608a7fdf73dae13cf140dee538d","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'3f1ab688bfe1115cac51c017753e3a5ef5515694c65f0e16ee91b64fa26437f5');
+INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04b70cb8dcd71e80f56d4cfd7a0fead6166447314ef89cce314fb2eac3f366d');
+INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"471b03eaf728606a904cd338bdffe853f0292cd01cc74e3b7062e00131be15c9","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'0c37d974d2dd549987e7b2944d912ba65f5c67566dd7da7e597899ef85c3913c');
+INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fde902be92b8c6ab1575b64a4fd85ea58cb0455e910eda75d3576aa11835f4ee');
+INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"94e083334b06f881e2c885040f6f30511529e6152310b438105a7882d401080d","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'605e9b7f19d59a7e961efa3d581404dad396803f22682210c54ee225fba286ed');
+INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7ed6b644d597c2ea792a22cba403098b5fcc9a93ecea2d001c19fabeb74cfb5');
+INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"1f78f960cf305a7fb66750d6df1c8c328cd92ca738c348422a85de6f9803cc09","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'c5ef0f967fbef35f9dcd27a6ad9c95e8afd1cf6d0a246713c1e3c2d27fd6f467');
+INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'866b22a240ff8a647d36f333bf740fed3e786eb2768e6ba9f4beb14eb7c96880');
+INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"a1a8f755136d8c1e002673a43ae4f9c25a998cb53e84c3613a8e1e6658da9846","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'e469889687c7188ae7b10ad7266e2c841b3970fa5c75d5c2c89681777aba3547');
+INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2860d3a000eb23140bf0827376247ebe51178dfa921951f65a3b4403cef6e8b4');
+INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"10e50722472b67e160edcb8dba4e23ee3f66814ba243e222fd9c5785286ca090","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'830e38f4af7f88a428181620957d690540111d13ff8fbb243a0f815319130632');
+INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'961d25ee910ee172c123b9698fe7352631e9d07fb6fd3329d80c347663815d2c');
+INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f9a08101549db0aa9c6e67ae3a2cca46a59526dc5a313c2ad50f76ec5475f820","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'1522bc284081ef5b0c48864bd5e919f1864665f17c4e73a98bd94984a1621f4e');
+INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a41236badf847c54014bd660f65c16b0f4d5f0bd8881473341bfda8c6c4cf79');
+INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"caa64b96bc124bb33e6a9042af4ef016d359f2a78383e7e76024b6f5a1e3067f","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'a69e3cd2e82e0c6d1d291d3acc90c4ef00eff08c713eb6d7b19949392c5a0cd3');
+INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f0828b75d2715fcc28f14ea547dd2b42712277056c7b0eaf3f79c5b34918a74');
+INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"539ab03391bc8b4a2e62da7208b35f028011166420d97e0b335206a3a3ef6ebb","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'6a75d008f88f2debfb917ccbd4e41f4b13f335000a696e6d6c20caae48fe8eda');
+INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dee291f05cc158175d4ca5adcc49e3e0f55f1b88773e1731d1c8f943c70aea77');
+INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"fb9d564583c18088c46b49126dedf7389071698866951a2e21447285893fd444","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'64b96041f8f4167db7c0b671165de3e3f5ecb81e0d95d89ad92376e7e7c5ddf1');
+INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cced00732477c3c89f7a57a6e9b2c8f9521dacabeccf1842e393a3454a60cc5');
+INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"74518dfb141064392b09d36ce6e749781162269155a0dfb8fed188c29bfe968c","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'75bb6c024e8769e9a31a8a502cfeee77c736c159273e4497a43c6297cdab8c3f');
+INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bc8dd45f533e51f18bdd737cd01f2b51771eba3c2c34b5eb7113e4d76c2313e');
+INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"93cf78601c0e3a8a456b115962f8ab58695c582ff136737eb09be1a7680f2491","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'7a2ef72b539b1b9b86918b955d8e96e3c736abd965cacec8a6a811293ef6eb00');
+INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38d0db4dd3098306bd5d722a82daff85700bd609ca8d5e79326a7bf4af5c29a7');
+INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"dd0290589cda516ec6eddb2d75d86d64441550c19e8b8d3e9adbbb1544cf0544","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'fe65a89e6d70ad8c03456821dcf510697e1cf699036fee82f4993f979b43fa7f');
+INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97dd9aab9c63353ff326115f221d84597da6a0678818049a9007a1887cbbfa99');
+INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"539c38d03e2330542cddb0826e1787d061c5521bc2665d4a95f865e808108f24","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'2d3975e3e184adab8e4c3acdc6518b550c862226ed1ee76036210dbba181b616');
+INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bfc6e22fdd317497606bc681720404da4545eec261379c8b8b6e6e6e126fbed');
+INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"9eb29fc43349c9c9eba529ff4994e9d6f91063e923e37136e14efdc7f0280854","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'39bd5879e224b2d5d2b7363958648d847da9518af0162f136379e5dae15f34e2');
+INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ad85ef5fded3634ad63c766f35f2e202712ad2f187218e6cd6897d13d2cf6c5');
+INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"dd1da36cbaf6a1417087abf478e9a63e828d79cc956de97568328429fe35e172","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'7c54d0fee465593caa458d988223812ee36ac06fa3aec786301bfcc396721416');
+INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5dd8023033dc2d63d2f53e304c985eaecae5428d9735e47ce8fdb8022805da7f');
+INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"06055afb3d5c34520bdebfa82843416194751f582864050cb6ff8dd206b8a420","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'b3daf708cc9d00e343c3056d1ac30e7cabfcc2c2e8bd62d4e42d6348d42621fe');
+INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6424b94f8562359ec07867a9b1793b2711d67cc3c70ad1ebd78afe799d679d1');
+INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"b1fa993525a8ff98aec397fb3f0e882cf1aa01a0a07ee3bca9ef543bc2366258","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'b6c44f579ce306e2d988b0f3faa02c6d5212e8b4d35ed6a81e224886b062e3c1');
+INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10b9c8ec809ff5265e29349a1aac1201c5ff6daa8ca76dea7510c7bdb03b0de0');
+INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"f61554899fcca1135dcce45a468d91170468a8531e3ee564ecd84372ce32f7d1","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'f98ca5ebd076ac3fb590b37ec2b0f940e87c7ca6c5f2aaf90e09a8bd25b32e6b');
+INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3021e617178ea6166262432dac449893ef41137e7463d9140e78a15cd5cc6d59');
+INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"3e926512bf9640bf41a62025435cf17bf9f76eb10db313ec520120f47e0b8710","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'813773b581a999ffc060dd2e3cfe6a091b40ddc2983f1e4c8ce16f4230e1def6');
+INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b75eeddd9dda24dbeaa74705e524137cd1dda15851f3bac76a7627dba9467e2f');
+INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"504ce7a02051b85beec5aec3f966ef1e27296818dc1cb2d33d90df9addc2209e","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'e52d1d98d7f7a2570cf0e5746a2f23d73620f5b9ed70d56abe4f92fcb6b1a149');
+INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d704bd663024904ee50ac561132410f20823a6b4b76fe977d92d7a5ff3dc8a0e');
+INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"dbcf2532422d19dcd61cab53ba009a72ea64584bf2963d1a54e6316e35ecb4cf","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'c5f5733d004e01e87a0e5ff745e0fe632e1c34c8301bb0739b1e8ad611ff6f26');
+INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d652db09ebf0fc04f966419bd2e07816c970f6c50aec7f2ff2ee43d4fc12e42e');
+INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"2d38354f588f7444d08b83ec1bfb229391fb9e536d39edd0c6ed01e3ae6615e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'aedf92ae82f26efe1fe332f2122eca4c03aa3c49bc7d01ffdf899a392a2e8480');
+INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12ed2a5c8c2ca5f18f02ff4ae94748637c9fa10b6076f9913ba3cc075ea88fd7');
+INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"cffeea14d3d4af3dec1742a1e754397f09f1689e33cc3b38a382d74b4ffeee79","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'c9e639b3e3e36e9ae51e71178ed6d7b1565a05eaf40432637507c94401519e72');
+INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84ad13997bc819b64e1c7894f0b77e0433cf8bf6b99a7ff91d4ddb486e5dc265');
+INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"7feff465e13b22a734949e2d3d6f1140f3a678691da42717b38b5e0994df9c95","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'061f991b5771d469de25e25029aa921f76ec24bff6b580145549ac30301ebd5c');
+INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e14116e07a9f0de68ff57a9a15822db58971305764bf70536e6bd48d2e6f358');
+INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'dae320de7aaca2889c05a98125d035135c6931804c38cded4ed2bb4eb5b2243a');
+INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','984d792f91fe9c699dbadc62af926aea9d2d79b2b5aedf94318c5ff301b1eb89');
+INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','899fdd26c681e69b3fd804947035fe2cf744a33ad9220c30ae1a89b9d1298ebd');
+INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','406e93ea90d8045a4f903ad92c8cc9dd42a4b6b0e21226b2f3660f7464748011');
+INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','919e5da9cc1d451e226930ddb537de1f1126c54ea90f86c5b81ffc606d1697a7');
+INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"2ae951fd6cf6e0889356eedc61d768c4525631ead613256b725866de2b88ecf0","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'bf06e19455a2b29a6fd2ae454adc9139ab83ef0abe851cd0224c6bb5f51bdef1');
+INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'458997ca13acfb07452bbd984a708f8e24c8bab33154d47cdaf6d01ad6851a58');
+INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'b82a23cc6ea3b99696bef9da71c42bae30b21753a8167ec7b987b5ba7f2b0409');
+INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','b3ba09debaa33fac10b6bd10811fde0014935a53c9f63d7197dcd8f98c4f6f88');
+INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a755b89636d5334d6d5dd862255e0d26d864a63c079c8b5a10d41bfe7efb2aad');
+INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','b562a5cbe167c906dcf035a6e40fed7962503172497592f8ea6ab5e882fd8176');
+INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a93968c5440243bee5acb292978506e0d3efa90bb653c349953e9b4fce2ad180');
+INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"54f9d1ce2022edb448e6b60988f10661916a2be3c0c88d257f4512f4661d3cfb","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'83a41a28394b982bbe38a2847a7b0dc8c0c0f5dd73bf5807865854c7769fb2c1');
+INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cc0e8c1b3e16a89d3bf48a9264cec11adc080fb4a08945eee760ed16806e8cc');
+INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"ecf5eb0a239482dcc60b55ce9d7ae555d91926d80eb7870deab151d5b0c30d89","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'acca7d572f1d71c1f67d6fe55e6d723705ef1dfa748de1e60088ed8bcd4102fa');
+INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d00a305a2321a44beee2cd2170586a5e0a26a5a1f645beec294fccbb0210226');
+INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"afec302c107b27644ee0f39a850cca9f86703a0ac8d78a40580694d33e7c3cab","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'5f15bdfc1af72f500d493891d9fb2c4caef1b9ed66664a2d0b39e00d61aed3ec');
+INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90afdc70349c43ddcf894f23153771cf0ebfdf1fbda23bdb4d7c48003218e428');
+INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"8b2a5b6a613c9f190a253983aa6578ef496edd5a8426aeaae21dfd81475379c2","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'f7dbb4a04624fee91af740b8627589eef25375ffc4941f7f273f00d650c4d148');
+INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ecd824a3bc34200becdf685f3737a04d00845743bf4cd7a3035040cb4f8de6a');
+INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'dd128408568c3b385acda57270c93d3896ff72700d3c93b1da75d22d2733075f');
+INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','eb6b5674b178a161e97e04e22e1c8f81bfcea359a38b80ce3ea3122ca20ec464');
+INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','7917d95c15134dddfbeecb1a5e1a34886ea2ad138daaa8ca27478c226da54593');
+INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"74231803907f08e1d469edec4cb87590248b16b49e101fa502fe0bb21645dc34","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'c3ad9f5b7ae1d3e354ff2b4ea4d960d22cd7648ed52ed5a2153419b62d67ea29');
+INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'453f6892e59fb46ce13ed3b516f036c723e9af995712c8ffa9e0f5b235253727');
+INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'938c5a1d392acf5a352c755e8e785954630f0de3f1af0a0904e25239aaa7c2f8');
+INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','4280681518dd24e5a0dc5992a86bc50ee7c1962308903a45bb345075fc8bb7c9');
+INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','a12ad7b97553aaa2af601e7950d69bd2cd6a817ac140d9e2ffa13123016b3711');
+INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','1916a99a23c981376b6a8e5c0ff988ccb33c234c3f9b7fb33fe8749e4d2f9565');
+INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"dbcff459bc535e44556f4ca4fcc7a8992bddccf9be2b2e3880437e4203be6b99","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'efd9feb5d8710044cd1937cac777c94b9cc0519497d6300f76da6d466bd44057');
+INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'113ea0b0aabb1ad71195e052ff66a605a97f146b896a38f3c5f59a5d4ff30496');
+INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'597e08b1b0f48d0ce2f582d167f9ba512192a1866486018b371a41217dffe61b');
+INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','4a046eb7f232461b229ad43c8b516fd173cbd7efa95a6c818c7a96e6661131a9');
+INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','d8c632601c4edf19d5c8bfd28e162f049ddb7b8cf4545567c868ba8c6cecd125');
+INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','3d697c561496f4d000659e5f698da24402d18f628765eed24bef6e4bfcea031c');
+INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"3ef2798c9af0fae8ddca24c6480f43428d5612c19ab9b1340fa19a8f56eaaeb2","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'e514dbc1ed077aa02b5ce3854c95142b4d9c35f9ca86ae69f269c5de2f682b7c');
+INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4aaa45d142da1aeb97c8af91b8fd005c70099cc9cc7ac147ef8bfd03644ccfa');
+INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'dde193380aaae7d10eb0dbb933b496cb54d6aa2bf837e1bd7a5bf17f03276bfb');
+INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','f17b81bc1f6c2307af1a28827604e60657eea2e53be29c4669681634bb2c0deb');
+INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','a488312e4ce2a769e0427b7c3ee49a402562a558571c3269cf6cdbdab17af2bc');
+INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"770a0750a3f1e400309da9b29ccba06399e3faa2c5b74f38b114de6a79e24fb8","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'cc03bc171138af6dcc8faffee8fb027eb8c54ede33c8ed96174821f94f474e3b');
+INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46748efd270c7c284cd5cf10272e3a14206962965480deb3203742932ad3b2a1');
+INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'507438de372bf629d0234488daeeab8cf717e2d65d367a442b23f46bb9c50d92');
+INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','30cc9471c9f88229f0a0065eea616329f8b29dd3c85a86d81a3d16df64fa26c8');
+INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','fd560166693514024809d3c3578a2dbdf6e69cd0902bfc2917d1bde58d049465');
+INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','fd0d7d3a7f05620175a62137b33b48dae68f85bc279599972b0d41f7598a88e6');
+INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"b10799e81bef49fbd4b57768bae9fdbbe85148f35fedcdf273327c0d78e7e1ed","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'be3a9bc6059cb821344ba094ba5d7f0534f497e339f3db3337a04285e05009d9');
+INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfafdd8d939124f278aefbd4f1960fdc6891be5c4d1ded62c2702ae31797a017');
+INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'295235078f2c337662528b1fcf74918a67a4bf60800e82243225490a5a2b8bce');
+INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','813f16af0a8c224e55c8bbae171d72d40c127482b5799952e76137d352770979');
+INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','809160fb3837fe48e07f815c4948d2ad92034dc6bce9998206066d430eac4f47');
+INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','75bf228c22e57f3817704518952ecd3dbeb70c20f62f61657eac312d52b59d92');
+INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"9e9c8f8f8d7dfb437d16e3fb14b93104a64d31577e5771fd91ad73d816d0feae","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'710d54698fb4852c1b8993b9c0f4ae09ab8cdddab19c4cf966814eb004667977');
+INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49e443289a5790a7d02c3052ddaaba1e7940e831dafb8c4cf123da6e48a01a18');
+INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'76282094e5c0ad1f77bbc9e10bb0b14b6e686c49a30d566c69778f231cf53e8b');
+INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','41ce205c218bbbf508ae72871ccfcad6a9380bee47dba47fd845dce482e07b40');
+INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','25a4e13b913446a51b0c59e726ffff5e561f4d07087058fb748dfe14e233ea12');
+INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','adb4da0f5b3f0f23f40bc78db209e680f6221d173cf7aaf5c9e731650f0bd22a');
+INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','e3e49a6d7a57e12979ddc46398f4d8e24f0db12e04cc2ded34f1c20de2c51856');
+INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','7cc0eca176d0d34b35ddfd84dffae4cea1663d0139ca6f6a7ec33d04e3e9f131');
+INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"6be55e89129fde30a1c54dd27eb62baf59845f5f35cd43a435dea6ba7b18b715","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'1bb3ecb94ce43ea913308aceac159e924c598611c85efad9c478ca56f0e43220');
+INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fd3ae58b64f42616185111c2e78710e36886af415cb918773e65fc5ec5f3132');
+INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'7e68cb985f58dd24995d248f2fdb246a32b4a65cab7449abfc6aabad4d6b81e5');
+INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d25edb4450a05c23cf039aaeeded91eb9b7da82007ebf3cbca92cab5f24c6726');
+INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','8f69c6600389edf7849fef3e36f1d87444e59b499d93b8a0be7724d6e448c5d4');
+INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"8d04d8d9bacf66aec04b5eedc6dae4ec20cc2964e7e2a03a96a368dd8cc92bf7","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'0eb85800ad717b5b0675924890e4ad2ce6f74dec12fe90c9b3d643ed69c3e13c');
+INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b2259c196068c890a51052a31396a8e9d2fe8d3223d7047cb380b981a947d2c');
+INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'a0fba4c5d9c09619e25d3cdb5fd64f9e564557be1e5454b545652522f241f4c1');
+INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','d6b54146bbb29279121406134fcbb369aff908eec3679da3a5d90ae8789f17af');
+INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e3e45c67f380f027b64139537ff73d7653eadd0999234004fec761f23edd6952');
+INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','766b85b01fe952be1df6724c6b47522039ef80c24a353f2832e133017a33be14');
+INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','f33642f212dd13f7cd9778ee6b0fdef0bc1326ff6c91630f99823dbe607bd52d');
+INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','7aef77360ffab43ee1418125433203342ee38b1e431e86022bd8f247ee5e8f34');
+INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"f9e39883736e349f6c06f7a0f7b0501d5cf4c9feff4eb53e9d3c0afafc85c6a0","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'3b41faa02c8ccfa497a4a2f59103ae8ed5f8c496653b468f0a11235019dbe4ac');
+INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48717528e996251c25a85f47fab46592503cb0f18a542ee9af2b24b9bf5538ba');
+INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'0c449bff134c04829a62c2297c523e54d6e6891f0c1511d0237dbfe73e62b729');
+INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','474ade3c1ebf14cfce40519a6584f5a6d74698e0e2013ed1be231ab3fa4d5f31');
+INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','ba4822326861e664c1ba1411f69abb4107491fe43cd613848c8cb081bf8bfec5');
+INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','105bf10773af47af51740f761a3539ebe7c25977203b0e5c28fdaf2b08180155');
+INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','94c9470b1c9b10efa0ba550a519848942402a38ea182d3a364f14106a60cbb8a');
+INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"3f691c9db715a8e8824082201e3e64b8693be7dc0cce079b89b35da3ce6fdb6d","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'c40f9581e2df8404e7aa39d6b0eba9bb8b785c536dfb2a8ea37f933b092d94a8');
+INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f382760910c5405be4d84bccf7884d3d92c382e6d1bacadac6b1cf56fe144037');
+INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'6ffa544a594d4ab55905222b38cf06be7db49c49e690b13c99dda349ccc35b79');
+INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','49f04680fb79b577b2dcb45bbfd551dc5891180b77c04a296e85bf41020ce071');
+INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','8bbe0684f3e432ae2341634282dd463ee6dbe0b1b1682f8f63bda27f4b9432e2');
+INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','5972abede12fd562cad66d45002c72a9cc8bd4434b8612c2c9a3df98d9b27169');
+INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','2ecca22ca25c587529a503cba5692cc98474a61fb84a8ec0068690944e723f1e');
+INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"5eca451c1b5b96497fd7e9c95966aee8f7cb89d5c7a198059631e9e4db60df23","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'77f07a73ea0a3de1c4fcfef79339b92c7c76636df1d5ba9de7be357fb7e70863');
+INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e936cd130e95252d3b5c83bc005ab22dea1bfd90a653698c86bd10d74319853d');
+INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'fd8d7aa08f045b852417b095eb877eae6c8763d66153130fdb5d96b79da38c58');
+INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4c467f60447fbf44453f65ed54169597b849e167af0a7860be14ffac13a9923c');
+INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','0aebb17967767924cd07fa766ec69a558a27201e0e520fb9b2de281329b5ca48');
+INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','38d0882e0fc716867d5c933a0978f66336df620acd0469b91046c2764a26013a');
+INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','a74d83fc1e5fd5fde3f1ad8d31c55313dfc339097afdd356fbfafd13620f73d8');
+INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','08145d8e8cafee6bab71a6790d55e0b5876d2ef47c0c1a77dc8ea466864de6cc');
+INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"1b1d5d1b626a20a86f47ef4ac50bc55ffb05bb7569bf294c312d70306eef77b9","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'b747579a2a7f653c04b4cb95c00bdf2d829d256d4425d9cffe3039de9a03943c');
+INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'787446fe17274f0825615508ce430fbf1183c29f675b449d376eda851cbffd3a');
+INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'1e7d12fd93d3b87fd071fdf4cc3378cc6bad077c2bc66975cfbdaaafdc78c3f9');
+INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','cb2ab416e0893c80e51c0a9915925df63ec91cb03f96f482626a02bfea35179c');
+INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b4f929c2e141496f69f5a6520c2f8950994ad17126adaf3fab23559f8b408b5e');
+INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','c4e1ec37ba78592e8839c6d7fce9db07b73368e19adce5f93792cf9f6cbdeb77');
+INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','76a834fb1ddf0d3c8ce7cd065827a1f6199f526c14407fd991310f496195e965');
+INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','fb224550ec1bb641728657d3f5ff0993c619605ef719b9075c1793d3c9fbd131');
+INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"6bb9890fecd1e6d7df2077d3a93ce52295a7e77c0400332c287b23c00318b4b1","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'9b2f77fe54e2f12291c0d951a75dc8190185964b562ecd858d9bfd5e8898ef97');
+INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a25270af7add2e072f8de98e2e22906406b54cd8d4d23c15a2f16e4f0506b5d1');
+INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'288892dd40d45af45bfaa6c0fb63591ce85b196116a476b74055d6ac848bfeb7');
+INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','7d0e420609ec27a435e5fa8d16665236b7400059dcf6a9939c2ea41e05ab2148');
+INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','4a59860088ca6d230326a2ad9dd5e7b0d1dc173c48f39c87bac10eabe39202a1');
+INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','e089fd4fe262da25da6b3633322669fc64bc7c816201eb45e37ef8635720c753');
+INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','216272978a48ba258f711f0646f8956bb7ecafdf5db917f4399afcb01bec09bf');
+INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','1cbec2173fa9285395b9f3fd34089b9ba467d02aba9d9ae7a19962a4b39c205d');
+INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"1f284bc0283d35a0e16080380df507528f987e1b74d7f221eb4214bd8acd4efe","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'1f44ca17d7af83a08788a6ddcf890161b2d4e1cceb86a3084b7ebe2d17146620');
+INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb112422b418cb048e309193cd74e2bf87a467533ae78d154bd718e75dbd978c');
+INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'08b55083ab5bc940ad108cd53258efcf1f114745a0cf94d076bb4a01d35a6a2d');
+INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','e0b95e802df1bfe8599158946003af077e96b133fbdc2228ec1cae7dd9a52cdb');
+INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','3f963d08efa733837fa66717bab66f3ab945c63103429d723d24cb033c484cdf');
+INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','b66f99b58e228ed974af169cb153f3c8ac65d0311fbeb98d41ed891be87b55fb');
+INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','f8af5c128b591f77ac59f9071b90214676395ef6c1545f94f0ef604c8cf0410d');
+INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','4bbaece63e96c6f62ca5f5b2b3f652cd5dc714c6ad329c9a1d2e373a87ab01b6');
+INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"7e9485dcce4f7f6aa33c498249ecf99ffb3cd102cc30888c70b93c73d43d591d","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'f2f5f5c2d4aa7f62e64852c94c1f9379e9e930e627429e551b99e9d2750bc4b9');
+INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4948f101c2ca8860f062808ae72cfe6e4ca8cdd54d62f4e72f32c8bb5ccde78c');
+INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'c18b7a0f34f0c7d20c17f76f21581f9195f9e3900f47b8f16c968f44fbc09c06');
+INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','70abee5471c3f769b36b6b1be5c8295cc3980e42893286333f424d1a5539e527');
+INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','a0b99e5da472f87e5e7aa4c59755a1d352c4b64e218108d7b368828b598f4bf8');
+INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','97708d3f077ab48d8effb1617e35510c5f355daf7f42128bca169b1648dcc85f');
+INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','12448179ca4db46553ddd3499097882de6ce9bea5ef95b6e3874626e48c3bec0');
+INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"56e65a2c34de5746cda3c9bd15c28c0fce98bff2f61a0fd60c24d998ea87cab7","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'9695c972d599e1e81dd9287911ae4539b06e3855d825e5f7b03f687cbb9ddca4');
+INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'654f0ffc79f214f495b9b27b13ad49bf6e7ec432b6207ef53032a3fee982f8c4');
+INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'10b3c53f665952e874757bd7f2d0e759dcd210b8157f7860e98e44266facddf8');
+INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','25352094c5cc04beebb38d7fc6ff3c661918692a8b53e58f66267757cc3af0a0');
+INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fd8c59816e48dcc2fcc29c6969918c5f9e342f9d0a2346bee351a6346b7cbe14');
+INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','26264cb2d22561ed88c8eb31b4f98a97bbefd2fd39e16487f2db40fd7b824200');
+INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','7e9e182fbe881f1108158adfbdcb09b94387ffcaacb27e67cf6d912fc2b9810f');
+INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','c26aed474bf803d44c8154a45c1a3118fcbb71a135d03f562e2287dd62b70d2a');
+INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','7ce22b14b5a312c5d597dd73fdec1c62206da1008327a82ac910584bac68f8e4');
+INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"7a09fe3be87e3463a81f0c31e1d5a380f7171ff1a4ef855ba769fe877936a099","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'2830c20ab5d6621145d86d9a8302d3d21120a51a71b5e1470f7c5e9b45283a16');
+INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3668940df7bc05fd91d667b992369ff3d008931423e9c855624eb80834a9d1d9');
+INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'20881677ffdd742afeb3b987b6f14cfeb084b2a9496f94d92bc40d2c06e6f208');
+INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','873eeb9a07543be1dacdd899ec858ceb413955fe293f3f4f3b2daac459f12538');
+INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','2d97aff62b196950252b0f052fc55790bd6c12e029171dfe4b005d0837bd3ebc');
+INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','a122340facdd4fc3335fc2fc8687fd069a39aafbc6b641117ccf1526350d3683');
+INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3cf13242b2218d3656911030488c657fdebf31f73957c2ae01d4b96d21bccc75');
+INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','677f16280a900bbed4546ba85b90733e308a754adcc06178f5ae49e0bb732dbf');
+INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','160b4297fc3f3c754f7fe6072fa2eaf76d08dd1e77e75e9e52dd625295879bbd');
+INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"cde2608bae2eb699993efa4b79cdb33288c5220c9b3771db3803f1f8555348d4","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'e34b106e75e3ca2cbf857957295e49432cc551f67ebe79748919359ce33d81bf');
+INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5fecd21f2606abd10d1053f703a676aed0a72a266ba7cc1117f19e378ec21cdc');
+INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'ccb9770d30d2e4d69ee92c90d727d6c644726e1281846bae3831a79908549c3c');
+INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','445b714cf7d3e054bdb79e43efd61427b5a5684f6071146b55d45dbbb256c898');
+INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','1d0c1915b462f825ec7f96aa7d6087b4d4bb121c525736d235f8bec4fef5a4f1');
+INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','bace96a0f04a27f291abef9f8512f755b0333fdc98ae4e4a18c1309f5b139d02');
+INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','9e36cc06e3a45e7315a2dc981784220c61b27eaa4b5541c183f84c86ea98a452');
+INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','88ad6ccaaed88a001ae7f5a975fb9b2528276283f6cb474eba9ed57397d18a35');
+INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"9f802ac448be60ae7dff91bf0d9be9c3ae9b22e42967592d1de7ed83c5d55481","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'765d91f1b693722ea94b197664613530dc3c7a019c7596492dff1fa8bf0e1c90');
+INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d54768f82b98013815b953266d2806a05a4bfe436db1d3ec08b64b6a975daf7');
+INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'0668d4544f1232bc04a1271d45dabb4652a486959334f0d9efa38c8a2186d89c');
+INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ec70967c25313ec6040efd74c861e346767c7779334fed65bb6b661432529eca');
+INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c41620d7fb6a2c54645373288f3fd06d66f4c1e07f258239e6450985c2aec6e9');
+INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','4be64f4246e6e98d3512b9f7b8b7e66021626ad97826ab0a210ac206f4200036');
+INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ef183223b62dcb4b5d95938ae76f5413b96325b698e206ec69d691a113a845d5');
+INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','a1f1a123c100def7d69064cd60f89e503a816dc256aac18a4480d0123cf22698');
+INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c3ef97a63953b27959d0e5cd4539b0a04b52ba7e450f0b6f879cd2600e175670');
+INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"b533acfcc0186c3673ef702efe5259fa88b0327e7331f86c7c13d38048201f48","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'4507bf505b86fdfea5d3292cba432fb26f88c2e0b4a0c2529925e73c334aae18');
+INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df33dfe04242bd7dee26d816cfa81777b5bfb41ea7e6d45c8b49bd0b48e2ba53');
+INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'4a03e65c8d3b972aa64b4d617656c458bd13255a7d13f5b546483523562d422a');
+INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f82926eec3488973ed225a7f87c7379a95b10de6c7eb44e90ed5319f89b9db84');
+INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','fbf8e31792a7d7b8ce3fbd6f82347eee36baf1820a80ee313adc318dc59ef03d');
+INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','da5a78fbe07047309273c85b9ad9bd0da0bf5c01bbd38b6ce9ece949bb64b8e4');
+INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','54c3de62c7650af478aa901319a39070465fb9ff255079a82d0eb4805f56cb1b');
+INSERT INTO messages VALUES(1300,310506,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7ca357cac6d21c75eb87593312c37564926409fcac499e5d383e71b5218167a5');
+INSERT INTO messages VALUES(1301,310506,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','0223292d74fa983d073535d62365c3ad1f83ac58307958eb132211fd662a0d76');
+INSERT INTO messages VALUES(1302,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','0e3a16ce86785a416b2d89c864fc57cfec52f166befd28c555b4bd31f2b3360e');
+INSERT INTO messages VALUES(1303,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','0c2e676e44901efcd1a3f81ee5f56fdf5ecae133279682bab5b4c44e01f329d6');
+INSERT INTO messages VALUES(1304,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','41c6177c0610ad430b3d5b90a3c0baeebee65ff6ec776a9061d592768bf349b5');
+INSERT INTO messages VALUES(1305,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f84c51b63b4c12d93787e23ec90a099318462568f8f7b97ea9040945dcd077b4');
+INSERT INTO messages VALUES(1306,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','35633bb7878a02058bf9b44ab1580f353ab38f747044c425ad16dd71deb6d79c');
+INSERT INTO messages VALUES(1307,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','31d671c145ea9f10bad085683133f913ceaa0a963a88f4eaa0c4db9aaf475d29');
+INSERT INTO messages VALUES(1308,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','544a7b400f099582b6e914919444e9c7f5bbbc460e33fc379b6c27630107ca19');
+INSERT INTO messages VALUES(1309,310506,'update','fairminters','{"status":"closed","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9"}',0,'FAIRMINTER_UPDATE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','184b3e6ee73af53682f2a59837236a64405b401e0be98b1de6627ff5c00af3f1');
+INSERT INTO messages VALUES(1310,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":true,"divisible":true,"fair_minting":false,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":true,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4e79faa09e02a16218f2c23a6322e727e2910d1ee7edf54d6599c52614dc4693');
+INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f635572266e85b24b0c1103dff4e5a39dfadd70347358cfe2828398e6b85e636');
+INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"bdb7759ca028c4e77b935218321adbcd2b57350905e2ee17163c7622b109e44d","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'d43d6a0625074cd1cb43533597654c88b7d01f93ae2b6ad0f0933371a503d999');
+INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32bef11f3b08db332b2077802b79c8b170837d238d999ceb87645b1548cc3b53');
+INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'d89b305c447b37ceb25d4e4ea0299fc01171ee787eb61797d460109777ef7c6e');
+INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','153ee197185895d7d97049ccbaf173e43ee3e79362c40e975cf0feb77ba4c235');
+INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','1aa22a6d652d3a697cd64238c952712f290fa02eea94b627fd3b989b681079ff');
+INSERT INTO messages VALUES(1317,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','57110b9fade6dd04d6d8ac1ac12834c3fb0e432b4e96f4fb55202ac9d41941c1');
+INSERT INTO messages VALUES(1318,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','2c9ec1725472f72840b42ae97b0c247e85a169f60d47825c11195150a4f4bdb6');
+INSERT INTO messages VALUES(1319,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','03f26b30e93ba01baba5c5d022d843537f6f51141f4d8abab77461dc9935bb4f');
+INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','69366b0f341d6208a55c2a185626b08b4938c87e8b555c49d604e2d0939ebe66');
+INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','c4a3a43a9b9f3e90009092f51763e3e0eca4f3f0c1fb0217035521d0750e3bd9');
+INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67","messages_hash":"70607a9526c0f2c4361fea26aaf5e3f11ffc02ba166ce5afdaf9cfdd8d4ba4b2","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'11de78e4e869396055f7b6ff8278cd357dae9fadd2d00c77b9ef05a80def685f');
+INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58eec28a7aeab56684373623f95c514f8b0e3a9495242fe5feb4a26a4cb980bf');
+INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'acacdf6e2cea9afb762b8c0e2d7c0a01ffe4196bf45175e307a5573de9f0c739');
+INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','e8a1550c8a7391a2005b4e8669e5f106badb61c50146aa4ede71b09830c44ef7');
+INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','f5962ff3c7a66bb4771a7f7bbb2d4041694812e9c4aea27c98537dd727fd3478');
+INSERT INTO messages VALUES(1327,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','2812bbb5b5a23099008de8e83e82aff7aff9037b1b7675bf337ea7bcc08d1b3f');
+INSERT INTO messages VALUES(1328,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','8c99a65c9f7d4fd43ea257146491461a5c30507826c215e59c2497287ec50572');
+INSERT INTO messages VALUES(1329,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','597e66e256d58339ae7bcb0063cf759e5f504a876de96c34182ed8ffcce20a0d');
+INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','6bba4b0bfe4cfe00131366f3b5886ac0708bdc460a26dff6091c914057f9c1da');
+INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','503f581efdf128914871f465c14e5030f6caec8164697259b72d19ee8ab0e0e0');
+INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8","messages_hash":"4a4d72b278971ef337754a3424d4cec3799122eb07fffb2412087a9d70c4e74b","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'5664552086a5efc38ba49257152e2c14ba5e0dcaba079c3c786300b97143d75b');
+INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41b28d98b662de9c83db163fce734fc55cf565f4a271c2e4c1ace2ee686bc31');
+INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'82c827db0f1756a1c19b81e0c284664b2a626a86aaa23fb0f7fa1cfda1fe4d46');
+INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','79a91b3abf63d389e478d4668c5dd0529855678e04e2411f243a98a0f338b713');
+INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','76b1f650f1dbe21bc44229ae45fdb6e0ad43e5c06488094a725bee249ea9b040');
+INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','afaa26c82e7e684088661f569fe0887025a17de9f3c362386edfd4777299fd9e');
+INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ebeabfbbb9144947b6472f920f12bc8aa59d44e6c48b71c3cca87e4e759ce4c9');
+INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e7990d3398b8ccfe9ca75df71df58e5597a0bd2cd1c791d3cd93a2dbf4185b47');
+INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08","messages_hash":"533077fdce00d88540869011d696b65ec5ac5de1255e6b639a547e3ee326dc89","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'f9f8f3bb331f074d0e6ff2680f51933e94cbdc9eeb526adfe3ca8fb708397267');
+INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a05f14d5485fb7c247f8e430403404d66205e70dbb15e308b2beb6d93af01f7');
+INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'cdd9cae901c11d2e012527ef8d18cc1e48a6ea5215fedf785e02eba19897950d');
+INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','ebf50a3fa925b7a750455eba61f728e2a4a7a393f5aecdbf57903571f4e447f1');
+INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','acce0d601d578f547d1cf32dea3481445d783848db135766fc9d515f70f56363');
+INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','af18970d83374229b56d0481ae56bc1d09a3c8dbb07d2c7896a11014b3554fd5');
+INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e","messages_hash":"dc3bbd61e07c70212e5bc61e890ed464a44b69447624d6e375f4d1259323418e","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'dfb39fec9e8abc8cbf90caa4066c1d724e3f4344d20059a16b351d3683cf66fc');
+INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb81be39094f65ee4796f00724cb86ab2e64d8e5ea8488549e726397b206520e');
+INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334","messages_hash":"377b80a9b46d405fea95879d7245fc9ec8c7a94a311b4c11dc7412f4e4d5beb1","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'4a2b33c0c25be6584c8862d0b91c083bd39a5628f07dd90f5180c6ea23bfa6e4');
+INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1fe623e47be0173fa9e77f09675ad587364e62018b1f465fd85ed1190a74db8');
+INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103","messages_hash":"e57fedf50f5e589557828ef99ba62eb5b487d7074a3ee562909be037f369a805","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'2df3159fb6ff95260be029ecd0a749f3304b9d41f90f267ded8007bfb945467a');
+INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cb537938199e5e702f9af9172ac7332311aaccee1cfc7272dca4d26493b7b04');
+INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'3a79c33f6686e162baeadc0f6994d5400987feb1408461264296a61c1c1de7b8');
+INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'31e2fad1c137e501f75d36c39ffcca07fd04417f35d5a631b211a3c53a6a2aee');
+INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'62adbdaef6a870fc27bf84fd39a36823758d6d8372cecd17653c72dd0b027482');
+INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'adffd043bcfdee4dc5c394fccafdbff9d8df0d03d37f21bf90422c81a7343353');
+INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91","messages_hash":"40cb981160e56743bcbfeb5332557a77609fd0469f4aaf45a0d13a96a616a4b1","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'bf4bdd142406d5a040deca96a375d3fc8852503e9ad48082ba3b2aa6afbee2e0');
+INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e9a212e4139ad81d94dc3ea035d7d2bddd0cf8a996681dcb86ab9296f1b1f2');
+INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0","messages_hash":"f09e3a98073d66ed6ab0e60b877e57599ff54b2f711e467a5be30a7e568deb3d","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'bc5f76e67764c737c3bfb4db21cfa93acdc49005e15a1a9cf335f16f583b75f5');
+INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a52c66fd036ad35b2d049ea7ca026da5fce8d70a717c14873809eb5acd11437');
+INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948","messages_hash":"e1e735494efe8655aff2d85f8da16c5bd49c6081b9e5663aa1e993eb6636b8bc","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'81d629542290e27a8c801f6eb21994fe970ab2f4304f6aaa81eec3ea609ecfc7');
+INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e73e798dc68aab07d9b4ae961ffaab8cbe7102098fb876620c0f5cd8f7e385');
+INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a","messages_hash":"580e09a9bd27bef7b3cca49576088d409c9f9216927708494785d3ed300da77a","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'32a61f2a87bc9d1f185dea2510d8782e482be55a1b8c52edb5592a9ea25c9725');
+INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f5dee7600109be190eb5c94d9a0c781c0b0cd1849b5b44b3ea253b2897d27fa');
+INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f","messages_hash":"f7fee89aa4742dbc8530f49e453d9d792a9551d1eb784bcd9cf91229f3d33723","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'eee51c48aa77137be76d1c7812843f94ffc44a9441fe24c19aeaa38cfb618c66');
+INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79213bf881bfd8a5c0ccd576259d6a1a42c1bdc1d1536506c68e5d004f37f561');
+INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340","messages_hash":"fcdab08b80aa353c69584af2691670c40f14d7005ae8211b8c55d838e69c85fe","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'9b0eefd08b0f9971e0e395b2a3d9033bc2d5fc6d6f65f7fe1d32c824cb1af873');
+INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1715c21c6981e0cbb896bb20a77d6bfc616fad71add25f758c7afba8fdb8c7cb');
+INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c","messages_hash":"1d3d14d33e2a0c96b22c9ce7c7814a4068621c24ca7b89011187012d0be6341e","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'ea3772a6bd23677b80937f8bdd63e1c76eb92dbe7156099f1961ec0acbd43281');
+INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'132b0d979a8527fb3da5a4a13704eafb2d31b6c7dfaec3eecf7e517ed21568c5');
+INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd","messages_hash":"dfd3d667b1fbaaa916b09d1b594609d58f54dde5a908a6fd0cfd517047ceb85e","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'d4aa6515bbd8b0d04aa4cd5dbeac4f265d2060530f3f598d3bd8e9ae402f3b0a');
+INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6040a7af0577a86ccf8f3ee93c52bdcab66d9f3af0454ed0c6fea375a20cab82');
+INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8","messages_hash":"2a22c2ab92e53c25f51968b1faa6b5421a740922b256353bc9a5040d6501aa8e","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'3a5fd34ef37f8f19e02598c2d3db2c156855e48006e8f72fa3f14dd24eb67ef2');
+INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a1f5b27eccc83edba292198f7a6566fb9be7aca0c67f1e58179726f882e3d32');
+INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0","messages_hash":"f7e5b76fa88a19b4b9f5f287f0b907fa3ae57b30a5ac19435afda7cdd4eb77ed","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'07fd28d88f17b9d4692ab1c904d7093aed730b641ab6bf1dffae1d83f6c6a1ef');
+INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f62af8c64fa185522d4f5325c9232cea7618997bf37f9a03ed90bdef3cf29073');
+INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e","messages_hash":"bfa61c215ee22be3f7efab822268aae10991d0c0b1944b07fd61912c87f032d9","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'5ee718fe05a32da1416c140ccc4c4a38ad2e87c8ae27e78b000c4ee9e1f32f12');
+INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5bbe2f764d8338c40e458bc607a69ae0ebec29e388c6f334d45915a99011bcb');
+INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc","messages_hash":"ac00f053549ea8f45bef6bdcf3d513a45d9dacce6a144d06f84b140b00be91d1","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'4a2749ac6a9ad36f587105c72cea5b03c8aaa88f0fb6b6a3861b27dc64b1da1e');
+INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35e66c34e7026a607e0af93c22dfed60541bccfee84df6b0e7b1f6a88cabe62d');
+INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7","messages_hash":"e14d957d8509b0eab7cde558efc2a05700208603818becd17a9a13a118d340d9","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'5890570b83543e587049eed7e8bd2743ef6c8473c717a2ed538c68866be3132b');
+INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c09c9088759008fe7ebbe15dcbc96cd96a44c71f587ce350df505041249aab03');
+INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e","messages_hash":"f80855d680e2abb67a5a25a5466f3145ed268296da900ed7e618c2fd5f717891","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'e5692f73bd239ab3f78292c7214e4b11eb2cf4a465c4b91f60c2701c2e3325c5');
+INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4543f47e6436a4e6726d4593cbaf3c4c5899ffe67283e9fbe7f0550b64b653dc');
+INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c","messages_hash":"dc506661dd766d375b70999ab07b57e84fb629fc81c7a93bef55f28658ea37c4","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'29e0aa21909276081e40ab1ad66e70993d0a773b4142a2f7fa45c4c11ee5c599');
+INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f8d3bd35ed99abec75d9f8ce23cf5c1768d154bcadc424b009a4d78481a445a');
+INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d","messages_hash":"cf32eaad387c5ed2b3d65a8a3c170fa813341df398a11d014ffd4d8eaf328c23","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'e1b39d92421f7404454ee1ab941fee9feb413abc3a6820143773546fb608d355');
+INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28a45e35f3d37edee61cb7d6cf31ced0d77ee8ee8c025060a9665f44e74b8224');
+INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b","messages_hash":"31fe60b84c42b208ab135789882f894cd65e34c8f884ac7dfa4fd9ded9cf3ecd","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'6f0961db3dab10baebc743a9d8df136ed0252e3497fa884edfb96fe1daa2eeef');
+INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'976e6023994e805ea0a0322347a69197f63181bad1d1ca184128a6b116c65dee');
+INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c","messages_hash":"6157abc3bd4a2b57bd150185f90769621dd92a7b8ce718e189572a613442dc19","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'691a96622f35ce652f085cf37fd7bfc01766e6baf2d548b840b21b8d6e3b7335');
+INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e923da0e98ebe2a2f818acda9d5cfa273514ee2348464d5a7310e7b1a38e938a');
+INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849","messages_hash":"6481917e4602ccfbd0d9f6515aa64686970ddb12b573154ea65c693d9421735d","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'2b284a2df8667a534f062959c454ff25c916ce30120f156fccf4805791699df7');
+INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3515532a1993eb181e96914476689771ad98dd6b55367333c906f0d0bce912f1');
+INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852","messages_hash":"558baaeee5f0a6a25ecd524e9d5ebda4b1b239c7099774966129b3d81d0f432d","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'9c5f2bd387a549040cf087768ad29d9e56d775b7ee9a03da294388cdfd80f94a');
+INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a298e6a8861bf5fe9c9a57e40f4802f0dd786579f48013abce8464cf44fd3d1');
+INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403","messages_hash":"f6826bde541e9d973bfba4cf31098cca10fcd051c21069a2c2ace23c998662ab","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'bfc8937bcd1d23c4db9e3aea7844ab42bdf6d0361f7b309698eb5b7d9b3de47a');
+INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d646aa1e40cda9f69304f24d1ac85fbe981f25ca8400cff81900f5946ddd2141');
+INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba","messages_hash":"2790ab8560aef67849590b0982be710478bd347c5fab2f9cd18e4b0d7e2f35ea","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'a1a7e9fb2ac0310fbfd4563120a223eb5106d6a91997f4d7c6d88af8be55b5ab');
+INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2240fba1b957be3c27e6136c86a199b8bf35e7eaeec643fb671ebf236fc014e');
+INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d","messages_hash":"94643866b10a6bfdad9483e2f91cab8c353189cbd11533723f61576b8bcbdb48","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'b28716877bbb80461dcb84269ea916e56b1e19bee0ecf521b2a4aaa6c291340e');
+INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f5cfc0f1f8eeb849b83e66cdb9560588815150c923dc26d4d769f42c774b843');
+INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb","messages_hash":"7c6aba3b11d92ecb27db8d623e22e362530497d994dcb58c9494b1fad8390c3a","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'d97bf615d23bce6bc4f4dc6e2ad36d74443a94019aafc50b05b6c00872c51287');
+INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e773f27e8506f7bcf73a2f9ee2c5bf05f8fe1839add470379d675134a1933fa');
+INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25","messages_hash":"7b61a5f9f592e156c277e5663a214b2d1f6dff3759945ab00ec5df0bedea7132","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'418571d7630b6b3d7be41a0dbe31aee8d45542b35a65d5ce322e61aa648672bd');
+INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55c078a1794e37bd5642949581dd0b87cde44826775428de9c4bf943cd3cfc5b');
+INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d","messages_hash":"424150875fe6abfa671114f1de6ee25cba158ba9a785f4de66016496ce4b8245","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'9cbfa1c538afabfa899ed799615ce90c3a49a9458f5d0f58f13109e681bad026');
+INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e8e85ba1807cf403ac0e226ccd618325457a3dc41c2616432a8cd8f5e9eb0a4');
+INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af","messages_hash":"cffa0d5acacbdab0f647b1d616e58f5b6a77cb4f152132f8646b2c0312022777","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'ea144535c83231f51c4efd3013c3f68526c225cbb69010b645750f71569591f3');
+INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbbc02840c2e55819e64c38931989c29a5d83cbd0fb3e21c169b155436e2ec98');
+INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f","messages_hash":"e2732a291f53732dc9f17d1e5b00314233e97647f750c9034420b111d422cfca","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'30acf33757d569eede7b99a0651c9bbf05f8d3c5defd0139a5677b83fb5b1bc3');
+INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'653c64815cd307d7a592ce2873d252f5c4136e7e0e14509712e613da802140d0');
+INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e","messages_hash":"4b2a92757890f74c8dc1cd25b79087de549e95c41b2df88275b1c445f3ce02e7","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'b53c06b7bbb8cbc69bd9be06f65c014134054c450b9a07070df8f0d9022f219a');
+INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae9bf290e73fcddbc7211eb23aa3f5d80b60f20aba5f11b2f79b53270d6195f3');
+INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369","messages_hash":"b24ee3dd85c82c88f3fb9eaa06ed92ca376686f87a614a2e07c7fd5f035bfd56","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'1bcf81666c967548c0acd31253eb8a764d9c4c3ccd95a8141e281f97d9d2da87');
+INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b8f4245ef9d6ae73298733ea2a98a437d805458947f0486082577f38db9ec73');
+INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6","messages_hash":"efc83e6cd724fe89d3d3fe1c57dfa6bd4b91c63399a019a11d715ba9bf6ce0b8","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'219c1a3e176f97b4068d3a732929884ce77564af94ff75383014f396f260c3e2');
+INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d35803d16edb9556f5f849d49f054b186d520c5b4546f5b84c66db036b123d4');
+INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50","messages_hash":"8bf5a381abc25bc415bd415a27cb190e1f285c88ea31eb8c459dc4da65fdd444","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'3203999fb63955ec7f54593aea1064090823a717959bf10de0355e01d47d40b8');
+INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c70d41d80d013e8cd8ecd98fca56445006f12871d62620c73129f9c685f42364');
+INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1","messages_hash":"fe3fdd7b83da05622f9d9906587511bc99c48bb512f51faf674bdc9e985486cd","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'daf75db6a6e141c453f3297e4764349562517eab6fa83f11f6a737db7d725f18');
+INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'292f269583cd1ddb2e1471edfdc0f1927b518bb1e31a8c70d9268c19f7605c87');
+INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480","messages_hash":"7dc2536ade31822424c3a8f34fbdc9c6706f1bc9c366bf5f4aba14559d3ee445","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'c02ab205cfe8aaca661895553ca3e3e89952e3814ac4634cf91d05e940542fdc');
+INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0ab7571ca305c298694f8c8f71945e3065c277b2a66519ea493ab1a5f4e023d');
+INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf","messages_hash":"217081e6577ebd699ce0fd3814beb7ecec042579293f12d08137c8c50777f961","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'34b19e02fdba78fcc67aa7ae905eff0ac6af80f10e54a786c1f501fce0b6b2b0');
+INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5724302ba34a15a0c56e5b2784e8a2befc6ae482d2c188e1db63f586e3384a76');
+INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd","messages_hash":"ea397f7c401126afbe64b1a7857af6c66c470e88e17241e98973ef3521c2fdaa","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'fab1c768c652f1acba5b742e9a1c2f32b505fe5f1d0e8653a7746a758c2e66ce');
+INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'984e4368c2528f786aff039f1d1a97b9075a99fd6925c324ccc3b4ff8d00269f');
+INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e","messages_hash":"284bfd354a0631172414fc5262ec0eb0b32a22a11a89cfd4a3530fa139965555","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'eddb2edf28a83aa80081f135486c21309848274719a7a02ff30c4a0cda84ea8a');
+INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5a1e338c8f14df673ef42cf45d3983deca7a1656b498530fae1e1bffcc7e5f4');
+INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986","messages_hash":"b7dae5fdb8f2a8f5d8b2b60d0be7262f5f604187d6af40bd3cec4aa4a2712c97","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'f576800e9668bd36f63d99329c7ba6dba12c65a0e1a0f69f7fe687c470b1f808');
+INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d156fa2c01fbdecbc1206fefbd6732f7a365b54575eab9f2a768779b8269873e');
+INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5","messages_hash":"156b7d109db27f0c5b438f50f70686d0b74697a2ae324b697718f9baabd7c644","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'e736efeb6f6fccfa468170563b7de1a5755480269e33e52118644f7c61fb0e6b');
+INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'703321439d0a4b08de46e6e04eab67035327a5d7bc8e66b2946e86e56811eb5c');
+INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2","messages_hash":"f0dd7b04ecc60667e63b095d1b8094fa3115eea58940f23b9c37c6bf97b2ab22","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'0654740da8c518a45a6e562336c700ab4b61678dbb05714bbf762c5ef7a0a3dc');
+INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9ffb10ec174006d2e168dccb074149c1f74d4ec115dc88cb93cb4211865b9a3');
+INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617","messages_hash":"8e8ba18912c0725a5b4a918c3b8f1ab876922308a37606d6a5ac41d165471ff1","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'c76e17896c50e28b8cc2c6e836f5391ecf311784ca2b9ace057f1dcb45d1479b');
+INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09a3f2d94f6aa61e33acbc8c806eedfab0d6929351ad7bdd4cef44bcdd3ac3a5');
+INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536","messages_hash":"7e4151c22059e28d21bbb58532dbff0da9541d6035639a008900cf33da9d941a","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'1248b5be75e9a81aa5831f4cfa2726bebd59832a0da9d453c42eb3754ea0e650');
+INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a60e95267bb1f5427576362e952c628ea266e2b9f3a816a122fff547b3e1534');
+INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31","messages_hash":"a05a55216987e52a4cd71edeb67afacc01e4de5687cc1d86d9f988053a0060b8","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'fd7b9d7b503504ad4bf891bdc21bc1a5a22d7b16093ff5ccd99c3c1b10f15f5a');
+INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71574fef06c9eba6fc1289c57578b0bcf3de88be9d3fe9aef807abc31e0aefbc');
+INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242","messages_hash":"4d2775a870dd20810e75af34ff984483ef38614e5eaf471ec036696bbb30c3bf","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'1632cd9164c71b0d39dac343b69185d512da792e6926c9102ca61e661c970fc9');
+INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7d41a351037f2464a8168d3e8de214854bd4d65b9e429272462e6278c5cda74');
+INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5","messages_hash":"ddfc9adb4f5df158dec97783d9cf6affec910e1cd039174eedd44f17b8778514","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'1106fe9dc222feb49977c51ff128daafc1ba796e8448ee1efcf8b5a1116bd284');
+INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba623b23f8bfe6f801f3077f245a9109c3fd8f835e0d22c22fad9aa3a0d891f7');
+INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf","messages_hash":"3ee7e75a498506b1776d53c171fb5ff06466bb32145e3413aa181133bfe7be3e","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'3d97c47ae72e8ab92a1da7319464c35352d78ccc8c8354fd1eb5ab37ab0f46f0');
+INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c23cb96ad816a328b5ed79b7fe04d47ee91a306f21b1150b27fbf40406f58fdc');
+INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f","messages_hash":"5b9ecb55fb2754a4637eb9a77ad86dd3aa5833b4b752570c01bc30a9023f428f","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'5fb53c0eda61282329e58f84a88722ff6d778830f63be44eb55703e780219884');
+INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51bfe5a27a12b0d6267dd1ea7658e2b370ab16c95d4ee8244739b8fcbdd221b9');
+INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701","messages_hash":"08c63d3d75a56117d943287df9f2f5e5b5aa8793045fe5811cfdae2aa25b99c2","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'ac01fd45839d6aaf31a84a048171abda1ecd42eb60ee893b72b6cbaf53e5cb52');
+INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ae17b5ebc91d23b5963c6293f81ee9e9aed99b41a211b6c9ff06ea1e6466572');
+INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf","messages_hash":"634ed3c4f90105f17393b6d06d9468bfd20e72f54da081fe29993c1cc3646047","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'7cfea30761a4ae059987685171b6af8bea44eb32faadcd64c114b3d79d3d933c');
+INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6143639847ca27dd3e7afeb431faa6ecbab6e60d1a4438fb28acf9bf73c1599');
+INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9","messages_hash":"25b4888e600f4dac90272171cc5ca2d25956da67479aad56ccc9ade21e1af470","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'9fcfec393837c8890ad61ca850ae75bc2d41932542be6dcc695eedfbec670e1d');
+INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1bc4554011f0e5b97f2b6bb484111e9969521ec65f323bbb88e69b20199b61f');
+INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e","messages_hash":"f66da75f6792a9f3cd9460b51e6b1278cb03ae295398c0bcecec62848fb09a55","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'9825c1c4b9b69019e534694445649dde301c7ca4d554f8b0575b2104ad1b8b5f');
+INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b09797f8132358c07270eb3267d3027672c1881a34cc64baa55140d82fb3576');
+INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7","messages_hash":"ad12978790f26a911c79c2199a35fbd742883e7e2feeab47f2f6114411c3da55","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'0ce6871d53adbb142d20dc890edca1648ad8e964555afe24c0754f1093bd1ca3');
+INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0417f315aa343806ff9a399ced753630263d2f711e30188fba79fcd3506697fe');
+INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053","messages_hash":"22a65d8c55114b0557255bda0ed0fef09d82c4639d72bd54afccedcd6536e120","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'0bce3cda4d3feb565165dd5611fd175a9a8088f521648e9c4b6108ff9cb170db');
+INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe343422a8ff458748cd8c88162a176597ad7937f1d817f408a812dc9f88346d');
+INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c","messages_hash":"21ec649a7935abb03ecfcb280bd0fab4f230ca2d91b6c30ddbf33ddb04e4ed4f","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'143e96131ebf2466dac77ed300e74c9f6c8420690315b179fea246afac0fc227');
+INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d223fd133c32faf8fd82d505ddf376aaa8f3ccc68b318131f6d2343d54e60781');
+INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59","messages_hash":"e767acab4a3ce2dd6bf3afcba93a2226ee01c3dfc384caa303e428d4ff6ba9b5","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'4492e8ec9d8bfc09c25f1970aa5c5b2cdb75bdd0dc478b40f136758b4723fe7b');
+INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'357e0d2e0f54f46cd13e06417091846a09a8bca21dc26b511b6e12d911e9a4e7');
+INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3","messages_hash":"5328e9f8b6467d7397e3ee60caec087c4b50f07a42617f6224f906dc7d85e4af","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'92c10cf20bc1c4d8ca6a78ba1fb78a7b20cb4f2517ffbee96b10629fa5e1fb92');
+INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'757c557cc5925e901287b0b684596882daf951e17b5c62ca88d496a0b073ea7b');
+INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc","messages_hash":"8f5d787fe6cee69046a2fe9e538ec4f34b164cddab1889ba581930c5ceb94da2","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'dd2951ef694cada9b9a5c4d0c73067ef1cc52f6ca5d705ae6cc4a351af06b4bb');
+INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f5801fd6951bbcde53384d1850980dd10946350cf96609fcea6ea902e341770');
+INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90","messages_hash":"980ff0336aa223399aa25c8fc903f38b4e06a5c071b0367dbb44f9e3c3434ea9","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'330e2439a2a8e66e6e34fac4183a072e37f34394af977c9cab14c46be7bf611e');
+INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4dcf8b26fd0c7863a5e186e951c58d892dace1fc93f1f961f5493f708129f63');
+INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8","messages_hash":"2e3b5884fb5032203ceae5782c9bad4fa62556331f98d1dc68b86c539777601e","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'01fb908d7ae9a2ba09c056a46451d392cd2dbbb4091261c76e91832a515cf492');
+INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00fd9521d5721aea3b2c2aef7c5d56c6ff9a8dc31817365cd815ec217ecf2b9d');
+INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c","messages_hash":"02154c31facf51c1981bd8a60ff12a2ebff2660f1ee9b8df14362e0b87222ae7","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'6aae93f303b6a7e4a872b2a6572a52b0e8ba8c7e6bbe2d4708cf83ae0b41e419');
+INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b04230bf8ddce41e368fd95ad569d99572cf9fba317f20697a0976ebaeb4ca95');
+INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9","messages_hash":"b6d1efc33a75c137746d2a7927f93700213176937c66ac9e988017519021e705","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'bfe574f9ca397e427ca152f35f19151e4df93e75d2f5f2bd1a1ad4cb1cd0c9b8');
+INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'165493723814e32c4b2c7ee86aaf2eb0d60e46268462d49c85096d7f84306232');
+INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876","messages_hash":"69518bdaa5777b5938839c89b6f38ba7431389fcfb4ba21e75155af37f204c33","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'62274ad0a69a24a4fa3748617ac06ccab2c2de3e490e814705d4e20cb0c2f8be');
+INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4980c5c383cd3a439c04eb1e5bdd4b72e83a0fd416c67ce1a1886f0288c176e0');
+INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966","messages_hash":"6374560641ede2326a655baa894c0ce3af24f6ae931e6ce5a2db6e763c53450d","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'a3d4db5d0e584baa47b566a39b04cb91dc5bcac3751a195a901a5016c121bc68');
+INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35edd3647c9be2a8ea711a5b8426d184d6028079b1beaae62c9ff6e87bdb7246');
+INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045","messages_hash":"163ef3cb33c25fed114247401fe7c4b29b6c24f528f97beba30798d277ff2277","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'6465e63379f889b591ab865ad94f423edd128b884832bf79d4aeaa6a11d1b705');
+INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'808a2fce4178379c7028e6951ce8c3913a6c6983586575b8db2cdffbe45c93cb');
+INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197","messages_hash":"86753a4a848575133cf073de2466f53c3b295b1652f5d905551cbcf1e41d1507","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'a195cfc7e11ade8ba0f1c0900da7a33a2f335f1756358a456edb5f1b52be0784');
+INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298de351c2c2e7fd3617eea430eaedbae2a1cbafd7be2fe7891dcec0eac47b16');
+INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5","messages_hash":"37edfb0969ae5aa3647f541f7093f9ce11c73ee131aa4f40c50d83174eae45d6","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'592c0daa2d899790dc4577123fbe12d6c877e2034edf9face596a753e2a0d343');
+INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a939d773d12bb349c312c3bd0f6cca831e08e99e60d04ed4417bf61164ad28b');
+INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c","messages_hash":"e2a8a0eddb5430752694510ad9672b226e1ceb00803567983cb353b901e5ee02","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'439768180d52e8e8fa4eb3703006ae145bdb4822096f5025e873f9e80a202daa');
+INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'708bafbc65df13416964717ea7624cf535d8fa21b6834601ab05ce006cf5a672');
+INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f","messages_hash":"9cf513f576f18ada23f3d8ea08fe0ff798bcb24b63706c510fa08da0b1dd68f7","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'0f71c14fec1c67f8603fab8f21023eb35e9822af70c759b5462e992c869506b9');
+INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a76f457fc83fa0ce78034b9a6d2d267bef75c6879b0254593570f8e4eefcc81e');
+INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4","messages_hash":"c0f216b427f251d36f4c25519bfeaf16ab6ce3aa7177439eb7acc3b98fd1aa35","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'04aae364f2bc06e27f23b81ddd71bcb641a08b9d95a0a2fb3b05f5370f8fa8f5');
+INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00995f195c09fe02b4406969f9b61f7ee0422900eb91abd235b75a94415924fc');
+INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9","messages_hash":"818fdf1b55b56125a2572af426ae72628c792b38ba71b9c4309b81b7875640ca","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'f3e2fd2f4cdefd37a8002f8b5a43c47c8c19938a3854be6f20c48384daa3af31');
+INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'327f647ad8b24c3fe57d2166e1ca15c95ab38eae4fde5c766e05edc8845fb7aa');
+INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55","messages_hash":"e2a1e7066ed8801df57ff449d271f57de4fd94e2a3f2c26d585b0ea6bdb4beba","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'bca0cc8672f79af4b60d6ecc2528aa5ee0ff720c2fd2ad98062000ef45b21290');
+INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fe20d650c46331a1f45fa1f610453bf09115dd1c8fd39c13cc378268991b6b2');
+INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4","messages_hash":"7d9cc2e20887fdddc472bd1f160a24eb51224a7b7414d239ffc3af6fd2ed50fc","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'0c87c695f85524e85b33c5b5aed8110b3859277b4fe0c52e8766acdf07be5bb6');
+INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1775e22075b66ffc6852c04a4c427191e099a91de0fd42fb99a30baf503173ac');
+INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34","messages_hash":"dca4ae1aaa0516ea81ac2cb5118b4f980cebc46263929c678f3fd7c483bd25ce","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'6f74a3cbf1fb915dcc9bc676931bc2a5b99c0eddca6fc48819db4740b0cc4365');
+INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e85a8577f035d2ab9fe93f081dcbcbfc8515d22e800d90be06829d8707bfc57f');
+INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16","messages_hash":"fc6f9c59bda735c1fddf3c393e290edac38cdbec0cccfdd3fb47c60ea2d81bca","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'d2a0549bd6d8cfef58224b47da3cdfb0a45af35917848770eca871fe5c991f82');
+INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe0a612f5d7b087bb63d8f51bf1946ba38ac0f8ac030a3c5c971618439b3a56f');
+INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b","messages_hash":"9285af91e93c082e04cadf02726578f7e562ea62fe021de92cca66d2b42133fa","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'ba9ff208f9af67f9f721f8108ff399943c9fe7210d604289d4e5c37b78db8c16');
+INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0dda41312fab1cdd1243661d72ff3d6ef2a1f2f26aee5834203bedb33f061a1');
+INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'07b392a4f66cf06c5af415b1dbb9bae634ecb6bd2f614e63c547d7d60fa84d06');
+INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b65308c1c4267b6a120918b52a2cbd785c0eb3c599c148d4ce13faaec5b8ce7b');
+INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'0d3b4d750f2c5757aef751dda50d355930f78cb0575606567fd4a1a376745a8e');
+INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50","messages_hash":"14fee9852e2292cc9d13403f67f6c71ed2bcf8a6e5b0bf7b327b4ba6f0854b8b","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'466e538eb30265122120bcb0b483d98147d32ed7d2bd9f3a34b7775350158103');
+INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aae64be59d8c28956a0ac629def31096e8a28b67401410a8e1e3ef97971f4bdb');
+INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27","messages_hash":"7ca7563648c2333e269bcacd41105d1ffafb80f51065b153a4ee2c91317ef6ed","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'c91d9bc204716a4ed09bab11275430fcd0a86abe67832da08220e65fcf4a9272');
+INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58de44cb63114f0347dd298d6a0db9d2045d2e8e161148a4f2707abbae758a20');
+INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9","messages_hash":"3d59f48fcb005cfda23fa02bd91080db6d45d6beab2be7967eabe516f071c940","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'62f16a7eddb64780b5e036a31fc83db0d579f6361b891e672c60ca63ad98648f');
+INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a5d1dec897fdd0f645ef8e2eef60a27f86354d8cba8747750e44fff8e32115');
+INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32","messages_hash":"735ad20bd609e7af27cd05128025b3f28216297e260107e21a4dfaefc42475b9","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'31cf680b372e5647ea78642de6e70b3759e97ebcc9623c37571be3b9ed040f9d');
+INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9135f6eb62697642a97380607b8feaabeeaa816e2da51e6f8499919c21bf3f7');
+INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da","messages_hash":"390e7fc0b23505dc054cf152ca6b4e0f85e3de5305f33a5b6b6babbbba00b9b9","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'470b4716477baad8877a882c1ec6f25b067970d7797db0b7188cf47c48a0187a');
+INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b4fe1fcfe379a0ad0f22c56d2ae2f2ed03948090accc12400ca70fc4e4a9dbc');
+INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553","messages_hash":"f4a40cacc4b43995dd20a807dd32a353b9abe4d4cfc120f91fae0c9d18e93ecf","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'7aaa9e93f3156a16082ac41337d30d019246519d0c90eedca408ee26ba1b4a14');
+INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4543dc57a46f5f6c59de7b96f2fb10dad546f2de4b733a9ea3e3f2c7aa2c435');
+INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5","messages_hash":"719d6d0da72b9c877e3e397b67b4b9e7b39058b7d14fb9b838d9091cb7d9643b","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'97a20cf173ff2793c5f0114e2ed77a4d8c5439696fdcacc86f2b8210406eb4f7');
+INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a0306fcb37bc1b39f251a8bafe2c4a8edf3be4b6d16c3a5443ea7bdc6917f0f');
+INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13","messages_hash":"3de82b39a5fab20c1e9ffb199e85e40d062f2a14dc6785915afdf7237ee2d91b","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'6a127583bb53f3d1c5e4be2d443cef32f40296c69b4a139b573fed389756d531');
+INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e39e3eb903cc5f76f482aeb2a524a57cbda1f5957cec1c11aee9ec91d7883a8');
+INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f","messages_hash":"4d1d8b57d6b8f75c625171621f01575aa253b9c69e3c01c9a26a22ddc78c436d","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'19eeadf4e2c0fd8aa1e4644242c8ff52ee7f942ddfe39476ba71731943bbe8ec');
+INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6942c23f61a28cae4739ea44c0af2c0db17985c6ad127e2fcdc6622a61e51da5');
+INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5","messages_hash":"672977e75961f1b6fad4871e1904d114be10b11181f5cda075141f98ab3365aa","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'0a65673950edad193987b8f3bf185baca16f6273594f6fbbbaa5d2157edb3308');
+INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51ec379926b9bfa8803d394c4f9b2c084fe9365c004cb5b0836b9e8e643f53b3');
+INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6","messages_hash":"e406de167f88936588d2d427bd6b8d9c90a947ff6bfca529c37042515b242f75","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'d70fe4ba374ea560121886247028d9f26d7cbc94c8201cc24954f176bd722ea6');
+INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e626b9244f2e1c48ad3f78101317479e1881d27f6631287b80ac53d08f85798');
+INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17","messages_hash":"bce85fb0fd133918ffaac7660520e80d7b42272b18e01fa01ca330bb384493ba","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'5314c26fd8575cf6c53dc6cfc93590cd740f1a820380932c1a1ab87ff698310e');
+INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef8f7cea5f0c71b7bafd117794900287ebfd811fcfa2ed98f3f42de3a5e7c3c');
+INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989","messages_hash":"75a871e3857891a3494d1f9aa3cefd639dffd27538598c97fe9e9fd45f42d26a","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'29645d3f0bf6c282f0fa171c42a2a317ec364be81d6968b8dcd850742dbe9d5e');
+INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfbf57d65936cf3fc0d8e3b43f040cc9d3af51b6efe870f681ebe217da7b3824');
+INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d","messages_hash":"0e4a4da780b4f2272d88ace7413d0a0f19a9b3beede089f9c6346f7143bfcc09","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'f2cfbc0fc01405c42948ef6379fd1d055cf2ff4308c58e229635382cb960b49a');
+INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a941b0659293baa4684a9f762eb023d003604d561397615a8a6622f1ead072');
+INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0","messages_hash":"a2e8a5e63c659b877359f4b115f6aa507fe9d95f9fffac20fb8613063254f89e","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'7d00da0ea18a97ed19b399b55274b4651e2d3820f644cb92ebe948de431a7d1a');
+INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c512ee58a65a9b7f62a3aa57646ec1ccfe0bdfa8e78c94f522ee41a9ee29189a');
+INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69","messages_hash":"91a480a959b6c20dd9c0003769792479b4ca1f3187cc95281d5bbd752898ead8","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'04eb3f2a5115bae018e6b351a49bbe5adada186b70d433c2de005c28d1eda226');
+INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb3fdd0a364175a9804b2c25b365385877622b1aa34d2d07ecdce03274b81968');
+INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36","messages_hash":"7a70d8af9cb999e78142a4bb5fcf431a99f6de479ce74470be8c95cbc447b1ac","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'f6fa442a2eb945e24df9872d8db76cf8f6fbd6cf4a65fc77ee11715b1b29b8d5');
+INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a5d5f92c5a6e1bbc5c6057ea51c7ab265fbc14d390b00b767f470926756a665');
+INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c","messages_hash":"01e35ff7b52aaede21978f33a444e8322b191eac224e4327746e34dbe4b53a4f","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'0fb70ef7faaebd3283d542e09995376744ddae2df952ba332f2181628720092a');
+INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3da1112398d4a50951d0304acad0acd5b31e0e009d5a012822c14326f8c32aa2');
+INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5","messages_hash":"0002cb44723839b1eb5416453b1bcb390c7c25f2ff6f0fcf3eb0a643dd45bc87","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'2ecce70c11499c5d2e01367c6069db1eb3ba7403edbfa8f5b7079d2b675b2c40');
+INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'486e8c3225b1c0d8b84d71edf3d6fda9f8d1928d83ab7a0d8c4e7935551e006e');
+INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26","messages_hash":"2d29551343c840afcc23e5367116922594a9cb3dd49c9f98c331d2383a1d1b61","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'8f038e9ab3ebba87c7d81100ed86263de8f119ad975c1e9e0e1c66250a855b08');
+INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'550b83c83e32df48705f099bc55902ea65001addc8abd953989cebeb64a5f762');
+INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4","messages_hash":"072a514d43030b305cd5ab52dc7f025a6fa8fdafc700c8c4840922d763e87709","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'d30db70ce4edc46574039c791d620e02d012992bfa88f1f6044f7582aa50a037');
+INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d77f1b5b4bbc42961d9473031b3fc779aff50b537317d25e986c48f9bc1efe8');
+INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c","messages_hash":"0081d700eb987df05224651c7a86aad8466c1c0aed1f8b9adcd804c0c357ba95","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'89bd90e91ff3641e1ffaaa33cca56919de0126b748e2f69bac24805e83771669');
+INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'168c0fbfee2811452c9a6ffda5717f8349943e2b138b45f582b1600ef3d28153');
+INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723","messages_hash":"aad7d0f1b069ead9be5840191c72486dd35a99cc0d636f84dc26c9011750515a","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'da2511285f46743c279d96c02101a4a665551fd20483a76fbaa9cc5aec96f828');
+INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c93bdb039419fb1ceca66aa97b2e9a800cdef02e3e5b152e8833bb7c1db408a7');
+INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282","messages_hash":"cd1831370719d122b3f104816d00c53999d5d3c4231d61a63939cac11b9e371d","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'0eca0914da406ac7e8f9d3e0e7e277dcb95e87c631fcbf1e22480bbea2d882a4');
+INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a79e24b37e1345c5b6fbc786ac04ecbb38295925d788efce26fc267c6021d513');
+INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d","messages_hash":"dfcc0432d894cedc1b86b930ebe7c2a91923c73a3b48ddaf20af6a91a1fd8d4f","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'2b54eadde69270526efcae9deca123552876082e8e127a0082cbd0344a413378');
+INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fce6633b262f838ead4935159f20fa9460a66f0e32349ac1b698af07b74fd01a');
+INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88","messages_hash":"35bbf8c0a4c7b76ee99651dabc7fd61ecad1944ec64894d58b4b23b3f56e32f5","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'bbaad3c636ecf5d6722ea1e66871278db5e4a03665a634a3835ecb539982977a');
+INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd63eccb1bb02127afb47e863c4d634d5e898c91d72cd39b029ce68cfc627bbd');
+INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9","messages_hash":"c17603776457e6b4ec866211fab5a67645264ad88982e074e35934955aafb672","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'38d2cc5e28706a1edbedce7bdb867bb77755d629f8cad1ee04cca17339f65389');
+INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de19372f982c7d04995cd419524af24896db2ff21eb6663b98e8f23562920ee3');
+INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0","messages_hash":"658470a3c81fa20340341844f3f6c4421d4163a563ba6c76bad26ae5ff8f6f30","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'64327036a7ef395f305bfcda1cc2050f382d33ef8345631830a143bec6d0494e');
+INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'913a3c75c7c8e02769f8c0e16d41f191f7b035d68aadc2070f5d590fd0a9a25a');
+INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7","messages_hash":"3c19e585c98db921941f5b26a126b80a49c2dec9557f830931ade7262e91c062","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'a2d3b78fdb74695f1545446a14d1c5e9ea97a0ca132db20c9003aacbbfcba5b9');
+INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73bafa7718d9c8d4bc762696587fbc3100fc0b800249ef0276521ea7a26d8fe8');
+INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66","messages_hash":"d3e6cfcc59682b7ca7651a4d0b764e978f39e0275179d9c7d345ca2036df6ba5","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'70c2d85bc3a9f202998e11a77d263b500669013279eda0a886e0117cc92853d2');
+INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ebf7972beea07d1fd216902990516e8772c795f9b0a1ac3cc6ddcb829f26ab8');
+INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca","messages_hash":"5b4b24c7af8e50b44e4fc6d23ed3b636c2f720d79427696f39e5f5a744f0b1ee","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'e0165370caa210cc51caac7267a02c642bf8733aef554e466df490571f258930');
+INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eed3acade1c5a5c534e9ad171c1531add6ed91a9d37ebc6afd7e70277d28977d');
+INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9","messages_hash":"99b36bbe5f19e83ea1b1ccad1d01356648aedb05e1e596ba41600358164b8ac7","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'4dcd70bcaf790deebb920a1e32b16ad8e18ba95d41bc3d5fbf9416c8bf76d925');
+INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5472d6d1bfa1a2b878c0a72b3075e0e8220c2109380f8a8e2aa3288033ae3740');
+INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542","messages_hash":"4527b116244cca77263350c03e796f7b8f68e3359a31122544a8506d649c0414","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'8af3316418f9960f4383769b33f07c322b854882b44e9fffe5122e430060f3fd');
+INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c108d271ec9bd917d3065c7ba090042b313306c6bcf4f2d321d03215df3184f');
+INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed","messages_hash":"d49ffe3fb323982ad595474cd4d4a750e40f92ed7bac60328fabb6b3adfc4ce1","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'bbb4bcb2901d771d6d7df699612a587e99f899dea1ef93c8bdcfba2fa601a3cb');
+INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ddac55eedf67f4cda4879af8b8a330bc1c4ede49db62e3b90fa5954e27cd26f');
+INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2","messages_hash":"e31efce2466a3499fe85fc3fd38c4239dd008155ce0bf7197760cb52a82ee77c","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'4f3d62f29074d4513e6e33794c8b214e47fbf7d18a5513a6f6cc59a6e0c881b2');
+INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'193ca4ccbd417052b1b17bcf60935c179799daa0c34f7526916a957a8db1bb32');
+INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328","messages_hash":"25bfebc1c8ab376f51290a883ecab7b9ee9f9ca243fba57f1d784287bf73560a","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'77f81133bdc5069e419e29bdfa361732752ec1392229cb17ab3e31eda4b99cfe');
+INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05a5e4a72b2d95df6ab54c04cb7f21b2e8666fd3937586bcb63c052594441449');
+INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d","messages_hash":"5f7cf3364676fb64b39fce7d55240f958e9832c147fe1a028ec7e08f04bd7a1c","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'14a9f748ba21605a898b30fe78257cbacd75acb9c93fb7216a8bbe45e5948f09');
+INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9815d60d31ab6554838b679e3a859700f8e3d3901f305dc089a68d947e51d971');
+INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d","messages_hash":"86d7dd3386c1d6c331bb7d2ff4c66fd058f8d061cb81fcccd96984bd730278a2","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'fd8d268a701b15529ebb4b01f8e5ebf2c9a16d79b82f138dbb1f597acc186c2e');
+INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4ef7486d53783c6e35a3d23212fdbdb25df2e909b7f1b8b0bae60d71f412c92');
+INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96","messages_hash":"757bb6997fd9c8958569c3b90924b80dfcd32e2b600dae70830cb79e6b8cec59","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'02beab89baf77b7127333d670e8a7cb458206ad89fe808ed746f6896d6504cd8');
+INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79a66e6321e67a0ee8c7893f25b1453c29c3c6e65bb6f4611cc46f4787a027b');
+INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d","messages_hash":"c303f75cc2fe00d44ebab4d32b25b49c2da39284686382a36b35d509b1adc8dc","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'85ba9dab1261131a5c4d9b8e33d6e9b87505a23b2790d1f9ba4e5ae55f169d21');
+INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'160d26b6e2f6e17db8a45b9a78e57f2a87f850d13b3b46621de03d1cef42f0b0');
+INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b","messages_hash":"207919db28449144d8bfcf7a2d2aa1c3f9da1bb30d625d4346be0aef97b9fb41","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'5705e0f90c5a294b5c3f4c7efe601a935e538d8699232464a51a8f04316d4f55');
+INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d03e62e8869e6875b0f0046e3ce31bc8d8eb95c3767e6b80f5275c4887d83e21');
+INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d","messages_hash":"b2deb2e778518a65c7e22d9ea3dfe8b20f22a6f0a98fc121921824a6ccc5767a","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'a885a20ab3bfc0df464c69ba748aa526bbd4c612d8cf5d018bf8181db847b5eb');
+INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4fc9ee5b4a69214ebecc4c02404125cb35c80b945eb2786b234584062350845');
+INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8","messages_hash":"0d5746a5957752c2906ea859b36fac65adfaed20b77dc5221f0dd3b82adb153b","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'78d11ecf2d41da82962c06cbceddb3d79fd16d9942fc16a5fd40fc4cca393903');
+INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc4202032d1b5b3c3f7fadd1d355c7485433792abc030c7a4c83f184a1f72fc7');
+INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3","messages_hash":"d28f8cbce3f48ded964028367ac5bbb4705c81ba6fc0f89bdba45229a1bf6d95","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'81d44ede94ce23dfe16fd83582035085fc397d8f2728dece2607bebd96191c19');
+INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9fc9434f1278da95f3018dda3413b221e551fdc6da47b309c254a31ce188af');
+INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7","messages_hash":"802428c482632ff14810dd4456420e560672dd2bde33476b9583d287243ec83a","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'808cd70bd8c7fdfd60ed95d0ca68fe876ba519dce514124cae584bbd41dc0eea');
+INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'693f86c31c7c2a86d320419b6398f6305e0cbc8a364858a7c8ca424b840d796c');
+INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f","messages_hash":"0a3765d2494e2691d6f99e6323c5babad9644c5994a6fa0a92791e244bc69743","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'68fe8e19aac2843bfc6a239d6c1335e2140067dfa7ec2491a012007d049ff32a');
+INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a575229df6b2b9a7a7d621c19204cb8ac0caf29b0e2316715f6b0d607cbb79ab');
+INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1","messages_hash":"7bdaa1ff0e78bd031a50bd15d814a283282ac11b1201bd957ee4473ed1e19c4a","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'a41648ed385c25c0848835542100f4c45bb3f3ea4d3aa37332d570598cd07208');
+INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7c67a227fbd3cb069ac2d45156653b391595b5e6ed77a859e1d114388ab83bb');
+INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97","messages_hash":"b4f02b8d29590e5cd36d497111827654f87e6d984e687aabeea90a7a625af20b","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'d997fa5d73fb6b7e408bc8f9dc5293bf1aabd290e453520a674fd3d83720e56a');
+INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a45ebbbb8bd7406f036fffede7b299477197c4ddc0b4e1ee31d7ac6930e2928b');
+INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323","messages_hash":"86fff556f529899c5904c21c3718a761203480e004d8f5806c3f9fc82bd221cc","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'a77bf39c91f4607a75e4e02e2ea27ba4cbfe8baf97db7f9c2b11f967a264bcb5');
+INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa77583f6a1aa0f57149e4087acf46c7c7fc21c6ee3d6b0f30c636e622dae47e');
+INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e","messages_hash":"80ae4a42a3ea75d772058d3b84fbcdc6ac5392f4fc2260258b97a7dd14a28abb","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'dd9c4f601b7fbcd312e898adb25ab8a53f833f048b46d6402a596a6151da90a1');
+INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b42e94567fb30f7e19b6bdfef715b023a06378283f500eb8f9937aed7e2966');
+INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247","messages_hash":"a0fca2d1c45a647f0f5cc160cfa040d7876b70dc1a4bba5be573ab39812fa2b2","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'64e550d81490146b5243ed486a98e85798403548ed288cc23d5e0e9529e2e844');
+INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d261ed5f8aec3844c9f47ae68bab50abcde64eeb02b7b15529f1e119f3e422af');
+INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626","messages_hash":"51d703529c87ce1110fb82b1852476613763f042f15db40d27a1ea60cb8bb2e9","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'319caf96393b9bd77f3aa2c25874283fdcca07b048b6ee57eac141b2e8f00806');
+INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ae2b6f00b018a1536175b7b81be65820c9c3243d8784ec1a09fbf00c590dbcc');
+INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b","messages_hash":"6cf2423bbc5d8b255d3f80e88b3150150d0934c16f7d6e97aeaa9cfead892869","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'2b9c61a81c09b0742b823d45497a7b3d9aaca4832393b91b257c8df8d5da122c');
+INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1905e7c3c4ae30ab58d15630140ee0dc311f29fb830fce1aed6d4914c5f3fdbc');
+INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1","messages_hash":"031cfb4d2a53fbdc957fe2fb4221885914ddeb33fd8e9ab14b788e26636ca3d6","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'3c969e62a62295cbfe8690e6cf5a74a8908b193df4aaf06573c6d4d9571313c8');
+INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24942b08a2860da37934d846e8be6f6b3a1291606e209ea10de63aba5c18b1f5');
+INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b","messages_hash":"5a04be3dbfe8c59f55788d253e52e64724cbae371470b139ae6c610fda9feec9","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'8165e5718fbbd5f701ecb7b5b4b9196358758a242c5c80d75e4981b169136b17');
+INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc1d9afa142612c0c8b32ec2324e66be96793fc2e0c6b5329c122a3de3cd723');
+INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80","messages_hash":"7a5f8d4ee64b87ced44ce44e2aea65904f97568cb9bbf5105acaca9d42b01cbf","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'e4453127aafa1a254b59a323718980933e2e4a7dab1b8d558997467d1d4e122d');
+INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ede14d845baaba6b35081458660d1dc26b5870375a44530601fce42d1657023');
+INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105","messages_hash":"3fcfd123a88ad9d8710d32be1f0ae8e752a2864a6fa3a6acb472fe8e9f89aa13","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'1ed626afe372c42364c0a6f46ec1063c01bc8ad7ed68ffd93b7163f8d719a764');
+INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77f48d359826a920f20ede0a753c01f11bcdc11d1f473f427d89c3c91bef0629');
+INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb","messages_hash":"1b217483fa5bde6c53b24bc615dd10f59d41fa74529e2dc9f45bcaf213ca8aaf","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'245711f0ed5c66fb7ac5edf30331a603ae726640621c7596da4743f04c7c45fc');
+INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'692b26e6784dde3befdfea85ddb229bfec0d44fd4f84ade06e2fad341c292473');
+INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920","messages_hash":"ff57e5cff64d2e1286bc27110d4b88c5b261a401907c4e26f9d6d301c2e44160","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'ba0d0e3b088965248aba9a0b10d9181c4bdf53ada541743463f1f2b34bcfe2bc');
+INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c95a2a4a16a96f2307eb0791c99327834b5f2c67894594810796298d1b85098');
+INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602","messages_hash":"787c55f9b276611a37751587e6b930944b47a7df6d7fc0b78abe76e7cc0d852d","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'3b7088cb8ca00270271651810899c5ca8d2d55fbbac113506b74ffe4a97fe640');
+INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88c4ff3d756ad5ce7e0fa43980c30cbd80bc0b37c9700af9dc476388a2dad26a');
+INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e","messages_hash":"7f884ca84212371f3d07de00c05e171d40aa53f8d93fa919819bffd9eb69c37a","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'3e1e0a440be69609c2d3702b130e0eea7563a62fad73d3a3924f5866b8d66fe1');
+INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3816b8f31879219271fe58cc9a348be665a31255998ea22314f3359e15f5d34f');
+INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d","messages_hash":"136931a8c79bed40b5d2af24148b5d4dbfb1688cb9a380b8a6d0f9818df0e4a7","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'6324d5186276f836b93d2a5b67240368ed1e7e9199094be69b0387eb9d1f736e');
+INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db816637ce7ba4eaf34e7549552e7656837f15a2b13d87203fba34ef27665557');
+INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c","messages_hash":"3acddeeea5792debd38fa3dfc11a3d4fb4fea48d3bbecff8a3034c11f30f582a","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'023c8a12726c2ab8c6e96ce2cdbd98d0e315d2a68b7943adc3d2060c6a9e2756');
+INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04a514e39d8811c6367b4754d7a9c171f252ed791ea027390f897bf7bd34ca7e');
+INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966","messages_hash":"a1393b20aab486d72245785c0d6167bcf5bbd163cf6d3a16f40f32ad934e9c19","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'ed7a2f63f034fc06d39acfa2768fdb1346386ea0995f44e61cffb00315deb906');
+INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb15cdd0646871de2736542d4a2cba3d91b3629f63c400c58fc75bf8b26110b0');
+INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5","messages_hash":"64b05af3d6aae2858432eac39d614837d9cf7ab67e2a4665c77682cd35f7c932","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'e00f2ef9b361ebc948ccf4a44933cf8b81693635c34f1781a0c27c4c2e4649c2');
+INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43cdd69c85437c61f4b15d8fe0b895dc987da209753901df1301522ce07150e3');
+INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66","messages_hash":"2d0c524badfd5efb7992e4bfe5a8cd4b365e44f5364e31383fceb616dfb3a172","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'e37464e67250d4bc359cc4d70268d4ec265f58f37f9ff7c1fbc3a0b6b9e5698c');
+INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1dae30e72f8df56d4607b77a6a7d84197a3760dd7555554c2544f751e371708');
+INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72","messages_hash":"b1d407191bf8dc946e2dd99d0dbbdc69c51b971b416e448b94519bdaababb2fe","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'acb55262d6e29f0cfcbe0b4d452a9362dde51e14f8d74dedcd44b39d804a3d09');
+INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b88a67cd1d96024bb6088962454f7dbcbca738e40ba27cc0b93a6bae8458af02');
+INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658","messages_hash":"5c989bdbf8aad78e3dc2d749e7c279e423e773096edace524b21dd5b8aaac8ad","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'d38354c0dcee27a19b8e7c6e6753dbc9438a5d02ab53f03ed58e6d9676073848');
+INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95a29abf4d39a4aef1994f677b1501add5826da8c510d23964b3fea29d34df5c');
+INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d","messages_hash":"89b56221d0b58205c1fb244796ad86e5a33814267d60bfec9757e4e929a7e8ce","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'b15d8a4ff5abb2d7150e52282c1227af32786cc410218de73106bfb5b9995bf4');
+INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e2712dd6c8bfdd2a40b7f553187465a011f941203e3848e1edfca4c6f52200b');
+INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b","messages_hash":"7a53a155b4665f4a4816b515cedb51ca43a2886be73284cec520e62d15a72bf1","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'40dc910cbe51951f7c34f01b444fb6339a30db1515327a8fffe48f57b3fdaf4f');
+INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8adaf81629fd48314446de58dd7d80cabfa4e87381649c9aacebad260d233e9');
+INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614","messages_hash":"dd7b544bea09772a3f6124a6164b1c3d53ae2fd30b1cc0429a7e7056a697408a","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'7b67fd9caf1508697b214309917041748138ff0ca78cbfcb609bc272014e85c2');
+INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'336e8a8edde0fba4f6ebf0b3d378df70230fc93ba28ea2a06e8693d8b6d22265');
+INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d","messages_hash":"e2d5fb7a5080495161fe416b9e3541d80316a3647cbe22a64e8af6d32af07473","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'12cca7a279d492c972af6a7250547c9d03dfe0387ad640b91604f8d91c72592d');
+INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a9866ed295f000daaf46536cc23d7ed53e0b6319c7ec0e668f5729a3ae5eab7');
+INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392","messages_hash":"e2aa54542a95a8e8d6b7f2faddbf926f72b60f745dc96a23725fafcc05a5f84e","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'e2ac21dfbe87d325f915b1a8121bbd76e33b824b4ed991ed06fcb860c6bf2294');
+INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58d0687d07ddccb9a8bcf344341b9df71a75fc82a4c69e9842a92c361c6af375');
+INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805","messages_hash":"a43798189afa87e197830f8df29e8686a1dd3ef5fd4a8a1aba4bc81967bb2347","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'3390083bef464b32328e849d6da8070b153aa73dcb024160fcf2bf1e5a1dde1c');
+INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56ac53934f3b87be7625fe88a37cc6e7762ba813dcfab7e75b4a9e711964ea4a');
+INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318","messages_hash":"23fee6035da4ebdaff578b4afc6e6144fe2b0dbdd11c742fc4f3644bcc4cbbb9","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'834293824d347df3f2173e48a699f0a34d38094adcf36005b5bab29b6acecbb1');
+INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb1db324939bee92bb8ab97fac153d287b13438258e9bde059a9d9428d865ab0');
+INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e","messages_hash":"5b3235621e8b9163be2760e6b7c2f97da6eae84d8521c903d2cb378772c78936","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'2d7510438ff4ac1cfdc72b8a452073c704864ecae939a0b7eb9dcc63e47bc045');
+INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17e50e9450536dc34c5d00f8757b2a1cdf65e83752d2cbcd783ebb393c44ed65');
+INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8","messages_hash":"5f31077e72445bbfacbe6fd75d3c7b98a61535937919a9276ea515097191cda0","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'4b641d051b7bd0f4f0db9439540cde6a1881a78923df45d0f4982748a3f045a6');
+INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c7b3dae50915d0a2f9b523aec546dcd4debec64e5f3b274b9fc573e314341f6');
+INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0","messages_hash":"8b7e6330e620f547807b44ee45135190d336eeeb332c22ca9715d06bf362724b","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'3aecbd36b9d8dc3485b253a0e5225fa9d220dff9a64d32ecd94bd526c335d065');
+INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5349b66f34b8917de501184bd9ab18f37c0510074f682c2cc2b7c6e52f792706');
+INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6","messages_hash":"14a8864d9c20ad253940a754ee55f0e897556482ed3aa04c6b24eed23a038db0","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'d24ecb02c4492d6115087a1f5f2ffa6c8fb3f5feafc27b747771ac8c4b395c3d');
+INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cc455238211cb0b70481ca608ca852bf775116e5884aa8e419c9f85a9603859');
+INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8","messages_hash":"1e966870fcbe2d8b8d50453b974bb52b12bd5da819485a5369b6524484c6ddac","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'d6840399f8f10c8d592563aaff6dae9d9476266ecac9ea5ad963a8bffeb1a8dd');
+INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8d8c67b49b8359dda2accc2ba457b63b3cd9e812eb3834d536045b8bd0002a3');
+INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f","messages_hash":"59491c7be213e15d2f0c01dfd7234c8ca0d6c13654dd811d9f589f1328cf958b","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'ab365079e0223a0c07a20dec196075c32591eb811001d059aa978b3bd1ac7841');
+INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'155156bcaa34670474c995c325fbef4eba847d9ae0ce93ac34bf24289188c5eb');
+INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8","messages_hash":"d46db7182822aede24231ac4d2bae54649bd81093f5503551ac3ae50cc55b24a","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'9def020ead267e812f22daed5a7c4f54d076cb60682497efd5322f337a8a2e83');
+INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c09435510ae15e51f8f8debec34e7c5094312ecbbc9abdddfa0b0bdac3075781');
+INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076","messages_hash":"bdf5e5a3b7c2ab26c978e2ba4b37f4cf76f01a2ed18861a7cee3619133074fc8","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'21daab237d2e2e6ecf018567b93b1f8d872a55f4034c2ceedd6877e03ef5e0fc');
+INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9914bcbb242d71be5b8e5a76cb5a089a367f3f49a233f50b7574b46172010fd5');
+INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238","messages_hash":"b57450c4f69f5f7404ec6b4718469d49d237934443f490112b7d7a40ed01f764","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'8af5db42348334008df27c8de1c75fa9dd862098e4f1dad6ce38e52ab612a181');
+INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'794247242e9e67f5a9ee4ada9b372526377419e432f7181a476e59ce4e9a29c4');
+INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c","messages_hash":"187790ed3e50c37b64e92ab78178bcf83709a500f3107a3a648426068470b921","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'5486a0d7edbfdb306e3ddd000ca33e484ba37d1e46c78add7e37015722362d74');
+INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d9409178075f22c98fd6554398b9f4168eb83d8dc532ee81d14df8426116f75');
+INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54","messages_hash":"ac1869305532cccdf26f545546e6dffe0e266773b7f1271d963b03768311501e","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'1bb2ed2b959daca93ec740e3c16d7b38528b2f9be1ebfa64b148f106f79f694c');
+INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3863a0b5d95eb7b6f35f3d01ae34afc4d24f16e4f2bb15dcb79032e27b27382a');
+INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712","messages_hash":"eda9e4bff58b78300c49f153d946a05ad79cc2a2c4d890f62107862bbf58e281","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'b26c020babda063d066183fd12d4dfb0fce5bdcd754c079306d6ed00627e2a36');
+INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e68d9c11237185ebc6425e49cf8297943e5edf5b5c7ea2f837bc371010b3989a');
+INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583","messages_hash":"15c13a8577041a93affa73dd930c61d3ca3ac4cd24e5bc195185559a0288bf0f","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'1c1ee7d7d314ac7aac8c757db1204f0b4b6aad3dbb994b625e2e3faa454a76dc');
+INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b3b401a49eefb5b191fab1733b086abeca906fc638b5b927d8226e9b6086ca0');
+INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07","messages_hash":"82f57f514dba082ff58f07898e9ceb7dfafa7802e71279de9f9b1b50c37bdd5e","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'3c5d90857f34d60244852327718ee831ea24855bfeb5bfa9ac3b11d7660f7eb7');
+INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ddef46b925a253373a5356dda204659acab7d25d49907181ad5acd5b072d7b');
+INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f","messages_hash":"93ffe2201b58525b8c2bbfb5e8274cce94adff6a620f802469894da3d07d28f7","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'57e69fa76c4b984b10cb5298b96bb9c494d1145a5e5d34b610f31e716fa92363');
+INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ad6ec706094e79a6d286260b6da00c53a2d997b6f023769bf7ce7b15735b89f');
+INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e","messages_hash":"8cf0bdefca7c9f082895f573213c31fcaf679090b0ba4086356527122bb4ea1d","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'0f984909cee42f7eb53f923e18da8b8299d8ad49ce1569a0b4f38c1c55917b64');
+INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02293511b2980779a305eddd01edf626d371e4d8e57087d2fd6d855dfe2b705a');
+INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2","messages_hash":"d9d40e4a4bf36c698f89003ec5b12162b0a8a69a3c6a787bf6b019bc4663952d","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'40329deb0871046a294987d50c5f8df9f162d554ba90c4260809942aa2ac24c1');
+INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7c8d5c5e960ed2375411a97c1fa6911aaeed29e8ffe8bbbd2d4450dfc2adeef');
+INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec","messages_hash":"1520317691e7972e26ec441c69e1c325c3f68af33b81b129000f03df21ac3ff4","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'ec1798d3d08b84fd25863be5ee98927e055856567aab6f7760f4a50c380b770c');
+INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5b8fa8ba9697b40b52961bc63a6b3763677724f679a2255c18feb9d9f250856');
+INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779","messages_hash":"335b4ee753fa80bdaf49af4448b2556b211702cdbc6e879c31bc8883615586f7","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'d79cdc526a09285310d8dbe15dd426bcb57fe301efa8b05c06984f6ff7fd1aa3');
+INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc4753389eb0fa3508f6a6fd0dbfb23c405f29359f37c97365211f2fece22eb8');
+INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1","messages_hash":"be040e6eb65a044cc6ef71e63e215f93d0d1630ef5265d0b4aabecda92d39736","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'c670f755e6658a451a9dde5a23ba00763af99591fccf067ea6c0e120d3f01b7b');
+INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d093c054bc8ed216e78602d18c4b73ec409b5e234d51fd6dc47f36ae71f1d7');
+INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5","messages_hash":"e5767f2f7f04a2ef37312736fd5d191341b2b9342adf1c403eabe0c385cdd1d9","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'eff867be0cb5e43b1cc6725818de68a1b129f73f3751d7e440b707abd047ae62');
+INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54f3b61ad0e574ee8186a056bb3c5a8e64b0df5c0cb52af187c26a3af074960f');
+INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914","messages_hash":"873efaa1183593ac12a37d9d4166ea1b4535f2825db80a2f71b737d15f265299","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'05e7784aa44ede1dfdc53fe2d4ee9accb8709787e9362dc217bd2e1a4c2a06ea');
+INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90a2e870a681be977a7cd28220090e323813fc9e22dc9201254bcba282a19640');
+INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52","messages_hash":"3963f5c2f0b08d1181a5dd2f9074b03ab29d0c9967cf16d1bfb35a963360dd16","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'f4dc68dc14297b504c92ee3a04d4799b6cc7fd06d568a461943b8372769569c7');
+INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7c2035c222a03c005f1e9ab1b6eb22c6bef8a825d1dcb273e675d7a1123fb6a');
+INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20","messages_hash":"8263796916d90637ca98afc47d057801ba14dd96efddaa27ad88b7dbdeb07e15","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'756950369072fe1271b330fc78c8a0f2609224524d01463e134b02d4e55c4c7d');
+INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'448d529081f9a2b657db7d0694696c76293dad9a1a6362d038a2e44dfd3a5274');
+INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f","messages_hash":"0bd4ae72810a6acbfa4129c446f371b48c5b21938cdd67488a4703633f376081","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'f62ab9ddd3b4501161e6a4c9cd2842c87dcbb4fd17f97c5fcb9cb3fae15e03e6');
+INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30028c92f4e2532ed57773872414c5b60608803fae9bffc1f62fb90fc222dbc7');
+INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf","messages_hash":"9d2a21ab22a0cd25d5d3bfadb697ce48ae45b89a1231a59f5e2189b950bccfe3","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'d1b969f7be0714f7bf85932d8ac9e43c225910bdb69c59c36d5b2ee88bdf8f42');
+INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b6d14abff52132228e68a662dca3f22e5118120256e0539532f04af8378a004');
+INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c","messages_hash":"6a933def9bb004d37ae9ece8f5b7c01d628d5cc9029b59547e82ea9000f63ff3","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'00dd0892cb5af7488af5055b647301e0fc013c8398a1d63f42a3144a00543585');
+INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e7e6deaed32d629e6ce869d1b3e25da412b84f957765950a036a0d53445dfd1');
+INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2","messages_hash":"fc971e9f6de6fe3655a6c79a15f620f8f24c7066a94fbc577368cefd73b26a1d","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'2b6b6b56195e83b5e3c05346c2cf64584ecc1359ba64b32646030641234767ef');
+INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'174e827ef0405dbb3a0d548848559eecf8654d62addbd19cf2f816eec989d240');
+INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82","messages_hash":"2cee1ba30e1b1be03ff712650d5f37b16ffc1e5630e3276a0eddabaad8591f8f","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'1750bb76ae6b901bafdcb6c91dd2f70d5cf23ae52b710e391f7a39d37cbec15d');
+INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3562340c5e217ff80ad983394150708205f44e1539079f3bbc6371ca88c33e4c');
+INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f","messages_hash":"31e4ea83f5958ff14927f00e62cbb52b245d3e6509834da426806b396cc117aa","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'9ecb8fffdf41cbd6e2e134a29dba8b478c249d17c8396cb1692a846ef3e659df');
+INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d048e2bbf3450fce09f81167d2b729bff69d187e52f859ab77548a2ec628bddc');
+INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5","messages_hash":"ede966fe3f835c5a48e474870b179d1ba1b7938744f6133a3804686c136e9f7f","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'719f2c34e6a00d26633ee935037f1800a4762ab43d282a97cb319a595eaeaff3');
+INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ab9822dcbb77920f7ff66e9fb4f934226ca74ab9916d6282ff729561ee94e52');
+INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8","messages_hash":"193fa09a1d321e9e1eb9fadf56dbf46128a0e0f23276afb0af169be0a2714a51","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'3d1015a1f263567abfd0401796d2874c2d568f0aafc943f2bacd33f368d2c643');
+INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48537366309fe15629c6a93afd6c8f7dd59c2ce607c2d563d8d7e262fb9de7db');
+INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1","messages_hash":"7112da51430ab9dfb8dba1fe06f52fcffdac61e146a50c73e95e1ecffa62b6fd","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'1db2cb99c6424e489cfcd59defbf62109fdf63a466e4d813943599bfaacbfaef');
+INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa5a9d987e6ba8f00cd526d5a253eda86a607bfb5c6969374ed4248c97d89a7c');
+INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728","messages_hash":"1b9aef26cd6d6e43ebc95c01db0ce8ccb05b8400955737643bef4458471f7c29","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'96d3f2b37f790f3f779023bc8ea5d7539d5f6716224876655fda46351981cb8e');
+INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5fe5f232fb3a1b40cda39102f711ab0c3564c844453ab2dbcd78518cac8671a');
+INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584","messages_hash":"ef1273df0c8d6bbe9078468440fe92eec3515e5985064775d453615448d836cd","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'8c2d7944b1a34e38af73b9087f04afa13689851f99ce810ab0aee31d85c90ec6');
+INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03ffd3312223294c2c952ae42e7b5a46147754d0213f9a9475e4829bd50683e6');
+INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65","messages_hash":"2d3ce8e66aa0fa6491fa43efa2de7264011d91dc04b6a7aa37d7974876c3c22a","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'d015a1d0cdfe9c58d9ff4bb5d6e3289232d854d7468b1b869ed5f795dab39410');
+INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49b4c02b371b539a908b62d4394f53ead1a9ccec893c2121d32beae3149deda4');
+INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12","messages_hash":"3a2b15d7772dd7a9d22d7bfcc558ec8da5713b427e25289eb809b4edeb673e2e","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'bb0c0fdb2dc24f3f68c4e20df6d76705c5ab91e8f9895237bea5aee8e2119158');
+INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87882080a60c35a4609da8afca89870b51dc77d6cbdf702eb8c34caf2cb48b0e');
+INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e","messages_hash":"8a30a60098f9f82a118549ec730568a44d5fa6eb3335a20aec2b44599039342d","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'55651d6a6431b271cd4c716b88e020abd285fa5390d95e6778a3a46ab71e3f84');
+INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a6bdc39b5be364606d64c1b024f028048827baf5633b3529de4c01f28f530c4');
+INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d","messages_hash":"a12df3e7bce37d8f4a9c4c0a2a3f367fb071142acff947cecc23173b4925fb53","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'541a49c153ceeba74c99fa1e434c50920190bf9773fbea6170b5b6bb5baf4dd8');
+INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4765de017bd682cc989229cb29b80fae7c8c55d24208be06458fa84138d702ee');
+INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe","messages_hash":"9e09c7b47df3a09f541b40931ccce3b512ca113a6d4dd5e6d3505e29bfea8e31","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'680670fda43d00496e85da21dcc0cf25506bb21cdd43ec0c55f50ce3c68cb2ac');
+INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dae8a4b7a8fb893eb354a676bc9aa41131b1086b033b08c1078de07a3d1c3362');
+INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a","messages_hash":"82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'084f990c96dfcbc724458e54154757258c4b0ecc17255ab42a9c0db2dd4939de');
+INSERT INTO messages VALUES(1740,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c31285e0758ac278a6160f9b0dc73ecc0ef6cda21c6681a577ffddbfe3b59c3');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -2268,6 +3099,7 @@ CREATE TABLE order_match_expirations(
tx1_address TEXT,
block_index INTEGER,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
+INSERT INTO order_match_expirations VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',310513);
-- Triggers and indices on order_match_expirations
CREATE TRIGGER block_update_order_match_expirations
BEFORE UPDATE ON order_match_expirations BEGIN
@@ -2311,6 +3143,7 @@ CREATE TABLE order_matches(
fee_paid INTEGER,
status TEXT);
INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'BTC',800000,310491,310492,310492,2000,2000,310512,7200,'pending');
+INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'BTC',800000,310491,310492,310513,2000,2000,310512,7200,'expired');
-- Triggers and indices on order_matches
CREATE TRIGGER block_update_order_matches
BEFORE UPDATE ON order_matches BEGIN
@@ -2398,6 +3231,8 @@ INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef318
INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,800000,'XCP',100000000,100000000,2000,312492,0,0,1000000,1000000,'open');
INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310492,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,0,'BTC',800000,0,2000,312491,900000,892800,6800,6800,'open');
INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,0,'XCP',100000000,0,2000,312492,0,0,1000000,992800,'open');
+INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310513,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,100000000,'BTC',800000,800000,2000,312491,900000,900000,6800,6800,'open');
+INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310513,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,800000,'XCP',100000000,100000000,2000,312492,0,0,1000000,992800,'open');
-- Triggers and indices on orders
CREATE TRIGGER block_update_orders
BEFORE UPDATE ON orders BEGIN
@@ -2551,6 +3386,7 @@ CREATE TABLE bet_expirations(
source TEXT,
block_index INTEGER,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
+INSERT INTO bet_expirations VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',310588);
-- Triggers and indices on bet_expirations
CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index)
;
@@ -2596,6 +3432,7 @@ INSERT INTO bets VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3
INSERT INTO bets VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',3,1388000200,10,10,10,10,0.0,5040,1000,311101,5000000,'open');
INSERT INTO bets VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',3,1388000200,10,10,10,10,0.0,5040,1000,311112,5000000,'open');
INSERT INTO bets VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',1,1388000001,9,9,9,9,0.0,5040,100,310587,5000000,'open');
+INSERT INTO bets VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',1,1388000001,9,9,9,9,0.0,5040,100,310587,5000000,'expired');
-- Triggers and indices on bets
CREATE INDEX bets_block_index_idx ON bets (block_index)
;
@@ -2800,42 +3637,53 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',0,310001,'DIVISIBLE',100000000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Divisible asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',0,310002,'NODIVISIBLE',1000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'No divisible asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',0,310003,'CALLABLE',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Callable asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',0,310004,'LOCKED',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',0,310005,'LOCKED',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0);
-INSERT INTO issuances VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',0,310016,'MAXI',9223372036854775807,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Maximum quantity',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',0,310109,'PAYTOSCRIPT',1000,0,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',0,0,0,0.0,'PSH issued asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',0,310113,'LOCKEDPREV',1000,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',0,310114,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0);
-INSERT INTO issuances VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',0,310115,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'changed',0,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',0,310494,'DIVIDEND',100,1,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',0,310497,'PARENT',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Parent asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',0,310498,'A95428956661682277',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Child of parent',25000000,0,'valid','PARENT.already.issued',0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',0,310001,'DIVISIBLE',100000000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Divisible asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',0,310002,'NODIVISIBLE',1000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'No divisible asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',0,310003,'CALLABLE',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Callable asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',0,310004,'LOCKED',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',0,310005,'LOCKED',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',0,310016,'MAXI',9223372036854775807,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Maximum quantity',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',0,310109,'PAYTOSCRIPT',1000,0,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',0,0,0,0.0,'PSH issued asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',0,310113,'LOCKEDPREV',1000,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',0,310114,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',0,310115,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'changed',0,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',0,310494,'DIVIDEND',100,1,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',0,310497,'PARENT',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Parent asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',0,310498,'A95428956661682277',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Child of parent',25000000,0,'valid','PARENT.already.issued',0,0,0);
+INSERT INTO issuances VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',0,310499,'FREEFAIRMIN',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',0,310500,'PAIDFAIRMIN',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',0,310501,'FREEFAIRMIN',10,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',0,0,'valid','',0,0,1);
+INSERT INTO issuances VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',0,310502,'RAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',0,310503,'QAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,310504,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',0,310505,'A160361285792733729',10,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1);
+INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,1,'valid','',0,1,0);
+INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -2875,21 +3723,23 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,NULL);
-INSERT INTO sends VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'valid',0,NULL);
-INSERT INTO sends VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'valid',0,NULL);
-INSERT INTO sends VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'valid',0,NULL);
-INSERT INTO sends VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'valid',0,NULL);
-INSERT INTO sends VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'valid',0,NULL);
-INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,X'68656C6C6F');
-INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001');
-INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL);
-INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL);
+INSERT INTO sends VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'valid',0,NULL,0);
+INSERT INTO sends VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'valid',0,NULL,0);
+INSERT INTO sends VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,X'68656C6C6F',0);
+INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0);
+INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0);
+INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0);
+INSERT INTO sends VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','XCP',100,'valid',0,NULL,10);
+INSERT INTO sends VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','DIVISIBLE',1,'valid',0,NULL,10);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -3089,15 +3939,17 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
+INSERT INTO destructions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid');
+INSERT INTO destructions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid');
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -3135,6 +3987,12 @@ INSERT INTO assets VALUES('62667321322601','LOCKEDPREV',310113,NULL);
INSERT INTO assets VALUES('26819977213','DIVIDEND',310494,NULL);
INSERT INTO assets VALUES('178522493','PARENT',310497,NULL);
INSERT INTO assets VALUES('95428956661682277','A95428956661682277',310498,'PARENT.already.issued');
+INSERT INTO assets VALUES('799006024850293','FREEFAIRMIN',310499,NULL);
+INSERT INTO assets VALUES('2119202695289589','PAIDFAIRMIN',310500,NULL);
+INSERT INTO assets VALUES('2401536886596341','RAIDFAIRMIN',310502,NULL);
+INSERT INTO assets VALUES('2260369790942965','QAIDFAIRMIN',310503,NULL);
+INSERT INTO assets VALUES('160361285792733729','A160361285792733729',310504,NULL);
+INSERT INTO assets VALUES('154062662379','TESTDISP',310509,NULL);
-- Triggers and indices on assets
CREATE INDEX assets_asset_id_idx ON assets (asset_id)
;
@@ -3235,6 +4093,7 @@ CREATE TABLE dispensers(
last_status_tx_source TEXT,
close_block_index INTEGER);
INSERT INTO dispensers VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',100,100,100,0,100,NULL,NULL,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,NULL,NULL);
+INSERT INTO dispensers VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,100,100,0,100,NULL,NULL,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,NULL,NULL);
-- Triggers and indices on dispensers
CREATE TRIGGER block_update_dispensers
BEFORE UPDATE ON dispensers BEGIN
@@ -3342,3 +4201,132 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+INSERT INTO fairminters VALUES('a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',500,310499,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN','','','',0,1,0,0,10,0,0,0,0,0,0,0,0,1,0,'open');
+INSERT INTO fairminters VALUES('13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',501,310500,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PAIDFAIRMIN','','','',10,1,0,0,0,0,0,0,0,0,0,0,0,1,0,'open');
+INSERT INTO fairminters VALUES('9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN','','','',10,1,30,0,10,20,0,0,0,0,0,0,0,1,1,'open');
+INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','QAIDFAIRMIN','','','',10,1,50,0,0,20,0,0,50000000,20,400000,0,0,1,0,'open');
+INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open');
+INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'closed');
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+INSERT INTO fairmints VALUES('d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',502,310501,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','FREEFAIRMIN',10,0,0,'valid');
+INSERT INTO fairmints VALUES('6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','A160361285792733729',7,100,3,'valid');
+INSERT INTO fairmints VALUES('ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','A160361285792733729',14,200,6,'valid');
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+INSERT INTO transaction_count VALUES(310507,100,1);
+INSERT INTO transaction_count VALUES(310508,100,2);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql
index 2d1794ff63..fc6e251b4c 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.sql
@@ -19,108 +19,108 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4','f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67','9e7dd13f1ecb4ec6481076dc9bb5fda1bdb9103747455f9de9ab516748201ef0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'bdf1308701712d94da26f53fef4c440ea2fb7b0ef7361f424ba9263e747272bd','fac614e6f77f1b954c12523e9d0eeb4252f92f3640f7d067790a510a9e893811','8e1a31c7d7fa8f0fe6981c7b33a5832fef697516b3e3bdaf732746550bf2a9eb',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'cf830f949715ebeac09d4441878f60ac04d691c09d6c25c62a0d30fb5886cba9','0c743d61c27efab7c83c1845f6b0446b67c9b59173318709d51363e75e7a0601','d5c067448e960b3b7609d4bc33f28739e755833b8752d57757dc8fe6bfdaaef2',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'e881a675a38c4649cd44e6406ddc494996c761671bc349dcdea1de430a84258d','9ae051d14f8d19db67a85c713eefc0a936f1bad818ae1138fcecb91506a46d88','c060770e246851710cba711099d9f8ccfed66a792b2e64d68ae887e1b83bac51',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'13e0c6276f297ff1ca77705f1b18d807ca22f53735fba52f4f5c3766dc4b04e8','a865bc7b6e26b3c3868ae080ab927ce3f2dcdb7d3654ffbcd1b3a8111d0807b1','0238a76faa733825349cf252aa10cfc94392cccd7599025643ac132abf329636',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'765896f532b411af9f889687a750d44414296c20002f3e2abed9551a6822937d','59095fce5f573c2ff1b5eda5cd75c36227b0f9782601e7538215fea5317c505b','2be211b1beee52aa7be5d2f229a93c3795d226c12eac8fbfee98b2742ce1e0d8',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'853e3a8d39c4e8bdb36a0ec01a8d20f12335fcc00a00ac271e9d83be471d394f','752821f935743579d04abcc94c104148b226cbc0777a6bb30bb7eceb29b85fca','fc41309cdb46e7fbae0f09fda002234a6e758ab63e8240a648793fee6bfc0c7d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'f2b2d250a94afa158f9ed84434c3ac7a0bfc97b4387e5e3c099afc95b8a6ad9c','405914410b5982b395f52f17ee4fc69dc0e4fb4c7a511009c700c0d1bdbfb563','569752afb305c679927918cc1cebce198cb79b86e2e52a5cfbf5284cb1382065',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'8c44f15f5606b6fe984a9fa7df8d7d5381fe87a6c8b634469804328885668569','81714583a99f97b5cefc10510f507567e02f380bdb5741e2b5ef037816e8be17','2a03aeebd37f31a3ceea8c2e86ce7d0d4038ac74a3bbca363253aef81e1acac3',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'ba378e9192f290d3f9d3dd1e46aeef3a185bd5aff1be809c8974fca8dc142987','9395234af8a78eb91afe7dd45a6701032af9926cba3e126e01f06547ffcb2e08','1b8f265cb1ec72a091317f293c1c6a2bd31d7dbb066e093c66b55d40cb966266',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'64f78f9eedce2931aedfe413b4f4bdeb728752e1c897e0bd44c7db665976a723','09624bd24bdd3d945e0a75450915715fa9e9a077db33aa5bdb275b0c76e7f9e8','1a9855c2f2e4ee940e81ba585d2e0a4fa9269d38b7ca9e8fe5aea128de067d77',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'671a1b4e1edd1f96dcfcc96d521fb2125ae5b9d2d01a76fc66686b7ed20c5662','aa59f74f7d3eeee95415b1bca4a090036cd9a2efb187880f7c72c69dc1bfc059','54da84d0982b7a0b58767098bfc307fa45569f0ed925f0d0557b22b7b38401fe',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1f5b502c341699b5a59b87566c0fc02b7db5c657919f014e41a00303aa53efc8','ba55fd791587dad14742ad66d1515992a076eefbd54d1215806aa9db3811cf50','f145d04f53c877a372423f6cce9f84d253d3f307b334882be758636caedf7fcc',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'cd0cfff6de5dd4381301929c740015d5910339ba915a83eb4229ecb91ae84c17','6c03bbdc682356647ad229247ed9d4000c2ffd03696695e0277c43b4e4d8fed8','7386c24d72b2b17bfb3baa53dbc6b04cadbc19bcccb00a1a99fc9e014f594533',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'5012d84065c7a39b5563f4fadeaf30670b47df3856f43d40fda74de663753e4e','99b41cf441ebd1ad46c14b34a3da79586aee124ae643f196f23f0eadb9fbe50d','a34442f144f48eda8ed839bddf2280067bb9831e7fc5f8012fa257cceef0f77c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'0356494d376b2b65b9f4b066b9d2baf2ae90d82369b87914bb58a67927ced5af','c6fff3cf22683f773cf2941f0eb9b5ed84647569c76d40cba61ca444852fceb6','971f87fb66232464062c83cdec0c175d6e326e973598324ff2c2fbac8e081b2e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'c90ff439bd04970ed9e6e25cbfce32160450925a37ba3360f40df8854529b52d','16e32aeb7155ac1b89e47925bb2367269d4fc81e9da0558266ad9722843202fd','1e6547529c58138a1970ef457d8c2296c1742e41976424215f7606176301cc02',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'19cf18f708dab6a983a2642802deb38d25b6fc205ea663059a0569fa38bdaf8d','94709d5f6bcb8df437947be80ac95e2e716a92645f3eec2d915cb7c088504f1c','9b869953cdad0502b038662de44f11fccffc976ad21182d94af502409754f6c8',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'d9ac565fbe7bf18c1d899dab8e0c98e070880e36fa51710382017d46ddf837cf','e3e2ebfcee41e92d855051b2c2e4344600646ac3ac5b335084d5f5a23e872f3b','b7b696036883d92a4d4bab709ff2b1d82ea9894f5a3c74be752b7616c7a2f68c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'b66661deef419a50557d171cc1bcae04f5bc260ed1f5ff56cf08ef39158617a1','c89d7fa5df5eab9ac8a57f00c6cc2b9d75244ce412e12eb842c6a43297ee41a6','1cefa71f85a09e70ef26efc854fc288f669f4b098fa553f7be0f448703900bf4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'57a6c53e41338011cb06cd60118961dcec0e800f62a2c4b1e9381c666319680f','5d8f062b1b5c6740eed53d90f4cd10a23f273237bda588f42fa35653a9fe5feb','df81bfb67fb3c30f1d0a6d73b72cb9bbdec225725b5b3f43ddcdc575b89e5400',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'66c16af10125f298796da828f1a6c2b43123cda38e3dfc57ccc25b00f3da17f8','94b751bb8af2f91fb1933dfae1edaa636836fe1f9100edc5c6b8bc793fea4b47','0a49d35ea7c0d8d382b303f2462c1c8a78725dfeb8f1e374cc7fe8222111987f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'43b6213cad601a389aed2a4e912be118dfab6cca5358d86bac03f4bee6765493','fcb847408d5ee30ef86a94a0495f53670b1157d4f33d627b62ebd84fb1321cf5','5a7e3ebeb25bf887ea951d37c55d30b5461d52e45a8cd40e9cc3abd15c1e8b86',NULL,NULL,1);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'8a9758963891bbfbdcb6515d8d3e49c941fedba7de82038776e9f8ed65e803c1','d21109a870f8542e8ef40f6d72e36fb0bb5ac4ad1e7b3232ba1b2bdcc735810e','7aa46117102c62f460f667fd79f116bda42b266f0e384f209527d60b56753299',NULL,NULL,1);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'cb034ab4a3e252fdfe9973a672e208295741a52634c9332b1501d612e0012e19','52bcbfb439bfc9cf14e38d39a9d6c401a8798a20fe64238f070125e8e7905151','d42bf4e0b63695149ee35307cdcdda6613234dfa95fc4f90385fb4cb964d013c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'5addc8253469d5c729cdffc1c637b75d9e8886a633d4406dedf2b1c16ba5b92a','e2d8891737534dde276dd1f7f51d42558b9ad60d88baada83f75951905e6f174','6c12fc7540de124823bc0fc2e03f016f02bb33a7679f87335857baf740946816',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'8620bd0283c320330631185d1b2351718f174732bd099324a0880719cdfc18c7','e7b6699c8b2b5857b60004dec9aa8aeda30ef42483ca16bc79e4ecdc1c0b4ce7','6ffccd6d55f048c0116fab0af2d249ba002a1146517b4232f6ad1079c7cea9bd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'96960e09478184f4f0ad38d1fc03f0c0240e58715a0a29745a6dc58c40003249','a7e32b5f0b6568eff793a1d12d32ab594f3886b417a6491b6ec641d15e906e9e','78a07b4b6cad61df9c669c30ce670f65df7c9520e3889073a1ccfd229b1bc60f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'2f556d2528abe1c4e9d31f6ed70d400d94633d4dfb54c9a4f250e1b054f9a384','8b22bfc6153a2e742e843a5263194ffcf3ab985d934e212266ca400ed568e710','5cebc5467f3918ed4d618643a8e6201bce7803ceb72b833fceae513c79551fa1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'be195b1f7b7b55dcefb83907d954736d4bf059a9e32055131efd16602d7761d6','ad8654356f0a1ffb669528bf4c3625e9d43ce08d9dda7f1adc2e962b65d20b55','faec53519d22e82c65d28effff3bba8236d89b38ac79edb3c808102bc6682658',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'d3a25656dbb63eecf1c89820581fcab193d750f3a09ca8ab34a5008c8d89051d','f9a6fb698ab5cf74c1d334f2bc3fc258738c330a5bf3614b8951c6f2d90263a1','1e3c12ea29a0c893e4cd24e7d743153d6f2d8dce1850c750a8a654950836ac73',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'0edb535f8c6a40062a86e4ea327cf7fb70310b6d55a6654d5a23e54498aa3159','52c64812c82695720461525033471afc39749f788156239b06f72c7887206fa4','1f7c139549d1628bd43d4ad4f882cf1ab4959aae732600941290d49df8258d47',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'a9208a1b7f782852d652e5089c6485744031176b4d285ea985bbc1df0ccf49c0','4089c5ee6e83c7fdb9d8f0df917268b807801e7f0fb477b6a7fb4b9f931601f0','50cf00394dc4dc4028f5373e81809d11afad9da1ac790b78371850b3e4f09484',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'c8a973eb6bdd28dcab4f1b2a5e29e104944745e57a54e6d87b370aafb2e589f6','28e9816084711e62a27a7d33af7a023d9c375d67c6d7dd4fbe840d511d114fbb','57617659dfd3672b306a544fbf3419b2a77525588d83fdafcf27f133cd8cc027',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'0d7b5809b7a5aa5ff854cfe141490a78c9b33e16f8102a8e804dbf0a0a8c0842','37532a1b8cba78b522775b2feabd9dc786b259b49ae54af0279fd84061fcaf90','918e7a686526c32d037a4a5634c04a4bc527d1e94261b300278950cc47c56831',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'6b4c99289086445a7bf575110172a661c1cd37c418b70afd8ef3be0982041f5e','6d74b1faad84274944078e3fa21083b3776e37da614acfc8d61987a1a48db51e','923e8dfd3279b7777a65ef4a0d31253cf092b52467d725ffa578114ee5707e1d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'f20b81389b2f4c9c9be4442b3c68f87da881406f1490637c7d93d63539155a7e','246e6cb136a8e79ad87ccc6a2318361c689d4720a9000c1a404f3556dced1bfb','b4119937e540d23b8c91810b6a3a712e123b010ba64f6d0ec2e7513965677c80',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'52d554e6b53b853066a3a8f931fc37779f3596c4388e277a9f66a95e001a09eb','c4474243bf31bccb8aa11963c477e3d40bbdbf6c604edd86429c37b59d83b427','08a26261dd5a60bd70efbc193b8c7541642b38853e7e7fc5b85e8fdf8b94ecf8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'08a949af614ff73a79313a5a949908b368efe1f8c131eeeb51ed610baf65ac46','791f23628ed99486b93754ee4e7a3717d2deee1ae60d4b80dd79c614e874c94a','d699fba6e49edfd28c3f42448a0452645ea3d48b2a6ee315c189f6164f9167bd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'7ff8b2408ee1124a5ee573d31023660aabcdb21599bdcfb4a3bc1895d7910094','019a41a08fe760b6ca07f10cdb763ebd41d76a7a458f81023dacd0bb000221d6','4e1fc5d2adfa955670023a3171caba56bc9a487487e735661d2b8fef0b009829',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'c687e753c01711e94cfcad1f16d2976a12ef5d6c3731c64db26f969c988fe7c3','81bf654cee844b048e68c07fdbb561865156f77769d686aba7666d51bfc529b0','175073928f9c483e28ef0153f7552bc8a8886a35a6cad614a381e866b390a27a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'66f493ec8b5cf8140d1f627f008c50624d3069f56828df90286b53a2d6cbf47e','87461d03ba2d32213a73f526b81f1decb96b112a012ada6f9fc089032720798c','7c38a2bc3583e8a0b36e349b2f7c8eb08a73cb2cdc26cd574e42d5f6f1819792',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'33acd319bde452aa81b589435a31ee3add742870a928ef2c15a7a447b4b4e0fa','c1fd057575646ab25fc055b10cb7cc9cc4d4d05f0ddbacfaa462fc9ac32d975e','9308dd7bc118848b1dfa1514c65622002c8ce8b09f8d3f383cd921acae7fb6f5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'83997825aa2597adb0292e265f01e937f621cc75d8cc18e23a4bd0c1fb0920c7','86e036eb2032af487a2c3ccd6a6d8b3073c155164cda4bead96f92da996fd4be','584d88bef1b341c7a46c693cabbe0fcc603df58d4a425f64b9edf31f5204a6c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'9890bca86442f329b2abf1b3bbf4d94e8ab54d10dfa7823a53f02fcfef030d88','a839b90852909b1e21b4461debe100d578abe34e3a46837b444a92db3eab8d97','8518f19efe134acf8d55da0bd9512363de63bb14d06a1f51e4315f113c0c9430',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'a909f658a8f405ef1f5cd8bbab03cbd865235544ae1c2f4dc20e2a4393181efc','a55dd67a02d97f49eb1ce9cbdf94b201a0320065e63aaccca1d14fc856a167b1','bf1f9d352187f8252ae400baf7b361897cb58d056f00685357a03159e48b9e43',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'713d2ccc66a1aa7797ea9b6af18b04245478c7582a8aee76cf2c7f3f3060df3a','c7bdbef0fecf54c6d2f1dde171123487c95ccea2cb80743633a8bbdb3c3b9d35','5d5cc15d98b43e5689b2b23418e1a8c60c7466b75fce6a9eb34f2c2df59d8ef3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'534500ae61a04841771193d57384d27b54fa2bb92c0698beaa46509b3d39eb1c','8c7d8f1273c82696c80fa325a3dde05ee4ad5f719f6890b3d93907c91302cf7d','9e57cfc8a170d8d502a7fd3a7837ab20035e29915f70982b1335f1b208241e96',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'48c8e5d9ab1887f092731ba2881a330d22d4f03f601dccc096fa5147042a3d55','4c724447d400c30336cda4523a84f5cfe86849086f98367e5821a0bdddf68f7b','cde2ec1e7c733c02935331d6137bb1effe396ea7dc82e4ded69543ceb6aedfb4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'6c5ec3d2b7d8a724175559db977cb9ab78eecd39b9239688b30d6d3350cb01fe','8f0ee591c9f8165289f106091ac0cc19dbaf813bf1134c3ad2cf302bdba0e8c7','d0b0d19e3dfea993fe9e8b5b047f701fea2363b86e371e33388db2879acb485a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'817dc86594b3820de76f1d2bc2400d702475d558d6ee5bef4313fc154bbdaca2','9ff934d29741af663537dc45d552b6c01cc8ba577af1fc2ddbbcb7259477bab8','c31cc75c52571b2f31eb550b4441955777b3dda8f609ff0e896e6cc11a19c748',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'00916e6bac2f648f953c8d6dff21438a6ec53ad198b33f90667e8d4564e00e78','3074814e0ba9b6e99b6af70ecee2f1cd072d760d921d13f04a5064342636da4e','969b1eef7e73c6c7440a6e1821ff57d9be96c399da6d25222c8761f031ec3966',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'959df962b9bc7ef215f1530b886613404adaf81552d6eeb4b1401ea265ad5f4f','c792d99e376babe180a99ebe9c20a7925a74fb919ccab28a600d200caad6c0e3','305f357468bc4c4030f71a370d6396a58e1724e218a6e6190966203721f71494',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'d76b639ebddd434e5269de084de0b502e7f0eaff71b4e99de2d4ebdd1fc61380','ca53cd5d8d4e90481a6099af39825f25e7b5325fd586693362d9e7302e72fc3a','844c2635c132ed421e7747be6908cf50a926150d5bc27296f37f73fa03500faa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'525e8cabfc993080d128faf38a5e5c9e9afa61423a5f20a90d68cdcacc96b59b','1bfbc68852f429756bdfb76508d3f044ecc24704e437259c23107470f1edec74','3ea2df17ab88adc76330690ca7dd681fd80f522375155867c73bb6d1298c3bf8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'155ffdc74a2077a3da7d5c068833468c7d0758dfb525a799f910cdb1543beadb','86186f38b173c755554117ee448b6935fd6ec6ca9f464438d659ad6be767d481','115a3d942d7134aa1fd1e06de6be36a489076b6b89363d0d9ca8574a52192a47',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'4f6fe786e34af90927bcd888b4b2a8fc69d3ccdfe4c4bb37edb2007901ce234a','822b518b20b4f136877f2dfb4f4a9299a4ef7c26441791e986677396405ee03f','6c10c2e39604750e0fc0a2246c30cfc268ba9c93cd8b7f0418da56fa1e2081a7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'30978d87fd8e32d9d27c92a0d4ca19d179b515ed95410fa96bf496b4cd8aa5e2','79032221c81d77f7dd7e35d46a314b21b17df32357b606ecb7402e5976473b19','10c89c95b6fa528a5aa068809e5f735c5e3680d75ef1882bb2584f8cedba1bf5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'a0760bc5d2f04b381cc46aca84aa3788e8e3fbc833379a26ae812807d3a04fc5','8f56034a75de70a679a8bd2515b5982dcebc5b2a6c468203ee8922f7e12aca4f','7e9860fb7b394ee7801f90330d53db116b7e3c4cdea3483eba351da8c9c81e8b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'26dcef9e54b1a34b6024f8402ddebb6e9449cd90c270e3db75354a001484b1a1','d645719f82c5029a7fe5eba356e16c17eb676e0848ac2e03b4d98df0106ae95c','6d87ea5d117406693fa50f178d4d6bfb51d016387b65178d773d94f5f03a91b4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'810ebcdb63a08af5a26d1fd4e7a3604afd03bd06ff620d6a86c665e1c81116d2','de75a174069eec13deaa318cf1429ed15d775816b7ffe6f46c7db0e252584271','acc09ca7d6d46a31e5219a5fe711c3115dc935eae8b9f76de341d8ffc1251367',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'1edfc24d186c7e7267b11c03b0a29e57926e9ab25f668231a18a499cbd08c702','4f5fb29442a7bfe7928dfd0a30bc730b2ee0a0bfee963e20f8da2eeb0bc3d6d6','31ef09c9d9085307840329344f77997686024ff642eb7fd66d1bb8ccba72772d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'b0de9503f019c9548a97bd198e6b1b58b57d6a7c231ace2d72adb0421b29e9b7','99f2cacd3f24f7f8cf40d0c6a3c50413a243d886a381f432dc4398b06dd0003e','9e1443459f5d65d8a563c386ba81aafdbb7d8edec0b851cac2954bceca9a915f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'62e41caff168eb4b15eb67ab2130510ba3f17ac186f8516cf5b5c6f168988345','6436ea453d46084d34e4af17b844a1312a3a3f0d95234921dffa50c3bb86a8da','120e6e7664ae78686c77d35bf4d699256954f01fb3136f6b57daf14c7f8c4c2c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'a444b1535d27bb2917478019c4c59abf9474e87128f9ec1e44c20eea1f014f3c','4a7b7ac0f91d282190236dd238b33f7b76b40c1f5151c25117d7fffe014a1995','bc4110a8a69c3c5b68a220d18914bfc2b775f4505fae4905a056ab1129a18759',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'0ad978671f587f99e5e1c1b6f68ac3d18bb03a3bd7ea9afb63590bcef25160c8','a7373340d9f43d4256f8a9063b32c415ca44e5964abc500cb3daa631ab92a311','9db614ad9f148242e8d381964ed1f060344570c654494d6f28a1d54748783c82',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'a6bb36829770b24fa0b960b85566a0138360a60b52cec62d94d7df8cb0b8f8b4','3f137eaa77970ba242a8bd0709970f7045ae79ca9f3cc172882577ee3ed34e9d','22c378a039a5d54dc936e50a2b439d325bebf2499797ce6af9ee8d04c984a701',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'9b8ceda9b170429d8b9ed517f0db95487b3058397e20d7e786577c8e46b389b8','a8c54e9c41e6d694d38a6cb9bb9cea881609c013ef9bf4909fbcb0090168e263','e2199f8f8010ed9d80b755628f7b92539f0a7eff814045b5cb0c4b71ff693506',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'cee2e41baf86f1af24d555e9ab4a0c023b5f1ab2b054707d4434b4f60d31862a','bc2a5bfc7f1a8181b7b04970a8287b498f096bc08acf106f6a8e0a0ac5ca3723','26a0fcab0e3f7ba3cb0b2d78b72c11ad6355647501cead5c427e1d23d4e3f3ad',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'cbfd7ff728f05ba3f1db5972f1449618a79d3fd0d76bf7fe990aed2eb2316a38','73e3b8838f74134d3db985de53446f88c3bb86a8cec53bf773c10dd89fc2d709','0a0c5631c11c33f5ccf3a0d4e537469fd887b0493a9395cce6f5cecec4525b98',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'9af85cd995c83b5a5f0cac66351cabdf9dc9faecfee080638fc76019663faaa6','5e951c9dc5201f32b7e8b9e72702984a2ff13c011cec35ef4ddbcf5b1e7e3111','0243ca02e41d763a7dc643fc9353613ee3eda717381cf1cc92d27833652bc9aa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'a3c547e84db6b29630b87fa566e37796e0632ba616dd6d521d558632c3b55370','c72261d02c311085af66e2c66b8bcef2833d05716f067de2327442b92d219adf','260cbb371e6bedd2e668b53e65b1938ddac82a976c4642e5931ef3c637aa0a2a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'a0170d8a72a0f8642c0863899bf034e754596e3fd8ddffefa91e7e9a7addf944','df4f5afac7aa5bdd2e580979d13c750f4990c5f7e8dacaec6d751f4b1e3c690e','f251df0e4b0cd81f4f5be1d0847f2313327c5d3fcde55f54dc97da0c030338c5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'e0179a21342fcf35fa169567f1ef35bd6b0b1b048a98e90c049fdf3ee58e9da4','c5cc010dd34b520a733ad2e109b4b2b8cc84b48e412c43ac688a57f99147c164','8766382520f4e2f1cd434333e1b0f694679e3389938ad90cb27a806f1b10bc1f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'8855ace296b0b078d90aa24fcd30ca9f9cccf9d3961f3dba4985a3ff187a02ac','eac5c44840751fb1009274a20657bc544e855ff1a49533c9fc43c0b6e66b7402','57d4af8c7a15f1318317e9c5904245edf53331c9f4ecffc1ba4d5043e62d8af4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'bde3a6c6cc31b96d58f466d3ce0361cc6366c8c239778f21b696d4063cf6d89e','40cde00e42632bcc0477dc071b9acfa0745283dc2a9d2d28e230f939832abbac','2a1c11729dfc8b114a93a4d00c864898433dca5405b147a551ab342eee18d6ea',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'f562851b32a7005ee02b9e2491c0195dddce451e8fecb428209d087e69345303','dc3ab137a2d7430196ec3d25456e09e8e63d815c8e4b246e95e7e63d4e3a9c75','c5208e94a5cf8b81912e897627778a7b87b6cda084714bcf17dcbbfe471ff09a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'996cda7b65e623747deef936d61491cedd0159f44faa1e3536de1b6d6c474097','a957a0c28f2a0beb967ef0ac9519e9207e37415af3018f1a5cb998169f3b6005','f6755e4b9a0aac05188b3556704027627d5429557332b9f836605544254ed43b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'c8286f73cc3a070f4251b7c59bb485e611437a1916fd39ffac831dc78df54ecd','3cf1b57600853e04513ad74089e344f9e5af742e1d4aaad0c9e51c0ebc6e77d5','1796d3f485d4ca5c7fbfeabc6b1428703afd47c721400cdc2acdaeadb9d26482',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'ef9dab42700918027fac849f2088d2248a6291dc7bc24be583b556f37739631b','6cf1d5147d5c6523c275384d404b4f7a750dab987def5846979bc5d14233a44b','e5aed9b39fa7515afa96939dd322b29380c52591b7dc6ed6a62d1e7153f69889',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'c6bbc52f1e8f907b2d66378f4352f41ae3d354985aaab5f16d737d75a7e6b1d8','091641bdce3f527a8a3da393068fca3534e8209fba337b7b79bf22f2a6bc5dec','08636b4a9a1b1ef795ea50198a555762e9a7b1b2e9bf12428b223b2dae49cd3c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'66f7b7ff8f0217ed62938a5931d4a6a232546e5d58e09dfd3ba5a792c35fa560','8a955c5c1a5c9f8c82553803172cc961e61b2e2e19b9c87cad6dec24512ee351','fbe957e0c70cf6dd4ebc7b0f46adf107bc92354eba58205ef447e3daf6bc8db6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'2b26c6d901ca9790987331432372046d9620d10ea163f4824208d6b23e8e7a35','482bf498868976d12ae17fc38bc847d8c7398c96fad5df9f1d2719197fa038e6','df11ad31e79548a8591fbd90d30ad79ce85da37dfb146a48ec4bb648737ebff6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'0d6d774dce93e94e870835005b0e8b04f010fb25158aa69a0fa0321d1577e987','ed1021dde8c16263483f3a50091a2df2105977a7aab9217b78af58833433853c','06753394ba61e21576857c2bea779ed38eed2fb104134102a6ee6f4075acf676',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'9dbd171e3606b1662f6b576339b1e9aaa3da8a9f8a246bab905af255add4a762','e5ea123c86cd7147d8cd8d9866006e1da8528bb32c8005a998ca9f6ee917c2ba','0da963e6f910b4d732b4b5142c237cd3fc3cc77ffdd8a7566ee849b827f93e59',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'db67b5dc6b0c0ddec22d0e716b72aa8cb6fa9702316f2a8e12659ee229094c16','a25387e650e60dbb003c5ef16c46a8d8464013d81bdb49508c2935368d4ae9c0','0e49e187d7c89228e2592780e408c2a4add307095076272d84e2b55f4ecf29e9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'7cf70b5298dbb36efbec2fb880b76e2514e3bad9d5200875fa3eb3ceb7719ee8','f5028a37d6395b533cf60e6ce9f0bf574a0a7beb2cebd2f545b5183e5362aaf3','99d27abfd96c4b9202fc101ca8795378da7adb442693a8dd2ee01755c3a5aa5d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'27106f400fe1ee93bde42f3bf3cf39737fb856bbf0df3f90fe0838cf7d38798c','f336b56eb2aab91aaacef9df8159627bafc67b497482abcec9ad6786710da7ec','eb249a817d3a77ab509de6ec126d1adb66ba7cb5b061b8bc1b6bbd8fb97fa2d8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'28c9833eded6d68967f206e5884616f83bb9ad16b9d7a507031b96480aecc799','c51f9cf9cd60f836bf4ae7ee0cd982829f6f7cbb2503eafef3bb167a285cf9a9','717ede78db478693f58863ed85316b1a70c505f7d7288b783eb30c9e6aafbdbe',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'cdac6435934ea6e67a311495325c85237158ef30c009ea44c562c2127d79e696','b6749729423101ee337b7fbf0362191ba34102f01db03b225ac0d6c52de2a6fb','1bfad3f02446c2eaf5d92214a3dace565861afd1cfcb75b12087f88c542c82e8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'cb33e420348e7969a2310445a6c17c79e647d3c6f3106d4fd0c0a1249e11ed6f','544bc0db1dbb1d22a05e5f81de7520ef990df5b897b9f9e60d98f102fef86568','e7f8143dcc493803ee016f2318c91d7ec9cfee932596858f77c96b9572c24ad1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'dda2531cf7db78a3f27c1ce70189b3f6efb69ddd24b61639f9deff42566bba2a','217908d5688f0d9797f04ee9c3cd03ae93c20f4e5801fd809d3c37154e55b7b6','ee5b11297364b892749812f46908976dbf0df6fed5083470bddd3cbd0f443688',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'9ca7d9e1da0c6e4465d9e1c76990b6c48e62ee3a0b3b83189dc7a0f2c03a3006','6e31995ac19f2ff3fdfe5d2ba7a49f4b018b132d2aae92a4c664a97d6a6b3b6b','0d714f5b1aeb7850a37e62304533be483e870cf8a93c842499e7fb8f426a278a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'c6fc005e874909cf0393ac1bee7267f66cc5355c549d8657234a0ed6b429c869','d7d3f23d0014f40f3ac6a00fbb59e95653d22e11360783fe4116be9ecf360149','35654c3d2b3f82e783d329180c97ed5e933a36e01e19a4d46f75372f411bdc4c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'14dacaec0b37ca20f271e500d0ec1837a63006eb464728c067107738ad3167c6','7a1a9bf5515019b99c1c35abaa4a2003c6291018e090c26ec03c5c951f853f82','e84c649434ab608ebf4f88162e34f824e244c76f4af22913f0efb6ae6e21c94f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'05bd680c082185147e83785e7464d8890908d1550359b4fac79018b510475e01','40b9134941fbe6312e3a7dca4b1f5114c3b7ab73f6ab84ba96aa101097111168','604cde079938595e2eaafe98115d964d3d7760de6727133ce55a0aaf3c09ebda',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'b50805d750ebd26f8dbced919948118f1f97ce7d117aa1760e7a3c4895f51e13','4e1fd0382baffd66852d64c667941808ebeb08a17309ccfe91be8e16046ad266','a9cb685942d115aef7c6cbedb261c04ae6a2b7a8106749ebbaa5c80a0abd3aeb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'dde96405c241e1d57334670e4eff7ed8db92056e6867cae10475a9bc30ba4619','8e635d69a6a40df5c3849e1811ee551c32a57a3496fe8e4b97846b9592a9ebde','ace214c70fd988ebaa5d2cbb97ea3015c50819efbc2bc788840a984fa721de41',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'613d78fbabba246a4d1cd9d50317e732795a59812df8395472347e15cec1ee9b','c96db41449a579ffc6b459375569230e88bdfd51c10578c60f8d252eff630fd3','ea310679cec41d4ecfbc9e8293090ecfc50d42603aeead40f8578f1c67325499',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'e535ca5960d2ce7508bd2157dd0cac3ea1f9ab14532a40884d522b4bba0d4979','710369d2e677643b7ab8f2bbcebf0f13017052ff7fd9adfd6ffac4e6fff83f8c','42229b9e7e27e8ef79ad7116e9c90af0ead5a28b5330d482c82975fe22e0fc0b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'970865291b7a6d8173d6ad2ae97335cb2e89d80cbbb7a79bb2328cf6c67fa6cd','9deae420c2b87043e6e18db077634a1d65ae60b38f604ce56f0899ed3a561347','7a2883d5bee08691b501606fb32234a6e9e72187d20393de23126819cbed81a8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'0741e57ad88cdada65134c9f131ff5bfd9498cb054378d829e34715e8db2aa6d','4bd0054addc71915293b8f040ed3c6c64d0aaf8ad27647d1887e16d55604523c','d445cfe17527660e016649cfd9b00ee76b41728d084d1064e30859cda37eb244',NULL,NULL,0);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4','f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67','b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'bdf1308701712d94da26f53fef4c440ea2fb7b0ef7361f424ba9263e747272bd','fac614e6f77f1b954c12523e9d0eeb4252f92f3640f7d067790a510a9e893811','3982f4f3a8dc501dd90db276a698a42a505c246daad5375df01cadd5dc1c0105',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'cf830f949715ebeac09d4441878f60ac04d691c09d6c25c62a0d30fb5886cba9','0c743d61c27efab7c83c1845f6b0446b67c9b59173318709d51363e75e7a0601','28b764d4c3761b4bcb1e2b3cbd62b372bbdb26ab4930950d44e240fe6eed016e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'e881a675a38c4649cd44e6406ddc494996c761671bc349dcdea1de430a84258d','9ae051d14f8d19db67a85c713eefc0a936f1bad818ae1138fcecb91506a46d88','10d9d1d1d68bdcc6d8e2d58fcdc154884f436553a143f5cd520b0026363f0cdb',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'13e0c6276f297ff1ca77705f1b18d807ca22f53735fba52f4f5c3766dc4b04e8','a865bc7b6e26b3c3868ae080ab927ce3f2dcdb7d3654ffbcd1b3a8111d0807b1','aa968b67b3f01d9adb219bc43a6831cd92130511d0848352e5ce334356380510',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'765896f532b411af9f889687a750d44414296c20002f3e2abed9551a6822937d','59095fce5f573c2ff1b5eda5cd75c36227b0f9782601e7538215fea5317c505b','1127342777064d3cdaded48200f307a39ed2daf430a0c23437ca8b1403e32a05',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'853e3a8d39c4e8bdb36a0ec01a8d20f12335fcc00a00ac271e9d83be471d394f','752821f935743579d04abcc94c104148b226cbc0777a6bb30bb7eceb29b85fca','1986e851aa4d771bbcac1e6915796eeb9a862443ecb949b933a03fb3dbf0c105',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'f2b2d250a94afa158f9ed84434c3ac7a0bfc97b4387e5e3c099afc95b8a6ad9c','405914410b5982b395f52f17ee4fc69dc0e4fb4c7a511009c700c0d1bdbfb563','6e1e255f41512505aa0d339849037191697a7fbad0e2adc21c1ae48eef8f8f2e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'8c44f15f5606b6fe984a9fa7df8d7d5381fe87a6c8b634469804328885668569','81714583a99f97b5cefc10510f507567e02f380bdb5741e2b5ef037816e8be17','967f755bf80b80dcdb561e2f822d0c057824fd092b1d7536d1d52f96a4226df4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'ba378e9192f290d3f9d3dd1e46aeef3a185bd5aff1be809c8974fca8dc142987','9395234af8a78eb91afe7dd45a6701032af9926cba3e126e01f06547ffcb2e08','17af8703880540d50c20a49c96246184b225b94b10b2febc0b4a726bbe6430f0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'64f78f9eedce2931aedfe413b4f4bdeb728752e1c897e0bd44c7db665976a723','09624bd24bdd3d945e0a75450915715fa9e9a077db33aa5bdb275b0c76e7f9e8','d6bb529bfe31304266d7c1c11879fa5c46f2445bf5d743e829a9efd6f3692033',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'671a1b4e1edd1f96dcfcc96d521fb2125ae5b9d2d01a76fc66686b7ed20c5662','aa59f74f7d3eeee95415b1bca4a090036cd9a2efb187880f7c72c69dc1bfc059','ecf1aca37d71aa31b875ddb79d80eaa8594553337ed23ba2186c92bca429eba1',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'1f5b502c341699b5a59b87566c0fc02b7db5c657919f014e41a00303aa53efc8','ba55fd791587dad14742ad66d1515992a076eefbd54d1215806aa9db3811cf50','20253d51becea71521f4d33525ecbd2dab9181ea15f310ced86852d6c887fe98',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'cd0cfff6de5dd4381301929c740015d5910339ba915a83eb4229ecb91ae84c17','6c03bbdc682356647ad229247ed9d4000c2ffd03696695e0277c43b4e4d8fed8','db3dc80b0d4d31ceec1d5810030b79d1ed55926d276c9c5ea7c8d30a376148aa',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'5012d84065c7a39b5563f4fadeaf30670b47df3856f43d40fda74de663753e4e','99b41cf441ebd1ad46c14b34a3da79586aee124ae643f196f23f0eadb9fbe50d','3ab1bce56bd47b2a842921f69e90b4815ab1de528680a24499831888efd83e71',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'0356494d376b2b65b9f4b066b9d2baf2ae90d82369b87914bb58a67927ced5af','c6fff3cf22683f773cf2941f0eb9b5ed84647569c76d40cba61ca444852fceb6','d7dbf3e0d6c03945135e5df2c126ded1c04d554c4b535df4c8ff50bca1e58153',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'c90ff439bd04970ed9e6e25cbfce32160450925a37ba3360f40df8854529b52d','16e32aeb7155ac1b89e47925bb2367269d4fc81e9da0558266ad9722843202fd','126f9ed605cd865b30c7078348f7f992de3ac4956de6a27d0a55d2b7ca62031e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'19cf18f708dab6a983a2642802deb38d25b6fc205ea663059a0569fa38bdaf8d','94709d5f6bcb8df437947be80ac95e2e716a92645f3eec2d915cb7c088504f1c','1498e259a0f5b7ffa9ffdee077353a8917e8e9dc33ae39a0516b1b2082322e52',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'d9ac565fbe7bf18c1d899dab8e0c98e070880e36fa51710382017d46ddf837cf','e3e2ebfcee41e92d855051b2c2e4344600646ac3ac5b335084d5f5a23e872f3b','eb733b49a260457265085cac5cdc418645d4dc45a6cfe6af4fc455fc44c86e2f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'b66661deef419a50557d171cc1bcae04f5bc260ed1f5ff56cf08ef39158617a1','c89d7fa5df5eab9ac8a57f00c6cc2b9d75244ce412e12eb842c6a43297ee41a6','d501dc8943d9fbfa1e6ae9585b430720d956e7fc1521869e2d62352ab765be62',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'57a6c53e41338011cb06cd60118961dcec0e800f62a2c4b1e9381c666319680f','5d8f062b1b5c6740eed53d90f4cd10a23f273237bda588f42fa35653a9fe5feb','6721c364682fa68f26ba3c3dfe6e7d572c9846469bb90dad12326c8d19dc5afa',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'66c16af10125f298796da828f1a6c2b43123cda38e3dfc57ccc25b00f3da17f8','94b751bb8af2f91fb1933dfae1edaa636836fe1f9100edc5c6b8bc793fea4b47','670756f732d49f35c64b8731329dde392e8ca618ffe07cf895823d638bd175ca',NULL,NULL,1);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'43b6213cad601a389aed2a4e912be118dfab6cca5358d86bac03f4bee6765493','fcb847408d5ee30ef86a94a0495f53670b1157d4f33d627b62ebd84fb1321cf5','abb0f7fb1bd17273de7a43bdfd2b6786a9b8f2a1f3be6b4da3ef5189ad73566c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'8a9758963891bbfbdcb6515d8d3e49c941fedba7de82038776e9f8ed65e803c1','d21109a870f8542e8ef40f6d72e36fb0bb5ac4ad1e7b3232ba1b2bdcc735810e','c6a825980dbe6ff39f04b72548a2490b3c814da34a2744319a3b903448d4ba19',NULL,NULL,1);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'cb034ab4a3e252fdfe9973a672e208295741a52634c9332b1501d612e0012e19','52bcbfb439bfc9cf14e38d39a9d6c401a8798a20fe64238f070125e8e7905151','aa67e27468ba6bfbd0f7e197b6d12b492757ed4fd97afb371862ba7747252e01',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'5addc8253469d5c729cdffc1c637b75d9e8886a633d4406dedf2b1c16ba5b92a','e2d8891737534dde276dd1f7f51d42558b9ad60d88baada83f75951905e6f174','c798b5e8a7cdcd8490670fe01e7adb3ec2394dc8e4efaeda1e90e0a8b75b8c8b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'8620bd0283c320330631185d1b2351718f174732bd099324a0880719cdfc18c7','e7b6699c8b2b5857b60004dec9aa8aeda30ef42483ca16bc79e4ecdc1c0b4ce7','9cdd8b03f2f97aa4f68317d23a35d7019cb97204d904f0cd0a86a4e4410a8203',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'96960e09478184f4f0ad38d1fc03f0c0240e58715a0a29745a6dc58c40003249','a7e32b5f0b6568eff793a1d12d32ab594f3886b417a6491b6ec641d15e906e9e','a56a11bed2f5aa2f6deacfac41935e24a68599c875481376adcfd07e52262568',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'2f556d2528abe1c4e9d31f6ed70d400d94633d4dfb54c9a4f250e1b054f9a384','8b22bfc6153a2e742e843a5263194ffcf3ab985d934e212266ca400ed568e710','7c5a0f15673561d5bbea0c3b2bb3eb39bd48d51933b77e1878b44f706c872c25',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'be195b1f7b7b55dcefb83907d954736d4bf059a9e32055131efd16602d7761d6','ad8654356f0a1ffb669528bf4c3625e9d43ce08d9dda7f1adc2e962b65d20b55','b149c15c7b0b3dd9478d4d597cebcd07f25f9184b1bd6e141c342b69b6e8a40a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'d3a25656dbb63eecf1c89820581fcab193d750f3a09ca8ab34a5008c8d89051d','f9a6fb698ab5cf74c1d334f2bc3fc258738c330a5bf3614b8951c6f2d90263a1','fa4cc154359abb7e02ad1e08117acc4a0f44dfd338a41401879f2f58b81df711',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'0edb535f8c6a40062a86e4ea327cf7fb70310b6d55a6654d5a23e54498aa3159','52c64812c82695720461525033471afc39749f788156239b06f72c7887206fa4','af787c59bd0eaeac32d81ada9454b886cf4f66b72adc9023c159f400a22eb5ff',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'a9208a1b7f782852d652e5089c6485744031176b4d285ea985bbc1df0ccf49c0','4089c5ee6e83c7fdb9d8f0df917268b807801e7f0fb477b6a7fb4b9f931601f0','3797c8af254fdf116c2ea57184f4fc7b7fbb231daaff896ed5f7fe469a626c12',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'c8a973eb6bdd28dcab4f1b2a5e29e104944745e57a54e6d87b370aafb2e589f6','28e9816084711e62a27a7d33af7a023d9c375d67c6d7dd4fbe840d511d114fbb','4f37b6d565b42f4868341125ba4aeafe4968440f24f7a0d664de559f93026a7b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'0d7b5809b7a5aa5ff854cfe141490a78c9b33e16f8102a8e804dbf0a0a8c0842','37532a1b8cba78b522775b2feabd9dc786b259b49ae54af0279fd84061fcaf90','f52105f94398f097af677a8a226c0d9896ccc7724f455b0e7af802e73978dab5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'6b4c99289086445a7bf575110172a661c1cd37c418b70afd8ef3be0982041f5e','6d74b1faad84274944078e3fa21083b3776e37da614acfc8d61987a1a48db51e','fb7cb709ab8d862382019c7ab164c561efaa2d43f59f27ecf48e285787e9b070',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'f20b81389b2f4c9c9be4442b3c68f87da881406f1490637c7d93d63539155a7e','246e6cb136a8e79ad87ccc6a2318361c689d4720a9000c1a404f3556dced1bfb','0ebabaa3928858badd8fc0b01d5dc56bc3bd3ff3ba991476f19cc292b1f78e4b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'52d554e6b53b853066a3a8f931fc37779f3596c4388e277a9f66a95e001a09eb','c4474243bf31bccb8aa11963c477e3d40bbdbf6c604edd86429c37b59d83b427','386df30f2469867e71c1188059e4d40a4b8c3987d613b054e2be27a4ddcd3b5f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'08a949af614ff73a79313a5a949908b368efe1f8c131eeeb51ed610baf65ac46','791f23628ed99486b93754ee4e7a3717d2deee1ae60d4b80dd79c614e874c94a','ed2a9ddc91c486da9f105da77c46deb90df12df89761074296a3e988620b7857',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'7ff8b2408ee1124a5ee573d31023660aabcdb21599bdcfb4a3bc1895d7910094','019a41a08fe760b6ca07f10cdb763ebd41d76a7a458f81023dacd0bb000221d6','eb475bf5d9f009884f019dcd9cd0ae1164f984f44e440665a219bde18e7b7fe6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'c687e753c01711e94cfcad1f16d2976a12ef5d6c3731c64db26f969c988fe7c3','81bf654cee844b048e68c07fdbb561865156f77769d686aba7666d51bfc529b0','95151ef7b552df9b15c4670980ba7dbc3c99592a724f5c5bd0612c5add1e32cf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'66f493ec8b5cf8140d1f627f008c50624d3069f56828df90286b53a2d6cbf47e','87461d03ba2d32213a73f526b81f1decb96b112a012ada6f9fc089032720798c','007b08291410c7ee35adc28bf2f78a649beda27ab4b247d12312c5e6b696ca04',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'33acd319bde452aa81b589435a31ee3add742870a928ef2c15a7a447b4b4e0fa','c1fd057575646ab25fc055b10cb7cc9cc4d4d05f0ddbacfaa462fc9ac32d975e','dd783e00eb2f3c2f39124237ceca891bf41a332e16573d04c6c61fd77827acad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'83997825aa2597adb0292e265f01e937f621cc75d8cc18e23a4bd0c1fb0920c7','86e036eb2032af487a2c3ccd6a6d8b3073c155164cda4bead96f92da996fd4be','12730e29e42b6fbf98bca1bf14a7be3a3c2ddd03e9f115c48fdba824c06f3ba3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'9890bca86442f329b2abf1b3bbf4d94e8ab54d10dfa7823a53f02fcfef030d88','a839b90852909b1e21b4461debe100d578abe34e3a46837b444a92db3eab8d97','028d29281f54b11cda5f6f90a3354a85026409afff08e9edd46583dffb6706a1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'a909f658a8f405ef1f5cd8bbab03cbd865235544ae1c2f4dc20e2a4393181efc','a55dd67a02d97f49eb1ce9cbdf94b201a0320065e63aaccca1d14fc856a167b1','c2461bf3563184a7588dba4bdf59a119b638186a4c22863b03ac71a608de37fa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'713d2ccc66a1aa7797ea9b6af18b04245478c7582a8aee76cf2c7f3f3060df3a','c7bdbef0fecf54c6d2f1dde171123487c95ccea2cb80743633a8bbdb3c3b9d35','791e1989169a138179403b69b116aac55e68e96bc1bef0471f457b797e59e691',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'534500ae61a04841771193d57384d27b54fa2bb92c0698beaa46509b3d39eb1c','8c7d8f1273c82696c80fa325a3dde05ee4ad5f719f6890b3d93907c91302cf7d','14f919dbb05e4e2fdd99e63dcf3484c4bf0df77c74ac9fa01022e803d15cb296',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'48c8e5d9ab1887f092731ba2881a330d22d4f03f601dccc096fa5147042a3d55','4c724447d400c30336cda4523a84f5cfe86849086f98367e5821a0bdddf68f7b','afa4ff525af27660b5c5be439c0942dee4307524fde940d3ca5751ec702575da',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'6c5ec3d2b7d8a724175559db977cb9ab78eecd39b9239688b30d6d3350cb01fe','8f0ee591c9f8165289f106091ac0cc19dbaf813bf1134c3ad2cf302bdba0e8c7','6184eb40ee97b8611e5ca2857a8f3881803cef8e510fa6d0fec5fa2d515ffedd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'817dc86594b3820de76f1d2bc2400d702475d558d6ee5bef4313fc154bbdaca2','9ff934d29741af663537dc45d552b6c01cc8ba577af1fc2ddbbcb7259477bab8','64956fab371b4280aac1897543c9de76759512f51383278cb2cbacbcfed6341a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'00916e6bac2f648f953c8d6dff21438a6ec53ad198b33f90667e8d4564e00e78','3074814e0ba9b6e99b6af70ecee2f1cd072d760d921d13f04a5064342636da4e','c0b45ebf89dcd6dc5b571ce3a8ceb130ecf618c4e6c74f225f2fc5f5852657fb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'959df962b9bc7ef215f1530b886613404adaf81552d6eeb4b1401ea265ad5f4f','c792d99e376babe180a99ebe9c20a7925a74fb919ccab28a600d200caad6c0e3','4a3f35fe4b51c33786edba383629ab1f878dd534bc59ca0261750bea101af62c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'d76b639ebddd434e5269de084de0b502e7f0eaff71b4e99de2d4ebdd1fc61380','ca53cd5d8d4e90481a6099af39825f25e7b5325fd586693362d9e7302e72fc3a','bb1a39717ef316bdf4dec41883c183cad1f9338d6a8665b0d2552ace633a332d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'525e8cabfc993080d128faf38a5e5c9e9afa61423a5f20a90d68cdcacc96b59b','1bfbc68852f429756bdfb76508d3f044ecc24704e437259c23107470f1edec74','200d3ca6999c079dea8cecaa68e8d9b48c5948323ad290bd7f89ce364d18c1fd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'155ffdc74a2077a3da7d5c068833468c7d0758dfb525a799f910cdb1543beadb','86186f38b173c755554117ee448b6935fd6ec6ca9f464438d659ad6be767d481','cf6631cdcfc3420c4da63b7075a28d9565c5e72adc3c22f0080f0fc4d49c9fc9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'4f6fe786e34af90927bcd888b4b2a8fc69d3ccdfe4c4bb37edb2007901ce234a','822b518b20b4f136877f2dfb4f4a9299a4ef7c26441791e986677396405ee03f','4d9220efd11b061df66519062855512842611bf9ead1ab64329867618c07b372',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'30978d87fd8e32d9d27c92a0d4ca19d179b515ed95410fa96bf496b4cd8aa5e2','79032221c81d77f7dd7e35d46a314b21b17df32357b606ecb7402e5976473b19','5bdd0005be4ff087a59a47b56524694bc090682f28a5f405284fd42d91f2e788',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'a0760bc5d2f04b381cc46aca84aa3788e8e3fbc833379a26ae812807d3a04fc5','8f56034a75de70a679a8bd2515b5982dcebc5b2a6c468203ee8922f7e12aca4f','8c88f57aeea0645f5eaedd65c2a30f7b731738fa61651e2c97bb5fdc927eb9d0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'26dcef9e54b1a34b6024f8402ddebb6e9449cd90c270e3db75354a001484b1a1','d645719f82c5029a7fe5eba356e16c17eb676e0848ac2e03b4d98df0106ae95c','2d788d58e6eceafbaa9ffda09c9f8a81b76961e6e294c4e06dfb295a12c27360',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'810ebcdb63a08af5a26d1fd4e7a3604afd03bd06ff620d6a86c665e1c81116d2','de75a174069eec13deaa318cf1429ed15d775816b7ffe6f46c7db0e252584271','dcb870601f79832d84e9c22b66eaf15e86b1ae25a8225d6bdfc75893cec5f76c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'1edfc24d186c7e7267b11c03b0a29e57926e9ab25f668231a18a499cbd08c702','4f5fb29442a7bfe7928dfd0a30bc730b2ee0a0bfee963e20f8da2eeb0bc3d6d6','a4924b34bc071e885842f09a237e1806a27505fad63917169693d7e441e694e9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'b0de9503f019c9548a97bd198e6b1b58b57d6a7c231ace2d72adb0421b29e9b7','99f2cacd3f24f7f8cf40d0c6a3c50413a243d886a381f432dc4398b06dd0003e','61f97ba2755921992ed5f40ae346c021aa592f29b3a6f978616acb561fdd12d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'62e41caff168eb4b15eb67ab2130510ba3f17ac186f8516cf5b5c6f168988345','6436ea453d46084d34e4af17b844a1312a3a3f0d95234921dffa50c3bb86a8da','02cbcc05757a4cd3ea2dc3fd1637b721c26010816602e38dcad980330a95c884',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'a444b1535d27bb2917478019c4c59abf9474e87128f9ec1e44c20eea1f014f3c','4a7b7ac0f91d282190236dd238b33f7b76b40c1f5151c25117d7fffe014a1995','b2714f97a9e8d18abe73c1b94b86df860e69f43acbf814eac77eea1e42538214',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'0ad978671f587f99e5e1c1b6f68ac3d18bb03a3bd7ea9afb63590bcef25160c8','a7373340d9f43d4256f8a9063b32c415ca44e5964abc500cb3daa631ab92a311','8f8dccbc6b058cdc0dfc37d7952f57fdfc180a8e62f100fe258a0b81db789455',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'a6bb36829770b24fa0b960b85566a0138360a60b52cec62d94d7df8cb0b8f8b4','3f137eaa77970ba242a8bd0709970f7045ae79ca9f3cc172882577ee3ed34e9d','d710b3ed96f543abdd29c33a705cb3cc0f3148294253fa6d04c099f7294f3e3b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'9b8ceda9b170429d8b9ed517f0db95487b3058397e20d7e786577c8e46b389b8','a8c54e9c41e6d694d38a6cb9bb9cea881609c013ef9bf4909fbcb0090168e263','0238bf1e7128dac676be198474c8beedd5e6027a401beb6dd0d13252ada4cdea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'cee2e41baf86f1af24d555e9ab4a0c023b5f1ab2b054707d4434b4f60d31862a','bc2a5bfc7f1a8181b7b04970a8287b498f096bc08acf106f6a8e0a0ac5ca3723','b2cd4fc907371c5b6152bf29dba1876bd5aebd9fcc82da18800b353889336c90',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'cbfd7ff728f05ba3f1db5972f1449618a79d3fd0d76bf7fe990aed2eb2316a38','73e3b8838f74134d3db985de53446f88c3bb86a8cec53bf773c10dd89fc2d709','2e148d243956f9e14d19ea77a9952523da903bf334c38c92f139ee754e9fd351',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'9af85cd995c83b5a5f0cac66351cabdf9dc9faecfee080638fc76019663faaa6','5e951c9dc5201f32b7e8b9e72702984a2ff13c011cec35ef4ddbcf5b1e7e3111','de343e3e689d5be0b3a6b79c0bea40ec8852d95bef06490292a6b9a02964a3b1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'a3c547e84db6b29630b87fa566e37796e0632ba616dd6d521d558632c3b55370','c72261d02c311085af66e2c66b8bcef2833d05716f067de2327442b92d219adf','72b9de8c4b8c6dd78cd723bfb097a01a24e9c777abbd556fd1c0b77bb2655d06',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'a0170d8a72a0f8642c0863899bf034e754596e3fd8ddffefa91e7e9a7addf944','df4f5afac7aa5bdd2e580979d13c750f4990c5f7e8dacaec6d751f4b1e3c690e','65caf1cd027b27bfab54fceaf2c9c5aea98692a53b869af4c4d704dd12ccc6e3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'e0179a21342fcf35fa169567f1ef35bd6b0b1b048a98e90c049fdf3ee58e9da4','c5cc010dd34b520a733ad2e109b4b2b8cc84b48e412c43ac688a57f99147c164','d0bd95b8f585933f1a8e281d6e8ddbad8151805174408d4a2aa721a84c8033cf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'8855ace296b0b078d90aa24fcd30ca9f9cccf9d3961f3dba4985a3ff187a02ac','eac5c44840751fb1009274a20657bc544e855ff1a49533c9fc43c0b6e66b7402','6f737b21a2d96a41f2cf7e193562228fd7985b96c5c6bd3413055b34fe9f8fd2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'bde3a6c6cc31b96d58f466d3ce0361cc6366c8c239778f21b696d4063cf6d89e','40cde00e42632bcc0477dc071b9acfa0745283dc2a9d2d28e230f939832abbac','a37c1c8316e7c539e0611de48e18c8d360e73d2de09f709f478768d3fa8e8222',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'f562851b32a7005ee02b9e2491c0195dddce451e8fecb428209d087e69345303','dc3ab137a2d7430196ec3d25456e09e8e63d815c8e4b246e95e7e63d4e3a9c75','fb3aa04578b77c4c715666fbd453ec097443a9e30acb800f4b7b75a79967b99f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'996cda7b65e623747deef936d61491cedd0159f44faa1e3536de1b6d6c474097','a957a0c28f2a0beb967ef0ac9519e9207e37415af3018f1a5cb998169f3b6005','4f075ae9061dfc1ff52f719017d590629eede42aa45957aacba54e5513e47be4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'c8286f73cc3a070f4251b7c59bb485e611437a1916fd39ffac831dc78df54ecd','3cf1b57600853e04513ad74089e344f9e5af742e1d4aaad0c9e51c0ebc6e77d5','8ad41558220717a679e7f6af9cbd1e9fb3646fb9566fa8fae8e340d199b4ffb1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'ef9dab42700918027fac849f2088d2248a6291dc7bc24be583b556f37739631b','6cf1d5147d5c6523c275384d404b4f7a750dab987def5846979bc5d14233a44b','2d22ae58cc40767ffca461fee1a2317d6b5b0d8156f188b3f8589e688ac1c643',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'c6bbc52f1e8f907b2d66378f4352f41ae3d354985aaab5f16d737d75a7e6b1d8','091641bdce3f527a8a3da393068fca3534e8209fba337b7b79bf22f2a6bc5dec','358e0f793128f8d5b52594bb96a8ca652983d4e7aa7c008982871a2c9a662a0d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'66f7b7ff8f0217ed62938a5931d4a6a232546e5d58e09dfd3ba5a792c35fa560','8a955c5c1a5c9f8c82553803172cc961e61b2e2e19b9c87cad6dec24512ee351','9213e075e5567446951f60b81c68f9aa28103f4259089eb4d2d9b0697d52cea1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'2b26c6d901ca9790987331432372046d9620d10ea163f4824208d6b23e8e7a35','482bf498868976d12ae17fc38bc847d8c7398c96fad5df9f1d2719197fa038e6','1c9ee3bf90abda5070a18d70ca3e1f99d3a2908bd839bee7d96b274752ba0ef7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'0d6d774dce93e94e870835005b0e8b04f010fb25158aa69a0fa0321d1577e987','ed1021dde8c16263483f3a50091a2df2105977a7aab9217b78af58833433853c','4c3832a9b25722b0625440a92179d691b3ded6a2db686496bc5840c9fd5f6b53',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'9dbd171e3606b1662f6b576339b1e9aaa3da8a9f8a246bab905af255add4a762','e5ea123c86cd7147d8cd8d9866006e1da8528bb32c8005a998ca9f6ee917c2ba','f49dddebdd143ef18c4fc4158174b5958b765674ba36d4014942c65d49fd87cb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'db67b5dc6b0c0ddec22d0e716b72aa8cb6fa9702316f2a8e12659ee229094c16','a25387e650e60dbb003c5ef16c46a8d8464013d81bdb49508c2935368d4ae9c0','e2e65b074fa6f18191edff93fc1baf8c7f396ceedb7e588b177ec2918870c2e2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'7cf70b5298dbb36efbec2fb880b76e2514e3bad9d5200875fa3eb3ceb7719ee8','f5028a37d6395b533cf60e6ce9f0bf574a0a7beb2cebd2f545b5183e5362aaf3','0b06c5b690dfa0169e9ce1026445588675ef1bd81e2ca5962a1271a41000a8ae',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'27106f400fe1ee93bde42f3bf3cf39737fb856bbf0df3f90fe0838cf7d38798c','f336b56eb2aab91aaacef9df8159627bafc67b497482abcec9ad6786710da7ec','31afbdc9419f4639cbadc95cff2d0760443f001ff10d83f972421e0ff3a5a5ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'28c9833eded6d68967f206e5884616f83bb9ad16b9d7a507031b96480aecc799','c51f9cf9cd60f836bf4ae7ee0cd982829f6f7cbb2503eafef3bb167a285cf9a9','2491241aa4f6bd7886487e70203c6b031961193ca19a01e93db40c881bbe5e42',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'cdac6435934ea6e67a311495325c85237158ef30c009ea44c562c2127d79e696','b6749729423101ee337b7fbf0362191ba34102f01db03b225ac0d6c52de2a6fb','eeab3c5350fd25da1c2c3ba0458d98e078085ae5b0d09847b76fcec2eaee1ef1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'cb33e420348e7969a2310445a6c17c79e647d3c6f3106d4fd0c0a1249e11ed6f','544bc0db1dbb1d22a05e5f81de7520ef990df5b897b9f9e60d98f102fef86568','13d15e51975d5a0685af16eacc17328a1115ac2aa2cdc5bb35fba39968f599ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'dda2531cf7db78a3f27c1ce70189b3f6efb69ddd24b61639f9deff42566bba2a','217908d5688f0d9797f04ee9c3cd03ae93c20f4e5801fd809d3c37154e55b7b6','fb25447214c4607f8c4d660c5a3aebaa2f01b01f0b64a60ba8f0bd8ae92c0703',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'9ca7d9e1da0c6e4465d9e1c76990b6c48e62ee3a0b3b83189dc7a0f2c03a3006','6e31995ac19f2ff3fdfe5d2ba7a49f4b018b132d2aae92a4c664a97d6a6b3b6b','c65d8cf66c9ce0c8302015f05b85bb05cf2e6aa76bd5088b1a62d02946bea13f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'c6fc005e874909cf0393ac1bee7267f66cc5355c549d8657234a0ed6b429c869','d7d3f23d0014f40f3ac6a00fbb59e95653d22e11360783fe4116be9ecf360149','9b9c7f49cf432ccd8b987732e346d336a02567b1281757e04bd30be6810cd65d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'14dacaec0b37ca20f271e500d0ec1837a63006eb464728c067107738ad3167c6','7a1a9bf5515019b99c1c35abaa4a2003c6291018e090c26ec03c5c951f853f82','300d1f4b6299d375ec9e649a12efb5bd019fe3e3f6ee5690bd0f4e5b02720862',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'05bd680c082185147e83785e7464d8890908d1550359b4fac79018b510475e01','40b9134941fbe6312e3a7dca4b1f5114c3b7ab73f6ab84ba96aa101097111168','ef704a263dc83acc2baa115490d248093d829fe0a2791a0684fcfba67e271c5c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'b50805d750ebd26f8dbced919948118f1f97ce7d117aa1760e7a3c4895f51e13','4e1fd0382baffd66852d64c667941808ebeb08a17309ccfe91be8e16046ad266','c5dee874fb1870dc8cbc2302bdd7b7441444ea1687894885cdd7520e9b153182',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'dde96405c241e1d57334670e4eff7ed8db92056e6867cae10475a9bc30ba4619','8e635d69a6a40df5c3849e1811ee551c32a57a3496fe8e4b97846b9592a9ebde','7bc6441d01d6fa7c220dea4137853f22a95c2f98f89a168f799c443417bbe99b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'613d78fbabba246a4d1cd9d50317e732795a59812df8395472347e15cec1ee9b','c96db41449a579ffc6b459375569230e88bdfd51c10578c60f8d252eff630fd3','1d990ec79e709ede24d72552031326b1318f57b380ca441355770b4756250e04',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'e535ca5960d2ce7508bd2157dd0cac3ea1f9ab14532a40884d522b4bba0d4979','710369d2e677643b7ab8f2bbcebf0f13017052ff7fd9adfd6ffac4e6fff83f8c','8bfd686aaff55db29f667ad50f1c7dab1f5006f20f0c3fe5a8627909acd36850',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'970865291b7a6d8173d6ad2ae97335cb2e89d80cbbb7a79bb2328cf6c67fa6cd','9deae420c2b87043e6e18db077634a1d65ae60b38f604ce56f0899ed3a561347','c339c9ba0fcd3143316610a40c58c3beddc6e3538564eff6e3753363372d7f50',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'0741e57ad88cdada65134c9f131ff5bfd9498cb054378d829e34715e8db2aa6d','4bd0054addc71915293b8f040ed3c6c64d0aaf8ad27647d1887e16d55604523c','a2c1bad71d57d8cbf740a32e9d614704befad2c39be157e202d6d6c852eee51a',NULL,NULL,0);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -149,32 +149,33 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000002FAF080',1);
-INSERT INTO transactions VALUES(3,'6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1);
-INSERT INTO transactions VALUES(4,'36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1);
-INSERT INTO transactions VALUES(5,'843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',50000000,9675,X'0000000B6BDB2EF465E9FC04060F58CED26C159DC983A616CB121C5E7954E66833444C5936D00F8C35A9C6ECC7DD0A64610B1C39A71110D1A95FACE6A2486A6A7A1FF83C',1);
-INSERT INTO transactions VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1);
-INSERT INTO transactions VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1);
-INSERT INTO transactions VALUES(8,'5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000000000476700000000003D0900',1);
-INSERT INTO transactions VALUES(9,'843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000000000000004768000000000000020E',1);
-INSERT INTO transactions VALUES(10,'42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1);
-INSERT INTO transactions VALUES(11,'201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1);
-INSERT INTO transactions VALUES(12,'1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1);
-INSERT INTO transactions VALUES(13,'7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(14,'e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1);
-INSERT INTO transactions VALUES(15,'3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(16,'a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(17,'194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(18,'72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1);
-INSERT INTO transactions VALUES(19,'065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(20,'7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(21,'0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(22,'eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1);
-INSERT INTO transactions VALUES(23,'c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,10150,X'',1);
-INSERT INTO transactions VALUES(24,'58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000047680000000000002710',1);
+INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0');
+INSERT INTO transactions VALUES(2,'3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000002FAF080',1,'e488ada780cce6fd20645960fa4c00f46bc2d3014eea403415df68df8c9a0161:0');
+INSERT INTO transactions VALUES(3,'6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A00000000000000000000000002FAF08000000000000000010000000005F5E100000A0000000000000000',1,'54900f21dc6f766adb88a9aba633262eca60b42b4e334f4a05fab3e6dff55c68:0');
+INSERT INTO transactions VALUES(4,'36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000006422C4000000000000000000000000002FAF080000A00000000000DBBA0',1,'b2a1fa8abf69e20f54911c80cc5a1db0cad9f7e6a248f318bc7e8f0b37052bb6:0');
+INSERT INTO transactions VALUES(5,'843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',50000000,9675,X'0000000B6BDB2EF465E9FC04060F58CED26C159DC983A616CB121C5E7954E66833444C5936D00F8C35A9C6ECC7DD0A64610B1C39A71110D1A95FACE6A2486A6A7A1FF83C',1,'fbffe88a06b9d791e11241eb5a642b58dad82933b6ea4af179b7cb43ed1e4d08:0');
+INSERT INTO transactions VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000004767000000003B9ACA000100000000000000000000',1,'24a606746ea4ce49c119d914356b48e0a15354842243414bb3a7b2cf9cc9a841:0');
+INSERT INTO transactions VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000000000476800000000000186A00000000000000000000006666F6F626172',1,'010e082fb9c508804f1e65db734ba38b58acc8f7eb31cd02f07047a9bcd9a4c2:0');
+INSERT INTO transactions VALUES(8,'5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000000000476700000000003D0900',1,'ebb9e84621e761d7f57b4f3e6e4b90947e648e1e6c77726663882b000f144405:0');
+INSERT INTO transactions VALUES(9,'843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000000000000004768000000000000020E',1,'24daf4100f55b121a16483cfa7203ac95303400d45ddc19de0146d0e2dbf82d4:0');
+INSERT INTO transactions VALUES(10,'42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000025800000000000047670000000000000001',1,'2ec45c5f61fbad288a6fe8bd49d83823700f92512bf9513f06b0dca32fa57727:0');
+INSERT INTO transactions VALUES(11,'201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000032000000000000032000000000000047680000000000000001',1,'1f3f78c84f24b97edfab9bf0fac70974cd543157cf65d9464378cf31e3b26d4e:0');
+INSERT INTO transactions VALUES(12,'1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3300405900000000000005F5E0FF09556E69742054657374',1,'81c8797b226b263715b86600744076f2922a7f74212fa87403ff0857e60af530:0');
+INSERT INTO transactions VALUES(13,'7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000002FAF08000000000017D7840000000000000000000003B100000000A',1,'ca6f5f8dbb4762a0265e98f35666e86903031938b65dab59e63ba89242f60f62:0');
+INSERT INTO transactions VALUES(14,'e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB336400000000017D78400000000002793D60000000000000000000003B100000000A',1,'b055a68d3f2f53e7b4a413d48206a9a02f5ab56f7b948f36d0ef993cecf876b2:0');
+INSERT INTO transactions VALUES(15,'3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB33640000000008F0D1800000000014DC93800000000000000000000013B00000000A',1,'5f55a6c0910642e7ba83dbcfa2d6990d31539f532a2ef427b099dbe2db75a236:0');
+INSERT INTO transactions VALUES(16,'a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB33640000000014DC93800000000008F0D1800000000000000000000013B00000000A',1,'32229c87e88ed2c3796ca5bb209c31c36e2ed7bcb8ba20ea36ca395db23c47e1:0');
+INSERT INTO transactions VALUES(17,'194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000252BB33C8000000002CB417800000000026BE36803FF0000000000000000013B00000000A',1,'2f07b60bdd5d909b98f1a40d4677b4d89435e42e5e5f4116bc1d33c4179ffa91:0');
+INSERT INTO transactions VALUES(18,'72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C80000000026BE3680000000002CB417803FF0000000000000000013B00000000A',1,'14059c8fae8c962dfd064d7f1820e95ee53256aaa2814914e1a1c3ae865ffa17:0');
+INSERT INTO transactions VALUES(19,'065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33324058F7256FFC115E004C4B4009556E69742054657374',1,'b58a8553f112f012c14b3cfa19b489e6171f3ddd6664340edfde4395489ec7ba:0');
+INSERT INTO transactions VALUES(20,'7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB3365405915F3B645A1CB004C4B4009556E69742054657374',1,'d34810e3caeb03c0ad4047d0cc5461583f3f2471e358037fe69bf6cb299cb3ed:0');
+INSERT INTO transactions VALUES(21,'0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33C94000000000000000004C4B4009556E69742054657374',1,'d8ff0c81bb265ca70b0c28293b6042b707f9d1d30fb0145c3618c72455d881cd:0');
+INSERT INTO transactions VALUES(22,'eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000047670000000002FAF08000000000000000010000000002FAF080000A0000000000000000',1,'7072487856a3c59ab919efb969b9c9701006d6bfcf65d9e3bf9ab34f50a5bf41:0');
+INSERT INTO transactions VALUES(23,'c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc',310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',100000000,10150,X'',1,'b5955ae6d9087334db96b8605fd785eead5c7abb4200b94b30c327c31dc23534:0');
+INSERT INTO transactions VALUES(24,'58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000047680000000000002710',1,'92a935a2d4d4072b79fe703a72bc9bcad6b6afb518af8ca11c92d4ca06ce465a:0');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -222,51 +223,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,310008,9);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -278,6 +279,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -296,51 +301,51 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92945000000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92895000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',1000000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',100000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310007,8);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,310007,8);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',99474,310008,9);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,310008,9);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844999976,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844979976,310009,10);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000024,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844559176,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844539176,310010,11);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50420824,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92794539176,310012,13);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92769539176,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92773789176,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92778789176,310014,0);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92628789176,310014,15);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91528789176,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90937926676,310018,19);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90941039176,310018,19);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91100339176,310019,20);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91416039176,310019,20);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91441039176,310019,20);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92771039176,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92841039176,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',946000000,310021,22);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149840926438,310022,23);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149849426438,310023,0);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',89474,310023,24);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10526,310023,24);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310032,0);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92945000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92895000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',1000000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92845000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',100000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',99474,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844999976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844979976,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000024,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844559176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92844539176,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50420824,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92794539176,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92769539176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92773789176,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92778789176,310014,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92628789176,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92278789176,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91528789176,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90878789176,310017,18,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90937926676,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',90941039176,310018,19,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91100339176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91416039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91441039176,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92771039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92841039176,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',946000000,310021,22,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149840926438,310022,23,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',149849426438,310023,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',89474,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10526,310023,24,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',996000000,310032,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -352,6 +357,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -373,34 +382,34 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,'burn','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',1);
-INSERT INTO credits VALUES(310001,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,'send','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',2);
-INSERT INTO credits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'btcpay','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099',5);
-INSERT INTO credits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',1000000000,'issuance','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',6);
-INSERT INTO credits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',100000,'issuance','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',7);
-INSERT INTO credits VALUES(310007,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,'send','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',8);
-INSERT INTO credits VALUES(310008,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,'send','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',9);
-INSERT INTO credits VALUES(310009,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',24,'dividend','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',10);
-INSERT INTO credits VALUES(310010,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',420800,'dividend','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',11);
-INSERT INTO credits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',4250000,'filled','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',14);
-INSERT INTO credits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000000,'cancel order','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',0);
-INSERT INTO credits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',16);
-INSERT INTO credits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',16);
-INSERT INTO credits VALUES(310017,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',18);
-INSERT INTO credits VALUES(310017,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',18);
-INSERT INTO credits VALUES(310018,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',59137500,'bet settled: liquidated for bear','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',19);
-INSERT INTO credits VALUES(310018,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',3112500,'feed fee','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',19);
-INSERT INTO credits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',159300000,'bet settled','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',20);
-INSERT INTO credits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',315700000,'bet settled','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',20);
-INSERT INTO credits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'feed fee','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',20);
-INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',1330000000,'bet settled: for notequal','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',21);
-INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',70000000,'feed fee','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',21);
-INSERT INTO credits VALUES(310022,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',56999887262,'burn','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc',23);
-INSERT INTO credits VALUES(310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',8500000,'recredit wager remaining','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',0);
-INSERT INTO credits VALUES(310023,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10000,'send','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',24);
-INSERT INTO credits VALUES(310032,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',50000000,'cancel order','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',0);
+INSERT INTO credits VALUES(310000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,'burn','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,'send','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',2,NULL,NULL);
+INSERT INTO credits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'btcpay','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099',5,NULL,NULL);
+INSERT INTO credits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',1000000000,'issuance','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',6,NULL,NULL);
+INSERT INTO credits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',100000,'issuance','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',7,NULL,NULL);
+INSERT INTO credits VALUES(310007,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,'send','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,'send','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',9,NULL,NULL);
+INSERT INTO credits VALUES(310009,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',24,'dividend','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',10,NULL,NULL);
+INSERT INTO credits VALUES(310010,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',420800,'dividend','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',11,NULL,NULL);
+INSERT INTO credits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',4250000,'filled','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000000,'cancel order','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',0,NULL,NULL);
+INSERT INTO credits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',16,NULL,NULL);
+INSERT INTO credits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',16,NULL,NULL);
+INSERT INTO credits VALUES(310017,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',18,NULL,NULL);
+INSERT INTO credits VALUES(310017,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',18,NULL,NULL);
+INSERT INTO credits VALUES(310018,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',59137500,'bet settled: liquidated for bear','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',19,NULL,NULL);
+INSERT INTO credits VALUES(310018,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',3112500,'feed fee','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f',19,NULL,NULL);
+INSERT INTO credits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',159300000,'bet settled','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',315700000,'bet settled','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',20,NULL,NULL);
+INSERT INTO credits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'feed fee','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e',20,NULL,NULL);
+INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',1330000000,'bet settled: for notequal','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',70000000,'feed fee','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9',21,NULL,NULL);
+INSERT INTO credits VALUES(310022,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',56999887262,'burn','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc',23,NULL,NULL);
+INSERT INTO credits VALUES(310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',8500000,'recredit wager remaining','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',0,NULL,NULL);
+INSERT INTO credits VALUES(310023,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10000,'send','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',24,NULL,NULL);
+INSERT INTO credits VALUES(310032,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',50000000,'cancel order','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -418,6 +427,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -435,26 +448,26 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'send','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',2);
-INSERT INTO debits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',105000000,'open order','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',4);
-INSERT INTO debits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',6);
-INSERT INTO debits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',7);
-INSERT INTO debits VALUES(310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',4000000,'send','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',8);
-INSERT INTO debits VALUES(310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',526,'send','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',9);
-INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',24,'dividend','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',10);
-INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',20000,'dividend fee','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',10);
-INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',420800,'dividend','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',11);
-INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',20000,'dividend fee','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',11);
-INSERT INTO debits VALUES(310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'bet','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',13);
-INSERT INTO debits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'bet','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',14);
-INSERT INTO debits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',150000000,'bet','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a',15);
-INSERT INTO debits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',350000000,'bet','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',16);
-INSERT INTO debits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',750000000,'bet','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5',17);
-INSERT INTO debits VALUES(310017,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',650000000,'bet','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',18);
-INSERT INTO debits VALUES(310021,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',50000000,'open order','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',22);
-INSERT INTO debits VALUES(310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',10000,'send','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',24);
+INSERT INTO debits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'send','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',2,NULL,NULL);
+INSERT INTO debits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',105000000,'open order','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c',4,NULL,NULL);
+INSERT INTO debits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',4000000,'send','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',526,'send','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',24,'dividend','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',10,NULL,NULL);
+INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',20000,'dividend fee','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',420800,'dividend','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',11,NULL,NULL);
+INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',20000,'dividend fee','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'bet','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'bet','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',150000000,'bet','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',350000000,'bet','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',750000000,'bet','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5',17,NULL,NULL);
+INSERT INTO debits VALUES(310017,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',650000000,'bet','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207',18,NULL,NULL);
+INSERT INTO debits VALUES(310021,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBB',50000000,'open order','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a',22,NULL,NULL);
+INSERT INTO debits VALUES(310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','BBBC',10000,'send','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',24,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -472,6 +485,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -496,352 +513,352 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'NEW_TRANSACTION',NULL,'546c140a707612fccdf11e24259ddaf29926f3e4c33ade3ca1104c9e08886c5b');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','12b3981155692399d216d3e4b7f77da5717f18cafc207e827530e0641da62da3');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','5c30d394fe77dfe617dc3968ca5691cf7bc3a37053864e4fb5bc360e7ac4ac6a');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"9e7dd13f1ecb4ec6481076dc9bb5fda1bdb9103747455f9de9ab516748201ef0","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'8d0ebe1cd6cf1569d3172b524136dbe202206e5535cc51d558084795e683c9df');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'549575b008e084e5fc2772e35ba7390a583ac09484ecb23b6ac656a6468bf501');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":5430,"data":"0000000000000000000000010000000002faf080","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'NEW_TRANSACTION',NULL,'a7a291118ff8a5fcd2ad73e38693a445b7653b4a3c299a58fae533413be9fa31');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2}',0,'DEBIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','98c8af0eb7bd1c138de821e2c3b7c0a52de26c2066eb4c6640554259671b1cc4');
-INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310001,"calling_function":"send","event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2}',0,'CREDIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','456b98a133f7ca7beeee7448692ce36f8bb6db37c2ec10b56d6a8ac9c6ec154e');
-INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'SEND','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','50c5e421cfb3f5adf5be8baf49708b31f9cf8e9fecf7cb084b91d30132b90efa');
-INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'TRANSACTION_PARSED','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','d7d68bd133ada3f421f4d116e4f521b23e996f32da77a0dbc0edf80dd4b4addb');
-INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"bdf1308701712d94da26f53fef4c440ea2fb7b0ef7361f424ba9263e747272bd","messages_hash":"8e1a31c7d7fa8f0fe6981c7b33a5832fef697516b3e3bdaf732746550bf2a9eb","transaction_count":1,"txlist_hash":"fac614e6f77f1b954c12523e9d0eeb4252f92f3640f7d067790a510a9e893811"}',0,'BLOCK_PARSED',NULL,'522ed4c496bbead0edcabb076df1c0e3524d722ee51c4f5004ebb004dee05246');
-INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d400c42245075964037b0fbf76c308c37c4ec98b48deafbebdd790c91ff2d674');
-INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'NEW_TRANSACTION',NULL,'841445a6b5ceeb9853c7822ce1248e1a48c86974a47d9fd95708192f09d81563');
-INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'OPEN_ORDER','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','abb4fa324b5fc716eb02089a76dc95ab7cb8deafe0199f7381a746a142924061');
-INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'TRANSACTION_PARSED','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','5f42ccb0932b3e807d524cd439f88d6e1644e4e5f0e8893e59a1103a98919d59');
-INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"cf830f949715ebeac09d4441878f60ac04d691c09d6c25c62a0d30fb5886cba9","messages_hash":"d5c067448e960b3b7609d4bc33f28739e755833b8752d57757dc8fe6bfdaaef2","transaction_count":1,"txlist_hash":"0c743d61c27efab7c83c1845f6b0446b67c9b59173318709d51363e75e7a0601"}',0,'BLOCK_PARSED',NULL,'f3b315dcc9276990293ffca5bb041285ef7b04852f0e98bc9448aaf2da69e00a');
-INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25686c15aaf95066352014b2e2d19655d05e580c33eccef9a219bb3561e0cef6');
-INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'NEW_TRANSACTION',NULL,'71431858e16a98904edcac4e484d20ce9e7fa5850f878188567818f416177c11');
-INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":105000000,"tx_index":4}',0,'DEBIT','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','addc43702b48454f7648fffd4f17556eee8b5a51bea5b617e0b02a0a73a25466');
-INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'OPEN_ORDER','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','744d1ae75752f11a92a99c0a857d8ef0180f9b81e246ebe2cb72a386600b95f0');
-INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','391c67e0cd9c1bf2b2e2539d7f484901fc822dfc16f38ce66672b8b4d995936b');
-INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','2421d5a68a3cad6cbaf63e755f5d52bef05cca8fdcab5aee7b6bdf701347c14c');
-INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","match_expire_index":310023,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx0_index":3,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx1_index":4}',0,'ORDER_MATCH','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','a6a47bd67888b0f6cb310c2258456fa99c46fc179312b73dcac72920305bf6d4');
-INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'TRANSACTION_PARSED','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','feb1cc955630565344d628111beef22ea4f7b203c55b0118e0a45f66394d2bfb');
-INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e881a675a38c4649cd44e6406ddc494996c761671bc349dcdea1de430a84258d","messages_hash":"c060770e246851710cba711099d9f8ccfed66a792b2e64d68ae887e1b83bac51","transaction_count":1,"txlist_hash":"9ae051d14f8d19db67a85c713eefc0a936f1bad818ae1138fcecb91506a46d88"}',0,'BLOCK_PARSED',NULL,'fbceec0d17582632cd111c1262c3d79dad3a54fab266f780c31116c58a41e23e');
-INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c95a5c2d77d0d94fa266e2a0b7fb874fe171794313c587c89e55e729ee5e7b2f');
-INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c5936d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":9675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'NEW_TRANSACTION',NULL,'85298efeb6b0c162361b15df98dc7e923c22c32104a370343c68d495907940d9');
-INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","quantity":100000000,"tx_index":5}',0,'CREDIT','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','5ebf220d24f5458a074023b9a9b087f0df8ec3967e300e9117b6aaeef0cdb26c');
-INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","status":"completed"}',0,'ORDER_MATCH_UPDATE','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','9aeb71e1210001fe9c888c16043f4af31476d6a45bb78dbf74fe4eac77496e5f');
-INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'BTC_PAY','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','bd7b51845a553c4a39f845bd25a83ee9c152cedd80519437181d040bf0180c6b');
-INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'TRANSACTION_PARSED','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','67b85968e879b41c75b35c91b3e2b0b26f482a022efc7fde7c900cd13a96e616');
-INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"13e0c6276f297ff1ca77705f1b18d807ca22f53735fba52f4f5c3766dc4b04e8","messages_hash":"0238a76faa733825349cf252aa10cfc94392cccd7599025643ac132abf329636","transaction_count":1,"txlist_hash":"a865bc7b6e26b3c3868ae080ab927ce3f2dcdb7d3654ffbcd1b3a8111d0807b1"}',0,'BLOCK_PARSED',NULL,'2f65a133af17717156b24aa32620c888168f23c6dbb1ffe43e806d01478cd396');
-INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38463e6d475f90a027d5be7d8f7bb45a132e53ac7e45bbf57c8d9316f2ff54d1');
-INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'NEW_TRANSACTION',NULL,'5f6ca794b0af11f184a681b85335e54eb3d23dc205a0da4e1310a68b56c58bea');
-INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":50000000,"tx_index":6}',0,'DEBIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','c275f618f0e217faa11beedcf15e7fe82a61ad686b64b4325d74a806457e30d2');
-INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','ffabd48fd6038d7e634ce4eadfd699011dd6eb5fa550b64a0eda147a7abea9d2');
-INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'ASSET_ISSUANCE','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','450b75f09181a32197b0a1df8a5ba19f62f4c7754730ff7a7bcec3bedc6e9893');
-INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":1000000000,"tx_index":6}',0,'CREDIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','d1288d3d943a584aeb794573a321d0f897884276a923dca33b92282ceb33677d');
-INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'TRANSACTION_PARSED','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','e22b21db6b3fbb2628a93361087f839f7b636c60532c8d853da85fc0dc74efe1');
-INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"765896f532b411af9f889687a750d44414296c20002f3e2abed9551a6822937d","messages_hash":"2be211b1beee52aa7be5d2f229a93c3795d226c12eac8fbfee98b2742ce1e0d8","transaction_count":1,"txlist_hash":"59095fce5f573c2ff1b5eda5cd75c36227b0f9782601e7538215fea5317c505b"}',0,'BLOCK_PARSED',NULL,'18e6a56d9038a32675d644bfbfb7da871f8faa401996763119017a8a76233b35');
-INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53bb886de5f3c7a345cadb3d04a001bbf0e4cfc86c61b2147bb94174012f2157');
-INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'NEW_TRANSACTION',NULL,'24cf5ee10c822519895a4e3fcddc787919bfe0aafafff100f113e7d3761e0191');
-INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":50000000,"tx_index":7}',0,'DEBIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','d9b3e0de6c038b137e6205f6adeb1b9e4280c377ffabbbaec306668d52c59f35');
-INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','a1f340476b44a8c1a8f92469fb7bffc2c21c26cbcc1353b287314072f494906f');
-INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'ASSET_ISSUANCE','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','3dff353a4d499277d39760b559e1f47a19ced11b560d3efd94b7aff6d4388972');
-INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":100000,"tx_index":7}',0,'CREDIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','23c64271138424f17646fb6f3adddd6c0ba858ce49df86c77a68cced355fb69e');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'TRANSACTION_PARSED','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','247947e2bbc3cad7caa9db014f6c135150b51e851b0a244d044063733de88dec');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"853e3a8d39c4e8bdb36a0ec01a8d20f12335fcc00a00ac271e9d83be471d394f","messages_hash":"fc41309cdb46e7fbae0f09fda002234a6e758ab63e8240a648793fee6bfc0c7d","transaction_count":1,"txlist_hash":"752821f935743579d04abcc94c104148b226cbc0777a6bb30bb7eceb29b85fca"}',0,'BLOCK_PARSED',NULL,'be3089ac72e8331efef1647c38d4c925c3a96efa257de6de111fed87c32dd0a0');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db67a5fdbd062d7de7f818f9b70dbe3ba1c454dd3e6ab72718fddd307fa6d101');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000000000476700000000003d0900","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'NEW_TRANSACTION',NULL,'6184f9c0d7d330129e15feda1968be3ae5a5018a357b0341190077d8bdd7c006');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310007,"event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8}',0,'DEBIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','c1eef0bcd9edb71690a490b6a46d2e4311685474dbccb47a0276671dd6769ee8');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBB","block_index":310007,"calling_function":"send","event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8}',0,'CREDIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','5319f38f4da5a15147abdafe8b9d39c78c5824ad8f7a274bba91d1e520e84fb5');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":4000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'SEND','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','2aac2a6df13ec00ccf08afca1a40289d0227a2f65b3b01a7ad98e08dadb34c9e');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'TRANSACTION_PARSED','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','07555c594a3e2b8de406d13c420eaececce0a338e6dfb83423334b7fbbee2d4a');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"f2b2d250a94afa158f9ed84434c3ac7a0bfc97b4387e5e3c099afc95b8a6ad9c","messages_hash":"569752afb305c679927918cc1cebce198cb79b86e2e52a5cfbf5284cb1382065","transaction_count":1,"txlist_hash":"405914410b5982b395f52f17ee4fc69dc0e4fb4c7a511009c700c0d1bdbfb563"}',0,'BLOCK_PARSED',NULL,'23ff6cfd89fa19ab3cc5886b9cffa1887674de926b88aac4a9503fe58e390bc8');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24ac221541036b04ae8ecaeff4555ed84067d27ce4bf472fa3b3cedcb9a9561f');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"000000000000000000004768000000000000020e","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'NEW_TRANSACTION',NULL,'d3083a58b0146c6ac824ee87d5f01c1880ae812a1b2ba88edf366c046f6237b1');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310008,"event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9}',0,'DEBIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','347bbe5a82bbaff4165799f21ff3010e8f2cfab3e10e77eb29498d1b2773721e');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310008,"calling_function":"send","event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9}',0,'CREDIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','589526820c37152e575bd02e2d2bb4cdeb7ef0576d454dfa7e6977b0a7cde83e');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":526,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'SEND','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','5cc49dd588bd70603a8478b8f5bf676ff828ccd5361d7ff13015a7c206fcac86');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'TRANSACTION_PARSED','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','d6a8ea653b8b85b5e74d5da9b9b3a63853c10b360e32e135ad2ecefd7eee2f8b');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"8c44f15f5606b6fe984a9fa7df8d7d5381fe87a6c8b634469804328885668569","messages_hash":"2a03aeebd37f31a3ceea8c2e86ce7d0d4038ac74a3bbca363253aef81e1acac3","transaction_count":1,"txlist_hash":"81714583a99f97b5cefc10510f507567e02f380bdb5741e2b5ef037816e8be17"}',0,'BLOCK_PARSED',NULL,'0beb906ffd2a5e8b8117621a6e8208513560d2c2829cd5b56569533ad7cb7f42');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f51d6827cc6c45bbf8074253f028e5b4258cc18c306ea0c157f38d8428c4d48');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'NEW_TRANSACTION',NULL,'2500c3a145668eca9cad61860fd53c7e55e5acfa1b393fb07186b2ec1f198a40');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','44ead7da29e4bc22269dcf0d8b6d62dd87bf45fa51b5db5a7a9e7166751c3669');
-INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":20000,"tx_index":10}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','8a247a5b3329007dfd0523c6d2f721d59fcad6e1d4d85426832ad64cf4e34887');
-INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10}',0,'CREDIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','89fb6ba08c4f308e2285f2af64ae26121aeee274e63ff4f3f7a747341320ece4');
-INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'ASSET_DIVIDEND','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','430741882ace8fc0cc9f3573765fc4e497c02204e0c2c2f1e2843a3ecee35077');
-INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'TRANSACTION_PARSED','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','381831f1e9ea3bbfcd6579ad959ed8bef8943c05549c9e8804bc9c43afd4d490');
-INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ba378e9192f290d3f9d3dd1e46aeef3a185bd5aff1be809c8974fca8dc142987","messages_hash":"1b8f265cb1ec72a091317f293c1c6a2bd31d7dbb066e093c66b55d40cb966266","transaction_count":1,"txlist_hash":"9395234af8a78eb91afe7dd45a6701032af9926cba3e126e01f06547ffcb2e08"}',0,'BLOCK_PARSED',NULL,'c7949755e92d854ce202d0813e70b4d268fa61aee12e96a5b11cf0b4428b37e2');
-INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68fd408c8104f779304285cc21576b2a2cdc5ae62738cd4ffb476b21c965e646');
-INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'NEW_TRANSACTION',NULL,'acaefa962e66d9c533b86698e94b54251b1f6697eac145551a568050a810062c');
-INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','9b1d685abf451f9952a00fe40100d4da809f20403e97cd2843f7277c9180b265');
-INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":20000,"tx_index":11}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','80a8719bb90c8788f4e6675b14b66f78eaf4866d8458a71f5d55519211472506');
-INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11}',0,'CREDIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','bb69659948b150dfd9bbcd89e1bf12f4e72b7e2a857b68ae6e2e694f187107cf');
-INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'ASSET_DIVIDEND','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','da1776385716151f5f7cb2bef9005537e1324a8239d866925e9b561c91314ea4');
-INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'TRANSACTION_PARSED','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','3de7f6b84a7f1b5b4aecf08d9499be9103b1609776abf33178b786d81c2462a6');
-INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"64f78f9eedce2931aedfe413b4f4bdeb728752e1c897e0bd44c7db665976a723","messages_hash":"1a9855c2f2e4ee940e81ba585d2e0a4fa9269d38b7ca9e8fe5aea128de067d77","transaction_count":1,"txlist_hash":"09624bd24bdd3d945e0a75450915715fa9e9a077db33aa5bdb275b0c76e7f9e8"}',0,'BLOCK_PARSED',NULL,'e37ca453843f5e158fc71741fe6b2fabfafc375280c3d2b1052b8d58b8c8e01f');
-INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10aaaa2abf57f049f9006ca166483207fc734159cd0c8ec89aa32c63f2da48b1');
-INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12}',0,'NEW_TRANSACTION',NULL,'20f486581ada0886716aac16e64d0609a688e1c47dfa789a6bce67a9129548a3');
-INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12,"value":100.0}',0,'BROADCAST','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','b616884a85db92f8c4ab45e72a118a7c0ac89c01ee6390dbc644d91f270f1ba5');
-INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12}',0,'TRANSACTION_PARSED','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','7ef73e8276901dadf1f6a2948e488bd11d70414f5b854a608290117af0f53398');
-INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"671a1b4e1edd1f96dcfcc96d521fb2125ae5b9d2d01a76fc66686b7ed20c5662","messages_hash":"54da84d0982b7a0b58767098bfc307fa45569f0ed925f0d0557b22b7b38401fe","transaction_count":1,"txlist_hash":"aa59f74f7d3eeee95415b1bca4a090036cd9a2efb187880f7c72c69dc1bfc059"}',0,'BLOCK_PARSED',NULL,'967c499601ee86b4c92d2d038474b9f5276735a544d6c0615be933cb2eef7609');
-INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8cfb6632428a5866183396c23efbfbf427e34901ba0453f5f016c4d9e3f70c4');
-INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":5430,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13}',0,'NEW_TRANSACTION',NULL,'218b6cc5d2b1b61314916b13d136908b8ba9bc6ea959b0be46f57bda2868649b');
-INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":50000000,"tx_index":13}',0,'DEBIT','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','a5df20cc7364dd090c334bb0a623d3b1837ef0573e72273196855d4f0272d305');
-INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','7dd8c8aed1646bb2ea0b3a642f5026d1a150403f91807533d521c6a4c967d650');
-INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13}',0,'TRANSACTION_PARSED','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','b3b0cdc88dfd8668d89e72b62afa61ac072de8d48591a2263266e7414d659f7a');
-INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"1f5b502c341699b5a59b87566c0fc02b7db5c657919f014e41a00303aa53efc8","messages_hash":"f145d04f53c877a372423f6cce9f84d253d3f307b334882be758636caedf7fcc","transaction_count":1,"txlist_hash":"ba55fd791587dad14742ad66d1515992a076eefbd54d1215806aa9db3811cf50"}',0,'BLOCK_PARSED',NULL,'2b6ab0b9a91be30f17f863a7fe91e952a9da1b679343b4594f9e40ca1a57c30b');
-INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b473d8808c2c51256910e49cf2f302b1a7580e2e4ec21542fc2e05c2790faefa');
-INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":5430,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14}',0,'NEW_TRANSACTION',NULL,'5f8ec0fe923898c6d8a8dee3b8e291898d9c249a5fc0fa8e0746d210e96557f4');
-INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE',NULL,'a7565660aeda3e2a4a429076b79575b25eeeaf3673978d51008b91c4148c4d59');
-INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'ffa41535bead26de7cd30cb535c7d1ef446038ac78499f11320c3eef9c4d0446');
-INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":25000000,"tx_index":14}',0,'DEBIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','d1ebdf835fe05013c40622f863a207d8226e5b31fe363dcb29afd498a8b8c52c');
-INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','6379124fa87bb934b4806d79caa93297f4347fc0b7b166aee010d21cc7baed19');
-INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","wager_remaining":8500000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','7c599b8333ef3b461b41a0c28cc3ae39723c27bc4b630c8f5fdcb16762fde645');
-INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"calling_function":"filled","event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":4250000,"tx_index":14}',0,'CREDIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','49498efbe2ff4aa285fd331248ccd1f88b0c697db3852f1584b62b29171a7656');
-INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","wager_remaining":4250000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','f5b1af3acb757fbbf32f5dfe335d366efaa06aadcd27697b197d5aca30b15e3d');
-INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":41500000,"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx0_index":13,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx1_index":14}',0,'BET_MATCH','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','aec8fdf019a7890d9cca391130c85149e002f08f55db3631daa97da0962773c3');
-INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14}',0,'TRANSACTION_PARSED','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','a9c4c9e622cd05ec511ecaca3cbafa69fd5e4faea9f6f156a29eed8b72d0a33d');
-INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"cd0cfff6de5dd4381301929c740015d5910339ba915a83eb4229ecb91ae84c17","messages_hash":"7386c24d72b2b17bfb3baa53dbc6b04cadbc19bcccb00a1a99fc9e014f594533","transaction_count":1,"txlist_hash":"6c03bbdc682356647ad229247ed9d4000c2ffd03696695e0277c43b4e4d8fed8"}',0,'BLOCK_PARSED',NULL,'ca8920ea640c567b7a29da0b1b85b6f33103836dca680bfc7f95469820a3ecca');
-INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5b4ba96bd1d3719945b38f37a0d973bfa585723c7968517febf03973c7d9a55');
-INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15}',0,'NEW_TRANSACTION',NULL,'2474374920b5caf60bd74f5ee1695a326f63828addfdfd2bf99a3a2a2b458dac');
-INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE',NULL,'f87d9d56699f6bd07c403cda886fa35c1b332106d2a5f3086474a63496840c31');
-INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":5000000,"tx_index":0}',0,'CREDIT',NULL,'c27883704a3a0fb37d44a8087304e722827af6e31c0b2fae63d24a46691441a9');
-INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'ca31f312e2a71f1751c7c00fe65451d2396e79f939a524760aafc250a6724e85');
-INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"event":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","quantity":150000000,"tx_index":15}',0,'DEBIT','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','0b1907af07df3e5e1d3fd2e6fa8e9ecc78b0605615d327353a51c9a9a31685ea');
-INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','1f959ceeb084edc0518145e16d366f27600ebeea45129fc06aefc0900b9d96ad');
-INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15}',0,'TRANSACTION_PARSED','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','f1f6d880406d94aa82a36944c709e20b1ff4c01cef0a5ce0b488d241d13a4568');
-INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"5012d84065c7a39b5563f4fadeaf30670b47df3856f43d40fda74de663753e4e","messages_hash":"a34442f144f48eda8ed839bddf2280067bb9831e7fc5f8012fa257cceef0f77c","transaction_count":1,"txlist_hash":"99b41cf441ebd1ad46c14b34a3da79586aee124ae643f196f23f0eadb9fbe50d"}',0,'BLOCK_PARSED',NULL,'64bea698f3c7b905436b8647d06bbfa99cb40e18877ce30bb972764acc11ce8a');
-INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4528376ec223bed05f8280dc9659e5d6fa62454fd22414e1b1122333af5b91d');
-INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":5430,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16}',0,'NEW_TRANSACTION',NULL,'589d0c587f28f1c55d6b97bb4b37e566c81904d28450340c1d88d50b57a416b6');
-INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":350000000,"tx_index":16}',0,'DEBIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','ec659bbf85f2dfed970857ccee40457874b4db822a68c83993f066a0c8501e61');
-INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','8f7bb694bed6fb7faf574246fbecf2a8c2a8ae2510c4e756aa7f314d38e7c4d6');
-INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','650cff3f1679f34b3baa20986ad41fc561d8e32491f56ccda68c9cde5a0fbbe5');
-INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','daf6955341bbc76eeff60f6a2971764a2f3b76413c75bdb34b4a771385d51699');
-INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','51662e724b024c1d871f726e0f54fb8f346838d4dfff83f2135dc4c22930c5d5');
-INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','dd1157596a34802420d1798805b0e37f680d0a2f1222940d906a68bce18c7cdb');
-INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":150000000,"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx0_index":15,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx1_index":16}',0,'BET_MATCH','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','cd5228af228aab7557b3dd5d491ee1605482d66bc7dca29ca686cdad2e34d0d8');
-INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16}',0,'TRANSACTION_PARSED','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','c97aa5edf94e2b65ca174badb2e5b5a810ba81ef1845c6890be28df3717dc06f');
-INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"0356494d376b2b65b9f4b066b9d2baf2ae90d82369b87914bb58a67927ced5af","messages_hash":"971f87fb66232464062c83cdec0c175d6e326e973598324ff2c2fbac8e081b2e","transaction_count":1,"txlist_hash":"c6fff3cf22683f773cf2941f0eb9b5ed84647569c76d40cba61ca444852fceb6"}',0,'BLOCK_PARSED',NULL,'06e7b03049ec862d7c3b3c4992a4ec278e2b1837561410a6871488d2d910c28f');
-INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbccaa57577add11b31adce8bbcb91009673b3c796ab7e48a17fc23a4ad4d8a1');
-INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":5430,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17}',0,'NEW_TRANSACTION',NULL,'67bdaa7564cb344aab2dbf80bd58aa84eeec0227b46a4d0d37070bc08cd820a9');
-INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","quantity":750000000,"tx_index":17}',0,'DEBIT','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','a207c91a64d7441765e9a7b2339efc00018efb3ab45cb9af4f9f2e94e9df12e2');
-INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','7fbd5c6cf20eaac1069b24a85ec13fda5e143c64bbbd656e148549bdd68cd9e3');
-INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17}',0,'TRANSACTION_PARSED','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','cc03d4947ca8402e6d5350f8c07f742808aef1660025a9d0d38c13f51e690b3f');
-INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"c90ff439bd04970ed9e6e25cbfce32160450925a37ba3360f40df8854529b52d","messages_hash":"1e6547529c58138a1970ef457d8c2296c1742e41976424215f7606176301cc02","transaction_count":1,"txlist_hash":"16e32aeb7155ac1b89e47925bb2367269d4fc81e9da0558266ad9722843202fd"}',0,'BLOCK_PARSED',NULL,'aea4b64f65ec4b2e68a6e31e27ca133e586d58e0c8612e6d28ef1a192d293a48');
-INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4362deafa5f2f3e79d88fa935c2b246c6b59b737cb0b7ed42193ce12f7556252');
-INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":5430,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18}',0,'NEW_TRANSACTION',NULL,'88fadfb710484439f2961d98769b7d55ccbe694739aa84b68fa6a11475ae8244');
-INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":650000000,"tx_index":18}',0,'DEBIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','93c1ee718f30876fe9b26cd509dd9f522cb53af1cb82581a52db7d3e508de74a');
-INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','1cc8749208a6b6e3b9f1c49f0b51c69b17bc3a7c9768cb4d5724147432bae9a5');
-INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','a92212b5eede088e7e32db2287d93060db35d4272b8305d48d82714ea4e06ac5');
-INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','000cc82bd4ecdec67226f481f7d4e9a015d9db6a513c368240fb1f534a3c5e9b');
-INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','2e98eba823a79eba0604a42d279fca40a729431062ea2ca4cc4d13d0eb1ca7da');
-INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','b40472271575ae03b3f17377387a144939ba0438d7dfb11b9967627a15db655f');
-INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":750000000,"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx0_index":17,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx1_index":18}',0,'BET_MATCH','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','dfe308f35084cc1adc1b7dcc70b1c20e0dbc59803f6a3f2f7c4cdbd737ec0465');
-INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18}',0,'TRANSACTION_PARSED','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','884db37cf9f0b41acd5cfcf956639f1c4449e47326bc5109ed827240943bc6a6');
-INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"19cf18f708dab6a983a2642802deb38d25b6fc205ea663059a0569fa38bdaf8d","messages_hash":"9b869953cdad0502b038662de44f11fccffc976ad21182d94af502409754f6c8","transaction_count":1,"txlist_hash":"94709d5f6bcb8df437947be80ac95e2e716a92645f3eec2d915cb7c088504f1c"}',0,'BLOCK_PARSED',NULL,'8a73b8794ef21adae75d1aeb7a1994b6e73afd2638d98a36ff6514f7a77a5639');
-INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8be36b2c8d8fe8a04207507bafc8db6f80309e1d11ebbd9d1df19a7e26316174');
-INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19}',0,'NEW_TRANSACTION',NULL,'b05d77fdcf09d9c7db247d7cf848d731e525e8237f48e9b33dffa188e2169a93');
-INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19,"value":99.86166}',0,'BROADCAST','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','2cfd86625dc3f694959382bd2531e3136b7f1794eb466749ad507fae3979aa01');
-INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":59137500,"tx_index":19}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','f94a4255d6436f61444aac5e0a8819bf463049103eb1a746cef9f239c4350ff7');
-INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":3112500,"tx_index":19}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','6c3f77e1b243e794bf1e1c6418a42e6577096a25ca1d294b0aa168fae6ad0c81');
-INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','1a1bbfb6606b463823106ae09f9974a92369b6e694cf342426e58e9aa88249cb');
-INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','6bb653f49c3f1a970fece76fdd0cdbc60025b9f48f2042e3fb49139dde497bca');
-INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19}',0,'TRANSACTION_PARSED','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','f633cea490e58b770ca0d5bcb249ef066d1dda86d8e8c19963c321042af14298');
-INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d9ac565fbe7bf18c1d899dab8e0c98e070880e36fa51710382017d46ddf837cf","messages_hash":"b7b696036883d92a4d4bab709ff2b1d82ea9894f5a3c74be752b7616c7a2f68c","transaction_count":1,"txlist_hash":"e3e2ebfcee41e92d855051b2c2e4344600646ac3ac5b335084d5f5a23e872f3b"}',0,'BLOCK_PARSED',NULL,'ba733b70da4e6ad1453254cfbceefcd6804bccacfdeeaa37ae8c4f0ede554c3c');
-INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78f7013978b7a552e7696fb37e693aec2849c29aa7cba8ccd0ad46d21086c242');
-INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20}',0,'NEW_TRANSACTION',NULL,'0843a765b9d1840cc6b20a2da9f2585c519ee1cf625e83d0e91779dc3f3494f9');
-INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20,"value":100.343}',0,'BROADCAST','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','50b61341a8f566671a7fab2ea1bef77973952a1965c9169ed8c716a0d4185f46');
-INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":159300000,"tx_index":20}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','d7c83248a7851fd164624c1764dd87eda0de7830e97f90aecd85dcba870946e0');
-INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":315700000,"tx_index":20}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','64a57f24f8bcd55e927c97fcedc4c10b98124236b87da67ac1e0372984d521dc');
-INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":25000000,"tx_index":20}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','dea0675e3d59cb069c837659505d87646ef18b874834470c9627488bf3e98d12');
-INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','11c809280ce28ab219e48719f7c0d989a525e155e0d2bf7ad8f79d164ce44629');
-INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","status":"settled"}',0,'BET_MATCH_UPDATE','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','5d00aa55500eff8d907fde59125fa669a05fe32a64b672f7a250023b74c5c131');
-INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20}',0,'TRANSACTION_PARSED','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','f5f15a05e843f692812dc0fac935abd0a000150bc6f4bb51f12acc3988409365');
-INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"b66661deef419a50557d171cc1bcae04f5bc260ed1f5ff56cf08ef39158617a1","messages_hash":"1cefa71f85a09e70ef26efc854fc288f669f4b098fa553f7be0f448703900bf4","transaction_count":1,"txlist_hash":"c89d7fa5df5eab9ac8a57f00c6cc2b9d75244ce412e12eb842c6a43297ee41a6"}',0,'BLOCK_PARSED',NULL,'9fb658fd565bd754761b401c17209d3664a69aa5de688624ded1e85a3d2a0c3f');
-INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'289b7301606d46193d03a56c05d045d64e6caf256cd5217febe4e72273f35583');
-INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21}',0,'NEW_TRANSACTION',NULL,'05127cdb5e4e742f44024415477007d32811fd0fbe5bda4edde09e87cdc685bd');
-INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21,"value":2.0}',0,'BROADCAST','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','af220bfb034ae5b08c02e6978b2fc35b829ecec56d9f60c8fd015215b3ad9768');
-INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":1330000000,"tx_index":21}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','0c392179fe8ba1ea973cc05e24e31bed67bd7fa8a44e55672e016855cc1b8241');
-INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":70000000,"tx_index":21}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','051aa374c74c03a41e0facf8ad73cc6fb52d569d3cf9b0ed737ed8fc68166944');
-INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','8e374a9ef84393523d3a09a9e0dba218afe45689d4c7811f19db82c91370baad');
-INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','5cb1bd01c0d4aa6cf33556943de7d35a8beeb3a0d4a8440565aebe9b826573d8');
-INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21}',0,'TRANSACTION_PARSED','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','68159b3b3940f81c393afa4eee7141b87bc36c0045be05f0c713a15e5ab29aa5');
-INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"57a6c53e41338011cb06cd60118961dcec0e800f62a2c4b1e9381c666319680f","messages_hash":"df81bfb67fb3c30f1d0a6d73b72cb9bbdec225725b5b3f43ddcdc575b89e5400","transaction_count":1,"txlist_hash":"5d8f062b1b5c6740eed53d90f4cd10a23f273237bda588f42fa35653a9fe5feb"}',0,'BLOCK_PARSED',NULL,'8c74113306a955123e3ba2ffd8899658c1a63790bfa8dd6cd9ca5c6f738a5ae3');
-INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e744cf1fddffc24018c7675a7122389c3d2409c5e3b6b093ecec4adb16ceb83e');
-INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'NEW_TRANSACTION',NULL,'e92f4e0ad7dc2838a807fe4efdaf88e9f6b72c5509b352be40f53b57c6b16e96');
-INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310021,"event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":22}',0,'DEBIT','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','9f4dffe7d1d09271d19bcd143e9b8221dc0bd4cb4691d258f1dd78453b6f8d54');
-INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'OPEN_ORDER','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','ef6fe4aedf67c1da109c48d92c4cead02989ed4f0d15f85c7764675ef6812dd2');
-INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'TRANSACTION_PARSED','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','1004ae78d297774a33a91d53381364f2afecd8a8209ceaebeff82aad27c530e0');
-INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"66c16af10125f298796da828f1a6c2b43123cda38e3dfc57ccc25b00f3da17f8","messages_hash":"0a49d35ea7c0d8d382b303f2462c1c8a78725dfeb8f1e374cc7fe8222111987f","transaction_count":1,"txlist_hash":"94b751bb8af2f91fb1933dfae1edaa636836fe1f9100edc5c6b8bc793fea4b47"}',0,'BLOCK_PARSED',NULL,'b2c4a1ab9b218b08e30a11301d3c4207def4fa27b9299fd8394511d3028b5d28');
-INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'729c309c2fd2293778e8f3179ed6a1689ebd772165d7a12c48b48edad3a76f48');
-INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":10150,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23}',0,'NEW_TRANSACTION',NULL,'f77e537a38b37d836476e065c66c3088f3fa2d0f725d1d18fdaef6e44c1bca6f');
-INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","quantity":56999887262,"tx_index":23}',0,'CREDIT','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','d15f7f4cea738c1063333a6441e5d4ed76790b238f4053a8d238ee702f508866');
-INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23}',0,'BURN','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','1592e92eb31adbe704bcc7be24eea0a044910031b445f2ec0726dce454921bde');
-INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"43b6213cad601a389aed2a4e912be118dfab6cca5358d86bac03f4bee6765493","messages_hash":"5a7e3ebeb25bf887ea951d37c55d30b5461d52e45a8cd40e9cc3abd15c1e8b86","transaction_count":1,"txlist_hash":"fcb847408d5ee30ef86a94a0495f53670b1157d4f33d627b62ebd84fb1321cf5"}',0,'BLOCK_PARSED',NULL,'cd839116d63d6a345a0d2d82f05320837f37a6bfa57bd72dfcaac281e6401ae6');
-INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'529ff6f8cb3fc075c8288aee755c52325ee59af32b77a1a0c9a1cadfb9a5c14c');
-INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":5430,"data":"0000000000000000000047680000000000002710","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'NEW_TRANSACTION',NULL,'97b1be1f160a971ab86da91ee3a543db4cea667896185de69638a48d4caf3b96');
-INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81"}',0,'BET_UPDATE',NULL,'8089acbcdab24bdad9946649597eb4158bbf2a54002649a38b3e66d199e9903d');
-INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":8500000,"tx_index":0}',0,'CREDIT',NULL,'a17f7cf717272cbac0f1e97ec067f873110f919d39a0157a4d43724f67df1ebc');
-INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","bet_index":13,"block_index":310023,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'BET_EXPIRATION',NULL,'6bbbe2f6e05219e129ef50f66a6542280ee2c55ce4545844d3159a98eb085022');
-INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310023,"event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24}',0,'DEBIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','77b0147e59504e00aa661565f6ea709b514022e77ed64b43849f6775b3101037');
-INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310023,"calling_function":"send","event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24}',0,'CREDIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','a178d96cf8f8d6bc5d8d89104f5865534c7fd1e82a919b52c168eb53f7c4d621');
-INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":10000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'SEND','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','80c629cf888a9fdaacf6e90936279a49f77438856e1acc18793b9253e0d1c415');
-INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'TRANSACTION_PARSED','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','42fb1f9ef2fd2033d033050a93d960c0598c22978dde42671ddce7674dd2c21d');
-INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"8a9758963891bbfbdcb6515d8d3e49c941fedba7de82038776e9f8ed65e803c1","messages_hash":"7aa46117102c62f460f667fd79f116bda42b266f0e384f209527d60b56753299","transaction_count":1,"txlist_hash":"d21109a870f8542e8ef40f6d72e36fb0bb5ac4ad1e7b3232ba1b2bdcc735810e"}',0,'BLOCK_PARSED',NULL,'6f27bc8ace6f5dbdb3dea65030f83790f56fed6686261132e961a4127118ea24');
-INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db6c50f9eb2d97b938c3aad5b3002085fdf8203c833b109bc44ed6e4dfdaf942');
-INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"cb034ab4a3e252fdfe9973a672e208295741a52634c9332b1501d612e0012e19","messages_hash":"d42bf4e0b63695149ee35307cdcdda6613234dfa95fc4f90385fb4cb964d013c","transaction_count":0,"txlist_hash":"52bcbfb439bfc9cf14e38d39a9d6c401a8798a20fe64238f070125e8e7905151"}',0,'BLOCK_PARSED',NULL,'ee0aa6f957f8d4a8c8acc094904d0c2be30a0ddc73d4e60de36e07941cfbcf8a');
-INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fef413f7a97d673f228084ee337361b7e587fff920f0e4c1bb8585403cd7c2c1');
-INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"5addc8253469d5c729cdffc1c637b75d9e8886a633d4406dedf2b1c16ba5b92a","messages_hash":"6c12fc7540de124823bc0fc2e03f016f02bb33a7679f87335857baf740946816","transaction_count":0,"txlist_hash":"e2d8891737534dde276dd1f7f51d42558b9ad60d88baada83f75951905e6f174"}',0,'BLOCK_PARSED',NULL,'335ed653f04c31fb7a3b45ffbc055f8a61ad0d37c4f7965ff0e19c32da6af277');
-INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9358e8bd2cb002b9d3f70d0ed02edc6168f54417e0d4e2af998ac222110f6410');
-INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"8620bd0283c320330631185d1b2351718f174732bd099324a0880719cdfc18c7","messages_hash":"6ffccd6d55f048c0116fab0af2d249ba002a1146517b4232f6ad1079c7cea9bd","transaction_count":0,"txlist_hash":"e7b6699c8b2b5857b60004dec9aa8aeda30ef42483ca16bc79e4ecdc1c0b4ce7"}',0,'BLOCK_PARSED',NULL,'7f225506e6e03a6604721f24da82bfa4b70553dbb63dc5fa18c37d8b3f951c92');
-INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1df2fa9d6caba4b8a87cc7fa97682d93d73f5b128e033041080cdd35f04dca7');
-INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"96960e09478184f4f0ad38d1fc03f0c0240e58715a0a29745a6dc58c40003249","messages_hash":"78a07b4b6cad61df9c669c30ce670f65df7c9520e3889073a1ccfd229b1bc60f","transaction_count":0,"txlist_hash":"a7e32b5f0b6568eff793a1d12d32ab594f3886b417a6491b6ec641d15e906e9e"}',0,'BLOCK_PARSED',NULL,'dd7d8e50bf84168aeff8aef9f243c228512973214c82b883f6f41ef9bbe27b92');
-INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b4c9169eb7d848f0ed3dd0fd0634e2719ff01ef9482d515a9f329a701b9f51a');
-INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"2f556d2528abe1c4e9d31f6ed70d400d94633d4dfb54c9a4f250e1b054f9a384","messages_hash":"5cebc5467f3918ed4d618643a8e6201bce7803ceb72b833fceae513c79551fa1","transaction_count":0,"txlist_hash":"8b22bfc6153a2e742e843a5263194ffcf3ab985d934e212266ca400ed568e710"}',0,'BLOCK_PARSED',NULL,'251ede4ca4563f35e9f387986d28fd69a0ca5a960552fc235de68637a723dbb9');
-INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a3922e29731ce9b88644c7873f08b6b414e8fc64989dced4f5e5904952c463c');
-INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"be195b1f7b7b55dcefb83907d954736d4bf059a9e32055131efd16602d7761d6","messages_hash":"faec53519d22e82c65d28effff3bba8236d89b38ac79edb3c808102bc6682658","transaction_count":0,"txlist_hash":"ad8654356f0a1ffb669528bf4c3625e9d43ce08d9dda7f1adc2e962b65d20b55"}',0,'BLOCK_PARSED',NULL,'3c38275c4f11dd6d85fcca8173fd0057c05123dfd6f0a4a39b758a9874765a91');
-INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dce453059b9c4433edd59814049aaa1320c709e440d1a3c0be76664cadd9834');
-INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d3a25656dbb63eecf1c89820581fcab193d750f3a09ca8ab34a5008c8d89051d","messages_hash":"1e3c12ea29a0c893e4cd24e7d743153d6f2d8dce1850c750a8a654950836ac73","transaction_count":0,"txlist_hash":"f9a6fb698ab5cf74c1d334f2bc3fc258738c330a5bf3614b8951c6f2d90263a1"}',0,'BLOCK_PARSED',NULL,'9f04eccf7fea2d3800e014ecf9978b9299687b9d1640fc02011bad9138b170ad');
-INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5950f41d048257710beacae1cabc9df53b4fc797ec7d7522aed352e17968e957');
-INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"0edb535f8c6a40062a86e4ea327cf7fb70310b6d55a6654d5a23e54498aa3159","messages_hash":"1f7c139549d1628bd43d4ad4f882cf1ab4959aae732600941290d49df8258d47","transaction_count":0,"txlist_hash":"52c64812c82695720461525033471afc39749f788156239b06f72c7887206fa4"}',0,'BLOCK_PARSED',NULL,'f9dff9ae96f7d1d47724ba9a3f8f978387d542e679ade45fa279408f21e04297');
-INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2aee7eeed9a75801da985e5da32f7fd2ca7dbcf53ed5433e1bbaddd413c3077');
-INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a"}',0,'ORDER_UPDATE',NULL,'66107222d73ec79c10cd44b9f534466caaa3270c3adf2c30891bda7f03fc1186');
-INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":0}',0,'CREDIT',NULL,'513ea9ad862f87d1323bb5f206cf46c236d7f1dc9f642768ec24b269f9d28fc2');
-INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'9608aad0bba60a710cdbf0ea4116667d89528fd405c16743fd57fade5c3a9647');
-INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"a9208a1b7f782852d652e5089c6485744031176b4d285ea985bbc1df0ccf49c0","messages_hash":"50cf00394dc4dc4028f5373e81809d11afad9da1ac790b78371850b3e4f09484","transaction_count":0,"txlist_hash":"4089c5ee6e83c7fdb9d8f0df917268b807801e7f0fb477b6a7fb4b9f931601f0"}',0,'BLOCK_PARSED',NULL,'442fefcebdb7f49de981c464e2110d3dba3de3cca8820ec00235db368d5fb3e9');
-INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7895d5c6a4445cb54acdcc7bae970834e58af05d19e98dd9f25f0ac86a5749a9');
-INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c8a973eb6bdd28dcab4f1b2a5e29e104944745e57a54e6d87b370aafb2e589f6","messages_hash":"57617659dfd3672b306a544fbf3419b2a77525588d83fdafcf27f133cd8cc027","transaction_count":0,"txlist_hash":"28e9816084711e62a27a7d33af7a023d9c375d67c6d7dd4fbe840d511d114fbb"}',0,'BLOCK_PARSED',NULL,'05fe148ad63764cbfbfea8f27ff2ad513c74f4ca86c23abf5f90f1b23bc21f19');
-INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'446418695f316ab343ae63566c2ec9b02251704f66da39c37517f8e52f7c78b5');
-INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0d7b5809b7a5aa5ff854cfe141490a78c9b33e16f8102a8e804dbf0a0a8c0842","messages_hash":"918e7a686526c32d037a4a5634c04a4bc527d1e94261b300278950cc47c56831","transaction_count":0,"txlist_hash":"37532a1b8cba78b522775b2feabd9dc786b259b49ae54af0279fd84061fcaf90"}',0,'BLOCK_PARSED',NULL,'520ac52c6894c048257139b228fdac4093f1ef066edb46675b4f906cb2d47726');
-INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d304a7cb43c57b2334e8e228f3f3020a9c1262a9ec65743bb7cb8ed9f7f0258e');
-INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"6b4c99289086445a7bf575110172a661c1cd37c418b70afd8ef3be0982041f5e","messages_hash":"923e8dfd3279b7777a65ef4a0d31253cf092b52467d725ffa578114ee5707e1d","transaction_count":0,"txlist_hash":"6d74b1faad84274944078e3fa21083b3776e37da614acfc8d61987a1a48db51e"}',0,'BLOCK_PARSED',NULL,'93772827c37fe996406a1aed4da000528cfe0c1a9f1f281abdb80341564658cf');
-INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e410604a5a54e7091c50fe06a68bb2a2cea370e46637477ec1d3baf549cf2ed');
-INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"f20b81389b2f4c9c9be4442b3c68f87da881406f1490637c7d93d63539155a7e","messages_hash":"b4119937e540d23b8c91810b6a3a712e123b010ba64f6d0ec2e7513965677c80","transaction_count":0,"txlist_hash":"246e6cb136a8e79ad87ccc6a2318361c689d4720a9000c1a404f3556dced1bfb"}',0,'BLOCK_PARSED',NULL,'82aa95e357e4ddd604b8f4a42199c9dc5ef91a7ea717abb65ebe64bba6faff29');
-INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'898e2d568104b8e6444b513715fdae7397f50b08d5a9a1a5e68df765447269c8');
-INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"52d554e6b53b853066a3a8f931fc37779f3596c4388e277a9f66a95e001a09eb","messages_hash":"08a26261dd5a60bd70efbc193b8c7541642b38853e7e7fc5b85e8fdf8b94ecf8","transaction_count":0,"txlist_hash":"c4474243bf31bccb8aa11963c477e3d40bbdbf6c604edd86429c37b59d83b427"}',0,'BLOCK_PARSED',NULL,'99099d1fe39f2d31ef7185c5187e69a09aa0c75ecf282b8ee5e4735daf625537');
-INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51f4ac798e1f94438a72e7a914bea5ea48e922cc93c79a0ef7bc688b79a7832d');
-INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"08a949af614ff73a79313a5a949908b368efe1f8c131eeeb51ed610baf65ac46","messages_hash":"d699fba6e49edfd28c3f42448a0452645ea3d48b2a6ee315c189f6164f9167bd","transaction_count":0,"txlist_hash":"791f23628ed99486b93754ee4e7a3717d2deee1ae60d4b80dd79c614e874c94a"}',0,'BLOCK_PARSED',NULL,'433000dfd3e6f0a10f467c354e5672fa3eca449748cd8abd9bc8214bb4b080cd');
-INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab973a0c6c508364e5ca73fa63c6f083cd60a5bfb6dd483c3f76c54181e4639d');
-INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"7ff8b2408ee1124a5ee573d31023660aabcdb21599bdcfb4a3bc1895d7910094","messages_hash":"4e1fc5d2adfa955670023a3171caba56bc9a487487e735661d2b8fef0b009829","transaction_count":0,"txlist_hash":"019a41a08fe760b6ca07f10cdb763ebd41d76a7a458f81023dacd0bb000221d6"}',0,'BLOCK_PARSED',NULL,'d1493e12208e39cc45304798141605ed18c67fcd39ef9bc3cf7ad198e712b716');
-INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7d7433525296637986637542bcdc53895d047b7b4d79719f8fc118feeec0dda');
-INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"c687e753c01711e94cfcad1f16d2976a12ef5d6c3731c64db26f969c988fe7c3","messages_hash":"175073928f9c483e28ef0153f7552bc8a8886a35a6cad614a381e866b390a27a","transaction_count":0,"txlist_hash":"81bf654cee844b048e68c07fdbb561865156f77769d686aba7666d51bfc529b0"}',0,'BLOCK_PARSED',NULL,'2f555afbc04feb4013029731e59afb2f49fedb2cec4380266858521e2c29e5b4');
-INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c92f53031ea47bb2d23fa31a23fd020696ecbc04d398d5f73748278ed577f1a8');
-INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"66f493ec8b5cf8140d1f627f008c50624d3069f56828df90286b53a2d6cbf47e","messages_hash":"7c38a2bc3583e8a0b36e349b2f7c8eb08a73cb2cdc26cd574e42d5f6f1819792","transaction_count":0,"txlist_hash":"87461d03ba2d32213a73f526b81f1decb96b112a012ada6f9fc089032720798c"}',0,'BLOCK_PARSED',NULL,'5bcc4a8161875313a10a5544634712e341763a453d2f04c1582149b0abd9fae4');
-INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57f01167e2c69233a2968d482adf0ba101c95f694fd379cb0ef0bb8a769334f8');
-INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"33acd319bde452aa81b589435a31ee3add742870a928ef2c15a7a447b4b4e0fa","messages_hash":"9308dd7bc118848b1dfa1514c65622002c8ce8b09f8d3f383cd921acae7fb6f5","transaction_count":0,"txlist_hash":"c1fd057575646ab25fc055b10cb7cc9cc4d4d05f0ddbacfaa462fc9ac32d975e"}',0,'BLOCK_PARSED',NULL,'4a8dcd959dea8e19d1d1b523b71608421468d3726cf282747678e1f64d8568ba');
-INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9ceea2a8152a63a2121d1279b5706718682076177d135984d17036ab93a6d0f');
-INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"83997825aa2597adb0292e265f01e937f621cc75d8cc18e23a4bd0c1fb0920c7","messages_hash":"584d88bef1b341c7a46c693cabbe0fcc603df58d4a425f64b9edf31f5204a6c4","transaction_count":0,"txlist_hash":"86e036eb2032af487a2c3ccd6a6d8b3073c155164cda4bead96f92da996fd4be"}',0,'BLOCK_PARSED',NULL,'49569ba511f01a4e08d7f40601c3f675b885714f007464ac66337d187b6d1dcf');
-INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea30534748eb6a4bcc89d8505a6199b640e63ee6dae048ca601ee5f2a2794207');
-INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"9890bca86442f329b2abf1b3bbf4d94e8ab54d10dfa7823a53f02fcfef030d88","messages_hash":"8518f19efe134acf8d55da0bd9512363de63bb14d06a1f51e4315f113c0c9430","transaction_count":0,"txlist_hash":"a839b90852909b1e21b4461debe100d578abe34e3a46837b444a92db3eab8d97"}',0,'BLOCK_PARSED',NULL,'c91129e6f0e52c8e75e0223a0aa3af4886f18b970aef4288ed62d34a000c5259');
-INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3553696b33d41712d3e3bacce0543613fcdef67d6c41dfe0db5ae2c44bb3c8f4');
-INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"a909f658a8f405ef1f5cd8bbab03cbd865235544ae1c2f4dc20e2a4393181efc","messages_hash":"bf1f9d352187f8252ae400baf7b361897cb58d056f00685357a03159e48b9e43","transaction_count":0,"txlist_hash":"a55dd67a02d97f49eb1ce9cbdf94b201a0320065e63aaccca1d14fc856a167b1"}',0,'BLOCK_PARSED',NULL,'4b9fa1a16510aa37aaa3ac6d7d32d57695d46f7f6d19568c4d13ad2fb3f05ced');
-INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'165d1733ced4f4a90a1a904d2e0a2fdf8f9519f0cf86259b771e8c577bf5a4fc');
-INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"713d2ccc66a1aa7797ea9b6af18b04245478c7582a8aee76cf2c7f3f3060df3a","messages_hash":"5d5cc15d98b43e5689b2b23418e1a8c60c7466b75fce6a9eb34f2c2df59d8ef3","transaction_count":0,"txlist_hash":"c7bdbef0fecf54c6d2f1dde171123487c95ccea2cb80743633a8bbdb3c3b9d35"}',0,'BLOCK_PARSED',NULL,'1edb3fcdfcfa3b5d76b3d7b4dee95cf6e009769c8c0fa72815e1f7e414b2dbe9');
-INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'000efdfba5538c6b3c9c14390a456dd84324e99c5884dfe2b3f5a3a00d3b6eca');
-INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"534500ae61a04841771193d57384d27b54fa2bb92c0698beaa46509b3d39eb1c","messages_hash":"9e57cfc8a170d8d502a7fd3a7837ab20035e29915f70982b1335f1b208241e96","transaction_count":0,"txlist_hash":"8c7d8f1273c82696c80fa325a3dde05ee4ad5f719f6890b3d93907c91302cf7d"}',0,'BLOCK_PARSED',NULL,'cc9522f6c1ec04e2078286f4af3b4e9a1ab5d26d8f83469e209f52b4f3161d21');
-INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca23b1c43d44f964884e29b5b7daf9289ad43ec3c8e625281f9d1ad0a85abe0f');
-INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"48c8e5d9ab1887f092731ba2881a330d22d4f03f601dccc096fa5147042a3d55","messages_hash":"cde2ec1e7c733c02935331d6137bb1effe396ea7dc82e4ded69543ceb6aedfb4","transaction_count":0,"txlist_hash":"4c724447d400c30336cda4523a84f5cfe86849086f98367e5821a0bdddf68f7b"}',0,'BLOCK_PARSED',NULL,'b478957bbc8079865aca98cb67123077b0f93811fa3c4ec18672eb37d1109d59');
-INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b440ca3a62a6e2fd4977e191103d618f0b11c4d484d0d864b2c9251ea771dc4c');
-INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"6c5ec3d2b7d8a724175559db977cb9ab78eecd39b9239688b30d6d3350cb01fe","messages_hash":"d0b0d19e3dfea993fe9e8b5b047f701fea2363b86e371e33388db2879acb485a","transaction_count":0,"txlist_hash":"8f0ee591c9f8165289f106091ac0cc19dbaf813bf1134c3ad2cf302bdba0e8c7"}',0,'BLOCK_PARSED',NULL,'b60fea143726bd865a20f86016c2e2d744d002f792fcca6ae3a778b8b173d8f2');
-INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73bea1c1b0688521a3641a8b0262919a69949099faafbfcbd7d3206ac07bd972');
-INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"817dc86594b3820de76f1d2bc2400d702475d558d6ee5bef4313fc154bbdaca2","messages_hash":"c31cc75c52571b2f31eb550b4441955777b3dda8f609ff0e896e6cc11a19c748","transaction_count":0,"txlist_hash":"9ff934d29741af663537dc45d552b6c01cc8ba577af1fc2ddbbcb7259477bab8"}',0,'BLOCK_PARSED',NULL,'4d426831f529301bd7ddfd37a8bd8b8f771b832a21e3c696219911a5fbd3a24b');
-INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e01c53ff6a8d759b580ab56777073cfa8686be3316b94ff3489d1ce8acd8820b');
-INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"00916e6bac2f648f953c8d6dff21438a6ec53ad198b33f90667e8d4564e00e78","messages_hash":"969b1eef7e73c6c7440a6e1821ff57d9be96c399da6d25222c8761f031ec3966","transaction_count":0,"txlist_hash":"3074814e0ba9b6e99b6af70ecee2f1cd072d760d921d13f04a5064342636da4e"}',0,'BLOCK_PARSED',NULL,'908f19161956355a7bd3ce56d20fdad3d5886d0fc6b02ef29f71b86d1403df0f');
-INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d4bc5a00024763af75bb33cd8077fe24c8d4b64a4ceb12db9bc2b3bc7400b33');
-INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"959df962b9bc7ef215f1530b886613404adaf81552d6eeb4b1401ea265ad5f4f","messages_hash":"305f357468bc4c4030f71a370d6396a58e1724e218a6e6190966203721f71494","transaction_count":0,"txlist_hash":"c792d99e376babe180a99ebe9c20a7925a74fb919ccab28a600d200caad6c0e3"}',0,'BLOCK_PARSED',NULL,'15264ca43b5beb7bb91631482049fc279d669c3a86de7f9a32ffaa3316355630');
-INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ef3c21852a07683a3852a2152e360c4e1279b7b247c913e9a37340b57c193a3');
-INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"d76b639ebddd434e5269de084de0b502e7f0eaff71b4e99de2d4ebdd1fc61380","messages_hash":"844c2635c132ed421e7747be6908cf50a926150d5bc27296f37f73fa03500faa","transaction_count":0,"txlist_hash":"ca53cd5d8d4e90481a6099af39825f25e7b5325fd586693362d9e7302e72fc3a"}',0,'BLOCK_PARSED',NULL,'84c0b6eca289999f120f36bce745a14b8ac3555dcb20ebfb05cb74c7a5b08a12');
-INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a151bdeabaa7991c509eec89c3254c4a66b6c7b51528049890db9192902249e8');
-INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"525e8cabfc993080d128faf38a5e5c9e9afa61423a5f20a90d68cdcacc96b59b","messages_hash":"3ea2df17ab88adc76330690ca7dd681fd80f522375155867c73bb6d1298c3bf8","transaction_count":0,"txlist_hash":"1bfbc68852f429756bdfb76508d3f044ecc24704e437259c23107470f1edec74"}',0,'BLOCK_PARSED',NULL,'fda61a5b3b1029429b12853c5bb385ae34124211ac2b2cd4644cbcc30b7cd3db');
-INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f234bfe4a1b2537b32557939de9497e9f8e728eee645375c12e90b3c7f72807a');
-INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"155ffdc74a2077a3da7d5c068833468c7d0758dfb525a799f910cdb1543beadb","messages_hash":"115a3d942d7134aa1fd1e06de6be36a489076b6b89363d0d9ca8574a52192a47","transaction_count":0,"txlist_hash":"86186f38b173c755554117ee448b6935fd6ec6ca9f464438d659ad6be767d481"}',0,'BLOCK_PARSED',NULL,'0d4e5ece45901ab968fa5695c382d14159ee9d01a4a1addc81d968ef7506e2a7');
-INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b42c46169caf5afbf0c3459a04fee21d6bfceae5ec2904d155e565ba3c100ab2');
-INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"4f6fe786e34af90927bcd888b4b2a8fc69d3ccdfe4c4bb37edb2007901ce234a","messages_hash":"6c10c2e39604750e0fc0a2246c30cfc268ba9c93cd8b7f0418da56fa1e2081a7","transaction_count":0,"txlist_hash":"822b518b20b4f136877f2dfb4f4a9299a4ef7c26441791e986677396405ee03f"}',0,'BLOCK_PARSED',NULL,'0afe9957682aa193106c788e12143905d451e7faddf1b6c77928d3b0fd3d2c40');
-INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'804a9d5bf6a12d1a10d6c8f34bbfdc69acfcaa2585ccaa63289ce137312a5af3');
-INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"30978d87fd8e32d9d27c92a0d4ca19d179b515ed95410fa96bf496b4cd8aa5e2","messages_hash":"10c89c95b6fa528a5aa068809e5f735c5e3680d75ef1882bb2584f8cedba1bf5","transaction_count":0,"txlist_hash":"79032221c81d77f7dd7e35d46a314b21b17df32357b606ecb7402e5976473b19"}',0,'BLOCK_PARSED',NULL,'5b4adf2d96947ed16251d0ef758a21189595d0d683d99a83c999822b443c67b5');
-INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5224ddba9370ae3afe6d5bce0222401ed5ded808359c9d1c9c1ed8d09e16357');
-INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"a0760bc5d2f04b381cc46aca84aa3788e8e3fbc833379a26ae812807d3a04fc5","messages_hash":"7e9860fb7b394ee7801f90330d53db116b7e3c4cdea3483eba351da8c9c81e8b","transaction_count":0,"txlist_hash":"8f56034a75de70a679a8bd2515b5982dcebc5b2a6c468203ee8922f7e12aca4f"}',0,'BLOCK_PARSED',NULL,'0d34f7aa4e2f5dd1eed474521dfabf28a5641a14d396abc6591a7ca21d1a8329');
-INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8839ffac9a5fd50235bc342fbf0302932213f6a6cdc9772f379307dfad370100');
-INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"26dcef9e54b1a34b6024f8402ddebb6e9449cd90c270e3db75354a001484b1a1","messages_hash":"6d87ea5d117406693fa50f178d4d6bfb51d016387b65178d773d94f5f03a91b4","transaction_count":0,"txlist_hash":"d645719f82c5029a7fe5eba356e16c17eb676e0848ac2e03b4d98df0106ae95c"}',0,'BLOCK_PARSED',NULL,'a5d61283f0a8fab2dcffdb3b6a7417ae4b41f56eebea4558bf7feebc07f23fc1');
-INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d33dcb7c84988272dbcce69e1374c52a79a1182c0d2bd47fe23d5663028128af');
-INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"810ebcdb63a08af5a26d1fd4e7a3604afd03bd06ff620d6a86c665e1c81116d2","messages_hash":"acc09ca7d6d46a31e5219a5fe711c3115dc935eae8b9f76de341d8ffc1251367","transaction_count":0,"txlist_hash":"de75a174069eec13deaa318cf1429ed15d775816b7ffe6f46c7db0e252584271"}',0,'BLOCK_PARSED',NULL,'3860cb0c1b90cfd36171bf832251743cd30fb4f3c913398cd796e234b8f2a789');
-INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'848d61c75b9406c6581b3a9434b678c86d62f0e395a2a99ddb6c273bb31ceb7a');
-INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1edfc24d186c7e7267b11c03b0a29e57926e9ab25f668231a18a499cbd08c702","messages_hash":"31ef09c9d9085307840329344f77997686024ff642eb7fd66d1bb8ccba72772d","transaction_count":0,"txlist_hash":"4f5fb29442a7bfe7928dfd0a30bc730b2ee0a0bfee963e20f8da2eeb0bc3d6d6"}',0,'BLOCK_PARSED',NULL,'ea7bef09735c274b29fb0c8e88bbb6138cafe207da4048f910aa5d74d542eacb');
-INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1639840e07ca476cdc326fa8e36aaad54e721c05ce03af289552af3eed5f9c07');
-INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"b0de9503f019c9548a97bd198e6b1b58b57d6a7c231ace2d72adb0421b29e9b7","messages_hash":"9e1443459f5d65d8a563c386ba81aafdbb7d8edec0b851cac2954bceca9a915f","transaction_count":0,"txlist_hash":"99f2cacd3f24f7f8cf40d0c6a3c50413a243d886a381f432dc4398b06dd0003e"}',0,'BLOCK_PARSED',NULL,'3eab4052325835d50187a74e97aa64c17387b5e14d94da47d90507196ef86a2f');
-INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0de45d4badc070874f25e613d9a9cfce29da1e6d9d5807c19ec8a81810003a94');
-INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"62e41caff168eb4b15eb67ab2130510ba3f17ac186f8516cf5b5c6f168988345","messages_hash":"120e6e7664ae78686c77d35bf4d699256954f01fb3136f6b57daf14c7f8c4c2c","transaction_count":0,"txlist_hash":"6436ea453d46084d34e4af17b844a1312a3a3f0d95234921dffa50c3bb86a8da"}',0,'BLOCK_PARSED',NULL,'313dc3e87a8c259c5c0bdab9cc5e870a54ecf3acec10da6b7a962b9c7bbd1400');
-INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7247bfcfbbffeb8796f776d7d157b53274f4a61e298c8df87e41745eac9340d5');
-INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a444b1535d27bb2917478019c4c59abf9474e87128f9ec1e44c20eea1f014f3c","messages_hash":"bc4110a8a69c3c5b68a220d18914bfc2b775f4505fae4905a056ab1129a18759","transaction_count":0,"txlist_hash":"4a7b7ac0f91d282190236dd238b33f7b76b40c1f5151c25117d7fffe014a1995"}',0,'BLOCK_PARSED',NULL,'dd218fa94c9c31b2e3acb24c1d6ba92de3d6b60e0c27f6d15f153813cbae0b92');
-INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f55bc6c1d301a50d915dfff65b03f27ab2b9d6391da6df6b34ea34b6159992f');
-INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"0ad978671f587f99e5e1c1b6f68ac3d18bb03a3bd7ea9afb63590bcef25160c8","messages_hash":"9db614ad9f148242e8d381964ed1f060344570c654494d6f28a1d54748783c82","transaction_count":0,"txlist_hash":"a7373340d9f43d4256f8a9063b32c415ca44e5964abc500cb3daa631ab92a311"}',0,'BLOCK_PARSED',NULL,'7f62ff72dc164e01ed1d25449b5ec61b7f357f9daff063f05255d8cc180f59ed');
-INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3841650a504d28b7c94edb7ddbe1d2abcdb31746748cea24925d9815ad2ec');
-INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"a6bb36829770b24fa0b960b85566a0138360a60b52cec62d94d7df8cb0b8f8b4","messages_hash":"22c378a039a5d54dc936e50a2b439d325bebf2499797ce6af9ee8d04c984a701","transaction_count":0,"txlist_hash":"3f137eaa77970ba242a8bd0709970f7045ae79ca9f3cc172882577ee3ed34e9d"}',0,'BLOCK_PARSED',NULL,'e0bd640fe0ae71efae373360494e1beba0e4e155f3433efcb7b8a417bec8bf07');
-INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4a0e4da5484350035dd9637463e3c181236915bb0d4dc1c3295485f9ba3e2dc');
-INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"9b8ceda9b170429d8b9ed517f0db95487b3058397e20d7e786577c8e46b389b8","messages_hash":"e2199f8f8010ed9d80b755628f7b92539f0a7eff814045b5cb0c4b71ff693506","transaction_count":0,"txlist_hash":"a8c54e9c41e6d694d38a6cb9bb9cea881609c013ef9bf4909fbcb0090168e263"}',0,'BLOCK_PARSED',NULL,'7617fbe34fc806ffb7812a863d0aa946365585749d926a7b37e2995b4d481e98');
-INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8eba89e71b9d0b562f1f7ac109b83d928a58a11f96f64050f25393ace575e94a');
-INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"cee2e41baf86f1af24d555e9ab4a0c023b5f1ab2b054707d4434b4f60d31862a","messages_hash":"26a0fcab0e3f7ba3cb0b2d78b72c11ad6355647501cead5c427e1d23d4e3f3ad","transaction_count":0,"txlist_hash":"bc2a5bfc7f1a8181b7b04970a8287b498f096bc08acf106f6a8e0a0ac5ca3723"}',0,'BLOCK_PARSED',NULL,'881b8e9ab32e4a473fa95818030200baf8310025a48479d9266be8ce8612e196');
-INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a7f3faea0514b721dafe1f7a0e41d3f2ec645d0aa2113628fef0b2539810f06');
-INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"cbfd7ff728f05ba3f1db5972f1449618a79d3fd0d76bf7fe990aed2eb2316a38","messages_hash":"0a0c5631c11c33f5ccf3a0d4e537469fd887b0493a9395cce6f5cecec4525b98","transaction_count":0,"txlist_hash":"73e3b8838f74134d3db985de53446f88c3bb86a8cec53bf773c10dd89fc2d709"}',0,'BLOCK_PARSED',NULL,'bd9f0406acd35f2d8bc4c7901c5983f49a990d006aca3b6fd8f48db2cb44fbb7');
-INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f20050ec5ed37d16d1781630e4ae61957795cfa3785bbe97f110a905d29e641');
-INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"9af85cd995c83b5a5f0cac66351cabdf9dc9faecfee080638fc76019663faaa6","messages_hash":"0243ca02e41d763a7dc643fc9353613ee3eda717381cf1cc92d27833652bc9aa","transaction_count":0,"txlist_hash":"5e951c9dc5201f32b7e8b9e72702984a2ff13c011cec35ef4ddbcf5b1e7e3111"}',0,'BLOCK_PARSED',NULL,'2fc6fb588c77d03eaef8bcc2dde262f96cc73b2e95cc891599589feeed1d6d41');
-INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7392fb1c9097ee7af55cbe6786afc1c0e1fad1866df8981b24aa47aa80953955');
-INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"a3c547e84db6b29630b87fa566e37796e0632ba616dd6d521d558632c3b55370","messages_hash":"260cbb371e6bedd2e668b53e65b1938ddac82a976c4642e5931ef3c637aa0a2a","transaction_count":0,"txlist_hash":"c72261d02c311085af66e2c66b8bcef2833d05716f067de2327442b92d219adf"}',0,'BLOCK_PARSED',NULL,'287f4c5f79d739e9dac68882259b5408be0bdd4c66f7faa78c47e7f84c9cc164');
-INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'134741766e6148d7ca59090449bd881e6b6a71a11b62087945b1179198482b75');
-INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"a0170d8a72a0f8642c0863899bf034e754596e3fd8ddffefa91e7e9a7addf944","messages_hash":"f251df0e4b0cd81f4f5be1d0847f2313327c5d3fcde55f54dc97da0c030338c5","transaction_count":0,"txlist_hash":"df4f5afac7aa5bdd2e580979d13c750f4990c5f7e8dacaec6d751f4b1e3c690e"}',0,'BLOCK_PARSED',NULL,'8eae063a977e8d24a1fd3d8d620139316bbc8a4eb9e703073afbdefca30ea100');
-INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5aa3b0d7c51897538780572748dcca08eb9b1e1cb3677d743caf3fdccf6b623c');
-INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"e0179a21342fcf35fa169567f1ef35bd6b0b1b048a98e90c049fdf3ee58e9da4","messages_hash":"8766382520f4e2f1cd434333e1b0f694679e3389938ad90cb27a806f1b10bc1f","transaction_count":0,"txlist_hash":"c5cc010dd34b520a733ad2e109b4b2b8cc84b48e412c43ac688a57f99147c164"}',0,'BLOCK_PARSED',NULL,'2d309ac34c3e2bfc0cce3e6b25a01e9783bad6697f8904276c974af1874dea20');
-INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d47c78d71e2f96f3c530e7b2a5bd46451c8dea9080401f2f6a56475c55946e3');
-INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"8855ace296b0b078d90aa24fcd30ca9f9cccf9d3961f3dba4985a3ff187a02ac","messages_hash":"57d4af8c7a15f1318317e9c5904245edf53331c9f4ecffc1ba4d5043e62d8af4","transaction_count":0,"txlist_hash":"eac5c44840751fb1009274a20657bc544e855ff1a49533c9fc43c0b6e66b7402"}',0,'BLOCK_PARSED',NULL,'453254e7f00fc217ec16634ad122d97198b116ea5e8568dba65ed3848a71b28f');
-INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9e65df49948ca7b739c860f127f631cc33ec4c568ac18a5f9b6fb0bb0f15aeb');
-INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"bde3a6c6cc31b96d58f466d3ce0361cc6366c8c239778f21b696d4063cf6d89e","messages_hash":"2a1c11729dfc8b114a93a4d00c864898433dca5405b147a551ab342eee18d6ea","transaction_count":0,"txlist_hash":"40cde00e42632bcc0477dc071b9acfa0745283dc2a9d2d28e230f939832abbac"}',0,'BLOCK_PARSED',NULL,'efaa4e8311a78cd8f5dfe6b613d1220b47e9ac2d24bce8f0d6bbbf34f79aa087');
-INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c66bd83738689365a3e4c3862d53bb936e14e909371aa5e86b61bfef9892a85');
-INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f562851b32a7005ee02b9e2491c0195dddce451e8fecb428209d087e69345303","messages_hash":"c5208e94a5cf8b81912e897627778a7b87b6cda084714bcf17dcbbfe471ff09a","transaction_count":0,"txlist_hash":"dc3ab137a2d7430196ec3d25456e09e8e63d815c8e4b246e95e7e63d4e3a9c75"}',0,'BLOCK_PARSED',NULL,'dcee92da61aa0303a4e2124ce404723ce8b4e76b4c1cff21371bde7b0860bd8a');
-INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afb83ad6bee3d08635c0caf903bcf09a27812579d27b01a2da10de46872f21bd');
-INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"996cda7b65e623747deef936d61491cedd0159f44faa1e3536de1b6d6c474097","messages_hash":"f6755e4b9a0aac05188b3556704027627d5429557332b9f836605544254ed43b","transaction_count":0,"txlist_hash":"a957a0c28f2a0beb967ef0ac9519e9207e37415af3018f1a5cb998169f3b6005"}',0,'BLOCK_PARSED',NULL,'c7690aba315d1ab03a98b0d8f972b15561cffb6196ec4e6fa07726f5b0ef8fc0');
-INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccdf19787a2040491bdbd185b11a8dde0191afd9294705ab8e120f42749f3b9c');
-INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c8286f73cc3a070f4251b7c59bb485e611437a1916fd39ffac831dc78df54ecd","messages_hash":"1796d3f485d4ca5c7fbfeabc6b1428703afd47c721400cdc2acdaeadb9d26482","transaction_count":0,"txlist_hash":"3cf1b57600853e04513ad74089e344f9e5af742e1d4aaad0c9e51c0ebc6e77d5"}',0,'BLOCK_PARSED',NULL,'a5b75db9177b6e07c5d28d79f4f3c1dad597a15e1bd7be23ca4c33421530eccb');
-INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeaf6b55d4930d744f77a19ef5ba237852ef1aa16c4ec7ca5643aa5d96a8bc8d');
-INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ef9dab42700918027fac849f2088d2248a6291dc7bc24be583b556f37739631b","messages_hash":"e5aed9b39fa7515afa96939dd322b29380c52591b7dc6ed6a62d1e7153f69889","transaction_count":0,"txlist_hash":"6cf1d5147d5c6523c275384d404b4f7a750dab987def5846979bc5d14233a44b"}',0,'BLOCK_PARSED',NULL,'a0386a65f928df2ad400620bd046f82ea5a8027365bb9a2e6093f95a6172dcc3');
-INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'162817580fb749931b40ef13b380f2b001026a26520e3faaabb79257f825bff3');
-INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c6bbc52f1e8f907b2d66378f4352f41ae3d354985aaab5f16d737d75a7e6b1d8","messages_hash":"08636b4a9a1b1ef795ea50198a555762e9a7b1b2e9bf12428b223b2dae49cd3c","transaction_count":0,"txlist_hash":"091641bdce3f527a8a3da393068fca3534e8209fba337b7b79bf22f2a6bc5dec"}',0,'BLOCK_PARSED',NULL,'6c309ec5f37013096b437e9801e3834cd3a8519604825cdc55e9978851358ee4');
-INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44e88ff6da26a05d6306fd6f43221c2688f07070eb1ba50792430e079e8085d8');
-INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"66f7b7ff8f0217ed62938a5931d4a6a232546e5d58e09dfd3ba5a792c35fa560","messages_hash":"fbe957e0c70cf6dd4ebc7b0f46adf107bc92354eba58205ef447e3daf6bc8db6","transaction_count":0,"txlist_hash":"8a955c5c1a5c9f8c82553803172cc961e61b2e2e19b9c87cad6dec24512ee351"}',0,'BLOCK_PARSED',NULL,'b79303f7fd25cb46391b12e1aed5f43e151b30ca90484f79019e95a76450c9db');
-INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8becfaa4c34e22ad46bedf55308292758dea4916a6140e4dff13632211131074');
-INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"2b26c6d901ca9790987331432372046d9620d10ea163f4824208d6b23e8e7a35","messages_hash":"df11ad31e79548a8591fbd90d30ad79ce85da37dfb146a48ec4bb648737ebff6","transaction_count":0,"txlist_hash":"482bf498868976d12ae17fc38bc847d8c7398c96fad5df9f1d2719197fa038e6"}',0,'BLOCK_PARSED',NULL,'30c1663d6482f734f1faa7f9882efff498ae09ea1b1b255ed6f561af1d227278');
-INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acf500b623ac4fbec9bfacb88c60a07fb8510b8ee35dfd460ab9760bd00edb7e');
-INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0d6d774dce93e94e870835005b0e8b04f010fb25158aa69a0fa0321d1577e987","messages_hash":"06753394ba61e21576857c2bea779ed38eed2fb104134102a6ee6f4075acf676","transaction_count":0,"txlist_hash":"ed1021dde8c16263483f3a50091a2df2105977a7aab9217b78af58833433853c"}',0,'BLOCK_PARSED',NULL,'1b720971f0e76f965d744add670201b978205c9b82139df6d0ffead5f42cfc88');
-INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1634a6e7454337117a88800c3e9d551e631b5daffce29cf841073974b9dae3a4');
-INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"9dbd171e3606b1662f6b576339b1e9aaa3da8a9f8a246bab905af255add4a762","messages_hash":"0da963e6f910b4d732b4b5142c237cd3fc3cc77ffdd8a7566ee849b827f93e59","transaction_count":0,"txlist_hash":"e5ea123c86cd7147d8cd8d9866006e1da8528bb32c8005a998ca9f6ee917c2ba"}',0,'BLOCK_PARSED',NULL,'1c76da28a71108322c1c654d07102eb22b785b69937d25f0d68b72f3aa5c1639');
-INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55619435bfc9d43a0e244d7f6d4c88ddfd01771f5b9230a9c927c560aad1adf5');
-INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"db67b5dc6b0c0ddec22d0e716b72aa8cb6fa9702316f2a8e12659ee229094c16","messages_hash":"0e49e187d7c89228e2592780e408c2a4add307095076272d84e2b55f4ecf29e9","transaction_count":0,"txlist_hash":"a25387e650e60dbb003c5ef16c46a8d8464013d81bdb49508c2935368d4ae9c0"}',0,'BLOCK_PARSED',NULL,'4d6007d68d120b1aadfec89a656039030c51be82d708c6deb9d4889b29e9d8ff');
-INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d88049ad626170dc34bda7b24cb37abb6c7ca6f32d2cb07509f93b5cc3aca516');
-INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"7cf70b5298dbb36efbec2fb880b76e2514e3bad9d5200875fa3eb3ceb7719ee8","messages_hash":"99d27abfd96c4b9202fc101ca8795378da7adb442693a8dd2ee01755c3a5aa5d","transaction_count":0,"txlist_hash":"f5028a37d6395b533cf60e6ce9f0bf574a0a7beb2cebd2f545b5183e5362aaf3"}',0,'BLOCK_PARSED',NULL,'8521c9c4f641ec4cf8c4aef26bbbd9d42fb740055e00b3504af66316ea43bf9b');
-INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdc0b6274f64b660573bd70b99fb69dfacfd79de23f399388785fe3443d4c272');
-INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"27106f400fe1ee93bde42f3bf3cf39737fb856bbf0df3f90fe0838cf7d38798c","messages_hash":"eb249a817d3a77ab509de6ec126d1adb66ba7cb5b061b8bc1b6bbd8fb97fa2d8","transaction_count":0,"txlist_hash":"f336b56eb2aab91aaacef9df8159627bafc67b497482abcec9ad6786710da7ec"}',0,'BLOCK_PARSED',NULL,'87d6bb14b851592a0755393b4f2adbc53274f96d76fb3712b09b6b4489e407e6');
-INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28240e36220d2f5d8264fd152953136a104b74412b9ee95b41eb71b2d95e87ba');
-INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"28c9833eded6d68967f206e5884616f83bb9ad16b9d7a507031b96480aecc799","messages_hash":"717ede78db478693f58863ed85316b1a70c505f7d7288b783eb30c9e6aafbdbe","transaction_count":0,"txlist_hash":"c51f9cf9cd60f836bf4ae7ee0cd982829f6f7cbb2503eafef3bb167a285cf9a9"}',0,'BLOCK_PARSED',NULL,'6828f76d90e3fd5e85397c47d79d24032dea113c921117c3fec0f83d3f876831');
-INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cc8699ec7e455c354250aa943978de837282344973a9ef4dce1c36f5b4cea68');
-INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"cdac6435934ea6e67a311495325c85237158ef30c009ea44c562c2127d79e696","messages_hash":"1bfad3f02446c2eaf5d92214a3dace565861afd1cfcb75b12087f88c542c82e8","transaction_count":0,"txlist_hash":"b6749729423101ee337b7fbf0362191ba34102f01db03b225ac0d6c52de2a6fb"}',0,'BLOCK_PARSED',NULL,'4cc7cab10f6afab81e001c70e59ce5fdcde711fd37a38bdaec88b02dc8c4856d');
-INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77015ff0dc052b68f23a47cf65321aeb97288448995c1f7940b9c7111601c1f0');
-INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"cb33e420348e7969a2310445a6c17c79e647d3c6f3106d4fd0c0a1249e11ed6f","messages_hash":"e7f8143dcc493803ee016f2318c91d7ec9cfee932596858f77c96b9572c24ad1","transaction_count":0,"txlist_hash":"544bc0db1dbb1d22a05e5f81de7520ef990df5b897b9f9e60d98f102fef86568"}',0,'BLOCK_PARSED',NULL,'0bf3c5c3973733920623ebaf6fa050191fb2fcafa19cc3b4f034901272c18f10');
-INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87b51dd35f16714e7bad3fa86c94e31eb10089abb2caa267f2c123e5108fc6f8');
-INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"dda2531cf7db78a3f27c1ce70189b3f6efb69ddd24b61639f9deff42566bba2a","messages_hash":"ee5b11297364b892749812f46908976dbf0df6fed5083470bddd3cbd0f443688","transaction_count":0,"txlist_hash":"217908d5688f0d9797f04ee9c3cd03ae93c20f4e5801fd809d3c37154e55b7b6"}',0,'BLOCK_PARSED',NULL,'35a475c7bd337bb1a9a6bc3730b6272b1a84ae2784fe27612fe7be347bdda284');
-INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'412cf8001033470212d58e3a6dc84b2146a57de3c81b1c88af81efc953be9a6c');
-INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"9ca7d9e1da0c6e4465d9e1c76990b6c48e62ee3a0b3b83189dc7a0f2c03a3006","messages_hash":"0d714f5b1aeb7850a37e62304533be483e870cf8a93c842499e7fb8f426a278a","transaction_count":0,"txlist_hash":"6e31995ac19f2ff3fdfe5d2ba7a49f4b018b132d2aae92a4c664a97d6a6b3b6b"}',0,'BLOCK_PARSED',NULL,'455f03c38f39aa8f1c16cfe2088904529ea969a6b74e70a3e46b7c9418b56980');
-INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e71b4dc69c7644f72fcbed9e6e97ab5105db7ba0cad5af147248b17aa8b49654');
-INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"c6fc005e874909cf0393ac1bee7267f66cc5355c549d8657234a0ed6b429c869","messages_hash":"35654c3d2b3f82e783d329180c97ed5e933a36e01e19a4d46f75372f411bdc4c","transaction_count":0,"txlist_hash":"d7d3f23d0014f40f3ac6a00fbb59e95653d22e11360783fe4116be9ecf360149"}',0,'BLOCK_PARSED',NULL,'c211e7d07075d7ed8947afb4ea6d06c0a556acc1860a9bd737e72a11469b74f1');
-INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a72dcf5c05e6787730f14f1c46af544aa130337b0bf25cea1c309908b2bb2cc3');
-INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"14dacaec0b37ca20f271e500d0ec1837a63006eb464728c067107738ad3167c6","messages_hash":"e84c649434ab608ebf4f88162e34f824e244c76f4af22913f0efb6ae6e21c94f","transaction_count":0,"txlist_hash":"7a1a9bf5515019b99c1c35abaa4a2003c6291018e090c26ec03c5c951f853f82"}',0,'BLOCK_PARSED',NULL,'961545fa20bd3a22788e5b0e13a31518e91df1b7dca453f68b83a9a5ab9e6940');
-INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6e34fc02601948b096f8fc6085c76e8fbe0cf20f503366142e51f73b12814f5');
-INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"05bd680c082185147e83785e7464d8890908d1550359b4fac79018b510475e01","messages_hash":"604cde079938595e2eaafe98115d964d3d7760de6727133ce55a0aaf3c09ebda","transaction_count":0,"txlist_hash":"40b9134941fbe6312e3a7dca4b1f5114c3b7ab73f6ab84ba96aa101097111168"}',0,'BLOCK_PARSED',NULL,'0825fe6b97b21d57dc0844800eb0a5a278d112a7d6e2bad5d3c831009c80b012');
-INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ffbc1fc79e9d9a1dc9186944fe496264fbb84cf14d47c8cd716c6b32fad037e');
-INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b50805d750ebd26f8dbced919948118f1f97ce7d117aa1760e7a3c4895f51e13","messages_hash":"a9cb685942d115aef7c6cbedb261c04ae6a2b7a8106749ebbaa5c80a0abd3aeb","transaction_count":0,"txlist_hash":"4e1fd0382baffd66852d64c667941808ebeb08a17309ccfe91be8e16046ad266"}',0,'BLOCK_PARSED',NULL,'a60aa4ce77cc9e4c2c638ad336a9561a359b5559d1d2489ba79cdae3fb17ab26');
-INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'311d70c2dd8e40e10c27ebab978199ac508fd88bf580be856d756424e2498af9');
-INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"dde96405c241e1d57334670e4eff7ed8db92056e6867cae10475a9bc30ba4619","messages_hash":"ace214c70fd988ebaa5d2cbb97ea3015c50819efbc2bc788840a984fa721de41","transaction_count":0,"txlist_hash":"8e635d69a6a40df5c3849e1811ee551c32a57a3496fe8e4b97846b9592a9ebde"}',0,'BLOCK_PARSED',NULL,'8fab3bb7d80d894bf8763be17e6ec218026e7e7d0b37e2d289a1fcc796e110b0');
-INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ff1637552743195ae3d573c030fe595025482712219e658c6ff6d9602605533');
-INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"613d78fbabba246a4d1cd9d50317e732795a59812df8395472347e15cec1ee9b","messages_hash":"ea310679cec41d4ecfbc9e8293090ecfc50d42603aeead40f8578f1c67325499","transaction_count":0,"txlist_hash":"c96db41449a579ffc6b459375569230e88bdfd51c10578c60f8d252eff630fd3"}',0,'BLOCK_PARSED',NULL,'7db68714510874dfb9f5e3bee14591867e8abf1d552a67738e86d279e40bda74');
-INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a0047eacf5c684f809e6879bb0ddd3e111dd4c9e491eada598b370b89fde5fa');
-INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e535ca5960d2ce7508bd2157dd0cac3ea1f9ab14532a40884d522b4bba0d4979","messages_hash":"42229b9e7e27e8ef79ad7116e9c90af0ead5a28b5330d482c82975fe22e0fc0b","transaction_count":0,"txlist_hash":"710369d2e677643b7ab8f2bbcebf0f13017052ff7fd9adfd6ffac4e6fff83f8c"}',0,'BLOCK_PARSED',NULL,'ba03ca0fba71f5dd663884fc237ec04ed20f6e02906f70b4414c1c51e0eeb8fe');
-INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9202ae1d2cbbd45f0458c25ef52abf97a58fd84a2b358251b0b2d8beb6575cd');
-INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"970865291b7a6d8173d6ad2ae97335cb2e89d80cbbb7a79bb2328cf6c67fa6cd","messages_hash":"7a2883d5bee08691b501606fb32234a6e9e72187d20393de23126819cbed81a8","transaction_count":0,"txlist_hash":"9deae420c2b87043e6e18db077634a1d65ae60b38f604ce56f0899ed3a561347"}',0,'BLOCK_PARSED',NULL,'f4ef5b73d9eaf9549cc9e84a50af3c465a78886d634bc557b23bfd22ef04d216');
-INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bda985b793622492b4a37744fc5c7003de46ddca894da0f1cbe78952628f05f1');
-INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0741e57ad88cdada65134c9f131ff5bfd9498cb054378d829e34715e8db2aa6d","messages_hash":"d445cfe17527660e016649cfd9b00ee76b41728d084d1064e30859cda37eb244","transaction_count":0,"txlist_hash":"4bd0054addc71915293b8f040ed3c6c64d0aaf8ad27647d1887e16d55604523c"}',0,'BLOCK_PARSED',NULL,'d3c4bfee58e00be04a57d5a793226cc019cbf02d27810b5734b9fb3b16ed317a');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":"e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0"}',0,'NEW_TRANSACTION',NULL,'4a87cc49a20843c26b1df763f3ce6b52d59ed1c028ac6c36a1d96f52bae51b4f');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','885ebea2d49f4a749882f86e10e9b21fa6abc1a52e145cf510b39f1aec3bf6ed');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','60ed070dd6d08a8afcb118fca013550daf8919696f16a8830e8184536c5c92b0');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'d4cf8a624f76c044302f63aba8daf9799694941ea251bd7a39f88954bb411315');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c40adcd29bd386c6971d1826236154e7272070e3939aecaa73a5659eb39c1b5b');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":5430,"data":"0000000000000000000000010000000002faf080","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2,"utxos_info":"e488ada780cce6fd20645960fa4c00f46bc2d3014eea403415df68df8c9a0161:0"}',0,'NEW_TRANSACTION',NULL,'c2e729808ed9bd11d215e6ebc08faaf5259412f40a3885aed737887d4a64f892');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','4e0ba7b6b5b827b00fcaf2c69420ad647cbf1b22ce6d8b7794582c6d5b01ae3b');
+INSERT INTO messages VALUES(10,310001,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310001,"calling_function":"send","event":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','8277a7c140cb7e7e524ca4da1796ed8995bfd4e1780c68aa8ae9f029ce4b5cd3');
+INSERT INTO messages VALUES(11,310001,'insert','sends','{"asset":"XCP","block_index":310001,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'SEND','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','148cf8df111f707694c31d739269e50cb3075a83fdbccdfac06bea9b4324cd97');
+INSERT INTO messages VALUES(12,310001,'parse','transactions','{"supported":true,"tx_hash":"3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c","tx_index":2}',0,'TRANSACTION_PARSED','3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c','2b58998ff485a4cc0a70dcb2e1c9e38bd0850c10b093b1a20bdd492a56333c19');
+INSERT INTO messages VALUES(13,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"bdf1308701712d94da26f53fef4c440ea2fb7b0ef7361f424ba9263e747272bd","messages_hash":"3982f4f3a8dc501dd90db276a698a42a505c246daad5375df01cadd5dc1c0105","transaction_count":1,"txlist_hash":"fac614e6f77f1b954c12523e9d0eeb4252f92f3640f7d067790a510a9e893811"}',0,'BLOCK_PARSED',NULL,'f7d3fd8950f5fc4184e1a4598df08dde01fd4cb1075b71225fd960c118a70c16');
+INSERT INTO messages VALUES(14,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'170cf86df98628f5f5a07dfddda8a35831d171db187d13ef1fcc6660fb1e7000');
+INSERT INTO messages VALUES(15,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"0000000a00000000000000000000000002faf08000000000000000010000000005f5e100000a0000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3,"utxos_info":"54900f21dc6f766adb88a9aba633262eca60b42b4e334f4a05fab3e6dff55c68:0"}',0,'NEW_TRANSACTION',NULL,'d92b9aed0438dfed2aee0d47bb6ff59912271089dc1dab330dc941f4968f363f');
+INSERT INTO messages VALUES(16,310002,'insert','orders','{"block_index":310002,"expiration":10,"expire_index":310012,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'OPEN_ORDER','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','6a564f502b21e2c73a83e8ce066c1b9f17ce01276a3ec898eface8b6b1f568af');
+INSERT INTO messages VALUES(17,310002,'parse','transactions','{"supported":true,"tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx_index":3}',0,'TRANSACTION_PARSED','6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59','de5d0c9dcbcac44596154aef2caf616353572236ef9c7e20179c15d432c34064');
+INSERT INTO messages VALUES(18,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"cf830f949715ebeac09d4441878f60ac04d691c09d6c25c62a0d30fb5886cba9","messages_hash":"28b764d4c3761b4bcb1e2b3cbd62b372bbdb26ab4930950d44e240fe6eed016e","transaction_count":1,"txlist_hash":"0c743d61c27efab7c83c1845f6b0446b67c9b59173318709d51363e75e7a0601"}',0,'BLOCK_PARSED',NULL,'dbf794af006301bafd96a95ff38822d8852667a12f18305901f9bae33c19e945');
+INSERT INTO messages VALUES(19,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6dd6de4c063c0f2b7749b44e28f641d3f5e08c0fbf07291013edd643f6084618');
+INSERT INTO messages VALUES(20,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000000a00000000000000010000000006422c4000000000000000000000000002faf080000a00000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4,"utxos_info":"b2a1fa8abf69e20f54911c80cc5a1db0cad9f7e6a248f318bc7e8f0b37052bb6:0"}',0,'NEW_TRANSACTION',NULL,'101ba09aa51d6f3548b0704324ceba2781c8681aea00049ee3b3a9bd81ce7e1f');
+INSERT INTO messages VALUES(21,310003,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":105000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','71642a782860f20936420cde9135004a0ca0adc3ce134901d5b11a8dc8fed756');
+INSERT INTO messages VALUES(22,310003,'insert','orders','{"block_index":310003,"expiration":10,"expire_index":310013,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":50000000,"get_remaining":50000000,"give_asset":"XCP","give_quantity":105000000,"give_remaining":105000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'OPEN_ORDER','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','2b7475145b73dee92b81272959d228babeaf60b8b893da10b94e72f6e19803b8');
+INSERT INTO messages VALUES(23,310003,'update','orders','{"fee_provided_remaining":142858,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','3ab175d2909bf139a2379e4e6c62c83981fe1780d424590f0ea782958d4654f5');
+INSERT INTO messages VALUES(24,310003,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":42858,"get_remaining":0,"give_remaining":5000000,"status":"open","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','10c4e87fb445671ff075bf345149b9e4e29b896cf7fb05f9d778af38f50415b5');
+INSERT INTO messages VALUES(25,310003,'insert','order_matches','{"backward_asset":"XCP","backward_quantity":100000000,"block_index":310003,"fee_paid":857142,"forward_asset":"BTC","forward_quantity":50000000,"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","match_expire_index":310023,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310002,"tx0_expiration":10,"tx0_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","tx0_index":3,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_block_index":310003,"tx1_expiration":10,"tx1_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx1_index":4}',0,'ORDER_MATCH','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','0f3151a7e2306c80205f9bcae19de1678371180e3338755c0bf3e57bb1667421');
+INSERT INTO messages VALUES(26,310003,'parse','transactions','{"supported":true,"tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","tx_index":4}',0,'TRANSACTION_PARSED','36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c','9808d88228245fe446024bd44096744664dfb85226f04ce219da9672d2991246');
+INSERT INTO messages VALUES(27,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"e881a675a38c4649cd44e6406ddc494996c761671bc349dcdea1de430a84258d","messages_hash":"10d9d1d1d68bdcc6d8e2d58fcdc154884f436553a143f5cd520b0026363f0cdb","transaction_count":1,"txlist_hash":"9ae051d14f8d19db67a85c713eefc0a936f1bad818ae1138fcecb91506a46d88"}',0,'BLOCK_PARSED',NULL,'f2d421f6764ba4e6ab8015621db4b41ca9dc3044bdc4102f5f4cd8eddcac818b');
+INSERT INTO messages VALUES(28,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24b345b2b67667e7e9ea7f1ad820b73a79624170050b38c422a88d2ab11010e1');
+INSERT INTO messages VALUES(29,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":50000000,"data":"0000000b6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c5936d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":9675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5,"utxos_info":"fbffe88a06b9d791e11241eb5a642b58dad82933b6ea4af179b7cb43ed1e4d08:0"}',0,'NEW_TRANSACTION',NULL,'3fb0e6f17750acf42811fe5ae478eec1aed99cb922ab9f72710bd5be8dd2fdee');
+INSERT INTO messages VALUES(30,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"calling_function":"btcpay","event":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","quantity":100000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','d622ba19ab8fa6b24beffc57d567ec13a75f2fe829b0ddc8e6738974db91a321');
+INSERT INTO messages VALUES(31,310004,'update','order_matches','{"id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","status":"completed"}',0,'ORDER_MATCH_UPDATE','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','29104e6b2ee6ec6bf2d412b8a0014119b9ace8b25f3c38c33382b307cd4d4d6f');
+INSERT INTO messages VALUES(32,310004,'insert','btcpays','{"block_index":310004,"btc_amount":50000000,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","order_match_id":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59_36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'BTC_PAY','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','626b6739d20361266a13b466c4fd95703718adc0c98672df2ac6f7732ac0692c');
+INSERT INTO messages VALUES(33,310004,'parse','transactions','{"supported":true,"tx_hash":"843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099","tx_index":5}',0,'TRANSACTION_PARSED','843c5df8f979db230ba61f26ad1342ed5803adeba7333b019b8a96ac6703f099','6595c3a83f28947c493accd84520a798972e370aec47f70c08bd34b3c6921c84');
+INSERT INTO messages VALUES(34,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"13e0c6276f297ff1ca77705f1b18d807ca22f53735fba52f4f5c3766dc4b04e8","messages_hash":"aa968b67b3f01d9adb219bc43a6831cd92130511d0848352e5ce334356380510","transaction_count":1,"txlist_hash":"a865bc7b6e26b3c3868ae080ab927ce3f2dcdb7d3654ffbcd1b3a8111d0807b1"}',0,'BLOCK_PARSED',NULL,'f3bab2038a795686dc69dd517eb8b73d450b22ea9e1f7226b838ff65b94e234d');
+INSERT INTO messages VALUES(35,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b978970e60cbd9929349476706c810b6ef605c5e6db7cfe04300d375cdd2690e');
+INSERT INTO messages VALUES(36,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"000000140000000000004767000000003b9aca000100000000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6,"utxos_info":"24a606746ea4ce49c119d914356b48e0a15354842243414bb3a7b2cf9cc9a841:0"}',0,'NEW_TRANSACTION',NULL,'bfbb0ce5cad12fd78d06659dd5992bb9b9d0cec26717be5d6f48ffae73a6e186');
+INSERT INTO messages VALUES(37,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":50000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','c00ecf84d3abbb179c6137bc339dc09e53c5c7d9278ce8b6d0abefda07899146');
+INSERT INTO messages VALUES(38,310005,'insert','assets','{"asset_id":"18279","asset_longname":null,"asset_name":"BBBB","block_index":310005}',0,'ASSET_CREATION','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','1b91de814aad2115c6752554ec7710fa2f360d6a16fc537564b0084ea77e01c4');
+INSERT INTO messages VALUES(39,310005,'insert','issuances','{"asset":"BBBB","asset_events":"creation","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'ASSET_ISSUANCE','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','ff8420bb782c02e63a9962e4fe0a4495f85b3ce4f7e0fb96aac3b729423de37b');
+INSERT INTO messages VALUES(40,310005,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310005,"calling_function":"issuance","event":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","quantity":1000000000,"tx_index":6,"utxo":null,"utxo_address":null}',0,'CREDIT','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','586e256937bec5c50a48539c7e758761cbe39acab276426d7a7cb83fa9dfe878');
+INSERT INTO messages VALUES(41,310005,'parse','transactions','{"supported":true,"tx_hash":"5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf","tx_index":6}',0,'TRANSACTION_PARSED','5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf','494410d3d23854fed00e639c9a30081e8f6f5168c9c8fba1167912c84d412fa9');
+INSERT INTO messages VALUES(42,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"765896f532b411af9f889687a750d44414296c20002f3e2abed9551a6822937d","messages_hash":"1127342777064d3cdaded48200f307a39ed2daf430a0c23437ca8b1403e32a05","transaction_count":1,"txlist_hash":"59095fce5f573c2ff1b5eda5cd75c36227b0f9782601e7538215fea5317c505b"}',0,'BLOCK_PARSED',NULL,'8d593e7493b117fb83b6a78dcdc2095935736095a25002e583c047d6da00c890');
+INSERT INTO messages VALUES(43,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ed166db0ef9c1976843af83c85a19a642cd219cc621f65cef741bca74557183');
+INSERT INTO messages VALUES(44,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"00000014000000000000476800000000000186a00000000000000000000006666f6f626172","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7,"utxos_info":"010e082fb9c508804f1e65db734ba38b58acc8f7eb31cd02f07047a9bcd9a4c2:0"}',0,'NEW_TRANSACTION',NULL,'1cfc9cf707411039000e6c4ab4888e4d56bddd59aad58fa01517092258620377');
+INSERT INTO messages VALUES(45,310006,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":50000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','a5c6623672481b5ea120af7e7af2c1e59d4736acd7b799da08256df242b91cd1');
+INSERT INTO messages VALUES(46,310006,'insert','assets','{"asset_id":"18280","asset_longname":null,"asset_name":"BBBC","block_index":310006}',0,'ASSET_CREATION','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','24cd796dc58db6dcd8f097179d84e07e6498db2bcd1ef26891310aa9a31c6825');
+INSERT INTO messages VALUES(47,310006,'insert','issuances','{"asset":"BBBC","asset_events":"creation","asset_longname":null,"block_index":310006,"call_date":0,"call_price":0.0,"callable":false,"description":"foobar","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'ASSET_ISSUANCE','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','0099c4b6c9af6af7f96914cb728ffb230e494ba5bdb28b23da6b9eab74873180');
+INSERT INTO messages VALUES(48,310006,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310006,"calling_function":"issuance","event":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","quantity":100000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'CREDIT','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','9310caa081a00a86684c3b98c26090bcb572921b1145be1f9a179b87e3ee2269');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59","tx_index":7}',0,'TRANSACTION_PARSED','2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59','b37c65f5f93b5b171af2f3af6779dc16d4c1cd0222f5438935b774a09ae11b43');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"853e3a8d39c4e8bdb36a0ec01a8d20f12335fcc00a00ac271e9d83be471d394f","messages_hash":"1986e851aa4d771bbcac1e6915796eeb9a862443ecb949b933a03fb3dbf0c105","transaction_count":1,"txlist_hash":"752821f935743579d04abcc94c104148b226cbc0777a6bb30bb7eceb29b85fca"}',0,'BLOCK_PARSED',NULL,'bfc06a1e96dd2a32807ff42bd86c32ff8420dd43e1e2519d25ae7c7bda7d318d');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767c19c3d79f380c6107bb5bfc403721b6cc5f73a5accba0d4b8436bc4cfe51c');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000000000476700000000003d0900","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8,"utxos_info":"ebb9e84621e761d7f57b4f3e6e4b90947e648e1e6c77726663882b000f144405:0"}',0,'NEW_TRANSACTION',NULL,'b4abc122b74bdeb7bbdeba496598199f1809ea4e45976679c0f372fb8699289c');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310007,"event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','4e973b95ea0675b3a2c4a82478057381af24dafc79f902f220d76e149a8acf06');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBB","block_index":310007,"calling_function":"send","event":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","quantity":4000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','46a8df63fd4acdb2fb7e84a88046ad8735736a9643ff7ac7b39ef4c1283a5eae');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"BBBB","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":4000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'SEND','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','bb8d6e2b0a46747092677dea37148b092479427ce62c7f3d0c21ddca707a151d');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8","tx_index":8}',0,'TRANSACTION_PARSED','5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8','e9a4bebcf4f224bc698489e266f1cd54fed8209a7e5ecfb6594b427269368835');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"f2b2d250a94afa158f9ed84434c3ac7a0bfc97b4387e5e3c099afc95b8a6ad9c","messages_hash":"6e1e255f41512505aa0d339849037191697a7fbad0e2adc21c1ae48eef8f8f2e","transaction_count":1,"txlist_hash":"405914410b5982b395f52f17ee4fc69dc0e4fb4c7a511009c700c0d1bdbfb563"}',0,'BLOCK_PARSED',NULL,'89b90e8260f69432b50cc7e144dd440154f0a8a1b2c0fa383eae7b038120fff0');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1d0dadbf319c1fdf58106a7a6c1512d2cace4f5b3eaae0ea92161325ebf0902');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"000000000000000000004768000000000000020e","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9,"utxos_info":"24daf4100f55b121a16483cfa7203ac95303400d45ddc19de0146d0e2dbf82d4:0"}',0,'NEW_TRANSACTION',NULL,'e91a4701a327c9b91f2d9b3f81b3cbd5dd70e7303089fca2f000bcc9ed72bef3');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310008,"event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','8fd4a539c628db7fe918f8371277124f52493a1d2886e6e5330177cd0194ab44');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310008,"calling_function":"send","event":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","quantity":526,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','a787df8de31aa9579598a5e6bb74d68b9d0e694fa8a0815689e39db99600b083');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"BBBC","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":526,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'SEND','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','aee6f76a541d42f7dc8c85839b261f62e9888343ca6c13dd25ef661000aa09df');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412","tx_index":9}',0,'TRANSACTION_PARSED','843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412','5d48e9ded4d95f0c17a6da33e9870b5616cb4d10fd7c8e6e1e4d08faae08e720');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"8c44f15f5606b6fe984a9fa7df8d7d5381fe87a6c8b634469804328885668569","messages_hash":"967f755bf80b80dcdb561e2f822d0c057824fd092b1d7536d1d52f96a4226df4","transaction_count":1,"txlist_hash":"81714583a99f97b5cefc10510f507567e02f380bdb5741e2b5ef037816e8be17"}',0,'BLOCK_PARSED',NULL,'bbedc0be7e583222179c29ccc9ea14510b174dcd0cea38581af551714acc5d13');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7278672e0238700f3b4e4cf557b60c75eb4c6ef39b5fd50b0bb96c30bc9aa5b2');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"00000032000000000000025800000000000047670000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10,"utxos_info":"2ec45c5f61fbad288a6fe8bd49d83823700f92512bf9513f06b0dca32fa57727:0"}',0,'NEW_TRANSACTION',NULL,'18095d39f59db0c173b727a544e31d933c69daa8d0b0a19db34bc1b5e824da36');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','69440de8290f170377668871985bba17c12ddb5981c33f45feedf68deac3a533');
+INSERT INTO messages VALUES(68,310009,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":20000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','3933f4356ee2d5f57ca49de465da25a95368e8e776d44221f9d1c8c9934813a3');
+INSERT INTO messages VALUES(69,310009,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310009,"calling_function":"dividend","event":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","quantity":24,"tx_index":10,"utxo":null,"utxo_address":null}',0,'CREDIT','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','e29bdf94c3ba8a94240490159874e6d5d1bdd8436ff268c3173622a1bd9db247');
+INSERT INTO messages VALUES(70,310009,'insert','dividends','{"asset":"BBBB","block_index":310009,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":600,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'ASSET_DIVIDEND','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','beeca9c796cd5175c9e070814ffc90f464e7e08eb1ab3943fd70708a9459def1');
+INSERT INTO messages VALUES(71,310009,'parse','transactions','{"supported":true,"tx_hash":"42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518","tx_index":10}',0,'TRANSACTION_PARSED','42ae2fd7f3a18f84334bc37aa88283e79d6bff0b234dbf97e788695957d75518','e84bf9b395b0b0574509c038145a95cd6a8e7b3bbe0c4fe9d16c257a48c7ef6d');
+INSERT INTO messages VALUES(72,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"ba378e9192f290d3f9d3dd1e46aeef3a185bd5aff1be809c8974fca8dc142987","messages_hash":"17af8703880540d50c20a49c96246184b225b94b10b2febc0b4a726bbe6430f0","transaction_count":1,"txlist_hash":"9395234af8a78eb91afe7dd45a6701032af9926cba3e126e01f06547ffcb2e08"}',0,'BLOCK_PARSED',NULL,'b13a68992ba6b6cf4be1173b8c4acc0806de82a869507ca696d202e526b7a3eb');
+INSERT INTO messages VALUES(73,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7a9b92d9055f36094602f39f69c9659303045afc9c85779011f5d4ab1e042ac');
+INSERT INTO messages VALUES(74,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"00000032000000000000032000000000000047680000000000000001","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11,"utxos_info":"1f3f78c84f24b97edfab9bf0fac70974cd543157cf65d9464378cf31e3b26d4e:0"}',0,'NEW_TRANSACTION',NULL,'5166ff79906d4e709a08b94b5913cfb9ad634c9253a885303d3f0f4ce2735bea');
+INSERT INTO messages VALUES(75,310010,'insert','debits','{"action":"dividend","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','047a84229f353a588904a69a25cc8a02d45a0e1a5ea235e9a90d6f84307cdd0a');
+INSERT INTO messages VALUES(76,310010,'insert','debits','{"action":"dividend fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":20000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','7fff1d098b8420fbb620e2b6a89233f95b9b902da58ad27b97d3044671129807');
+INSERT INTO messages VALUES(77,310010,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310010,"calling_function":"dividend","event":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","quantity":420800,"tx_index":11,"utxo":null,"utxo_address":null}',0,'CREDIT','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','60f10a391d8c3b9f0c873b3287af0787c323a3b3c546bf0e3d042fc99d0328aa');
+INSERT INTO messages VALUES(78,310010,'insert','dividends','{"asset":"BBBC","block_index":310010,"dividend_asset":"XCP","fee_paid":20000,"quantity_per_unit":800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'ASSET_DIVIDEND','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','47102e2e300390f2c1feb06a31c77c7e12c1aa99394b1d3d307d129cc83dfa5e');
+INSERT INTO messages VALUES(79,310010,'parse','transactions','{"supported":true,"tx_hash":"201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10","tx_index":11}',0,'TRANSACTION_PARSED','201123e1ddbc4dab954fed0043a29fca770a9bd4268714354bb7991f01133c10','d8b33612b55000d4a13e05a6f5c0700ad51c92f20291042fd8b243405952fa17');
+INSERT INTO messages VALUES(80,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"64f78f9eedce2931aedfe413b4f4bdeb728752e1c897e0bd44c7db665976a723","messages_hash":"d6bb529bfe31304266d7c1c11879fa5c46f2445bf5d743e829a9efd6f3692033","transaction_count":1,"txlist_hash":"09624bd24bdd3d945e0a75450915715fa9e9a077db33aa5bdb275b0c76e7f9e8"}',0,'BLOCK_PARSED',NULL,'05d3920b45fcd95a3e3b9888b53621d625100700dd66d037b1061f5a5ce76e43');
+INSERT INTO messages VALUES(81,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e788308546dcac40439f623ac5c52799fc7cb527eab650c2026a545cdcebb8c3');
+INSERT INTO messages VALUES(82,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000001e52bb3300405900000000000005f5e0ff09556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12,"utxos_info":"81c8797b226b263715b86600744076f2922a7f74212fa87403ff0857e60af530:0"}',0,'NEW_TRANSACTION',NULL,'8e70e53440ef5a56facffa822d22a724960b8f02ecf3a48fd5a32b3e7804aae9');
+INSERT INTO messages VALUES(83,310011,'insert','broadcasts','{"block_index":310011,"fee_fraction_int":99999999,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12,"value":100.0}',0,'BROADCAST','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','7d1b8983d634552e54e1630ae5637c9c936d2712573331b8b8cfc5048723ccb6');
+INSERT INTO messages VALUES(84,310011,'parse','transactions','{"supported":true,"tx_hash":"1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84","tx_index":12}',0,'TRANSACTION_PARSED','1afa4fa28e1ef63b2b67c288e078cfeb109a2b236558ab5544eedc7f171e0a84','b948de6f3546d89a2738229d52526297de6c555d2c0ce8b689d233ea58fdd0a2');
+INSERT INTO messages VALUES(85,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"671a1b4e1edd1f96dcfcc96d521fb2125ae5b9d2d01a76fc66686b7ed20c5662","messages_hash":"ecf1aca37d71aa31b875ddb79d80eaa8594553337ed23ba2186c92bca429eba1","transaction_count":1,"txlist_hash":"aa59f74f7d3eeee95415b1bca4a090036cd9a2efb187880f7c72c69dc1bfc059"}',0,'BLOCK_PARSED',NULL,'d9ae70762b9fc7ddf7760173c74999cdea08e300086b97a008e41c1e687d7baf');
+INSERT INTO messages VALUES(86,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96ac3fd3366b9a6ed22b7d8565ea38b31d082e712fac36d6cac33976a7a902f4');
+INSERT INTO messages VALUES(87,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":5430,"data":"00000028000052bb33640000000002faf08000000000017d7840000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13,"utxos_info":"ca6f5f8dbb4762a0265e98f35666e86903031938b65dab59e63ba89242f60f62:0"}',0,'NEW_TRANSACTION',NULL,'df804e8071d0410b7e5cc0ff595229c900dbc575f89d940b730e1cb3ac7866a5');
+INSERT INTO messages VALUES(88,310012,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":50000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','70f6f0b9fa49fb65bb982cede68ccd037f6cd29778177bb57467d48c84e47887');
+INSERT INTO messages VALUES(89,310012,'insert','bets','{"bet_type":0,"block_index":310012,"counterwager_quantity":25000000,"counterwager_remaining":25000000,"deadline":1388000100,"expiration":10,"expire_index":310022,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13,"wager_quantity":50000000,"wager_remaining":50000000}',0,'OPEN_BET','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','66c253696a6e51c797308f8f4cde5a513df553fa8f7553e067484f9e8b47b728');
+INSERT INTO messages VALUES(90,310012,'parse','transactions','{"supported":true,"tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx_index":13}',0,'TRANSACTION_PARSED','7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81','d46b6c40bed1c2ee7ff5fbe71e0687f25800173ae3f9242fc997ddbef49abd77');
+INSERT INTO messages VALUES(91,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"1f5b502c341699b5a59b87566c0fc02b7db5c657919f014e41a00303aa53efc8","messages_hash":"20253d51becea71521f4d33525ecbd2dab9181ea15f310ced86852d6c887fe98","transaction_count":1,"txlist_hash":"ba55fd791587dad14742ad66d1515992a076eefbd54d1215806aa9db3811cf50"}',0,'BLOCK_PARSED',NULL,'0a7f2ef8d3695e50f5279b038ee8ec5d44d3ec9bc9f9376568ba645111f70be2');
+INSERT INTO messages VALUES(92,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e42d80923989320383aa51066668e567bcbc85ed8e188264766d1353791d04b4');
+INSERT INTO messages VALUES(93,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":5430,"data":"00000028000152bb336400000000017d78400000000002793d60000000000000000000003b100000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14,"utxos_info":"b055a68d3f2f53e7b4a413d48206a9a02f5ab56f7b948f36d0ef993cecf876b2:0"}',0,'NEW_TRANSACTION',NULL,'a080ed6409ae81d48d1406e0403423676a4f90b8baff44a00caec54a46e1b71e');
+INSERT INTO messages VALUES(94,310013,'update','orders','{"status":"expired","tx_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59"}',0,'ORDER_UPDATE',NULL,'af51d2f0c803d00647c88d12c5ac994a789d7fea5c79d78a05cfd13c9051387d');
+INSERT INTO messages VALUES(95,310013,'insert','order_expirations','{"block_index":310013,"order_hash":"6bdb2ef465e9fc04060f58ced26c159dc983a616cb121c5e7954e66833444c59","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'5291c4dd9594c262f437f9bb4d809a12e418742405cc2908d230930f751e7c0f');
+INSERT INTO messages VALUES(96,310013,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":25000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','b8f1234ea4e5eaa893a3488c6f23341a583a7a929dde4cd9a1e68c242d326fe1');
+INSERT INTO messages VALUES(97,310013,'insert','bets','{"bet_type":1,"block_index":310013,"counterwager_quantity":41500000,"counterwager_remaining":41500000,"deadline":1388000100,"expiration":10,"expire_index":310023,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":15120,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14,"wager_quantity":25000000,"wager_remaining":25000000}',0,'OPEN_BET','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','785a2773df52243f176aae4587db5767bd3107076b7c077fda9a6c34aeba1e3e');
+INSERT INTO messages VALUES(98,310013,'update','bets','{"counterwager_remaining":4250000,"status":"open","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","wager_remaining":8500000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','5ce0a52fb168b8734f3c361c4021cf85d545662e8d048700604f31b16d49d6c0');
+INSERT INTO messages VALUES(99,310013,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310013,"calling_function":"filled","event":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","quantity":4250000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','e53091ead0df0e76e2c172adcf89d9cd5bf56d037915404bb44eb7b4e2b1138a');
+INSERT INTO messages VALUES(100,310013,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","wager_remaining":4250000}',0,'BET_UPDATE','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','7cfeb69f1a7dd062fb3183d5487ad2f20738fba26b1e8f2a4ea5e509752b956b');
+INSERT INTO messages VALUES(101,310013,'insert','bet_matches','{"backward_quantity":20750000,"block_index":310012,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":41500000,"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","initial_value":100.0,"leverage":15120,"match_expire_index":310022,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310012,"tx0_expiration":10,"tx0_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","tx0_index":13,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310013,"tx1_expiration":10,"tx1_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx1_index":14}',0,'BET_MATCH','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','b86be276f33679560a63f27f5ed7e00852bc0e7a99ec39c4b4341948c1459e38');
+INSERT INTO messages VALUES(102,310013,'parse','transactions','{"supported":true,"tx_hash":"e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","tx_index":14}',0,'TRANSACTION_PARSED','e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42','492ece2a98a3de745f2044abe9bb76e92b6675eb2208aab06ed09136197c4623');
+INSERT INTO messages VALUES(103,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"cd0cfff6de5dd4381301929c740015d5910339ba915a83eb4229ecb91ae84c17","messages_hash":"db3dc80b0d4d31ceec1d5810030b79d1ed55926d276c9c5ea7c8d30a376148aa","transaction_count":1,"txlist_hash":"6c03bbdc682356647ad229247ed9d4000c2ffd03696695e0277c43b4e4d8fed8"}',0,'BLOCK_PARSED',NULL,'cc795dafb459113dc4da368be50482d84085545ec2dc5622917aef92566cb3ac');
+INSERT INTO messages VALUES(104,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3bf9f89256055da6380e1dd2d304c9939e83686f03668e9b6d713466860cf01');
+INSERT INTO messages VALUES(105,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"00000028000052bb33640000000008f0d1800000000014dc93800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15,"utxos_info":"5f55a6c0910642e7ba83dbcfa2d6990d31539f532a2ef427b099dbe2db75a236:0"}',0,'NEW_TRANSACTION',NULL,'303b692700058047b33e7d350125ca457c4c3a2d5fe8ed9fb12c65913aa770db');
+INSERT INTO messages VALUES(106,310014,'update','orders','{"status":"expired","tx_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c"}',0,'ORDER_UPDATE',NULL,'7836c73aaf3bd0cd893a3231584c2ef2e2b7c22fc9168377e04fbd26fbd6abc1');
+INSERT INTO messages VALUES(107,310014,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"calling_function":"cancel order","event":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","quantity":5000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'add1a1025224f97de2217ab31eed0bf261c7fc647603c3fa0c6894004de18e20');
+INSERT INTO messages VALUES(108,310014,'insert','order_expirations','{"block_index":310014,"order_hash":"36d00f8c35a9c6ecc7dd0a64610b1c39a71110d1a95face6a2486a6a7a1ff83c","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'a1646fb795621dbe67dae48969125038e39f0ddd7c18afd0a83684264dd68b7d');
+INSERT INTO messages VALUES(109,310014,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310014,"event":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","quantity":150000000,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','2ea9f1be474319a01a5b00093580164af9ce5364a20b6fe7652ae00d79740d0b');
+INSERT INTO messages VALUES(110,310014,'insert','bets','{"bet_type":0,"block_index":310014,"counterwager_quantity":350000000,"counterwager_remaining":350000000,"deadline":1388000100,"expiration":10,"expire_index":310024,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15,"wager_quantity":150000000,"wager_remaining":150000000}',0,'OPEN_BET','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','e1896bd738fea5f346bcde783451b53e0e8bb3acbad5ef5382b776240f5de465');
+INSERT INTO messages VALUES(111,310014,'parse','transactions','{"supported":true,"tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx_index":15}',0,'TRANSACTION_PARSED','3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a','371f3b6ee20bbf9f25c13bd47b95a3997b618f8fb0d3e2cd398d3a9b6d31a848');
+INSERT INTO messages VALUES(112,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"5012d84065c7a39b5563f4fadeaf30670b47df3856f43d40fda74de663753e4e","messages_hash":"3ab1bce56bd47b2a842921f69e90b4815ab1de528680a24499831888efd83e71","transaction_count":1,"txlist_hash":"99b41cf441ebd1ad46c14b34a3da79586aee124ae643f196f23f0eadb9fbe50d"}',0,'BLOCK_PARSED',NULL,'7bf391c5b527d886c14fc090d628422cd32f505e1da84c9f52f0c290e6b9aee9');
+INSERT INTO messages VALUES(113,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1ea3fccb1e9b6198e6f5bb407c5e9c9176cf640bdefc2e400d67260dfa6bb59c');
+INSERT INTO messages VALUES(114,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":5430,"data":"00000028000152bb33640000000014dc93800000000008f0d1800000000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16,"utxos_info":"32229c87e88ed2c3796ca5bb209c31c36e2ed7bcb8ba20ea36ca395db23c47e1:0"}',0,'NEW_TRANSACTION',NULL,'3261e4a305e2eb66c73d1b6b3be6e8384b36165cc217986ee4ab38521919aedf');
+INSERT INTO messages VALUES(115,310015,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":350000000,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','020ee8637b90e7faac7c56e4a1dfbba9d17fc3391efe5ad77ad230be00e9c8f2');
+INSERT INTO messages VALUES(116,310015,'insert','bets','{"bet_type":1,"block_index":310015,"counterwager_quantity":150000000,"counterwager_remaining":150000000,"deadline":1388000100,"expiration":10,"expire_index":310025,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16,"wager_quantity":350000000,"wager_remaining":350000000}',0,'OPEN_BET','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','5c6644c050c6a275d7708db146d3949651134107b61f7d8e11015db9b03d099f');
+INSERT INTO messages VALUES(117,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','d4cb80e1fd56a0a95cec5c1d8ed83e3cd7107a1883e1141c06f98dce82d418eb');
+INSERT INTO messages VALUES(118,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','6051bf9b540f02e60d9684da4f1518a038047a024ce514dc6e8c8357edd21ebc');
+INSERT INTO messages VALUES(119,310015,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310015,"calling_function":"filled","event":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","quantity":0,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','8c06165af4badcd7dbacc58b68bdb5cff290f94739685637125b6ebefa05b0cb');
+INSERT INTO messages VALUES(120,310015,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","wager_remaining":0}',0,'BET_UPDATE','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','b174b8b28e1bf16c740b2e8db877478477f43219b503da747b27034941cd5fac');
+INSERT INTO messages VALUES(121,310015,'insert','bet_matches','{"backward_quantity":350000000,"block_index":310014,"deadline":1388000100,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":150000000,"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","initial_value":100.0,"leverage":5040,"match_expire_index":310024,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":0,"tx0_block_index":310014,"tx0_expiration":10,"tx0_hash":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a","tx0_index":15,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":1,"tx1_block_index":310015,"tx1_expiration":10,"tx1_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx1_index":16}',0,'BET_MATCH','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','104745dd269e30e0ef7715c9f52126448e11b0505b7e9560cd27b9c98932bd55');
+INSERT INTO messages VALUES(122,310015,'parse','transactions','{"supported":true,"tx_hash":"a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","tx_index":16}',0,'TRANSACTION_PARSED','a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8','5f7535b551603a3503696bb6c2e7ef26c0bb5965caa59b8805b277635c0fa3af');
+INSERT INTO messages VALUES(123,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"0356494d376b2b65b9f4b066b9d2baf2ae90d82369b87914bb58a67927ced5af","messages_hash":"d7dbf3e0d6c03945135e5df2c126ded1c04d554c4b535df4c8ff50bca1e58153","transaction_count":1,"txlist_hash":"c6fff3cf22683f773cf2941f0eb9b5ed84647569c76d40cba61ca444852fceb6"}',0,'BLOCK_PARSED',NULL,'7541d3437dcdf36b9a96e4add367fd9cad44de65b270b1b3eca5837716542895');
+INSERT INTO messages VALUES(124,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d25303960701cbb7bfeb6e07f6e4136fd07f6b25523a8d0c2eb9380265cd79aa');
+INSERT INTO messages VALUES(125,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":5430,"data":"00000028000252bb33c8000000002cb417800000000026be36803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17,"utxos_info":"2f07b60bdd5d909b98f1a40d4677b4d89435e42e5e5f4116bc1d33c4179ffa91:0"}',0,'NEW_TRANSACTION',NULL,'1aad0a023da090b501c3fe7844ddf4666c361b6aa11a83fac9987f388b2169ae');
+INSERT INTO messages VALUES(126,310016,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","quantity":750000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','45ef5286f10e17d24548694ca6bfa83f082d74b24754cf25673117c37aaa731b');
+INSERT INTO messages VALUES(127,310016,'insert','bets','{"bet_type":2,"block_index":310016,"counterwager_quantity":650000000,"counterwager_remaining":650000000,"deadline":1388000200,"expiration":10,"expire_index":310026,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17,"wager_quantity":750000000,"wager_remaining":750000000}',0,'OPEN_BET','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','512be1a759b8396b4e01dc185d9198f00354630ab73ec4915bdca38f9d44245e');
+INSERT INTO messages VALUES(128,310016,'parse','transactions','{"supported":true,"tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx_index":17}',0,'TRANSACTION_PARSED','194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5','84348764275ae1b9143323a32a41dd0e52780d34fe92bdda277cf330b64591a3');
+INSERT INTO messages VALUES(129,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"c90ff439bd04970ed9e6e25cbfce32160450925a37ba3360f40df8854529b52d","messages_hash":"126f9ed605cd865b30c7078348f7f992de3ac4956de6a27d0a55d2b7ca62031e","transaction_count":1,"txlist_hash":"16e32aeb7155ac1b89e47925bb2367269d4fc81e9da0558266ad9722843202fd"}',0,'BLOCK_PARSED',NULL,'9ee090ca93ff9d42e0c33f1afeac02a99b07acd0d471a1ca7ed7c26930eda4ea');
+INSERT INTO messages VALUES(130,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa592fc4dc8e84cad02dfb8090fac07eae773f0af5ecaaabcff8dc500614c5e2');
+INSERT INTO messages VALUES(131,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":5430,"data":"00000028000352bb33c80000000026be3680000000002cb417803ff0000000000000000013b00000000a","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18,"utxos_info":"14059c8fae8c962dfd064d7f1820e95ee53256aaa2814914e1a1c3ae865ffa17:0"}',0,'NEW_TRANSACTION',NULL,'e2539481feb7d5ceea80453e814dbaf28be14495304f1e0228936ca8b12d4e81');
+INSERT INTO messages VALUES(132,310017,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":650000000,"tx_index":18,"utxo":null,"utxo_address":null}',0,'DEBIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','bc074c98f2f5a9f0c1d92663708b4f74b14ada1e851b0617b403e7f0a6e4a022');
+INSERT INTO messages VALUES(133,310017,'insert','bets','{"bet_type":3,"block_index":310017,"counterwager_quantity":750000000,"counterwager_remaining":750000000,"deadline":1388000200,"expiration":10,"expire_index":310027,"fee_fraction_int":99999999.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":1.0,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18,"wager_quantity":650000000,"wager_remaining":650000000}',0,'OPEN_BET','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','d34357a0cb54bd4633d1a64d9671f7ab087e655a828552b97e9038bec60ed987');
+INSERT INTO messages VALUES(134,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','60163aa5c7fc334a8ede8c1e19d94db219166cc95dfba5e46baca0e965110ba9');
+INSERT INTO messages VALUES(135,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','3dce88bd0bef298158276d7066a52eef3e5877d06981031c24f8bbb8046f9562');
+INSERT INTO messages VALUES(136,310017,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310017,"calling_function":"filled","event":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","quantity":0,"tx_index":18,"utxo":null,"utxo_address":null}',0,'CREDIT','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','1f9495bc9a72320e2adeb52288af28e6e0b41170b04d54fd01bbe1ab64ebbe32');
+INSERT INTO messages VALUES(137,310017,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","wager_remaining":0}',0,'BET_UPDATE','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','57abc87b11d87e5a77bbaa6ea43da364907e8cbd81bdc57fdd2f05cea62c3fea');
+INSERT INTO messages VALUES(138,310017,'insert','bet_matches','{"backward_quantity":650000000,"block_index":310016,"deadline":1388000200,"fee_fraction_int":99999999,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":750000000,"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","initial_value":100.0,"leverage":5040,"match_expire_index":310026,"status":"pending","target_value":1.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":2,"tx0_block_index":310016,"tx0_expiration":10,"tx0_hash":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5","tx0_index":17,"tx1_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_bet_type":3,"tx1_block_index":310017,"tx1_expiration":10,"tx1_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx1_index":18}',0,'BET_MATCH','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','7b2ba52df0267e7df8f688cd57abe6aa0e27d0aa25643b5a53e740e7b3a3501b');
+INSERT INTO messages VALUES(139,310017,'parse','transactions','{"supported":true,"tx_hash":"72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","tx_index":18}',0,'TRANSACTION_PARSED','72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207','f85318973e66404b55c86de5da2a5ef8a6ce0f3fa890b4fd463ed2d6e0133aa5');
+INSERT INTO messages VALUES(140,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"19cf18f708dab6a983a2642802deb38d25b6fc205ea663059a0569fa38bdaf8d","messages_hash":"1498e259a0f5b7ffa9ffdee077353a8917e8e9dc33ae39a0516b1b2082322e52","transaction_count":1,"txlist_hash":"94709d5f6bcb8df437947be80ac95e2e716a92645f3eec2d915cb7c088504f1c"}',0,'BLOCK_PARSED',NULL,'a161e603f6cc4ed0e30687f7ea9e0ea601fbdc44248ef28da04f876274923282');
+INSERT INTO messages VALUES(141,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18706b3adf1516f37d61ae1fd6ee5fa2d5eb7b040c3fefca55dd5a8614fd9e92');
+INSERT INTO messages VALUES(142,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e52bb33324058f7256ffc115e004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19,"utxos_info":"b58a8553f112f012c14b3cfa19b489e6171f3ddd6664340edfde4395489ec7ba:0"}',0,'NEW_TRANSACTION',NULL,'abcb191d4396db99f0382e2a5bec088e2166ba0a2d3439e1b363b939535081d4');
+INSERT INTO messages VALUES(143,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000050,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19,"value":99.86166}',0,'BROADCAST','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','bc51e59ee326c2663437ac5d4a3bbd71dc0453217ff9d77d3f6cabf1823a4c4f');
+INSERT INTO messages VALUES(144,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"bet settled: liquidated for bear","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":59137500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','8ea730aec3168423f85ac82a61a2499b319e2047bc0c07b922478ed29edf126d');
+INSERT INTO messages VALUES(145,310018,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310018,"calling_function":"feed fee","event":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","quantity":3112500,"tx_index":19,"utxo":null,"utxo_address":null}',0,'CREDIT','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','c8606a9b2f4f363ba333c6b2b580521f7d473c000408445f0e05e61a8b295a43');
+INSERT INTO messages VALUES(146,310018,'insert','bet_match_resolutions','{"bear_credit":59137500,"bet_match_id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","bet_match_type_id":1,"block_index":310018,"bull_credit":0,"escrow_less_fee":null,"fee":3112500,"settled":false,"winner":null}',0,'BET_MATCH_RESOLUTON','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','538a6be3c07eff8b8fb45186218a1dda75bb1eb321be26cb793eb7e1b37db325');
+INSERT INTO messages VALUES(147,310018,'update','bet_matches','{"id":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81_e566ab052d414d2c9b9d6ffc643bc5d2b31d80976dffe7acceaf2576246f9e42","status":"settled: liquidated for bear"}',0,'BET_MATCH_UPDATE','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','2aa8c8a2b7ccfdf1d844b0f6f1812036a5b9dd316a12fca8ea23798b9c007b1f');
+INSERT INTO messages VALUES(148,310018,'parse','transactions','{"supported":true,"tx_hash":"065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f","tx_index":19}',0,'TRANSACTION_PARSED','065de641fd87c0b3ef893130ef4a3dca7643b7a35f6d18c721f34a7a36a5992f','be1bab15599e61de09faeffab0167b66c2bc6b60c3687ac34295d36f92678958');
+INSERT INTO messages VALUES(149,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d9ac565fbe7bf18c1d899dab8e0c98e070880e36fa51710382017d46ddf837cf","messages_hash":"eb733b49a260457265085cac5cdc418645d4dc45a6cfe6af4fc455fc44c86e2f","transaction_count":1,"txlist_hash":"e3e2ebfcee41e92d855051b2c2e4344600646ac3ac5b335084d5f5a23e872f3b"}',0,'BLOCK_PARSED',NULL,'2d1c7282ca66a8f2a6e2333e7522c9075891b339b33dae15743610752af88d84');
+INSERT INTO messages VALUES(150,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74126fff7bd0c84cfc88f2bca236ab4d3953d5bc3524a056938c7b3dab057a2c');
+INSERT INTO messages VALUES(151,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":0,"data":"0000001e52bb3365405915f3b645a1cb004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20,"utxos_info":"d34810e3caeb03c0ad4047d0cc5461583f3f2471e358037fe69bf6cb299cb3ed:0"}',0,'NEW_TRANSACTION',NULL,'f5fcb5cd9492308bf42f5f55f76784df8e05060d82ebb5801b4bac9b81405c2f');
+INSERT INTO messages VALUES(152,310019,'insert','broadcasts','{"block_index":310019,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000101,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20,"value":100.343}',0,'BROADCAST','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','a89bdd37df792d3765807cef90907cee59af4b4d5f06508ee7b5b3c63f04226d');
+INSERT INTO messages VALUES(153,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":159300000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','24eceac8d84bb0d3e1a43cb285a563430eb546215299f801e921c0843c4d6352');
+INSERT INTO messages VALUES(154,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"bet settled","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":315700000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','99be69c1d2473f047e4f008a6bef38cde88f26ccc875dc96fd07209f09f67ec7');
+INSERT INTO messages VALUES(155,310019,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"calling_function":"feed fee","event":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","quantity":25000000,"tx_index":20,"utxo":null,"utxo_address":null}',0,'CREDIT','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','e4e2fab79bea68eea05379238fc46ef3b80bbddbf394ffe4f948852a2c64fa22');
+INSERT INTO messages VALUES(156,310019,'insert','bet_match_resolutions','{"bear_credit":315700000,"bet_match_id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","bet_match_type_id":1,"block_index":310019,"bull_credit":159300000,"escrow_less_fee":null,"fee":25000000,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','eb60a10264e0bea453b7f8d6550ab074a6d15e8d2e19f8271039e4268dcca97b');
+INSERT INTO messages VALUES(157,310019,'update','bet_matches','{"id":"3d3ae119aa3891770b7ae1e1ce34062b7a850593f39a96b6df19d69960d4a76a_a73843f1c9197674ba45e3aa92ed0671062c8acd8955e6b1e4d10dd149f40bc8","status":"settled"}',0,'BET_MATCH_UPDATE','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','9d388bac483c35f82c6ac2271ba7b68b4406a4e35868e78f25bb0116ce7e46b8');
+INSERT INTO messages VALUES(158,310019,'parse','transactions','{"supported":true,"tx_hash":"7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e","tx_index":20}',0,'TRANSACTION_PARSED','7cc015005c559686a8e10294015ca1773c0bcd9f4d7d9768deb4bb94cdd4a69e','faccff7414d3bd9899ac295c3a8e7ba2461e6e1c9c9caf008d29abdc16da7891');
+INSERT INTO messages VALUES(159,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"b66661deef419a50557d171cc1bcae04f5bc260ed1f5ff56cf08ef39158617a1","messages_hash":"d501dc8943d9fbfa1e6ae9585b430720d956e7fc1521869e2d62352ab765be62","transaction_count":1,"txlist_hash":"c89d7fa5df5eab9ac8a57f00c6cc2b9d75244ce412e12eb842c6a43297ee41a6"}',0,'BLOCK_PARSED',NULL,'f889b05032efb2f2195be2b8bf220ec9df2b4084a70543a275a247cff8b85651');
+INSERT INTO messages VALUES(160,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0f376b0e76f9858163e961a07f5bc109c80e3945c7e87a728e75a319e9bd2b8');
+INSERT INTO messages VALUES(161,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":0,"data":"0000001e52bb33c94000000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21,"utxos_info":"d8ff0c81bb265ca70b0c28293b6042b707f9d1d30fb0145c3618c72455d881cd:0"}',0,'NEW_TRANSACTION',NULL,'82a24a8b3a8bfcac041258e69e6574893674f19008feeba1c3ea99b3e9abb32d');
+INSERT INTO messages VALUES(162,310020,'insert','broadcasts','{"block_index":310020,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000201,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21,"value":2.0}',0,'BROADCAST','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','f9f84c19bf5f0cfdbc51644fc4d7d4fbfb1c6793785eb9923ffc6f42f2796fca');
+INSERT INTO messages VALUES(163,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"bet settled: for notequal","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":1330000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','2caca1af62544174fe11e2a98532a0fc9ddd51257c804c301e69ed87168c3314');
+INSERT INTO messages VALUES(164,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"feed fee","event":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","quantity":70000000,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','0782d2996a1f34dcc3323ab2c131a6f7922e127eb0ad192db277c374695877cd');
+INSERT INTO messages VALUES(165,310020,'insert','bet_match_resolutions','{"bear_credit":null,"bet_match_id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","bet_match_type_id":5,"block_index":310020,"bull_credit":null,"escrow_less_fee":1330000000,"fee":70000000,"settled":null,"winner":"NotEqual"}',0,'BET_MATCH_RESOLUTON','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','3e394d251ec5b57eaaa651a9ca597e67beaa1c2ab44857f5fc9c33cb1a3a9799');
+INSERT INTO messages VALUES(166,310020,'update','bet_matches','{"id":"194a87d56aecedf43bb9724b6f20f10626c26c00267fd108db843772e5ee41f5_72baa141e136cbafc08ee2f6c8e5841076c7573d5d5cd619f45149bf84a6a207","status":"settled: for notequal"}',0,'BET_MATCH_UPDATE','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','ba9f7ae36711bf51c02941dd34d0695272793aeeeeb2f02272cfde30f15f1836');
+INSERT INTO messages VALUES(167,310020,'parse','transactions','{"supported":true,"tx_hash":"0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9","tx_index":21}',0,'TRANSACTION_PARSED','0899b8bccef3403252fd7d37ec550eea3350845dca098368b84bf4c3c48d3fc9','aa2f9ac46cabeaeda68486bc10a9cef5c9ed142c1441365593170d3ddc37ebea');
+INSERT INTO messages VALUES(168,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"57a6c53e41338011cb06cd60118961dcec0e800f62a2c4b1e9381c666319680f","messages_hash":"6721c364682fa68f26ba3c3dfe6e7d572c9846469bb90dad12326c8d19dc5afa","transaction_count":1,"txlist_hash":"5d8f062b1b5c6740eed53d90f4cd10a23f273237bda588f42fa35653a9fe5feb"}',0,'BLOCK_PARSED',NULL,'bab4d6635aba3c2635a9e1a09f49d6df2a387ea7209ac43e80f3a3b45a7bc623');
+INSERT INTO messages VALUES(169,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5fbe971ac0f9cf44ca3dc9c50ab1136629a8466f98d9e0d276593c9364f266a');
+INSERT INTO messages VALUES(170,310021,'insert','transactions','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"btc_amount":0,"data":"0000000a00000000000047670000000002faf08000000000000000010000000002faf080000a0000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22,"utxos_info":"7072487856a3c59ab919efb969b9c9701006d6bfcf65d9e3bf9ab34f50a5bf41:0"}',0,'NEW_TRANSACTION',NULL,'c70baf422aa1075069af93679782bc6e0977c7e0f29d36420430fa86d814c304');
+INSERT INTO messages VALUES(171,310021,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310021,"event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":22,"utxo":null,"utxo_address":null}',0,'DEBIT','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','47aee63dcf5104ca751e4304317c8f6fcd9a33073b0be45f985bd2983bc335ec');
+INSERT INTO messages VALUES(172,310021,'insert','orders','{"block_index":310021,"expiration":10,"expire_index":310031,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":50000000,"get_remaining":50000000,"give_asset":"BBBB","give_quantity":50000000,"give_remaining":50000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'OPEN_ORDER','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','924298205fb991b34639474e6df4257fa53d9407edfeae6c7166f615544b92a9');
+INSERT INTO messages VALUES(173,310021,'parse','transactions','{"supported":true,"tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","tx_index":22}',0,'TRANSACTION_PARSED','eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a','325982570c621daa1905abb30f050c82305b9ba3d495195270c6b3735ae0ce1a');
+INSERT INTO messages VALUES(174,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"66c16af10125f298796da828f1a6c2b43123cda38e3dfc57ccc25b00f3da17f8","messages_hash":"670756f732d49f35c64b8731329dde392e8ca618ffe07cf895823d638bd175ca","transaction_count":1,"txlist_hash":"94b751bb8af2f91fb1933dfae1edaa636836fe1f9100edc5c6b8bc793fea4b47"}',0,'BLOCK_PARSED',NULL,'3011eb27d1cda4eebe2e02221489da98e196dccdfc30f38b1e5f85de9357ca59');
+INSERT INTO messages VALUES(175,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40daca8f3ce1b3ea3f0d8ad4ee67d12700934bd31b1e2fc2ca3c98a2675eca05');
+INSERT INTO messages VALUES(176,310022,'insert','transactions','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"btc_amount":100000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":10150,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23,"utxos_info":"b5955ae6d9087334db96b8605fd785eead5c7abb4200b94b30c327c31dc23534:0"}',0,'NEW_TRANSACTION',NULL,'fe001d4a5d2af7480f1d96e5e89500626683ca9ff4fdb47d33642f47233db099');
+INSERT INTO messages VALUES(177,310022,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310022,"calling_function":"burn","event":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","quantity":56999887262,"tx_index":23,"utxo":null,"utxo_address":null}',0,'CREDIT','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','068c0fd857c0d3bfeceab5c7b7a9b70e1ea173027983b387f4740abd1a750087');
+INSERT INTO messages VALUES(178,310022,'insert','burns','{"block_index":310022,"burned":38000000,"earned":56999887262,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc","tx_index":23}',0,'BURN','c3f73d02e630cb2824f044e6d91f47b1ce351feff0339ea7b85652d24d8ff6bc','e6e1769c0cdeca5acad1a094d3ee6e012863b37e076244df9cff0d9649ba4bcc');
+INSERT INTO messages VALUES(179,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"43b6213cad601a389aed2a4e912be118dfab6cca5358d86bac03f4bee6765493","messages_hash":"abb0f7fb1bd17273de7a43bdfd2b6786a9b8f2a1f3be6b4da3ef5189ad73566c","transaction_count":1,"txlist_hash":"fcb847408d5ee30ef86a94a0495f53670b1157d4f33d627b62ebd84fb1321cf5"}',0,'BLOCK_PARSED',NULL,'9d8e27bdd0a2dbbc1f4344304494cbaa1a110b4d6a28cb551cdbde44ae4cf5df');
+INSERT INTO messages VALUES(180,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fd449208b5740f7e64b685e607140fc7f96d3e3ddccd623215c6c0e3fa07c08');
+INSERT INTO messages VALUES(181,310023,'insert','transactions','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"btc_amount":5430,"data":"0000000000000000000047680000000000002710","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24,"utxos_info":"92a935a2d4d4072b79fe703a72bc9bcad6b6afb518af8ca11c92d4ca06ce465a:0"}',0,'NEW_TRANSACTION',NULL,'05f8f7554291249ec2445f3f7fe0b4cb1b7afd183716cd828ee778a166988f5c');
+INSERT INTO messages VALUES(182,310023,'update','bets','{"status":"expired","tx_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81"}',0,'BET_UPDATE',NULL,'e62b97e9af5692e32749c695ad9a0737b8a1beb95e9caea33e3cb0d82b86adb0');
+INSERT INTO messages VALUES(183,310023,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310023,"calling_function":"recredit wager remaining","event":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","quantity":8500000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'70ba020017277a1b2ba341f98602088d7e293077bb700d6343cd787c35e64177');
+INSERT INTO messages VALUES(184,310023,'insert','bet_expirations','{"bet_hash":"7025ded3ba412d1285be69c8aaa02773b8f4e2504310832c99a9b171b7e07e81","bet_index":13,"block_index":310023,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'BET_EXPIRATION',NULL,'867e865aef8c9b33ad65ed40723317767d71376a8882eaafd5faf26ccee7c72d');
+INSERT INTO messages VALUES(185,310023,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBC","block_index":310023,"event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'DEBIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','aa92f4a04134c5efa5642dbdf373a482c05eb7377af2edf9b14c34d893c4b431');
+INSERT INTO messages VALUES(186,310023,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"BBBC","block_index":310023,"calling_function":"send","event":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","quantity":10000,"tx_index":24,"utxo":null,"utxo_address":null}',0,'CREDIT','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','3209aec06414a7f465902b353b2bdfeadfc8f782db42f96f45b9ccd416c4401f');
+INSERT INTO messages VALUES(187,310023,'insert','sends','{"asset":"BBBC","block_index":310023,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":10000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'SEND','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','01c7030f60fc607bf2797be5a2dd7158094218b18a225d5a6654accd0bdb06d0');
+INSERT INTO messages VALUES(188,310023,'parse','transactions','{"supported":true,"tx_hash":"58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab","tx_index":24}',0,'TRANSACTION_PARSED','58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab','2ae713187ea78c48dfad13ec2502286ab39801274b7eb323886a871d49940fc9');
+INSERT INTO messages VALUES(189,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"8a9758963891bbfbdcb6515d8d3e49c941fedba7de82038776e9f8ed65e803c1","messages_hash":"c6a825980dbe6ff39f04b72548a2490b3c814da34a2744319a3b903448d4ba19","transaction_count":1,"txlist_hash":"d21109a870f8542e8ef40f6d72e36fb0bb5ac4ad1e7b3232ba1b2bdcc735810e"}',0,'BLOCK_PARSED',NULL,'7e11895e797087c67f605b77af31cdc3cd7733b115887c77bc9983ffcf5fcd3e');
+INSERT INTO messages VALUES(190,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ec55ed02e32f5568acead2ca05db86d9faa13c4fe7026792d58303297418f8ae');
+INSERT INTO messages VALUES(191,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"cb034ab4a3e252fdfe9973a672e208295741a52634c9332b1501d612e0012e19","messages_hash":"aa67e27468ba6bfbd0f7e197b6d12b492757ed4fd97afb371862ba7747252e01","transaction_count":0,"txlist_hash":"52bcbfb439bfc9cf14e38d39a9d6c401a8798a20fe64238f070125e8e7905151"}',0,'BLOCK_PARSED',NULL,'3589889261205410e7cad45d1625e0751cb0529609aea7cd014661e918507d0e');
+INSERT INTO messages VALUES(192,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34b30e92c557b080582d16b3496ea545162a9fc6c953a351e8c1a06cb5480411');
+INSERT INTO messages VALUES(193,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"5addc8253469d5c729cdffc1c637b75d9e8886a633d4406dedf2b1c16ba5b92a","messages_hash":"c798b5e8a7cdcd8490670fe01e7adb3ec2394dc8e4efaeda1e90e0a8b75b8c8b","transaction_count":0,"txlist_hash":"e2d8891737534dde276dd1f7f51d42558b9ad60d88baada83f75951905e6f174"}',0,'BLOCK_PARSED',NULL,'814c587f0de6a4ecb135221a1decad7d78a236bcb4868257caea0553c146ccbb');
+INSERT INTO messages VALUES(194,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'081c5196534dc299b3fa8d9cd1ccc3ebd6fd82f40326257ce70e8c42478b3be1');
+INSERT INTO messages VALUES(195,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"8620bd0283c320330631185d1b2351718f174732bd099324a0880719cdfc18c7","messages_hash":"9cdd8b03f2f97aa4f68317d23a35d7019cb97204d904f0cd0a86a4e4410a8203","transaction_count":0,"txlist_hash":"e7b6699c8b2b5857b60004dec9aa8aeda30ef42483ca16bc79e4ecdc1c0b4ce7"}',0,'BLOCK_PARSED',NULL,'3b0ff83f69ddd1964a3ed53357c34ccb1fddb3b9872ebbbf5e8499d1b5aa0deb');
+INSERT INTO messages VALUES(196,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2aba6d9146f95667f293a1c506672286baf48c52e6c2f42a821a349a6faa3090');
+INSERT INTO messages VALUES(197,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"96960e09478184f4f0ad38d1fc03f0c0240e58715a0a29745a6dc58c40003249","messages_hash":"a56a11bed2f5aa2f6deacfac41935e24a68599c875481376adcfd07e52262568","transaction_count":0,"txlist_hash":"a7e32b5f0b6568eff793a1d12d32ab594f3886b417a6491b6ec641d15e906e9e"}',0,'BLOCK_PARSED',NULL,'742413e718a89201d71c0a655dd0896b16c3e6864cf0a08994bca58f13e840ca');
+INSERT INTO messages VALUES(198,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d29b7eca9cd621dd2573ac5dd6f043b4fd14ddc8b4694788cb2809f0a2287da');
+INSERT INTO messages VALUES(199,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"2f556d2528abe1c4e9d31f6ed70d400d94633d4dfb54c9a4f250e1b054f9a384","messages_hash":"7c5a0f15673561d5bbea0c3b2bb3eb39bd48d51933b77e1878b44f706c872c25","transaction_count":0,"txlist_hash":"8b22bfc6153a2e742e843a5263194ffcf3ab985d934e212266ca400ed568e710"}',0,'BLOCK_PARSED',NULL,'7e4da26b28d28777678fa5e8a3470962f82d4f2b35c68d0f47f95f9e1ee8869b');
+INSERT INTO messages VALUES(200,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b3c068029a3519c70d945af1fc72db080843482a68da8ddd9e0edea75e4033c');
+INSERT INTO messages VALUES(201,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"be195b1f7b7b55dcefb83907d954736d4bf059a9e32055131efd16602d7761d6","messages_hash":"b149c15c7b0b3dd9478d4d597cebcd07f25f9184b1bd6e141c342b69b6e8a40a","transaction_count":0,"txlist_hash":"ad8654356f0a1ffb669528bf4c3625e9d43ce08d9dda7f1adc2e962b65d20b55"}',0,'BLOCK_PARSED',NULL,'8f3b0f1b04c201a7cc971c9e9d567ca586b9ac35c97719d0b029eef5f4f46a56');
+INSERT INTO messages VALUES(202,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07a13d25bb96230e4d6cf892654591fa5fdf4fcd4b452e8e704d21f95b88ac21');
+INSERT INTO messages VALUES(203,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d3a25656dbb63eecf1c89820581fcab193d750f3a09ca8ab34a5008c8d89051d","messages_hash":"fa4cc154359abb7e02ad1e08117acc4a0f44dfd338a41401879f2f58b81df711","transaction_count":0,"txlist_hash":"f9a6fb698ab5cf74c1d334f2bc3fc258738c330a5bf3614b8951c6f2d90263a1"}',0,'BLOCK_PARSED',NULL,'62a16be41ac16f194fdfa7ff7d935f66fce0789c28762e3b73587a817d30fac3');
+INSERT INTO messages VALUES(204,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1442f415c79274fd8b8cfca86fb96de0c7972bb4ee37004540926c3f5a5af83');
+INSERT INTO messages VALUES(205,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"0edb535f8c6a40062a86e4ea327cf7fb70310b6d55a6654d5a23e54498aa3159","messages_hash":"af787c59bd0eaeac32d81ada9454b886cf4f66b72adc9023c159f400a22eb5ff","transaction_count":0,"txlist_hash":"52c64812c82695720461525033471afc39749f788156239b06f72c7887206fa4"}',0,'BLOCK_PARSED',NULL,'0d6a9eaf9b18139627a1b8e456b271cf7d2a107e86c2cfe5bd3ad343f4cbfed5');
+INSERT INTO messages VALUES(206,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84d00a29a6eb11628e99e268e0689bc6ea9c7d8d071d8ddb2d4138f7db43b7c8');
+INSERT INTO messages VALUES(207,310032,'update','orders','{"status":"expired","tx_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a"}',0,'ORDER_UPDATE',NULL,'e6f3444fa5737ac7c39882b4144d7919a8e84a7580aaacc929673a1ab05f7197');
+INSERT INTO messages VALUES(208,310032,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"BBBB","block_index":310032,"calling_function":"cancel order","event":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","quantity":50000000,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'2a2b3ea82fbcfe488f067841ad0a3476d685782002d689b611b81e20827e1578');
+INSERT INTO messages VALUES(209,310032,'insert','order_expirations','{"block_index":310032,"order_hash":"eb5953f4e1dec30f0bf4741cb2044c11b6e1c3be20fef2111461f69d989b852a","source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'ORDER_EXPIRATION',NULL,'2d27ed783ed85ff9c3d5bc8055c3a6da0b39bb4b3a2bd35a95100632352267ae');
+INSERT INTO messages VALUES(210,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"a9208a1b7f782852d652e5089c6485744031176b4d285ea985bbc1df0ccf49c0","messages_hash":"3797c8af254fdf116c2ea57184f4fc7b7fbb231daaff896ed5f7fe469a626c12","transaction_count":0,"txlist_hash":"4089c5ee6e83c7fdb9d8f0df917268b807801e7f0fb477b6a7fb4b9f931601f0"}',0,'BLOCK_PARSED',NULL,'5e9674c6c54c44d989a9fad17a4a677a9ea1dfd87285484d6ae1a23e1a137e54');
+INSERT INTO messages VALUES(211,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74a8a034962917489a656390ffe840b6dbc1b63fb801424e6cc43efbf45a704a');
+INSERT INTO messages VALUES(212,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"c8a973eb6bdd28dcab4f1b2a5e29e104944745e57a54e6d87b370aafb2e589f6","messages_hash":"4f37b6d565b42f4868341125ba4aeafe4968440f24f7a0d664de559f93026a7b","transaction_count":0,"txlist_hash":"28e9816084711e62a27a7d33af7a023d9c375d67c6d7dd4fbe840d511d114fbb"}',0,'BLOCK_PARSED',NULL,'d0ef5104a01c05a379c06b54eece2b1202137b85e86c6655ad04b82c320442f0');
+INSERT INTO messages VALUES(213,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e33862c84b205ecc89217a4a5c59a6563854a1635e266b07cff2ff56ade180c0');
+INSERT INTO messages VALUES(214,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"0d7b5809b7a5aa5ff854cfe141490a78c9b33e16f8102a8e804dbf0a0a8c0842","messages_hash":"f52105f94398f097af677a8a226c0d9896ccc7724f455b0e7af802e73978dab5","transaction_count":0,"txlist_hash":"37532a1b8cba78b522775b2feabd9dc786b259b49ae54af0279fd84061fcaf90"}',0,'BLOCK_PARSED',NULL,'345e1791edf92cdbeb4092039709138051f741dd3d0ed4de7d8ee7b369bcac2e');
+INSERT INTO messages VALUES(215,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09931401854e52718fe80b864e8e017a1af5cd519483600a5d065ccf3f8a6680');
+INSERT INTO messages VALUES(216,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"6b4c99289086445a7bf575110172a661c1cd37c418b70afd8ef3be0982041f5e","messages_hash":"fb7cb709ab8d862382019c7ab164c561efaa2d43f59f27ecf48e285787e9b070","transaction_count":0,"txlist_hash":"6d74b1faad84274944078e3fa21083b3776e37da614acfc8d61987a1a48db51e"}',0,'BLOCK_PARSED',NULL,'5b17fe8bf0a9d07e3559daccc351abbd6dbc00604fbba8f80a6e064e4e743487');
+INSERT INTO messages VALUES(217,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d080434b44d9c65f7a13258733713b2f5213d39103faf136dd0b2f0d644edaf1');
+INSERT INTO messages VALUES(218,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"f20b81389b2f4c9c9be4442b3c68f87da881406f1490637c7d93d63539155a7e","messages_hash":"0ebabaa3928858badd8fc0b01d5dc56bc3bd3ff3ba991476f19cc292b1f78e4b","transaction_count":0,"txlist_hash":"246e6cb136a8e79ad87ccc6a2318361c689d4720a9000c1a404f3556dced1bfb"}',0,'BLOCK_PARSED',NULL,'58e309bdfa8568768bae18861050cfaa5eda0d978a6dbc550eb94a4aef5cf238');
+INSERT INTO messages VALUES(219,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3be6dbdc48e53cb593fece36eddb05210bf28878a57b725367838e29a7d3527');
+INSERT INTO messages VALUES(220,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"52d554e6b53b853066a3a8f931fc37779f3596c4388e277a9f66a95e001a09eb","messages_hash":"386df30f2469867e71c1188059e4d40a4b8c3987d613b054e2be27a4ddcd3b5f","transaction_count":0,"txlist_hash":"c4474243bf31bccb8aa11963c477e3d40bbdbf6c604edd86429c37b59d83b427"}',0,'BLOCK_PARSED',NULL,'6e448fdc84a03bab9ca7139c0c687b2c82888f3022fbe7a4eedca5b1373d9101');
+INSERT INTO messages VALUES(221,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'375b874a960f91210fa5ee8daa2851008c185e47221de4e096124a8bbdb75a12');
+INSERT INTO messages VALUES(222,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"08a949af614ff73a79313a5a949908b368efe1f8c131eeeb51ed610baf65ac46","messages_hash":"ed2a9ddc91c486da9f105da77c46deb90df12df89761074296a3e988620b7857","transaction_count":0,"txlist_hash":"791f23628ed99486b93754ee4e7a3717d2deee1ae60d4b80dd79c614e874c94a"}',0,'BLOCK_PARSED',NULL,'60f4a676cf6d1307b8a6cb5df2f09c98a932c160a4186023f7b85f00c50f1274');
+INSERT INTO messages VALUES(223,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4473e762aa13973f1b0ad5751be9dc7a97c04a4a4fd2130e94f1a38af4ff7fa3');
+INSERT INTO messages VALUES(224,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"7ff8b2408ee1124a5ee573d31023660aabcdb21599bdcfb4a3bc1895d7910094","messages_hash":"eb475bf5d9f009884f019dcd9cd0ae1164f984f44e440665a219bde18e7b7fe6","transaction_count":0,"txlist_hash":"019a41a08fe760b6ca07f10cdb763ebd41d76a7a458f81023dacd0bb000221d6"}',0,'BLOCK_PARSED',NULL,'178eecc92afb84410c9a818b5a1cf59d83734b19c051e61187fba0221a56c957');
+INSERT INTO messages VALUES(225,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52052de2dfa56a6e2b6e3f091d563bdf7b90a227a8349eea9ade0a8a57976a65');
+INSERT INTO messages VALUES(226,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"c687e753c01711e94cfcad1f16d2976a12ef5d6c3731c64db26f969c988fe7c3","messages_hash":"95151ef7b552df9b15c4670980ba7dbc3c99592a724f5c5bd0612c5add1e32cf","transaction_count":0,"txlist_hash":"81bf654cee844b048e68c07fdbb561865156f77769d686aba7666d51bfc529b0"}',0,'BLOCK_PARSED',NULL,'1cb5860ce1133554e35b47eab895ac68f906ada333e67d85aa2c645c0dfb2c5e');
+INSERT INTO messages VALUES(227,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e15d30526c30f84b6413077289edab84073211c790d67ee43b8f9eba4625a56c');
+INSERT INTO messages VALUES(228,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"66f493ec8b5cf8140d1f627f008c50624d3069f56828df90286b53a2d6cbf47e","messages_hash":"007b08291410c7ee35adc28bf2f78a649beda27ab4b247d12312c5e6b696ca04","transaction_count":0,"txlist_hash":"87461d03ba2d32213a73f526b81f1decb96b112a012ada6f9fc089032720798c"}',0,'BLOCK_PARSED',NULL,'868d93d17ffb7a3790b43c0fe75efca3c0e5c9e17b87b047f0d882075ad5931d');
+INSERT INTO messages VALUES(229,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d6d897e3829797701bd4acbe58899896f40af9f7b7d1f62246021b75fe54ec');
+INSERT INTO messages VALUES(230,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"33acd319bde452aa81b589435a31ee3add742870a928ef2c15a7a447b4b4e0fa","messages_hash":"dd783e00eb2f3c2f39124237ceca891bf41a332e16573d04c6c61fd77827acad","transaction_count":0,"txlist_hash":"c1fd057575646ab25fc055b10cb7cc9cc4d4d05f0ddbacfaa462fc9ac32d975e"}',0,'BLOCK_PARSED',NULL,'1c9cdfd11c559407b3b8ef5b56a49bcd186f62649fc6cdf503aa09ede8d8712a');
+INSERT INTO messages VALUES(231,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d69f8aaa9e8ee60c48728d209e4caa3e4b7c71eef8e002d6255b441bcd72008d');
+INSERT INTO messages VALUES(232,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"83997825aa2597adb0292e265f01e937f621cc75d8cc18e23a4bd0c1fb0920c7","messages_hash":"12730e29e42b6fbf98bca1bf14a7be3a3c2ddd03e9f115c48fdba824c06f3ba3","transaction_count":0,"txlist_hash":"86e036eb2032af487a2c3ccd6a6d8b3073c155164cda4bead96f92da996fd4be"}',0,'BLOCK_PARSED',NULL,'b825bd71fa22d7f543c04b21f8fc67cf4378f580e78f86fee966b90c957ac5bb');
+INSERT INTO messages VALUES(233,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c9ac52b846b38afd85d1482d02ed9db434a4c19ee834bf584b529f0f968b908');
+INSERT INTO messages VALUES(234,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"9890bca86442f329b2abf1b3bbf4d94e8ab54d10dfa7823a53f02fcfef030d88","messages_hash":"028d29281f54b11cda5f6f90a3354a85026409afff08e9edd46583dffb6706a1","transaction_count":0,"txlist_hash":"a839b90852909b1e21b4461debe100d578abe34e3a46837b444a92db3eab8d97"}',0,'BLOCK_PARSED',NULL,'39c6804ab0480bb1a22299a3e4607fad459b11b22b9d01c3c3e0ae5248f3e7b0');
+INSERT INTO messages VALUES(235,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f80a6361a9fd48d039a40e3246af47abae2eee14e6dc144aed649c11b119137');
+INSERT INTO messages VALUES(236,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"a909f658a8f405ef1f5cd8bbab03cbd865235544ae1c2f4dc20e2a4393181efc","messages_hash":"c2461bf3563184a7588dba4bdf59a119b638186a4c22863b03ac71a608de37fa","transaction_count":0,"txlist_hash":"a55dd67a02d97f49eb1ce9cbdf94b201a0320065e63aaccca1d14fc856a167b1"}',0,'BLOCK_PARSED',NULL,'913ee5b9286518ac42ab04f01c24c86d4ea5919b7dbe01c99c49ca6b155105ea');
+INSERT INTO messages VALUES(237,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1467e44f3b678d01f8fc7ef56d1e44790a8adf7780d983d36dac7089dd48a533');
+INSERT INTO messages VALUES(238,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"713d2ccc66a1aa7797ea9b6af18b04245478c7582a8aee76cf2c7f3f3060df3a","messages_hash":"791e1989169a138179403b69b116aac55e68e96bc1bef0471f457b797e59e691","transaction_count":0,"txlist_hash":"c7bdbef0fecf54c6d2f1dde171123487c95ccea2cb80743633a8bbdb3c3b9d35"}',0,'BLOCK_PARSED',NULL,'555d8d555507a3925085f5ab5d32db1d029feecfadccbfc45f45123345eb966c');
+INSERT INTO messages VALUES(239,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'943036b3f1f4dfd5e670d20b69a4d5f910208ac89da2d3ad7cb3dd4298f30fb4');
+INSERT INTO messages VALUES(240,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"534500ae61a04841771193d57384d27b54fa2bb92c0698beaa46509b3d39eb1c","messages_hash":"14f919dbb05e4e2fdd99e63dcf3484c4bf0df77c74ac9fa01022e803d15cb296","transaction_count":0,"txlist_hash":"8c7d8f1273c82696c80fa325a3dde05ee4ad5f719f6890b3d93907c91302cf7d"}',0,'BLOCK_PARSED',NULL,'81808e799496805abd8668958707cf1f51f62b02df55b7ed53f5d6a1003de0da');
+INSERT INTO messages VALUES(241,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d25b6c1a7063584b796b0ffa0e294ce67f36ddaba8671de72f68d0ffe6f0ee9');
+INSERT INTO messages VALUES(242,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"48c8e5d9ab1887f092731ba2881a330d22d4f03f601dccc096fa5147042a3d55","messages_hash":"afa4ff525af27660b5c5be439c0942dee4307524fde940d3ca5751ec702575da","transaction_count":0,"txlist_hash":"4c724447d400c30336cda4523a84f5cfe86849086f98367e5821a0bdddf68f7b"}',0,'BLOCK_PARSED',NULL,'2cbc7a9460a79a0c9ff9ebc2ba0349cea19f8e33e8ae24bb1b5b5de40824f400');
+INSERT INTO messages VALUES(243,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a64b1ad61f1b16682a5459ecc11849c3d35d807896634ef0397457225722ea7b');
+INSERT INTO messages VALUES(244,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"6c5ec3d2b7d8a724175559db977cb9ab78eecd39b9239688b30d6d3350cb01fe","messages_hash":"6184eb40ee97b8611e5ca2857a8f3881803cef8e510fa6d0fec5fa2d515ffedd","transaction_count":0,"txlist_hash":"8f0ee591c9f8165289f106091ac0cc19dbaf813bf1134c3ad2cf302bdba0e8c7"}',0,'BLOCK_PARSED',NULL,'1974b1270e0920c125caef64b8438121fd7845c9929dfa1e642bba02c493ce5c');
+INSERT INTO messages VALUES(245,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab4655efcdd79738216db5b32ad638366e67bef508f0c158ad0385b362254737');
+INSERT INTO messages VALUES(246,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"817dc86594b3820de76f1d2bc2400d702475d558d6ee5bef4313fc154bbdaca2","messages_hash":"64956fab371b4280aac1897543c9de76759512f51383278cb2cbacbcfed6341a","transaction_count":0,"txlist_hash":"9ff934d29741af663537dc45d552b6c01cc8ba577af1fc2ddbbcb7259477bab8"}',0,'BLOCK_PARSED',NULL,'7e71d68354cbf8f510cf8c63c6ddf4e7623464751ccfcde088e5038fc57b09d0');
+INSERT INTO messages VALUES(247,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82cc1528fdf0b3655bdd1406c46e14f75a8f5c0690f9f1541025d99b2c05af2f');
+INSERT INTO messages VALUES(248,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"00916e6bac2f648f953c8d6dff21438a6ec53ad198b33f90667e8d4564e00e78","messages_hash":"c0b45ebf89dcd6dc5b571ce3a8ceb130ecf618c4e6c74f225f2fc5f5852657fb","transaction_count":0,"txlist_hash":"3074814e0ba9b6e99b6af70ecee2f1cd072d760d921d13f04a5064342636da4e"}',0,'BLOCK_PARSED',NULL,'a899bd3dd96092d4e0299bfc8f53e3b5fddc447d0d8fe29b534bda0d70f5d4ff');
+INSERT INTO messages VALUES(249,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ded3409d067e0e875bda17bf7da17a3d3fe7c8a0d0b518d72ac2b251658599b');
+INSERT INTO messages VALUES(250,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"959df962b9bc7ef215f1530b886613404adaf81552d6eeb4b1401ea265ad5f4f","messages_hash":"4a3f35fe4b51c33786edba383629ab1f878dd534bc59ca0261750bea101af62c","transaction_count":0,"txlist_hash":"c792d99e376babe180a99ebe9c20a7925a74fb919ccab28a600d200caad6c0e3"}',0,'BLOCK_PARSED',NULL,'f8ab2e887746df3365c1c7d02972b4a05785821a7ff678b9556833fbd8814b07');
+INSERT INTO messages VALUES(251,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f432b952ff01b715f1a9bbdc3629dd3b9a511b7db5f688a5a019e85823e12f1');
+INSERT INTO messages VALUES(252,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"d76b639ebddd434e5269de084de0b502e7f0eaff71b4e99de2d4ebdd1fc61380","messages_hash":"bb1a39717ef316bdf4dec41883c183cad1f9338d6a8665b0d2552ace633a332d","transaction_count":0,"txlist_hash":"ca53cd5d8d4e90481a6099af39825f25e7b5325fd586693362d9e7302e72fc3a"}',0,'BLOCK_PARSED',NULL,'2d85bbab16a7c0ed2c29a80668480c9f575fa30391b528b5cf3ea23ef41dbc20');
+INSERT INTO messages VALUES(253,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1131442b536a23ba75f4621294ac75ea1180c1d58c11b1df6d71f5404c924e04');
+INSERT INTO messages VALUES(254,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"525e8cabfc993080d128faf38a5e5c9e9afa61423a5f20a90d68cdcacc96b59b","messages_hash":"200d3ca6999c079dea8cecaa68e8d9b48c5948323ad290bd7f89ce364d18c1fd","transaction_count":0,"txlist_hash":"1bfbc68852f429756bdfb76508d3f044ecc24704e437259c23107470f1edec74"}',0,'BLOCK_PARSED',NULL,'740093b7de1d30bf8e1ddd184d536efc77367fc7b52248fe08d680c5155a6438');
+INSERT INTO messages VALUES(255,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93c2e3bfe4532238c99b4cbd89ff41022df2a2f45b9b59298772c75980f7ac43');
+INSERT INTO messages VALUES(256,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"155ffdc74a2077a3da7d5c068833468c7d0758dfb525a799f910cdb1543beadb","messages_hash":"cf6631cdcfc3420c4da63b7075a28d9565c5e72adc3c22f0080f0fc4d49c9fc9","transaction_count":0,"txlist_hash":"86186f38b173c755554117ee448b6935fd6ec6ca9f464438d659ad6be767d481"}',0,'BLOCK_PARSED',NULL,'8c5696366847d326bc5c1205ef69eb04439a9632ef24a5d993a92884fee43830');
+INSERT INTO messages VALUES(257,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2cee074c47d211a38ff95f743dfc1bcf5fa5d314dc7131f48b49c7df8c9a558b');
+INSERT INTO messages VALUES(258,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"4f6fe786e34af90927bcd888b4b2a8fc69d3ccdfe4c4bb37edb2007901ce234a","messages_hash":"4d9220efd11b061df66519062855512842611bf9ead1ab64329867618c07b372","transaction_count":0,"txlist_hash":"822b518b20b4f136877f2dfb4f4a9299a4ef7c26441791e986677396405ee03f"}',0,'BLOCK_PARSED',NULL,'96adb1add5e1be4f64af1f2ff903a765c39191df43ba25b9f6482c7058869d2a');
+INSERT INTO messages VALUES(259,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1a6c71582b43ebaf461246d4005ec178db7bb6964b3bf7df96240dba202efd0');
+INSERT INTO messages VALUES(260,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"30978d87fd8e32d9d27c92a0d4ca19d179b515ed95410fa96bf496b4cd8aa5e2","messages_hash":"5bdd0005be4ff087a59a47b56524694bc090682f28a5f405284fd42d91f2e788","transaction_count":0,"txlist_hash":"79032221c81d77f7dd7e35d46a314b21b17df32357b606ecb7402e5976473b19"}',0,'BLOCK_PARSED',NULL,'a299f95a5bcbaa71a486ee68a97ea57178bc3385285cc09af58a40457170b317');
+INSERT INTO messages VALUES(261,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04c0df20789950ace6f1a04d35c402f60f196f63f2ff59b54721372cbb129d0d');
+INSERT INTO messages VALUES(262,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"a0760bc5d2f04b381cc46aca84aa3788e8e3fbc833379a26ae812807d3a04fc5","messages_hash":"8c88f57aeea0645f5eaedd65c2a30f7b731738fa61651e2c97bb5fdc927eb9d0","transaction_count":0,"txlist_hash":"8f56034a75de70a679a8bd2515b5982dcebc5b2a6c468203ee8922f7e12aca4f"}',0,'BLOCK_PARSED',NULL,'202e42086ab68272e9bfa3a771803acb06cb3907dd6ae36fc2917816ec30ac56');
+INSERT INTO messages VALUES(263,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a94c6e6d16ed9b3348e9d0975aba49c10daee9323f8cbe2e5a9251397cb1699');
+INSERT INTO messages VALUES(264,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"26dcef9e54b1a34b6024f8402ddebb6e9449cd90c270e3db75354a001484b1a1","messages_hash":"2d788d58e6eceafbaa9ffda09c9f8a81b76961e6e294c4e06dfb295a12c27360","transaction_count":0,"txlist_hash":"d645719f82c5029a7fe5eba356e16c17eb676e0848ac2e03b4d98df0106ae95c"}',0,'BLOCK_PARSED',NULL,'f325025058eb931eb3a274f759553e6523612d47a5e6832a2539e92452ba1144');
+INSERT INTO messages VALUES(265,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8127015c7ef1afcf04a74061c15ee8fab0e8b9448ef5aff94561448a9529118');
+INSERT INTO messages VALUES(266,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"810ebcdb63a08af5a26d1fd4e7a3604afd03bd06ff620d6a86c665e1c81116d2","messages_hash":"dcb870601f79832d84e9c22b66eaf15e86b1ae25a8225d6bdfc75893cec5f76c","transaction_count":0,"txlist_hash":"de75a174069eec13deaa318cf1429ed15d775816b7ffe6f46c7db0e252584271"}',0,'BLOCK_PARSED',NULL,'f0b9a73654894b4ed4dcbf2c2a376e0f09ccc7c0b4a40b911b5165ed821462f1');
+INSERT INTO messages VALUES(267,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dcb3604ae1087be44ec2a4d598e8a09c6abcfbb995951446bf72dbdc78974e3');
+INSERT INTO messages VALUES(268,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"1edfc24d186c7e7267b11c03b0a29e57926e9ab25f668231a18a499cbd08c702","messages_hash":"a4924b34bc071e885842f09a237e1806a27505fad63917169693d7e441e694e9","transaction_count":0,"txlist_hash":"4f5fb29442a7bfe7928dfd0a30bc730b2ee0a0bfee963e20f8da2eeb0bc3d6d6"}',0,'BLOCK_PARSED',NULL,'c2a2772c4b293e4e417c33fb552e329e67e94c30227ed6ccc4f35acde0648333');
+INSERT INTO messages VALUES(269,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e716ab02bcdd69e68889589393591cf65b2acadd37056a9856503325f166c692');
+INSERT INTO messages VALUES(270,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"b0de9503f019c9548a97bd198e6b1b58b57d6a7c231ace2d72adb0421b29e9b7","messages_hash":"61f97ba2755921992ed5f40ae346c021aa592f29b3a6f978616acb561fdd12d9","transaction_count":0,"txlist_hash":"99f2cacd3f24f7f8cf40d0c6a3c50413a243d886a381f432dc4398b06dd0003e"}',0,'BLOCK_PARSED',NULL,'19e60a45c4bb56eaf0359260d707a5c731a0237c8b583a5311cca2137545c373');
+INSERT INTO messages VALUES(271,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70344eb0856d75b7a8ff92d627071eb7ebd61e40435e504041b6c65e2d0b715f');
+INSERT INTO messages VALUES(272,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"62e41caff168eb4b15eb67ab2130510ba3f17ac186f8516cf5b5c6f168988345","messages_hash":"02cbcc05757a4cd3ea2dc3fd1637b721c26010816602e38dcad980330a95c884","transaction_count":0,"txlist_hash":"6436ea453d46084d34e4af17b844a1312a3a3f0d95234921dffa50c3bb86a8da"}',0,'BLOCK_PARSED',NULL,'b978c8b7a5451fcfcee7e602edf2c6ec904f88dde7d0337528d49eec90cd8cb6');
+INSERT INTO messages VALUES(273,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eeae7c91734b624c86bddd2f83df1226e6e58a7fb5cc4b0a79d884a5534df3fc');
+INSERT INTO messages VALUES(274,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"a444b1535d27bb2917478019c4c59abf9474e87128f9ec1e44c20eea1f014f3c","messages_hash":"b2714f97a9e8d18abe73c1b94b86df860e69f43acbf814eac77eea1e42538214","transaction_count":0,"txlist_hash":"4a7b7ac0f91d282190236dd238b33f7b76b40c1f5151c25117d7fffe014a1995"}',0,'BLOCK_PARSED',NULL,'4e6e1b7d64f6b22db46d535bfcac76be7f7cd48f5def6f6cb6260a57b07f49c0');
+INSERT INTO messages VALUES(275,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5228e3b14ede1a677542412934142a8559570f49e2bfbe6ef3b84fd51d8f1b0f');
+INSERT INTO messages VALUES(276,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"0ad978671f587f99e5e1c1b6f68ac3d18bb03a3bd7ea9afb63590bcef25160c8","messages_hash":"8f8dccbc6b058cdc0dfc37d7952f57fdfc180a8e62f100fe258a0b81db789455","transaction_count":0,"txlist_hash":"a7373340d9f43d4256f8a9063b32c415ca44e5964abc500cb3daa631ab92a311"}',0,'BLOCK_PARSED',NULL,'b81c9c939ab6b1da1c96e3456016c2d27ce63be52af1f8ecdda82abba3cb6059');
+INSERT INTO messages VALUES(277,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94fbd49d054160026b83c8f961b1421ab26d1e5181f902b9a56d7cd6cabecf9b');
+INSERT INTO messages VALUES(278,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"a6bb36829770b24fa0b960b85566a0138360a60b52cec62d94d7df8cb0b8f8b4","messages_hash":"d710b3ed96f543abdd29c33a705cb3cc0f3148294253fa6d04c099f7294f3e3b","transaction_count":0,"txlist_hash":"3f137eaa77970ba242a8bd0709970f7045ae79ca9f3cc172882577ee3ed34e9d"}',0,'BLOCK_PARSED',NULL,'9cb933e98d920857da625be46cb9046622926960d33d806e837c180ba3579218');
+INSERT INTO messages VALUES(279,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0be292ac9f622f1abd699b6d0b0c96ce4ee6fa08a2c259deb2f4fa7887093ed');
+INSERT INTO messages VALUES(280,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"9b8ceda9b170429d8b9ed517f0db95487b3058397e20d7e786577c8e46b389b8","messages_hash":"0238bf1e7128dac676be198474c8beedd5e6027a401beb6dd0d13252ada4cdea","transaction_count":0,"txlist_hash":"a8c54e9c41e6d694d38a6cb9bb9cea881609c013ef9bf4909fbcb0090168e263"}',0,'BLOCK_PARSED',NULL,'e0b831e016e8f28872591d247c955eb5e625f964c3f1594f858f406cb1074a2d');
+INSERT INTO messages VALUES(281,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2adaef57a0bc8d39b5db2838aef1dafaf2334f30fbeb2eb7d87c6714ce582ff4');
+INSERT INTO messages VALUES(282,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"cee2e41baf86f1af24d555e9ab4a0c023b5f1ab2b054707d4434b4f60d31862a","messages_hash":"b2cd4fc907371c5b6152bf29dba1876bd5aebd9fcc82da18800b353889336c90","transaction_count":0,"txlist_hash":"bc2a5bfc7f1a8181b7b04970a8287b498f096bc08acf106f6a8e0a0ac5ca3723"}',0,'BLOCK_PARSED',NULL,'847ee29c427ef9057e9b77829ded1a39bcaaf3145eb37482f700f7deb2bc72b9');
+INSERT INTO messages VALUES(283,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dcea4f8e8e2dab09713aab3e90ec7d7ae98d32cbec2f9a72263d0f04878e8f2');
+INSERT INTO messages VALUES(284,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"cbfd7ff728f05ba3f1db5972f1449618a79d3fd0d76bf7fe990aed2eb2316a38","messages_hash":"2e148d243956f9e14d19ea77a9952523da903bf334c38c92f139ee754e9fd351","transaction_count":0,"txlist_hash":"73e3b8838f74134d3db985de53446f88c3bb86a8cec53bf773c10dd89fc2d709"}',0,'BLOCK_PARSED',NULL,'5a7e6dca33218ccdd963ad8a9cc56a47e4717d91b375f79ad2ea0d14fd56258d');
+INSERT INTO messages VALUES(285,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e4175508c7039d742c9caf39e3c695ec59a2a43d45ed5cb542d8ca6c2aaab73');
+INSERT INTO messages VALUES(286,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"9af85cd995c83b5a5f0cac66351cabdf9dc9faecfee080638fc76019663faaa6","messages_hash":"de343e3e689d5be0b3a6b79c0bea40ec8852d95bef06490292a6b9a02964a3b1","transaction_count":0,"txlist_hash":"5e951c9dc5201f32b7e8b9e72702984a2ff13c011cec35ef4ddbcf5b1e7e3111"}',0,'BLOCK_PARSED',NULL,'863ac119918e5191e1b723958fa45c70551e8b9a09b476961346bf106976eadf');
+INSERT INTO messages VALUES(287,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12229fe3b94489a7d0456941acb3af1a5d6f7e7764884d70e4fa68482c8043f5');
+INSERT INTO messages VALUES(288,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"a3c547e84db6b29630b87fa566e37796e0632ba616dd6d521d558632c3b55370","messages_hash":"72b9de8c4b8c6dd78cd723bfb097a01a24e9c777abbd556fd1c0b77bb2655d06","transaction_count":0,"txlist_hash":"c72261d02c311085af66e2c66b8bcef2833d05716f067de2327442b92d219adf"}',0,'BLOCK_PARSED',NULL,'440354fcb63dab1232935303c8ef05c99d97225cb25dba83305e17a124076eec');
+INSERT INTO messages VALUES(289,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3139f72835e9639f4a33366b0194d0adcf5792dd68ff8ee77d4b13d5fcbc6527');
+INSERT INTO messages VALUES(290,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"a0170d8a72a0f8642c0863899bf034e754596e3fd8ddffefa91e7e9a7addf944","messages_hash":"65caf1cd027b27bfab54fceaf2c9c5aea98692a53b869af4c4d704dd12ccc6e3","transaction_count":0,"txlist_hash":"df4f5afac7aa5bdd2e580979d13c750f4990c5f7e8dacaec6d751f4b1e3c690e"}',0,'BLOCK_PARSED',NULL,'6710cbc4aacfd3cef9ca8f557b34de23b0845f29855d9a848d67c4893d0a9920');
+INSERT INTO messages VALUES(291,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12c3b8c39b6626ae8a8576bdc2fc83d95fb47b924377ac08dabb15d9696233c4');
+INSERT INTO messages VALUES(292,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"e0179a21342fcf35fa169567f1ef35bd6b0b1b048a98e90c049fdf3ee58e9da4","messages_hash":"d0bd95b8f585933f1a8e281d6e8ddbad8151805174408d4a2aa721a84c8033cf","transaction_count":0,"txlist_hash":"c5cc010dd34b520a733ad2e109b4b2b8cc84b48e412c43ac688a57f99147c164"}',0,'BLOCK_PARSED',NULL,'ce4cb51355a4a7180279930ac8f97b976b4ab01306098f9fcea547d013617110');
+INSERT INTO messages VALUES(293,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89bab59f7fe2c6a358f0c58b45c5dfa6b818eff7d8d9307b0b7c5ec4be45818b');
+INSERT INTO messages VALUES(294,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"8855ace296b0b078d90aa24fcd30ca9f9cccf9d3961f3dba4985a3ff187a02ac","messages_hash":"6f737b21a2d96a41f2cf7e193562228fd7985b96c5c6bd3413055b34fe9f8fd2","transaction_count":0,"txlist_hash":"eac5c44840751fb1009274a20657bc544e855ff1a49533c9fc43c0b6e66b7402"}',0,'BLOCK_PARSED',NULL,'d2a10d53588fc3e8bef62f3539d36653f3597401b3c313e9b2647533264b8352');
+INSERT INTO messages VALUES(295,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c400e19dfdba5bcd702962102e1dbf31989469e951dc9b5dca5d544247208b2');
+INSERT INTO messages VALUES(296,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"bde3a6c6cc31b96d58f466d3ce0361cc6366c8c239778f21b696d4063cf6d89e","messages_hash":"a37c1c8316e7c539e0611de48e18c8d360e73d2de09f709f478768d3fa8e8222","transaction_count":0,"txlist_hash":"40cde00e42632bcc0477dc071b9acfa0745283dc2a9d2d28e230f939832abbac"}',0,'BLOCK_PARSED',NULL,'a922f70ab3a91014325111feb135725e23b919f7406f1392bfcf8eb3796f2377');
+INSERT INTO messages VALUES(297,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5abeb6141c0c20e113dee7184fe7d66a983fa0027a0cd08979e01129549f6bf7');
+INSERT INTO messages VALUES(298,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"f562851b32a7005ee02b9e2491c0195dddce451e8fecb428209d087e69345303","messages_hash":"fb3aa04578b77c4c715666fbd453ec097443a9e30acb800f4b7b75a79967b99f","transaction_count":0,"txlist_hash":"dc3ab137a2d7430196ec3d25456e09e8e63d815c8e4b246e95e7e63d4e3a9c75"}',0,'BLOCK_PARSED',NULL,'2175df3ed29924a63b3e7b04787e344ae484d6c673c006eb6569290cc229e762');
+INSERT INTO messages VALUES(299,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faad722f495f3d28c9144c575ceaa4270b5e089cf5e9296edb9c8d2688be32b8');
+INSERT INTO messages VALUES(300,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"996cda7b65e623747deef936d61491cedd0159f44faa1e3536de1b6d6c474097","messages_hash":"4f075ae9061dfc1ff52f719017d590629eede42aa45957aacba54e5513e47be4","transaction_count":0,"txlist_hash":"a957a0c28f2a0beb967ef0ac9519e9207e37415af3018f1a5cb998169f3b6005"}',0,'BLOCK_PARSED',NULL,'a5ac5a7df43d37e6167d9728066aea6b67b889e73dda37527df36256b8d6daac');
+INSERT INTO messages VALUES(301,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c976926cee50cdb37e8b1b999d8b3c7b08aec88de229c6ec57da9eddf005bf69');
+INSERT INTO messages VALUES(302,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c8286f73cc3a070f4251b7c59bb485e611437a1916fd39ffac831dc78df54ecd","messages_hash":"8ad41558220717a679e7f6af9cbd1e9fb3646fb9566fa8fae8e340d199b4ffb1","transaction_count":0,"txlist_hash":"3cf1b57600853e04513ad74089e344f9e5af742e1d4aaad0c9e51c0ebc6e77d5"}',0,'BLOCK_PARSED',NULL,'479ddaf9ad96f51e7002f08a1b6c040445d5238898d6be8c283f1d85306a0e75');
+INSERT INTO messages VALUES(303,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f845a9d046590ba70e86bc4eb829a877173e5c30a914f6a2bfe923d246b124e2');
+INSERT INTO messages VALUES(304,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"ef9dab42700918027fac849f2088d2248a6291dc7bc24be583b556f37739631b","messages_hash":"2d22ae58cc40767ffca461fee1a2317d6b5b0d8156f188b3f8589e688ac1c643","transaction_count":0,"txlist_hash":"6cf1d5147d5c6523c275384d404b4f7a750dab987def5846979bc5d14233a44b"}',0,'BLOCK_PARSED',NULL,'071ac6c40782a31cd07362714a7901680dfb603adbf239f1046fd4a3edcf0798');
+INSERT INTO messages VALUES(305,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c87d8cae7abd6c31d0bd7dbc6a6cd9b9d77cd7fc5eeffc32609f41cafaf2df91');
+INSERT INTO messages VALUES(306,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"c6bbc52f1e8f907b2d66378f4352f41ae3d354985aaab5f16d737d75a7e6b1d8","messages_hash":"358e0f793128f8d5b52594bb96a8ca652983d4e7aa7c008982871a2c9a662a0d","transaction_count":0,"txlist_hash":"091641bdce3f527a8a3da393068fca3534e8209fba337b7b79bf22f2a6bc5dec"}',0,'BLOCK_PARSED',NULL,'51b04ae7c6308b3287e5616efbfbdc032258fe4c7a4ee5d0a34dcdbc41c19f66');
+INSERT INTO messages VALUES(307,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90b8e820a490695c6847df91efd00b18c6687a1fe39b255d5fdb426ea4595a6d');
+INSERT INTO messages VALUES(308,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"66f7b7ff8f0217ed62938a5931d4a6a232546e5d58e09dfd3ba5a792c35fa560","messages_hash":"9213e075e5567446951f60b81c68f9aa28103f4259089eb4d2d9b0697d52cea1","transaction_count":0,"txlist_hash":"8a955c5c1a5c9f8c82553803172cc961e61b2e2e19b9c87cad6dec24512ee351"}',0,'BLOCK_PARSED',NULL,'2253b16e3c043075c071265b00981bb1c7802a8fc4c3f0b51bf955f38ca576dd');
+INSERT INTO messages VALUES(309,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12c6777214f544696c933f18a9a1bfd621fbba93baf1b9fa3cede127a2cf19af');
+INSERT INTO messages VALUES(310,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"2b26c6d901ca9790987331432372046d9620d10ea163f4824208d6b23e8e7a35","messages_hash":"1c9ee3bf90abda5070a18d70ca3e1f99d3a2908bd839bee7d96b274752ba0ef7","transaction_count":0,"txlist_hash":"482bf498868976d12ae17fc38bc847d8c7398c96fad5df9f1d2719197fa038e6"}',0,'BLOCK_PARSED',NULL,'59cab7ac050a8f9d78c2fa09c42e8c164e89bc815bcfa830ad226f2ab1ab8d48');
+INSERT INTO messages VALUES(311,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'201f6124fab90e9c37f7a93126a517d9a38a15f6af73a45ff8371229b72ac0de');
+INSERT INTO messages VALUES(312,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"0d6d774dce93e94e870835005b0e8b04f010fb25158aa69a0fa0321d1577e987","messages_hash":"4c3832a9b25722b0625440a92179d691b3ded6a2db686496bc5840c9fd5f6b53","transaction_count":0,"txlist_hash":"ed1021dde8c16263483f3a50091a2df2105977a7aab9217b78af58833433853c"}',0,'BLOCK_PARSED',NULL,'1490f8e8782872d7377220accf8901ffa6b8eac70379fa1f836f787a5f4f1de9');
+INSERT INTO messages VALUES(313,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3696a4709b0f7f8f93d8648f22f873ffe528563fe924dee9c9df8a80ac4b7eb');
+INSERT INTO messages VALUES(314,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"9dbd171e3606b1662f6b576339b1e9aaa3da8a9f8a246bab905af255add4a762","messages_hash":"f49dddebdd143ef18c4fc4158174b5958b765674ba36d4014942c65d49fd87cb","transaction_count":0,"txlist_hash":"e5ea123c86cd7147d8cd8d9866006e1da8528bb32c8005a998ca9f6ee917c2ba"}',0,'BLOCK_PARSED',NULL,'3eaac5cd5948b356147d67da2a2ec5635a3915c2727aebe886fbab594edd5847');
+INSERT INTO messages VALUES(315,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5de81b650d4dee81956c1f07a2429fd73f6f05312ead5e296290b1f9f22db40');
+INSERT INTO messages VALUES(316,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"db67b5dc6b0c0ddec22d0e716b72aa8cb6fa9702316f2a8e12659ee229094c16","messages_hash":"e2e65b074fa6f18191edff93fc1baf8c7f396ceedb7e588b177ec2918870c2e2","transaction_count":0,"txlist_hash":"a25387e650e60dbb003c5ef16c46a8d8464013d81bdb49508c2935368d4ae9c0"}',0,'BLOCK_PARSED',NULL,'abf1f5131aa0dbacf6efbb62bed516a8fe2494f13e442ecca07a1c5adb7785a1');
+INSERT INTO messages VALUES(317,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'063ac28fadf125e5e1b95b7577e1668a5607ccbe3644fb46ce27ef2f2425ea7b');
+INSERT INTO messages VALUES(318,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"7cf70b5298dbb36efbec2fb880b76e2514e3bad9d5200875fa3eb3ceb7719ee8","messages_hash":"0b06c5b690dfa0169e9ce1026445588675ef1bd81e2ca5962a1271a41000a8ae","transaction_count":0,"txlist_hash":"f5028a37d6395b533cf60e6ce9f0bf574a0a7beb2cebd2f545b5183e5362aaf3"}',0,'BLOCK_PARSED',NULL,'2f9782fd5e10ef6e38c359de99631b93284e11832c5bdf9c686802c11dc126a7');
+INSERT INTO messages VALUES(319,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'783487637e0c3bcac56b5a5facac603af5c033d524cd8d3dd73a1bc8f91fcfc6');
+INSERT INTO messages VALUES(320,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"27106f400fe1ee93bde42f3bf3cf39737fb856bbf0df3f90fe0838cf7d38798c","messages_hash":"31afbdc9419f4639cbadc95cff2d0760443f001ff10d83f972421e0ff3a5a5ee","transaction_count":0,"txlist_hash":"f336b56eb2aab91aaacef9df8159627bafc67b497482abcec9ad6786710da7ec"}',0,'BLOCK_PARSED',NULL,'8348b929dc2ebf99296b023700959a7cc3f015f2e05dc624fe38329e8b233bfe');
+INSERT INTO messages VALUES(321,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b9241802ec5136cb6aa2dd99dd7f07ccf370e493600c7417c361da96d5c886');
+INSERT INTO messages VALUES(322,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"28c9833eded6d68967f206e5884616f83bb9ad16b9d7a507031b96480aecc799","messages_hash":"2491241aa4f6bd7886487e70203c6b031961193ca19a01e93db40c881bbe5e42","transaction_count":0,"txlist_hash":"c51f9cf9cd60f836bf4ae7ee0cd982829f6f7cbb2503eafef3bb167a285cf9a9"}',0,'BLOCK_PARSED',NULL,'e6ea68830199fa4aaa2634628e1190c9b9b78f386e62750ae3ba7e3023285607');
+INSERT INTO messages VALUES(323,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a50d07667682e14f4845792cf142e578133e5338bac5d11c7127627644b62e3b');
+INSERT INTO messages VALUES(324,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"cdac6435934ea6e67a311495325c85237158ef30c009ea44c562c2127d79e696","messages_hash":"eeab3c5350fd25da1c2c3ba0458d98e078085ae5b0d09847b76fcec2eaee1ef1","transaction_count":0,"txlist_hash":"b6749729423101ee337b7fbf0362191ba34102f01db03b225ac0d6c52de2a6fb"}',0,'BLOCK_PARSED',NULL,'4695293317f994b92d4a611797a1e9d935b354a8c50e70899011d43a58262d2a');
+INSERT INTO messages VALUES(325,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebbc8f03a17074a4d3790a007643856d4f0e85116a5c16cb953535c878241f48');
+INSERT INTO messages VALUES(326,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"cb33e420348e7969a2310445a6c17c79e647d3c6f3106d4fd0c0a1249e11ed6f","messages_hash":"13d15e51975d5a0685af16eacc17328a1115ac2aa2cdc5bb35fba39968f599ee","transaction_count":0,"txlist_hash":"544bc0db1dbb1d22a05e5f81de7520ef990df5b897b9f9e60d98f102fef86568"}',0,'BLOCK_PARSED',NULL,'a08ba69dfdee0ca80059d064a70304b146379be025c653a50e072e71f4147268');
+INSERT INTO messages VALUES(327,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b981b75a76214448a48b1b8da873826f9cb7ecfbfe1edc14898625a6015327c7');
+INSERT INTO messages VALUES(328,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"dda2531cf7db78a3f27c1ce70189b3f6efb69ddd24b61639f9deff42566bba2a","messages_hash":"fb25447214c4607f8c4d660c5a3aebaa2f01b01f0b64a60ba8f0bd8ae92c0703","transaction_count":0,"txlist_hash":"217908d5688f0d9797f04ee9c3cd03ae93c20f4e5801fd809d3c37154e55b7b6"}',0,'BLOCK_PARSED',NULL,'39bc53e356b5a965ef3e64bd5f5a21057585c18dac0d0ed0d1083e3d4bd131ec');
+INSERT INTO messages VALUES(329,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82ed5746c56648121ef603dd722e0533830a67d53e7bbceeb9e5c996481892d3');
+INSERT INTO messages VALUES(330,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"9ca7d9e1da0c6e4465d9e1c76990b6c48e62ee3a0b3b83189dc7a0f2c03a3006","messages_hash":"c65d8cf66c9ce0c8302015f05b85bb05cf2e6aa76bd5088b1a62d02946bea13f","transaction_count":0,"txlist_hash":"6e31995ac19f2ff3fdfe5d2ba7a49f4b018b132d2aae92a4c664a97d6a6b3b6b"}',0,'BLOCK_PARSED',NULL,'a5a5da5a6f88b8e17facc411ed922c0349bf25648bfd7a926b088de9fe5e3395');
+INSERT INTO messages VALUES(331,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2837cdb0aa9bd2db41c0180467b45c3056f3e7e98a2dcd63187c789f6d6572');
+INSERT INTO messages VALUES(332,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"c6fc005e874909cf0393ac1bee7267f66cc5355c549d8657234a0ed6b429c869","messages_hash":"9b9c7f49cf432ccd8b987732e346d336a02567b1281757e04bd30be6810cd65d","transaction_count":0,"txlist_hash":"d7d3f23d0014f40f3ac6a00fbb59e95653d22e11360783fe4116be9ecf360149"}',0,'BLOCK_PARSED',NULL,'404c2b48f8c67a45cdf209e49c37bb15e6b117f8a8c574f00f3f7dad7fd09d3b');
+INSERT INTO messages VALUES(333,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb42ccc2a8ba968ae8b0d806c6e5bc206f0cd6e408f239799da7142e570ca97');
+INSERT INTO messages VALUES(334,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"14dacaec0b37ca20f271e500d0ec1837a63006eb464728c067107738ad3167c6","messages_hash":"300d1f4b6299d375ec9e649a12efb5bd019fe3e3f6ee5690bd0f4e5b02720862","transaction_count":0,"txlist_hash":"7a1a9bf5515019b99c1c35abaa4a2003c6291018e090c26ec03c5c951f853f82"}',0,'BLOCK_PARSED',NULL,'9699b9c3b7ef8ef36c7fa6fd10f487e140a8266a05e5074e19da402cb8ba7c18');
+INSERT INTO messages VALUES(335,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c6aab754155bb84f49b09ec0b558e9c73c0881bbf56ab3dc7e2324bc9e93ce6');
+INSERT INTO messages VALUES(336,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"05bd680c082185147e83785e7464d8890908d1550359b4fac79018b510475e01","messages_hash":"ef704a263dc83acc2baa115490d248093d829fe0a2791a0684fcfba67e271c5c","transaction_count":0,"txlist_hash":"40b9134941fbe6312e3a7dca4b1f5114c3b7ab73f6ab84ba96aa101097111168"}',0,'BLOCK_PARSED',NULL,'5d53bb6a281a03dc1c87813b100c4449f4021354a8b985565818211b8bc91892');
+INSERT INTO messages VALUES(337,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0b9246dbd3670adc7e6f2ebbd23fc3b1264470b9be37f18371b63eea9d20188');
+INSERT INTO messages VALUES(338,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"b50805d750ebd26f8dbced919948118f1f97ce7d117aa1760e7a3c4895f51e13","messages_hash":"c5dee874fb1870dc8cbc2302bdd7b7441444ea1687894885cdd7520e9b153182","transaction_count":0,"txlist_hash":"4e1fd0382baffd66852d64c667941808ebeb08a17309ccfe91be8e16046ad266"}',0,'BLOCK_PARSED',NULL,'0a46c913288e24e94c973624cc90e401d3adbb535f6ab2a922c023aac4954723');
+INSERT INTO messages VALUES(339,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5dfcb981fb118356a0811c18d980bdb9d361874abd9ba4758bb083e4c4b31aa');
+INSERT INTO messages VALUES(340,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"dde96405c241e1d57334670e4eff7ed8db92056e6867cae10475a9bc30ba4619","messages_hash":"7bc6441d01d6fa7c220dea4137853f22a95c2f98f89a168f799c443417bbe99b","transaction_count":0,"txlist_hash":"8e635d69a6a40df5c3849e1811ee551c32a57a3496fe8e4b97846b9592a9ebde"}',0,'BLOCK_PARSED',NULL,'2fb7f301e6d11902343b5073325252ffac9846fb8bd1d0d26c1c18eefa6f52ec');
+INSERT INTO messages VALUES(341,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d362690514b686a76ddbc66046416570e8fa17ed152437238a805aa4e7b6895f');
+INSERT INTO messages VALUES(342,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"613d78fbabba246a4d1cd9d50317e732795a59812df8395472347e15cec1ee9b","messages_hash":"1d990ec79e709ede24d72552031326b1318f57b380ca441355770b4756250e04","transaction_count":0,"txlist_hash":"c96db41449a579ffc6b459375569230e88bdfd51c10578c60f8d252eff630fd3"}',0,'BLOCK_PARSED',NULL,'63b6557248db344c78539784c65378714eecb27010278fa2998b9598bdb6c7a2');
+INSERT INTO messages VALUES(343,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b966778631fe081483d53faf252768d70e036a89f1a8ae34ccf7f53825127b5');
+INSERT INTO messages VALUES(344,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"e535ca5960d2ce7508bd2157dd0cac3ea1f9ab14532a40884d522b4bba0d4979","messages_hash":"8bfd686aaff55db29f667ad50f1c7dab1f5006f20f0c3fe5a8627909acd36850","transaction_count":0,"txlist_hash":"710369d2e677643b7ab8f2bbcebf0f13017052ff7fd9adfd6ffac4e6fff83f8c"}',0,'BLOCK_PARSED',NULL,'82b741e4ad5eeeada62952fc4ac06b6472d7701e31bf47359093ff8c6f2534de');
+INSERT INTO messages VALUES(345,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccc557ac28ec041bd0a8d8d9a97728412f265baacef73ba0235d0c0aa98a32c7');
+INSERT INTO messages VALUES(346,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"970865291b7a6d8173d6ad2ae97335cb2e89d80cbbb7a79bb2328cf6c67fa6cd","messages_hash":"c339c9ba0fcd3143316610a40c58c3beddc6e3538564eff6e3753363372d7f50","transaction_count":0,"txlist_hash":"9deae420c2b87043e6e18db077634a1d65ae60b38f604ce56f0899ed3a561347"}',0,'BLOCK_PARSED',NULL,'576307a3d327842e1e9bf679c8cfce3599787d65eb3ad1b293a8ec26844c7790');
+INSERT INTO messages VALUES(347,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27a46693a329b178e3892cd0d489267d72035022e9c07e99abf15f99c08dcd28');
+INSERT INTO messages VALUES(348,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"0741e57ad88cdada65134c9f131ff5bfd9498cb054378d829e34715e8db2aa6d","messages_hash":"a2c1bad71d57d8cbf740a32e9d614704befad2c39be157e202d6d6c852eee51a","transaction_count":0,"txlist_hash":"4bd0054addc71915293b8f040ed3c6c64d0aaf8ad27647d1887e16d55604523c"}',0,'BLOCK_PARSED',NULL,'0d7f7136eaf6785c3e87b4cdd5ebde31e78c0740be3a53af8daa4e6fa0dfd8f0');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -1418,31 +1435,33 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',0,310005,'BBBB',1000000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',0,310006,'BBBC',100000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(6,'5d951d44d034cb6fd5dc5c98cd877c63f55c1ae108d335b6b6d991d072856adf',0,310005,'BBBB',1000000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(7,'2b44f590422a3ab5b70fb1265a2e4f4d3b0bcb3de3f296dc7280924870ec8c59',0,310006,'BBBC',100000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'foobar',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -1482,14 +1501,14 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(2,'3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,'valid',0,NULL);
-INSERT INTO sends VALUES(8,'5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,'valid',0,NULL);
-INSERT INTO sends VALUES(24,'58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10000,'valid',0,NULL);
+INSERT INTO sends VALUES(2,'3b273ba342ed8bd4ccd2ae28d3df7754768a6c65ec1cee4a6e84b4b4bdec8d8c',310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',50000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(8,'5836fb23c2bb94eeb4b71cb8e3c622c6d943b3e4ed3aebee42d240445e615db8',310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBB',4000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'843e6f7712b7847099502bda8a4bd7127c17a2799290b91ef1584a6bfe069412',310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',526,'valid',0,NULL,0);
+INSERT INTO sends VALUES(24,'58b89d056b539d2cf9ddac4518ccca6744495127e0ce893eb71da2599cbf85ab',310023,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BBBC',10000,'valid',0,NULL,0);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -1689,15 +1708,15 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -1931,3 +1950,121 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json
index 91ec87c3d0..1322b2b6ce 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.json
@@ -154,5 +154,41 @@
},
{
"issuance": "01000000018fc76d52b1adc5dab066678032986d747c1540236927aed240fbb7eed8e36a07010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0200000000000000003f6a3d8a5dda15fb6f05628a061e72563d9a4ca0016fc6f0cceb9740deac322686d10e0db1cf9e0a5b9b2d71fa57e43c946171e258fc0dd404beb02a3dee6bd4a4ba2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001bf2ccb82da4e8c3b853ab247aded3c64780690601a188bfd5258c06226cebf0a010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000356a338a5dda15fb6f0562d0404c221228d324955736ed8cb0dbeb74577c025ba623aed4fc093711afc5f53d4ad9fb4ccc5e29f705e408a22508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001ce937bb67da0e31649e5cb52723266e61fe02bd92591b0e971ce050b432b4da3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000356a338a5dda15fb6f0562d0565f2e1328d324955736ed8cb0daa7391a31025ba623aed4fc093711afc5f53d4ad9fb4ccc5e29f705e46c892508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairmint": "0100000001fe2ad3a30d76a41f344995b5bf2b756519a8fca912cecd15f70ab88dd742e613010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000186a168a5dda15fb6f0562d1404c221228d324955736ed8cfca5732508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001671f6eb69f64f0ddb42c742fbac0e512aec84e38d382696088e3321ac74928d4010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000386a368a5dda15fb6f0562d0545f2e1328d324955736ed8cb0daa7391a310317ea6caed4fe457b5de389b9710695b700801265bb48a8518a1ebe5a2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "0100000001c1d99a9780707a538854e537b6cc24cecdd26fd2ab29f8e9f794bb9684e23098010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff020000000000000000446a428a5dda15fb6f0562d0575f2e1328d324955736ed8cb0daa7391a31025ba36fe29afc093711afc5f7710691fb00cc1229f701a81d8b52aef07b33bb79900d382ca3dcab402508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "fairminter": "010000000181bfb59624d5d2b69aa03f8ebd4a11636ec9e48267101c9b89762e59d84d291b010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03e80300000000000069512103e34ccc12f76f0562d25c5f56615ea15bf6284796c7f5d9a076187a001eea23e92102af98b0447b5de38cf53d4895b700801265b904e41e8a52abf27b33b83590413e210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aee80300000000000069512102f64ccc12f76f0562d2362e576712a211f6664edfc1b098f8235f2e5357b63bc02102fbdbaf076e1debd0aa2f7aa5cb30fc22198b34982dbb629ec04b4f8b05a071f2210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aec1e9e505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000"
+ },
+ {
+ "fairmint": "0100000001e9d0b2ea86c3939041ef81c98e20984c845ca9ed39c0cd06bd9b82310cc4560d020000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba76f19d3e505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000"
+ },
+ {
+ "fairmint": "0100000001d8e1083f44827cf8cdab0d756ee5f26c3eb7123c4adbdce79128cca165394c6f010000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff020000000000000000216a1f8a5dda15fb6f0562d1472f51675da45cf5224a94c9fedca4761c7f0b5ba46f71bce505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000"
+ },
+ {
+ "utxo": "0100000001e704373bbc10d611f464c094c1299796ce927b84885f51c9b3490ca50103d1c3010000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef75de321df210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512103d24ccc12f76f0562d27a2f57676e926dc71a7fa3f0cceb97452b4d3227965f5f21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae910a2508000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "utxo": "010000000183481c3a9f072a47de29d0e0cda162527c3b3fe7fc4d88612013f04dc843229d030000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e80300000000000069512103e34ccc12f76f0562d2627309611fa10994283acdb49993a42746346544a01b9d2103aadbb63f493bd8cda4134ddfa84cc84429bf07ab4fda5aaaf17b7cb360921421210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102e34ccc12f76f0562d23728546556a659f2234c9394a8dcf5264a7e0714a666f52103fc99f8173709fe8df1744bc6f356c5167abd07a91e8d5afcf8717ef741e9273d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee80300000000000069512102ce4ccc12f76f0562d24f4d2e1522d711f61a7fa3f0cceb97452b4d3227965f9c21029ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629ec04b4f8b05a07134210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae77d42408000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000"
+ },
+ {
+ "issuance": "0100000001ec1559a2f51aca1f954491eb75ce429d2d37a5750deea75cd8b425289d213498010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff02e80300000000000069512102e24ccc12f76f0562d2061e67436e926de4c4a6091bcceb97452b4d31cf965f8221039ea8cc75076d9fb9d0151fd6bf10984b6afb51f65ede10ede02a3cf860d471e521025bc8fb22d87eb72fb5e297803ab9aa3ace5bf38df4e23918b876fd3ea0cdd7b853aec3edba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000"
+ },
+ {
+ "dispenser": "0100000001a133164fa710822944791ada9bf6fc16f9ee93b15d4e4b7a8232a970372ee501010000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588acffffffff0200000000000000002f6a2d8a5dda15fb6f05628a061e6b576e924e19c3d548f0cceb97452b4d5627965f9ea8cc75636d9fb9c5417aa5af30bdd5ba02000000001976a9149c8d1f5405451de6070bf1db86ab6accb495b62588ac00000000"
}
]
\ No newline at end of file
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log
index 12534e87ef..6075a82ad0 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log
@@ -171,16 +171,61 @@ Issuance of 100000000 PARENT by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [076ae3d8eeb7
TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
TX Construct - Transaction constructed.
Issuance of 100000000 A95428956661682277 by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf] (valid)
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for FREEFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for PAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+10 FREEFAIRMIN minted for 0 XCP by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for RAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `OPRETURN` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Fair minter opened for QAIDFAIRMIN by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Constructing `MULTISIG` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Transaction constructed.
+Fair minter opened for A160361285792733729 by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Transaction constructed.
+10 A160361285792733729 minted for 100 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns
+TX Construct - Constructing `OPRETURN` transaction from mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns.
+TX Construct - Transaction constructed.
+20 A160361285792733729 minted for 200 XCP by mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns
+TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Attach XCP from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883) [valid]
+TX Construct - Constructing `MULTISIG` transaction from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc.
+TX Construct - Transaction constructed.
+Attach DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to utxo: 4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1 (ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e) [valid]
+TX Construct - Constructing `MULTISIG` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b.
+TX Construct - Transaction constructed.
+Issuance of 1000 TESTDISP by munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b [01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1] (valid)
+TX Construct - Constructing `OPRETURN` transaction from munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b.
+TX Construct - Transaction constructed.
+Dispenser opened for TESTDISP at munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b (af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e) [valid]
+Order match cancelled XCP / BTC (74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81) [expired]
+Bet 41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef canceled [expired]
+Bet Expiration 41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef
Checking for conservation of assets.
-XCP has been conserved (6040.3184792 XCP both issued and held)
+XCP has been conserved (6037.818479 XCP both issued and held)
+A160361285792733729 has been conserved (0.0000005 A160361285792733729 both issued and held)
A95428956661682277 has been conserved (1.0 A95428956661682277 both issued and held)
CALLABLE has been conserved (0.00001 CALLABLE both issued and held)
DIVIDEND has been conserved (0.000001 DIVIDEND both issued and held)
DIVISIBLE has been conserved (1000.0 DIVISIBLE both issued and held)
+FREEFAIRMIN has been conserved (0.0000001 FREEFAIRMIN both issued and held)
LOCKED has been conserved (0.00001 LOCKED both issued and held)
LOCKEDPREV has been conserved (0.00001 LOCKEDPREV both issued and held)
MAXI has been conserved (92233720368.54775807 MAXI both issued and held)
NODIVISIBLE has been conserved (1000 NODIVISIBLE both issued and held)
+PAIDFAIRMIN has been conserved (0.0 PAIDFAIRMIN both issued and held)
PARENT has been conserved (1.0 PARENT both issued and held)
PAYTOSCRIPT has been conserved (1000 PAYTOSCRIPT both issued and held)
+QAIDFAIRMIN has been conserved (0.0000002 QAIDFAIRMIN both issued and held)
+RAIDFAIRMIN has been conserved (0.0000002 RAIDFAIRMIN both issued and held)
+TESTDISP has been conserved (1000 TESTDISP both issued and held)
All assets have been conserved.
diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql
index fefe3618c7..c5d6477e2c 100644
--- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql
+++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql
@@ -19,507 +19,710 @@ CREATE TABLE blocks(
transaction_count INTEGER,
PRIMARY KEY (block_index, block_hash));
INSERT INTO blocks VALUES(309999,'8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7',309999000,'63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223','63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223',NULL,NULL,0);
-INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4','f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67','9e7dd13f1ecb4ec6481076dc9bb5fda1bdb9103747455f9de9ab516748201ef0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57','ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e','73d038390ff24d64df88c69d45b46bbc90f6b77f68cbbe2081dbe1e556a65e5e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c','b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25','a180177bd180e7945ff4ce61b48c12cb0fd21535f71e943ffc25ff67a770e0f0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2','b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06','424e7f569243bc71c70002dce988e93e6b19cfb7f859c2a5195533147d099d87',NULL,NULL,1);
-INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129','3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387','e47e38f99b22b4e486fc05ee95352ec049c4d7e9e4b67082cadc62e928a2a9e7',NULL,NULL,1);
-INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa','2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af','b5346d07ec8d18e36cbabc930ea2dc452d5fc26b12af0d060f7fb7ff46b8f99d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0','a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e','2490d17814a7fac90af178d960f9e277e98bf005b8d3f076bc7c5d58634fc271',NULL,NULL,1);
-INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68','ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af','8147e6b42edd71153d880649a4b7b75c3e2fc59f122de054ebacf5204abee406',NULL,NULL,1);
-INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4','d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5','d573b3b22e23c8e7ced1388219033e4b3a1c7711944acfb2926abfdbdd63b44b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea','173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2','54c64b7338e79af0bc6b238eb91692ac0331345cbd6278ef27aa3f6a7351e35e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1','7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604','895d6cc5aa14f7618cc66b2593b43d0223387fd11f1b2b017c9f22140613afcc',NULL,NULL,1);
-INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589','86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc','9603465a786c9b927cdf36078b09eed3481d863a390eb52cf617fab895f6be65',NULL,NULL,1);
-INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a','5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7','f064f5cc3b48464bef3b6aa9b77a01adf3fb99168888a5615a369d1bcf125ec2',NULL,NULL,1);
-INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8','1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7','9c164d38483ae1923ddc825d301d86d8a71548f2a1edcfad8311e4111cc3e34a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e','d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180','81a62b796cd9dbf6eaecf4053b5896e384cf08135dd7aef545c48feadfbd6936',NULL,NULL,1);
-INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88','b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b','ea46fd7c1ff0ff2b73dc503b3ba507ab43442ffac120f56b5fd0803d27db4b9c',NULL,NULL,1);
-INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710','6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6','32d216ca6a80cb867f8963ab1ddde2bd07a969e095d67c80aecd0950a01a6218',NULL,NULL,1);
-INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad','223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80','720dfe78fccdb0831b951f79905c945a3c7abb6f13c3e258e7c3b8b7ddbfae36',NULL,NULL,1);
-INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce','9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d','260724f92886f32a80da2705559eda171d2bd55724a534c72740e05b348c1874',NULL,NULL,1);
-INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8','88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e','10830661175f7d2bf48585647709d277e5a895b536f58f83672c14d5026992e8',NULL,NULL,1);
-INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b','087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621','dd333107fc51c883a23785c8e2176bc01fc1bf8d52ff8d37ee925e9991b03a7a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1','e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27','45bb0c5dd432a2d7313fbf6185637260877da537b18334604280a29539e73205',NULL,NULL,0);
-INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445','e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54','0b5b6279634c98137b3ebd37b0e31af63b183c0f8ae6942df3aec9e0b6ef725f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de','e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5','41612e674a216f80e46263c28770962c5cacf632df3151fee409c0f9eef3a498',NULL,NULL,0);
-INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db','2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e','5cc0e229526c00f288c81848c45d12cc6a24fc0ba84e8d78041d84b8e28fbf88',NULL,NULL,0);
-INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c','ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f','cc0a82636125f077fd262e62ce5e60bd457154376ba685a771a4b92388324420',NULL,NULL,0);
-INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7','21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc','33266041a43b151330c149d5536ca098c595054d54d88c2a06bfb257f64c4c06',NULL,NULL,0);
-INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3','9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633','df932138bd7a19f61e98148cbc5ef645be2d4e05674258fb5f1659bc0be276ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5','55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4','647074e7d5c71b584b7661d02f6f5cac0ea9a0a9fd13ae78d4d2bf4c76793d2d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf','3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2','bfe4c7d60e0cca63ba44a61e12c48e2d840faf4a0aa92ba197a9d4fb17f7ddcc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1','c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a','96e13c2a5517d1740fdd2dd5c805a13a37104bc0470eebf6ab1ee5f6edc49343',NULL,NULL,0);
-INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740','4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af','92abe74beca9968adb2f2952a4eb710fefe4df33f4cf2ea0319a0d36c93b8bec',NULL,NULL,0);
-INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea','2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb','49f3542309f554440ef13516ddc8e88ae079b92a2c7c8eb97765a6ed6ac6cd10',NULL,NULL,0);
-INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261','d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776','ceb14a6637c8a5764c7f33049973a6101daa056d265b46c248c3b8363c919c6c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9','826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f','4ca5dd8e74223684d3d8c28a79b4e872787788fcae088ab3e3066788ffca65af',NULL,NULL,0);
-INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26','f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9','b500c7812d872ff80b668ed88d7a8898df99b0a2ef8d4ba16b85597fa3e1cd0e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed','ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9','1c2819e818ad5ef4ef1d5eb2b9e7630930a559a1cffa880ad0d34fc482b4063d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b','aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b','b39a9f69fbe9c498602609f3c6bf9bb18e6b97f83519c743afbc14e99d9cb95a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11','46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc','49205a5e8db239c4c785868b103864f8727376c7188a58544537cdb035ce153f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d','23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c','b4d3737b40df8aecdb8f755b92db906b8f215641fd79326bb4700d1f662b2f36',NULL,NULL,0);
-INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943','163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1','d5348f656d30e6e4b55706ba5a4a6dfdf262d8ed36d57c5f2fc71f8766d72af6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483','a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed','440373118703e7f53afd682abe5514d489a78722a600c1067430e7fec5f5fab0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d','52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab','7611f3db3529dd5fbd5cf9a5ca7affc454536e57455b1b0ea043751c9437a89c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194','1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608','110ad00303e1a01d59989b5ab6e4f166edff24c1a49e06b41cba8d56778e844e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3','ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e','f7708c99c134b071aa3981d012c773e12738ece583c1b2b2908abc6a31556ea9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1','3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac','15f23755cf1bc0aff99c1a9ed38462d951ed3ea24168c18786d71207390ca4c1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff','becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c','5796f08f5f53035af580104f79cebd606ff66c38b88361325289010a7a470268',NULL,NULL,0);
-INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3','6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634','645ba6137d35e81be31cf45092ab0838b241755dd9d33aec134c20c08cd6b091',NULL,NULL,0);
-INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582','67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe','98854c5467b3003c63ec7e208c6c8282f461bb8a9a65e2dd39927a09b44a108a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be','ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c','7524187fdd1244a0d1e4ea4ab1c5cdf5fdd2e1582e30a0d5b7af81ca0805ab76',NULL,NULL,0);
-INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d','720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88','0b5471a5d2323a894a74d6332822f0f216a0745089ac58a694b1c61a4094454f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5','656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4','ebed9381df6057bd322c0652f404116bcc77e4a0c6acf142d5faec47d4baab45',NULL,NULL,0);
-INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7','3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be','95629a91ab0bd8a87878f7f65e9d02d6114e7e6ca7b0a0fcb36aacd89f0eeae9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c','67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609','80cb6a5ce7cc7a796965d8351977fed0a4655f702f72c3fec64ec6dc92d23f13',NULL,NULL,0);
-INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108','c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690','d8dfbd478fa699dc45d2432bbb29ce342b54fb22abf175d13bb6da5c2d3abcf3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1','5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213','8797bf8b7fa1c772c7c44e3301c80e0f723de397db4b8a2f809c096609242cf3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba','1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31','8e16d14f35b8d9caa018a8a40be0d0850c5ae513906d5b4638c692a6b764909a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e','2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029','930ff03b64e3b4d399933ba76354b1d9291112c0593dba85d763c8300db1913f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d','cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4','0fbc130a453f3284eb9ec9c847ffbf5ff216ef3bffc06037190267cc2025e835',NULL,NULL,0);
-INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541','12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724','fef609d5eaabd31efa0317a33730438569163fbab3fc09b9eff59a7b555fc4a5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17','40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6','c29369e9d69fcd23979ef58b8cfabc2d6041efe31c810e33bd62b46c8d7866e8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c','4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de','38aef8af21f94ace651d152fbadb529721e3cc64959566388d348d249b226d68',NULL,NULL,0);
-INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a','3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079','e0764773525602d47d332abe4c68dd8c32d8c4585fe47587ecd218a7bc49ebc6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb','b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432','c20c09edd2f2235e7287d0439fe2c6c46abfe7ea5a04fa35260840400f54b201',NULL,NULL,0);
-INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e','e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39','cbc39bca2b7f961cd5c661f187d4dfa1b5dcb55eba9dec87327cea7eadbbe663',NULL,NULL,0);
-INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958','9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f','24ca6fdcbb7bdd7358b565ac84d2f14c2314fed7857544359d0c850996e6b151',NULL,NULL,0);
-INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882','5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e','9d96fefa3d3e1d197e765fcaf64952ec79b419ced4edf858fed794419153b848',NULL,NULL,0);
-INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d','764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9','bd447b29f603c6d56257ce8a559c137dfe2fdad10acdacce2bb003e391655225',NULL,NULL,0);
-INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c','866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85','61dfcc035dbabe08298144762a6ab94589e14668d412ea20a79a0070437fb202',NULL,NULL,0);
-INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658','9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531','0eae6329012b77e96a46de6c909ecdfd0887599361884a84a9218aa70665be21',NULL,NULL,0);
-INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0','03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655','4419538295a5c394523a396ad0cef24f72972618b2108e4cd084f0bbbf6a7cd6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17','9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f','6a299b36e4ccfd1e32f81f91009e367cacc30aedaccbcefbd0273e351b94305f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee','33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8','180ff6f6092c485217d79b3c5510f9d8e0664d09c882fd164ae3a49cb8a6a356',NULL,NULL,0);
-INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f','7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45','0e4b56334021fa1fb190d62b5c33fd7f37c126d28ef7a61a80d84eb1b7f833e5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e','1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2','ec24c8cf2685cb4750e7e3da65223b72da2e8afff49e12f36b795105d7dd89c9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8','a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97','2178b64331b1afaf3a8d650a93f6173ab0729b9d776b5f4c552970e79db18a0f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc','05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641','29783a12523c7d590f0c9aa3b71f221de0359f61a368924800b80919084823a2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2','6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71','821a8fad56889c6609d97cdd7e6bc8b6ecc68d54318986551c747ac45e22cd54',NULL,NULL,0);
-INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5','d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a','c765bfd546685684c2bfacdbbb248478a115f88dda12b4df64efb0b336362540',NULL,NULL,0);
-INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815','d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c','b38c60aa1982b330713c16d5572143e5970e4b0273ef5461473e237be5133a8b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde','f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f','059af64961a1fef76aafd5d22aedd13466299a9727bd9b21072794674b02c140',NULL,NULL,0);
-INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa','9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366','f6134380063f36dde912c04787580d3c40a8c8393a595178165f0ff57b5ad90b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd','c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1','21d4d5920b914ea36e3c7065dd7f0af4b294454030688c44e1a011835ef8a49b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882','21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75','b3e7328b23a6af5e3df01bb9bea68d2a8445820c50c2adf3b13bf79c3c4f9d54',NULL,NULL,0);
-INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14','feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13','3101e4813e73498cef2ec786023347dc13fb29aaf1407bbfee16d04f86ff6ac1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92','277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501','a10a734ce80faabca0177b12746f0483692fd13256d7d75af28e615b2324e682',NULL,NULL,0);
-INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a','ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef','54ccdfdb8690395f13bf11d70244d69052acdb3f9948e8238c0d4bede54c899b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3','3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc','96a8a5d4606f2e77f429e6ae8f54576e51e1159969612a14739e69e4121e0fb1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64','4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7','20fbc6981fcb9ff9aea35590a435ac2c7d1513bb4a038a8f62602632b6bee622',NULL,NULL,0);
-INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523','255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b','3e376fad3e36d13f5c50f8bac968fba251f8192e0661df0dec9266d0de986838',NULL,NULL,0);
-INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0','7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d','c61c461272d69c03c027a144418a877a6122dba7ba9f2376000d53656037ce75',NULL,NULL,0);
-INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc','1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea','48792e4348415165ef24cbfadfe83934dfd900c8f2a0bf47251604ad1f9819b5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40','889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029','44a37e3c8140c5d6cc507bae93571af20c9cf4b48e8404edfa4e55c8e5e82931',NULL,NULL,0);
-INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95','dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99','b0166f95f4cf48193827d3b5423889419477c07e9a041c41b72df8229e46adee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d','625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047','34ba529a171f062f8e18bd65ef967158d21a63f907c90ff79f00381c1d9836e9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571','b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959','108e625c8ae24f372335196ec1678080f2f5d211a7e47de3eb1da4817dfecd5e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03','8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158','d68fba6521389577f6303af99b28050b6cbceb05908bd85de1dacd982537db4c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6','1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a','3f04ffa37371d7689609be3f5e65a6986553bf2e0c9db51e8ac815dbf61b01df',NULL,NULL,0);
-INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de','7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1','cc3e49edd68887f1f34db7c81e3125f9f76ba0c45aae70a5a4e4f7f8a85baf4d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d','c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6','274d30a0808c4740b2fad528bf374e4b65e3bdfa17247e7e1c924bda16be9794',NULL,NULL,0);
-INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e','793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388','33ba6fe2f691128379ebff991b818614c4665fd09e4c54b61619d2d2ed54c0ce',NULL,NULL,0);
-INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b','7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28','f3689c9c1663d8e96f34d9e34442f1db962b00725c617592ebad5a5b1338cae4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b','7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd','c3f16c9c50b71969ea4e21819eaf214b1e40316e91af4a3f3964a91b35808e6b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae','ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28','d57ce83db250acc25efe3e0193a3ae93aa5e521eaf0063a745f538e82e0b6c3d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e','66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6','b04d2d8cf335c953fa24a5e17662783dcc80794e937589a0dded13744a9c69ba',NULL,NULL,1);
-INSERT INTO blocks VALUES(310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0','656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209','2e336a7a4575cfab7289b78ebf57f67f09e3efa3a4bdeb2c9b9397deb3701c77',NULL,NULL,1);
-INSERT INTO blocks VALUES(310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499','6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576','79e48332abdd115517204c76fc873417fc8a3da56e255bade91e6f8842c4f192',NULL,NULL,1);
-INSERT INTO blocks VALUES(310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783','b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a','110dd70ced22e1a1c91201c1c1ce0afc628885b2f2b3c785624b851983a71dc6',NULL,NULL,1);
-INSERT INTO blocks VALUES(310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518','d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae','fdaa97987f607fff62cd0459e4d261ba764a7ed75ea6ab1afb3ece06277216dd',NULL,NULL,1);
-INSERT INTO blocks VALUES(310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059','cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61','bf0b49028ffbb1d91272975e819dd6ecba7847dafe7def099bb7119e99ee357b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6','d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad','9bb53822ba08d1625a3eacd2e25ddb87d578d63c081b96395b39a13322c581b4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75','9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808','65d2ccd2975d2480ed63306ab9054ffdbb76fc442ed4c7dad2aac7428d2506e4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9','4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b','8600ea90c90218d55e9aec3aedcfb652432fc0f8c2bfde19ca62f768d1653101',NULL,NULL,1);
-INSERT INTO blocks VALUES(310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989','baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c','aaf7654cbbdd946eeec20b756019f62d012569d28e633380b50e501ea11d37d9',NULL,NULL,1);
-INSERT INTO blocks VALUES(310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd','22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601','1dce35ef471c90ab925590429d3bc5d7c2987aedf5acc0ea1b3be46e88f0158e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc','cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41','2d466dd469c4531675c2190d0e4d9fb2daad5b33426b3d22058ed9770cdae63f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25','a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6','c94709a97d76eda00339d8b9313c132c7124fedcbb4f13f7fc65521eec5fd63e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310117,'978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71',310117000,'0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e','1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f','d882f745bd8f7edc17b13d0807c8d3cfccfbd9dd6678913bd354e2fe5334507f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310118,'02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723',310118000,'011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f','7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771','aefb56011c816cb6b5e7a388a109f991957fd957de7ecf9c4f0ea8f7758098db',NULL,NULL,0);
-INSERT INTO blocks VALUES(310119,'6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481',310119000,'a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f','1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca','0bb1e98956bc350cf8101125e6147253e60978ddeef6b931e13c772056153ce6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310120,'2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb',310120000,'e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923','1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6','7b105baade40f901ef31f2f73cd8503ee209f79db870e9bd51502f7260c074f8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310121,'9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7',310121000,'5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b','9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7','124d2805fa3144fd091b2ef1c80ce44f9895f9ec4a44e8c7b48237f1282b1e35',NULL,NULL,0);
-INSERT INTO blocks VALUES(310122,'d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932',310122000,'70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070','a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17','eeac27ff4665134ac9db123eed51a6ebeb9f66b830282684cf14b80fa9ad4018',NULL,NULL,0);
-INSERT INTO blocks VALUES(310123,'be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd',310123000,'3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd','78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338','0d89c488b635238845ad30bdc78ec4191561296f57240b2728a3396900f69949',NULL,NULL,0);
-INSERT INTO blocks VALUES(310124,'0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810',310124000,'9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3','c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3','6df82c4ffb3e630f9abd9b4f4577221f22a669a0bd985620fec81c585f654797',NULL,NULL,0);
-INSERT INTO blocks VALUES(310125,'cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6',310125000,'1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6','3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25','8cb8ff5c4c38c9c0fba5186c78e3c57041831ddc55b169a74995edce686de946',NULL,NULL,0);
-INSERT INTO blocks VALUES(310126,'c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797',310126000,'1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272','7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5','9fd0630d7ebf232470cd1a8c7e051bbcdb752b88598aa90bec029fb7f118a128',NULL,NULL,0);
-INSERT INTO blocks VALUES(310127,'c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904',310127000,'094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb','0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478','fc7ec51fc69f7284dbd6df219ff906253036d1696f5518d346fe5a1997bbd05c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310128,'990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079',310128000,'28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19','aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786','c726eba0cec90d465a44ede024b1f8dc58063711870de6e82d1424ffa23f4081',NULL,NULL,0);
-INSERT INTO blocks VALUES(310129,'fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc',310129000,'61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c','ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b','f0bfe24dec959d07b2b68a79c3c85caf68911d384ef64b4244b61fb86aa21eb3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310130,'d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721',310130000,'1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781','bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71','c9d741a97b59ad670227903d4a4b5f63048712721e6ee4a59e6593e3a06a4514',NULL,NULL,0);
-INSERT INTO blocks VALUES(310131,'d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d',310131000,'aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6','69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb','eb64baddde8b82bc629227449b9f5ac4cc4adab4b387ad9a2812591de19d6703',NULL,NULL,0);
-INSERT INTO blocks VALUES(310132,'1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818',310132000,'a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe','352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7','ff03eb6a337397b372d03eed981a03eb5f3f9565f66bb943bc1e9fb931a3a298',NULL,NULL,0);
-INSERT INTO blocks VALUES(310133,'1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51',310133000,'626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef','1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a','5fe7e9c01410af91855efed43e8f9a44d9eb0ef53d2fe80c1d88581285c86df0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310134,'1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398',310134000,'4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55','855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440','33874759d6fdcf012b2fc2b57d21fa0226cb3e18d14194500f282f3b11280f76',NULL,NULL,0);
-INSERT INTO blocks VALUES(310135,'d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f',310135000,'e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a','80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0','359ed3a20d949167d5d711db7a275c8e9a410f5edcc76a0bc1e277d1eb563216',NULL,NULL,0);
-INSERT INTO blocks VALUES(310136,'6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5',310136000,'93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a','5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1','d8091e8da964d953066d4973a4212788f9ca3b47788454f693a9a9557d8370f0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310137,'7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900',310137000,'8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585','d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6','2cd10f30db70185a0aa3a4e3b085a99f9b68ddedea747d25a09fe43085873fd7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310138,'d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5',310138000,'4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6','645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948','0eb29408989eb9c5a38a5a2ef7808a99f649cd05a3d641f6e2d652732884d6d7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310139,'b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46',310139000,'2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d','c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c','86088a65b7c10dc88153276f05db07d1fb4f6d4ad707c5a4a9875e739782e2cc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310140,'edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb',310140000,'277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624','ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac','5ff093890b48f2b0ad5d1b99f633fccab79c3014a7f47729399d07e595cdfd45',NULL,NULL,0);
-INSERT INTO blocks VALUES(310141,'b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709',310141000,'f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc','d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f','89b97705896f32061405c10278c072dc4fa495e92c935ba0c57c5d54cf4473bb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310142,'a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143',310142000,'a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7','0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97','3e036c1c3d33d8075922c286510d7fe6bf687cd7b6b2ca54bc183e36856266c0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310143,'8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f',310143000,'b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea','39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6','02e0bd55a0bda5403762446e66a13753ebaa5a514c1cd66c7f04ef46ef4df738',NULL,NULL,0);
-INSERT INTO blocks VALUES(310144,'879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9',310144000,'1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a','0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b','807eaade814d710f7f74b556d926b294fff13c105e326d6955b02a4bc5d6d29c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310145,'175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e',310145000,'fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264','bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c','170f6971eaafb88ec0895d5d9af3ed34bbb3eee703117b5b0e6cf8d8deafe0f1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310146,'e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184',310146000,'9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84','036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411','e103e1f0ee51b5fa86d61f8b8ddd9b7918e0d047727daa43c66ad3d13d7b3c12',NULL,NULL,0);
-INSERT INTO blocks VALUES(310147,'7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83',310147000,'336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3','184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6','c671dd04015cf20b8cc8fce97e40ed1f31df42f7e42a0989eee0a9b49044554c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310148,'77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e',310148000,'f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612','c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f','35a58ace6733dd96d89ffe8486a3d595754aae5271e3584aabedd6f8cb1076e2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310149,'526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c',310149000,'c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85','8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660','ecb6a27a09df864cd864d610a210593ec26988d4132f30f63c8607b6323e4c22',NULL,NULL,0);
-INSERT INTO blocks VALUES(310150,'cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333',310150000,'88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc','db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1','6c18380805d06f23f130503ad7148ef1a215c0b217199995496a7670aad67c52',NULL,NULL,0);
-INSERT INTO blocks VALUES(310151,'a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330',310151000,'b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25','c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85','86d5f32768df40dbbc112f75dde5f7aef0aa1904a689cce3d24be58fc793bfb6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310152,'89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67',310152000,'3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09','ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88','206690aa73f071c14545eea0cb0c8838abdfbc8ebd64c0fd097cc2e2a254d481',NULL,NULL,0);
-INSERT INTO blocks VALUES(310153,'d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482',310153000,'c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7','6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441','ed1c7beb196128167ad8b9d03f1b9a1b7b5d70cd7add306919cd658bc32f0d87',NULL,NULL,0);
-INSERT INTO blocks VALUES(310154,'ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6',310154000,'b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4','b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f','977e7ff9f1e5f0c1f756e802013a6e72299de42a6e2bafad94b57bfdee7a6632',NULL,NULL,0);
-INSERT INTO blocks VALUES(310155,'cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137',310155000,'27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404','0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3','a171b8e9e9879ede2f4c1fd42173d0b0ae0a07fc4d1e7f2f58ba50855fd986f6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310156,'6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83',310156000,'5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d','ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380','e06a1bce3d693147d3df5c1a5ad3b7b421d526213ced3eec59be44220aa6c2c1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310157,'51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a',310157000,'cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8','9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d','e9ab5031997634f6ad74021f5adf3d5a62388fd55401a584464d7bd1c7edd44c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310158,'749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2',310158000,'6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0','03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4','be1d3efb0c59cb3610c20487d20907179398843322cf4a26681010bc89d3032a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310159,'fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12',310159000,'d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033','c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6','4c81d40dc2e7cbc7e47272cbc8fd00b3b88fc7743ae9127216c8fd3cf0a29440',NULL,NULL,0);
-INSERT INTO blocks VALUES(310160,'163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b',310160000,'2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9','df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e','4091dc7273cdb5d4bd19145a422394d0ce18572cbc6665e32274bff761d04c62',NULL,NULL,0);
-INSERT INTO blocks VALUES(310161,'609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8',310161000,'beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980','e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425','54055d0c951f4ca0806dec96cde66848cbb36f6bc836d96cd98db0ff9e4b38cb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310162,'043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804',310162000,'066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f','bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df','2acaead0979ed14161b7b6665b5431098d5544d1415a8539f20bc27e880790d3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310163,'959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353',310163000,'460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a','d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea','4616d2ff3ac7feec157408f1a40dda3e96b3ecbd1fd7977a5d89c40936b1d188',NULL,NULL,0);
-INSERT INTO blocks VALUES(310164,'781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2',310164000,'19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268','54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3','a86e2d86f493fa42f842b5ae85a42f41a97740d844cdcba66dbe64a7aa48872c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310165,'a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599',310165000,'97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33','0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6','85a9f6ce9e41a035f7077c6f53371fbaf823985fb3e4aa88c8ab3f917b06014e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310166,'a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41',310166000,'edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0','683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8','b45d7ccd18ec37708371b786d993d4f6cd880a42087093d0651432d357acee0c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310167,'ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66',310167000,'e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14','d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b','6cd15a6b0104e8343a928946b3bd0dc4ba7062b599e63576a456f9bcbdad2c64',NULL,NULL,0);
-INSERT INTO blocks VALUES(310168,'a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9',310168000,'267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1','ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797','696d4a61ff5e1174d4f20bdb76941ea081a4d2f3189ea334c4e95224f8c8c8a6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310169,'204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3',310169000,'df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a','3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace','cdfd35fa4c56e13b5d326dd331f4ebf61f85518bbbcbade10dc40b1af4a15431',NULL,NULL,0);
-INSERT INTO blocks VALUES(310170,'b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119',310170000,'3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2','f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd','a771c459fa5e0cc21787d85a9b38e8ec396e77cc95362ddfa73ec9fb454495fc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310171,'b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d',310171000,'e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9','e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d','c31dfeb0e49cd9b9f45143ca853172c4f8d3ee88427c3e98f7cc8dd874355392',NULL,NULL,0);
-INSERT INTO blocks VALUES(310172,'b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055',310172000,'89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103','d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996','7d8b260c7351e40751ff111c6c06d7c8aa885428710b3d1e1f0994c35e2f9643',NULL,NULL,0);
-INSERT INTO blocks VALUES(310173,'f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016',310173000,'35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3','73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef','af128c2ba7c50382bbe8e3b428f19fcd80958bc2e5d4c33be43712d47d435a70',NULL,NULL,0);
-INSERT INTO blocks VALUES(310174,'fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679',310174000,'101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017','71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263','c963441968e83c301e8f29f28765581cc5f14e6623c040c3350dc589eea57da6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310175,'f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333',310175000,'67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c','90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b','dfee8971396dc54217e263b98b1ee284fabc170a53cf0fa2d123a1f9cbd14d64',NULL,NULL,0);
-INSERT INTO blocks VALUES(310176,'67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6',310176000,'a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c','b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1','493da573a8f068a577690df0b951ad995a49bbbdca22029102fa286d1d633269',NULL,NULL,0);
-INSERT INTO blocks VALUES(310177,'6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52',310177000,'bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716','80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092','e54ad17218ff9f1d0ac02978bc5b0ec884a467ccd1417779043860b108dc7e74',NULL,NULL,0);
-INSERT INTO blocks VALUES(310178,'8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816',310178000,'186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e','79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd','bb17de70c734bbc12be97953357cba4c749de77aed7ff5e0a5a7c95e02a48bec',NULL,NULL,0);
-INSERT INTO blocks VALUES(310179,'d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7',310179000,'0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8','3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43','2e03fe798f0a5c1f8dedb60d153f4fbb5c461b6df84a5427c4c5fc568c247632',NULL,NULL,0);
-INSERT INTO blocks VALUES(310180,'f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1',310180000,'13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1','2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b','de94fa7ca96ff9c889cdfda64f41e136ecdec886443ac534d48cab345400fdf0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310181,'bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145',310181000,'81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7','82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599','f62a4c12fb1ef9e3f82035ca00f8b419baa84c536d23f127a552b9c3d9df6e3f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310182,'a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f',310182000,'935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c','1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a','454c2009be61a3954687ce793fe7cb30490d41edd77bd9d62006622440df901d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310183,'85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb',310183000,'268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f','82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293','6a772e172863a0a850489c0ebce5b7c5467d17a50bb1b04f9ba949dba19ca8b6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310184,'042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc',310184000,'64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935','9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb','c5850f7e42e373ad7c980eac188fc4c1d93c1b70fa5113498aa6a50a7e583a95',NULL,NULL,0);
-INSERT INTO blocks VALUES(310185,'bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f',310185000,'8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94','8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3','d67a467f3facea45d03afbe61753a922cd38f8de8c4b23e064a530e2592412aa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310186,'e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707',310186000,'e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090','137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256','de219598994c08d7db8fa07ab2a525349193cf9995b12bdebf550efc116f6d3d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310187,'fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414',310187000,'c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5','cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a','d102dd65505ea26b381ebc87971f3346b7bc5caf341923fe94dcb249d69b4e30',NULL,NULL,0);
-INSERT INTO blocks VALUES(310188,'85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917',310188000,'13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d','2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b','b8c7ce7442aa512c5eb00e3c222fd2ce668afb4ef43d20af4592755faedf27b0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310189,'7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06',310189000,'582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368','ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f','51aa347c9fde3d01458f08a73c430406fd712a905ebc897c477ab43297fb57c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310190,'d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d',310190000,'d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4','48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611','badc62331f35d2d438ef5ac0d918e29d750aae86f1275164354eac7a7e7f5254',NULL,NULL,0);
-INSERT INTO blocks VALUES(310191,'5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139',310191000,'23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca','704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b','88f7d700b8ff35da0dbaf70bc08d827586f42dd7e817ae603c2f81058850c9d1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310192,'31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa',310192000,'cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9','17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672','b3ed38fcef537adc2756596562698c24287abe616870b22853ea834aed2a0bf7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310193,'ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a',310193000,'391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046','d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd','62ffa442b4f5a7835ddc82c0f5b5362aa3c97ecb66b039670ee22893b6891ad9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310194,'d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a',310194000,'9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b','d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d','015c140f5d377fa59b3c9d8b1c572565f35cd73b230f7530d42d7bf3e84cf41f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310195,'0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53',310195000,'705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde','d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0','86c493dd15da412115cf100f1ae5090054ecc5c70899504cd8d28b4341c6b2f4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310196,'280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6',310196000,'59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227','57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80','06521b1a530800f4e086530f29d38e8068690ef94e073c38fe834876aa7f9917',NULL,NULL,0);
-INSERT INTO blocks VALUES(310197,'68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467',310197000,'a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07','58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4','0e8eacaff59da1d2ba48a95aeb66456f4e3bed48ee495cea9ec2e0ffb98db2ba',NULL,NULL,0);
-INSERT INTO blocks VALUES(310198,'30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2',310198000,'ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2','1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a','47e506e747a98d1964596e6c438825affd74e81533b2f48e21eb4e5a90262f55',NULL,NULL,0);
-INSERT INTO blocks VALUES(310199,'494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613',310199000,'e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1','87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599','fe470b47af5b3f99bbbcec04aa4e304ac0b2890d03f6432c9f9a3cb6ac22e474',NULL,NULL,0);
-INSERT INTO blocks VALUES(310200,'d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03',310200000,'fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a','a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54','9eee9c3e3b358fdbfb78813b40b67c9b33bbaf1512e3d7d27f6c05e61d0bf6ea',NULL,NULL,0);
-INSERT INTO blocks VALUES(310201,'8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95',310201000,'7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722','f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f','a22e94319ba0331541ae9446e6313faa1ff5e579294f0a4e73d5a4cbf1368ae2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310202,'95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8',310202000,'084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b','76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113','96cba00eb5b84fe3634ae0c4ab0bc5544b5f9a703f20e0c34c3877aa97769071',NULL,NULL,0);
-INSERT INTO blocks VALUES(310203,'ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8',310203000,'4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5','3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4','36c279295138f4a6da31842ab3a843f35fdc05807920bb9909042562e3f72a83',NULL,NULL,0);
-INSERT INTO blocks VALUES(310204,'18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb',310204000,'9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416','89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6','689909b859f925743226073e922bf8f21ca99caade631f6a1dd49b16dff9fce8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310205,'5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a',310205000,'fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01','1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6','4457523f49ff3994beb0520d8f8c96387bcaec1e3dad5d4e414c0118768e1f67',NULL,NULL,0);
-INSERT INTO blocks VALUES(310206,'0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518',310206000,'5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07','e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8','643bb31e7baa89d28efcee7755e727165c26c6160da6e474bf0361ca45d4c928',NULL,NULL,0);
-INSERT INTO blocks VALUES(310207,'533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585',310207000,'b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34','596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6','7a0ee60726734da2812a9d04529425ae59ac22f6598b536a399f77428e3acb66',NULL,NULL,0);
-INSERT INTO blocks VALUES(310208,'26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44',310208000,'aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102','3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a','66543655288b9354381b07bd124c91433357babb742999fdf19b7c5928ebb9ac',NULL,NULL,0);
-INSERT INTO blocks VALUES(310209,'23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf',310209000,'c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0','56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb','78c91e8e991f4e18fd9b2a200fdbceba6644c5baa7150ab48a55a06378fa2731',NULL,NULL,0);
-INSERT INTO blocks VALUES(310210,'70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0',310210000,'207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f','ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151','b8d234858f912396a71c45ebae9b3a21bace1a8dda0827b9e8a9b82a47cea34d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310211,'4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d',310211000,'dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208','f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9','03209d67b7b17a0027728b8940661ea37594bc07cfc6780033aa44c481f48af6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310212,'6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547',310212000,'32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9','2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8','079f23e8476ed4f50d9aa11b1dbc3ef842c51bc46b622f75c06b06a62388e701',NULL,NULL,0);
-INSERT INTO blocks VALUES(310213,'17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7',310213000,'15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36','fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb','36a8bd5e1cd13df3238cc21da9490b545e51981845daccd2d7c0f3e7476e9f69',NULL,NULL,0);
-INSERT INTO blocks VALUES(310214,'4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454',310214000,'dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4','5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f','2e5d68dcda983499b5f291e65d92baaf171cc830e18385d212e6c66e5c8c7da5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310215,'c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7',310215000,'6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed','b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a','0b8f5bc09af225c25136f886347723693fd43c83b4a0602747803579bd4fe100',NULL,NULL,0);
-INSERT INTO blocks VALUES(310216,'6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524',310216000,'a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef','f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148','58b268d9c7d1747b50ef4a6424d3e57365ce66afa440b9b365126437c676d3cc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310217,'0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8',310217000,'419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8','a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce','03e581edbb659df8a0b7a2996d0ce6b97f1f9dff6d10a7d1e9443f5b20836521',NULL,NULL,0);
-INSERT INTO blocks VALUES(310218,'3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9',310218000,'a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173','dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e','9c7ecbd39c0967b83ae38062d7674b5fc87e4330253c78da3d19d7c1d8e12fe2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310219,'60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf',310219000,'7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e','c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384','128105377e3c494bd2ddebf06d4f7b341d300abbae44e42233771cbdb8f6b2f0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310220,'d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef',310220000,'00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240','d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65','f43ab6ee98113914d6107f8950d5f6fb8affc0764a4723aa3da76bb60462ebe6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310221,'cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d',310221000,'2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540','cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800','36833c9b3c6ada300b80182e1b9e78ba57b16030c2350a98ae24f85212a8d1c6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310222,'1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993',310222000,'00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82','6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107','9436a06f0aa4299d6d9dd6eeb34a34763dc1571873ec7d801504482f84e0453f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310223,'af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047',310223000,'41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955','1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7','1dd11ae205fb0e3cd0e40f6b38f828c87984aee77d866a89459b419bc35c8b91',NULL,NULL,0);
-INSERT INTO blocks VALUES(310224,'5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c',310224000,'66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929','1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af','2959b2278c2b1ec51545610be3ffe8558ee5b8d21654226a04e99fbfad17cb5d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310225,'0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c',310225000,'cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95','61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7','efd4e825c77a27f6c0d8b18c54f144166479fb35ad75dbab439122b908f4d0b5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310226,'b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb',310226000,'cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5','2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4','07a2801c71185f1fd03a4372433bc536c79aaf46ed374209a41a1fce2d0e9ff8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310227,'ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552',310227000,'60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c','200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a','d652cb4035428a7d0c6ff73d8f6b3bc341ebcfefbd5129f45d77d9a4c63648a3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310228,'8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b',310228000,'798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb','c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185','03298834b11f7cf4a87e5717022fea72055bc47a6e8d0f62e4a9810f4cb96b82',NULL,NULL,0);
-INSERT INTO blocks VALUES(310229,'d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297',310229000,'becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df','1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45','959fc4e9bdfff5818ca84c2a68c31868f6d3bff79e7dcc5df9da122959332a11',NULL,NULL,0);
-INSERT INTO blocks VALUES(310230,'f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35',310230000,'e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6','d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95','b540fdab5cebac778cf187ae4e15720474ada921e9ceaa1393176bd2a4b8a3ac',NULL,NULL,0);
-INSERT INTO blocks VALUES(310231,'8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb',310231000,'a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59','7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200','c5044aaa4b6c6310e113ab4b8d4a06108a09e57b6f082589aa84210ff6ef74eb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310232,'813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8',310232000,'5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43','721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6','64b6eb076323d0a896145203b0c7c201c2b57511c3d85d7b546395d75ed44a53',NULL,NULL,0);
-INSERT INTO blocks VALUES(310233,'79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6',310233000,'d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914','a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867','d9f33ce31a6349baf6626faf215023a0dcaa381fbbc85519a36790adea83a30c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310234,'662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd',310234000,'0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766','b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a','9174a71d733b2d1bf9fe8554ee25a8f90b8316b6c4bf8f93a290c8bcd96d7482',NULL,NULL,0);
-INSERT INTO blocks VALUES(310235,'66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e',310235000,'5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8','8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd','26bcd4fe3cc5d852b6ee428aa6d8fed7ac29d4870aa3765afb64a7f606f34f98',NULL,NULL,0);
-INSERT INTO blocks VALUES(310236,'d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4',310236000,'c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76','1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db','a90b36102b9796577c3433977637279f790986193da640ed70d16c82dbcb1697',NULL,NULL,0);
-INSERT INTO blocks VALUES(310237,'2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095',310237000,'4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff','2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f','387939cbc42aadf395163de49936ffa63ea379a764238cedc0a52ecb280a8810',NULL,NULL,0);
-INSERT INTO blocks VALUES(310238,'43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55',310238000,'6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7','31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961','12bb025b6e426c682d70a6ae543622d706b596d8d1848c61b0fd456113766738',NULL,NULL,0);
-INSERT INTO blocks VALUES(310239,'065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1',310239000,'1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac','82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e','c501a04f979e29b0f67e8c4b2ab0cd68bcc610b98eba76d64c28e426e9162334',NULL,NULL,0);
-INSERT INTO blocks VALUES(310240,'50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26',310240000,'be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240','bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b','d0dc75e494d5935319620e47fe5aced48a36185547557d7ecdf4105ce3865810',NULL,NULL,0);
-INSERT INTO blocks VALUES(310241,'792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4',310241000,'5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a','e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe','021d83e2bcd0861be9bda8a7c6543a42d5cb2b1cad18986155556c784420bae3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310242,'85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93',310242000,'5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8','a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f','f20bae6583a51b6e9170deca1b35559f7a93dde4f14718fba8d132d3fe0e6322',NULL,NULL,0);
-INSERT INTO blocks VALUES(310243,'a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd',310243000,'ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730','b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0','d9519ac42fde29980b3bc45cb459ee7e430192d8b5780930877da95a6510c14e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310244,'46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df',310244000,'07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80','baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a','004314c5aec356c4085a994e40d6e7af4228da1e3ad37071c58a406c9d79ea21',NULL,NULL,0);
-INSERT INTO blocks VALUES(310245,'59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae',310245000,'d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903','18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e','f256e29cac9ed8fd9084d5ba5c67dcf17a9cfdbf448002b4d23be878f8f6c431',NULL,NULL,0);
-INSERT INTO blocks VALUES(310246,'6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd',310246000,'a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98','a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7','92054cd8a49ac6948cac199791828d3caddd81f90d220fc2da94230f776c98b1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310247,'fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66',310247000,'ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90','39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6','5498543f7056d1878b53eee6bbfbfc859729deff6215caaf7b228b90c2ae0716',NULL,NULL,0);
-INSERT INTO blocks VALUES(310248,'26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275',310248000,'029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2','6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce','a48928b613ea6f3f01d29fdf8a6627a62af3454eeb3fd706201264e41ad28e71',NULL,NULL,0);
-INSERT INTO blocks VALUES(310249,'93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617',310249000,'dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02','2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc','1e5bb681e064d631c8fdaee31e42df684856a141bb47c387a509b4c888a83644',NULL,NULL,0);
-INSERT INTO blocks VALUES(310250,'4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2',310250000,'a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641','5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176','58fe2492038e1061f1da22695198180f159b434c09fe8184abb758bfde7dd8ed',NULL,NULL,0);
-INSERT INTO blocks VALUES(310251,'63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7',310251000,'bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8','6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee','dc119235a0d3348db073f20e5edd73ba7886d07bd928c6593c8b531697a2e8c3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310252,'768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43',310252000,'8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e','2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125','b91883ba3c87f07f7f3075cedc509a164fc69cccb3f7b4955263f0a427fa2555',NULL,NULL,0);
-INSERT INTO blocks VALUES(310253,'bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e',310253000,'2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4','1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f','8c30b4215455a7b5c4fb35ff4b675702192cf87e37cf3a89be543fd46109e8ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310254,'ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0',310254000,'d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547','098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee','12b9c9f7b4c06692d2e1c8ccad20ac1ad2be2bea92cbffd939f4ab8d28374fbe',NULL,NULL,0);
-INSERT INTO blocks VALUES(310255,'cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4',310255000,'5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a','b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4','0ad73b9f29a65b6006fab73449dce8503f1afb74b31cc14d7cbb873df28c48d6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310256,'d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619',310256000,'8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51','fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21','58e3369f4b854d4dcf2b03cebb0d9c22eb74381bf8c4f77e46527f6db4ff9205',NULL,NULL,0);
-INSERT INTO blocks VALUES(310257,'0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34',310257000,'0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913','71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055','35b3a89b3adf80381946f70c49cf74fd946b88eb9d243217623c04c645c6be63',NULL,NULL,0);
-INSERT INTO blocks VALUES(310258,'3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f',310258000,'e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e','0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca','c2f31d665dead39ac346bfc8a6459ef003c35ebe858bf2273cc3a532df345a5a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310259,'e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9',310259000,'03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc','19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1','27744046c69e0650cb385182b7b1518085f196c8c2fb11baf13661d2229f4a9c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310260,'8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd',310260000,'83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe','de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db','d37ff480b33c750eb958bcd17e37f77d69e5ea91ba2cd0fc5bb3368e788691c6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310261,'a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232',310261000,'e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0','58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e','5656eb27fedc0aa95a07805caadab9816feac61e3a7e97cb67cdfebfef2d3714',NULL,NULL,0);
-INSERT INTO blocks VALUES(310262,'e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce',310262000,'c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91','a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d','df2d34002ae7a0a83629c3023a29af627de3da68afd4369cae55737968d1ce5f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310263,'f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2',310263000,'676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8','ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab','a5e5e3d49738214545b92d1afd827fb69c457af8294d891460eb14ef72bbae9e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310264,'ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416',310264000,'258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25','21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd','d06a0daa493d2c5c4a16315a0c4e43447a5cefd995df309dcf6709a2631f1fcf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310265,'41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1',310265000,'72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d','9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c','f1bc84e08951dedc768f03db9aec057ac21d9a3eedbd644018defb10dfdd028c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310266,'1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431',310266000,'b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61','578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e','31341dfe24064025c6a6fe45b2443ca21d461280708f8070481a46a096880844',NULL,NULL,0);
-INSERT INTO blocks VALUES(310267,'c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199',310267000,'ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5','face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c','f153cb888d8bbdf63f4eb45b9cc3b87d6e5ab845eb202deaa48c9d57ab78f23f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310268,'b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af',310268000,'1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1','ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd','f5a8f5bd5e8cae447a96b75fc4b9a0d70e818a9654206cb23ad8d5ea07e92831',NULL,NULL,0);
-INSERT INTO blocks VALUES(310269,'37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e',310269000,'fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67','6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412','c30fd1c2fa3af21d093e353716fc4c1e8cde49854002a411d98e2a0e76211911',NULL,NULL,0);
-INSERT INTO blocks VALUES(310270,'a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d',310270000,'1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785','fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53','bba3fcf5f4baf2b28664137cb7ac723d03999e9a17eebe6e564e15300415e455',NULL,NULL,0);
-INSERT INTO blocks VALUES(310271,'67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b',310271000,'cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17','b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a','2d5aba60683d839b1579c2b69089c00819349fc4f4b6abc5a48f665230f67c91',NULL,NULL,0);
-INSERT INTO blocks VALUES(310272,'6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea',310272000,'2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8','329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35','52e5adc7e30dfef0bcb7404f93c28177366b172a8f5c8713aa69c712f479b5fb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310273,'625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a',310273000,'ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8','f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a','a4460c33d3af7eaf48cff39abbffd1b68bba521b1e1f814f0add5c91b00fdb27',NULL,NULL,0);
-INSERT INTO blocks VALUES(310274,'925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6',310274000,'ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646','bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62','4daa321a8062e35b68c85d63c6c71cba86af28cad34ce1ae7a4a971f34addfcf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310275,'85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9',310275000,'23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163','c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f','3e156c57def9f6dcf24682ed855311663d61079a0422522c3b660d80a4e88430',NULL,NULL,0);
-INSERT INTO blocks VALUES(310276,'ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77',310276000,'a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034','99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec','f42264c5306769fc6bd1bd6f1955900113ec16b625e06d62ff3001b2e6b69707',NULL,NULL,0);
-INSERT INTO blocks VALUES(310277,'c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93',310277000,'0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532','08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3','236d34af3aa5893e9aecc8fb65c1efedc4f4e38874a2b20b933c973da4b4691e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310278,'7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05',310278000,'0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259','6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499','a70fb335be86478d6730dbcbcc8d738e5e3f55608f445b5a033f9f5800951167',NULL,NULL,0);
-INSERT INTO blocks VALUES(310279,'1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f',310279000,'442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c','04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41','7244980c44845ce8bd26268b39a1204f014f6c18f968f57dd2e765193b71dcb2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310280,'bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142',310280000,'38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225','d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca','0b2884e47006914acf505e50ea5272ffeef43e2a646cf0b1c57afc47bf943c5d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310281,'4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f',310281000,'51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc','77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b','ff50d8f5f8dcce283b687ce2aff46b5b1250eb43a11bb5996164444879dffb31',NULL,NULL,0);
-INSERT INTO blocks VALUES(310282,'51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f',310282000,'73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb','889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240','02e7b49dd579b3355aa9063b38bec6e6e749b3cb5882483d3b15886e176f0610',NULL,NULL,0);
-INSERT INTO blocks VALUES(310283,'df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49',310283000,'5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144','1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2','25008bffd8cec7dc2c3ae13ac7c9e868129e3b9203911aa0fa3db14f5fc89a9b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310284,'f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7',310284000,'ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b','c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a','4bb8f22e461d70d953ff1b9f0ced8b1cb143ab1b8dc38bd3a1fe3fc803ccd40a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310285,'8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a',310285000,'3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c','35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed','509ae7a1014f0442bec8eb032d144c64dc8a11e6970d0e32a5ecc4d41fe68760',NULL,NULL,0);
-INSERT INTO blocks VALUES(310286,'d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0',310286000,'4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9','5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311','a7bcd9f0ef4a4deb4603c21e799e2c9418c9a085af6aee86082d3c79a7b4d880',NULL,NULL,0);
-INSERT INTO blocks VALUES(310287,'a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4',310287000,'67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410','791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84','a0940fad3e49fdf8668dcb4c9d773e1a5eca6fd5ef23fcdf4be0ccd1cbbfe405',NULL,NULL,0);
-INSERT INTO blocks VALUES(310288,'2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7',310288000,'600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc','3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65','4dd23e9dbda9e5647e194648a2be3ef8597c5f9c4c0e5c58448d4195599de8c8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310289,'dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75',310289000,'cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158','26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8','b406c7ad8001546298d16bfa1f0e77b3396787dc2324be51ce33e9cae0c6fd5a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310290,'fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370',310290000,'04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f','74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e','dcb7aa5f99cbb70b4d70bf3a360be2c4a5756261a8792856828a6cc1f282a644',NULL,NULL,0);
-INSERT INTO blocks VALUES(310291,'1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2',310291000,'50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917','13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279','0b50391ad17533ea1807be4941305ee75a013a8a5330139e36818f60a9f7d8ef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310292,'9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d',310292000,'9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0','1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56','24b3947f5fbed58b6a9c47ab51ef2e654114be20f84935eaa908c9544e275514',NULL,NULL,0);
-INSERT INTO blocks VALUES(310293,'bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712',310293000,'a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa','2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb','1db78c9abe493106e75d3629d221d046e1d6194e44df8f882be38b521d33ab53',NULL,NULL,0);
-INSERT INTO blocks VALUES(310294,'4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d',310294000,'3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25','36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6','b6d94000a7b7dc674d610bf89faf7c0d43bdc3e8f391f6089ded1557f7f0f286',NULL,NULL,0);
-INSERT INTO blocks VALUES(310295,'66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53',310295000,'bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a','2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da','cc57c30a8b34a715c886a444cedd81ccf2c8be145642f2df64d376d0acf1e1f3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310296,'75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916',310296000,'08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b','517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff','b77e2a71e0857e990c1cfbb021c0a04fb17b64ec9ba48c60d49e3dd8ecc6b0ac',NULL,NULL,0);
-INSERT INTO blocks VALUES(310297,'d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650',310297000,'cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8','85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7','edcb77f23eb738d688c1ea5732a945d76279766c4a1ee1effd190bf3f726c05b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310298,'8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a',310298000,'25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec','0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68','5dc738e17243a84b37564b261267924bce9c6cce7595c74d8808f0cf03432a89',NULL,NULL,0);
-INSERT INTO blocks VALUES(310299,'a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9',310299000,'756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14','299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0','f3c6ab9d0253858a08da5dfe893c8266a32c796eb2e4a6c4f64ebd4263f9250d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310300,'395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2',310300000,'e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d','8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020','40541eb5a9dfd5c5a299a13aac804fb1b87e790891c55b66e9b36b1838dc8dfd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310301,'52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a',310301000,'4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0','676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0','7273cf6a0294acc31eea0e0a9af603500f59a9f115b3c5acd5cca992f185f061',NULL,NULL,0);
-INSERT INTO blocks VALUES(310302,'ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa',310302000,'a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f','ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021','b26574ea33e8a4ca0bd958b82248a9fc9fdfe403aa717a9e0ef31474bcc32e58',NULL,NULL,0);
-INSERT INTO blocks VALUES(310303,'d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca',310303000,'23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49','d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4','8076e1b2af994482a8868a28ad8b5d41a5fbe2ccb349d65404e7c0dc59c6dd2e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310304,'b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c',310304000,'6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3','96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5','3862df7b71134b605229146563a78a5ca695a37c4d6da4b65d21876129c80f1b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310305,'cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b',310305000,'c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1','35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef','3b6505bd17f14fef0f06cf95c6bd3d3d759479674824f738b1c7fecc151b9b44',NULL,NULL,0);
-INSERT INTO blocks VALUES(310306,'a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a',310306000,'fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79','df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997','c052edd088e829c9ac4ae5ca349da7067bfd5dcb8dfec11c4ec1a635d3c8c9e0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310307,'bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c',310307000,'e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee','272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944','3bd3565fc83516439eab9db5ac6d85d8763d16c16bff122cc6e70b5c48246030',NULL,NULL,0);
-INSERT INTO blocks VALUES(310308,'2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30',310308000,'523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5','30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1','4b488ffd95c4d443b431c66d9d4442621cfcb3831e920f8f1d291501e2d3eba9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310309,'ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737',310309000,'effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017','197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c','5b336477cd043069fc94aaa9efeec573f8ea2f1915382602469f2ab6bed6d717',NULL,NULL,0);
-INSERT INTO blocks VALUES(310310,'07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c',310310000,'968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002','b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0','d4b6b0de6209af38f0a99ee7cc1e629039233cba66bbd546aa874c9b5ec949fd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310311,'2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36',310311000,'8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72','86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649','9f34557e605c362c267d01a10c0e1230b96311675cf37ac22fefef3e348f90e6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310312,'8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7',310312000,'8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad','802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86','06ab0afed2be45271b993ebf500b3fca4df8e920441577bcb1842206129b58f2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310313,'7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5',310313000,'1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73','e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51','471dc3888257e83dc49fb7acb75a3d327ccfc572fa4c2a597f68e97ced7b706c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310314,'1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8',310314000,'8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1','17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695','d0edc182ab52e7db475d67edfa4b8d9b4d4bfaa79351ab7c7d0a93cc1e63e465',NULL,NULL,0);
-INSERT INTO blocks VALUES(310315,'bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb',310315000,'24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba','d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654','f96452fa9d526175036d137afc49a849f0839c4338d29815ee3eac02e3df6f91',NULL,NULL,0);
-INSERT INTO blocks VALUES(310316,'ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44',310316000,'a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239','daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84','cf505f0c309fbaecae7d9e525557f8d1501a3a08d66bb8a7abc8d2a8db721add',NULL,NULL,0);
-INSERT INTO blocks VALUES(310317,'aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63',310317000,'bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647','740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153','af696ec589d2b95f36e16039d388a57c38eafee5f3de5596a97f3c823c77f892',NULL,NULL,0);
-INSERT INTO blocks VALUES(310318,'c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03',310318000,'6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee','3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c','ff573059e90f4aade75d1f2d950dcf046ef2c1217b589d0bf2fc9c38c6c42012',NULL,NULL,0);
-INSERT INTO blocks VALUES(310319,'f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71',310319000,'efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8','ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222','73a44e99dcb39be095771e34c74ee4b6a7a0819207807821d621545ca4b6a91f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310320,'fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b',310320000,'8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a','b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b','3abdeb2a4902cacc07440c8f176576963d48190c3e66bce2ccd97cc15d79f752',NULL,NULL,0);
-INSERT INTO blocks VALUES(310321,'f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5',310321000,'21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd','77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a','0d0c1c139a2f9304f5111dab26862dd88c97f061ee9ec716cfdfa8f101cf9f2a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310322,'ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668',310322000,'01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a','3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3','a803ff9c9a83a885463f0f41b774b09c5dad9ef8827579499cd94cc6ff218858',NULL,NULL,0);
-INSERT INTO blocks VALUES(310323,'df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd',310323000,'a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc','2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4','fe10c5d1f27a192d9c72377818077b94ff7fee46c54b8bc52cbbca50743ccb56',NULL,NULL,0);
-INSERT INTO blocks VALUES(310324,'367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826',310324000,'d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6','051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157','c654695d92ff853e15ec8399c1e5fd6b552b8a2e4da3167f792e2325b21fefa0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310325,'60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac',310325000,'7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0','7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251','0d9072553790491007aa13b4d406831506f7f770f8ac7fea5ad42db6b6cd2b68',NULL,NULL,0);
-INSERT INTO blocks VALUES(310326,'d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573',310326000,'ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617','72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa','e0a3b19fce605701f1ce2ed25cde785ddef37c8ae11a1af97f32f89a9faef45b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310327,'9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc',310327000,'8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6','ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739','f2ce43aa9e6374f95a9c5d5b55de0396da45be6575dc5223742c2d70369bd00e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310328,'c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf',310328000,'bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d','42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344','cb79907543638b77555fac7568f2f744f22ce989dc0e7654fd49e132eb7666c8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310329,'67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30',310329000,'4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b','a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a','02047850f93eb91d0d83851054da00ed66f6f6c0fea04d627866f6355be4273c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310330,'b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c',310330000,'4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3','263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436','3d6595616fc996c9fd880bc5b227a7e2d436bf27f6f06ab15cd456c4322fffb6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310331,'52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e',310331000,'c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91','646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6','ba499b294c5cb3d50626ad04df807602e4f3fa955ca6b35795202f437182fd6b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310332,'201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2',310332000,'cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000','8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b','a57bfcc468c3f5d57b1b178ea7cc8c1af55f42867d0ba5d88d4e55b2bc79fe02',NULL,NULL,0);
-INSERT INTO blocks VALUES(310333,'b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82',310333000,'b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b','c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67','7694e14e12a15ab6aa8143f1e9fcaae46b1746f51398d79a4f6be6c3137d6c89',NULL,NULL,0);
-INSERT INTO blocks VALUES(310334,'a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd',310334000,'7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1','24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9','226e74766ac5ef3a15e7d38c05990871f92ef80cddf954d17759d2ad2ea59d02',NULL,NULL,0);
-INSERT INTO blocks VALUES(310335,'23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89',310335000,'47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644','ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec','fe3fa4d5ea7f9f18f6564a1857c7ce23e418e46aa5b63b3365d6cf73ab930e07',NULL,NULL,0);
-INSERT INTO blocks VALUES(310336,'ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199',310336000,'c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594','a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c','1eff4c9279cff57e13e005fad48c92f7f5bd928e4b5a3d7eb102bfd0bccf353a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310337,'055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a',310337000,'a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e','15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353','61eeadd7e8f4c94b41e9f3c67bad3ff29cc1d19f580114b3ca3c2a929596c036',NULL,NULL,0);
-INSERT INTO blocks VALUES(310338,'97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd',310338000,'31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905','ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166','0b46e8c3b291dbc65e5a2ba99739bea530eeed734b7cbd0248c3b0ab06e3d817',NULL,NULL,0);
-INSERT INTO blocks VALUES(310339,'99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052',310339000,'6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220','af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff','5771cf30f52a621216658854604973564d9a3a5b659986d3f5ab042a8a4a2674',NULL,NULL,0);
-INSERT INTO blocks VALUES(310340,'f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0',310340000,'7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f','f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92','9b0c7bd03815d2708a3d6038b3783da0dd241e75b6de17402e89a05ec76e5222',NULL,NULL,0);
-INSERT INTO blocks VALUES(310341,'6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f',310341000,'1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b','5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6','d0116b9fb089a2865d1425244075ef65425ce9e5f0f1b70fe7cf97e5ce6b8f47',NULL,NULL,0);
-INSERT INTO blocks VALUES(310342,'48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7',310342000,'3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92','b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145','2a6b0c1cd6ba6cb2fc95fa6fb0ce6369b7959d73680cfa1a09697626bb48f4bb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310343,'41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11',310343000,'26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2','37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090','af3dd05b7f7751705f9bc0aaf099568289d0cc8a62b80cb8cf957b67ae9ccdc0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310344,'97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977',310344000,'444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908','52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19','071a2af66f03d51498ea342dce8d818d4b2df9e2e5fb7ca9344988ae7676b0e7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310345,'0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65',310345000,'d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e','15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf','54a59c638ed8ad1a8b9d72d0f9afef9616f7ee9c77b1cce9793ec14119c819dc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310346,'0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16',310346000,'3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781','58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d','ed53197fade3b880a6bcd70a41112b83879f5a1b2733dcd044a152f6e06966a1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310347,'f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d',310347000,'6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166','716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd','f9b1e1152ba3fd730692c61dc7b897b74290425148717cb0c7d26ddb2b066764',NULL,NULL,0);
-INSERT INTO blocks VALUES(310348,'c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412',310348000,'668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf','8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293','95410fcf3fc291907a1969f9cdc8646a55fd0979f748332a10a298ed1914b4c7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310349,'ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c',310349000,'32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12','8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01','650e904e246fbaccd362968543bd414fe4e03941d96f0a8c1c7d509fc260b738',NULL,NULL,0);
-INSERT INTO blocks VALUES(310350,'c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d',310350000,'dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05','1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf','33bc524f9a329407e3509a4623d89f6d2c3e00616c4314b86bab1d1b802a4a6c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310351,'656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f',310351000,'89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151','f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524','dbbc0a977c9bf6385e4652c94f97702965df6eae2863730b9930e7aafd8d6c84',NULL,NULL,0);
-INSERT INTO blocks VALUES(310352,'fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50',310352000,'fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb','1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4','b2a4a9c315f66980a2a3525b322adf6ff4a47e60649559bd2e7dffb68b58c29a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310353,'2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8',310353000,'73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1','8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141','a73650310ecd6b53b89787e20449de8e844aa747b6211dcc0b33aa389b3a5d72',NULL,NULL,0);
-INSERT INTO blocks VALUES(310354,'437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0',310354000,'b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324','8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c','b31bc14fc3a9af3b1b3977100c36b1465781bdbe9390ff267afdc51d57caae39',NULL,NULL,0);
-INSERT INTO blocks VALUES(310355,'ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d',310355000,'ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579','8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea','f1f4e9f44d7cec303a3ff0e9014c66741e8463d2e1e2644edff38a7a06ae19d3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310356,'68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4',310356000,'06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f','3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566','cc0cc378fba640609764042b3a71687c5ea7085f9fd3528fc22cb4a0f33c535a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310357,'4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f',310357000,'443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b','af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a','1a17b268e299c081550e6b708d3a67c8e9e5da464a248c07bd7ff2d37521aaf6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310358,'d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6',310358000,'c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f','635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31','8994641c9faf9510eb6dc0cafb53c9ddd941fb6c7f628361bc30a57b70d1c635',NULL,NULL,0);
-INSERT INTO blocks VALUES(310359,'4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f',310359000,'5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7','eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d','f65b2c8ae6adc575a288d4f042f90176bd007350206178e62c024584d6ed287c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310360,'cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0',310360000,'b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658','32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b','0f246fe11fc2b9fc1d2b8f7517473f6a7eb91915d765779783e7898a8bd3d5bc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310361,'636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019',310361000,'fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c','4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3','6fac343e1053a7a48346243c906493f98c138355761619bdc0677a0b3d7c697d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310362,'6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2',310362000,'38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046','2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97','7208036024f6c4e6557619b9625abd7275a52a91f6bf0d62fbd20736138665f4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310363,'a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6',310363000,'82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3','baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d','f2e9a33842fc7f9a1482b1c985a2a6058b8b56535c2a508fcd3e3dba930e46be',NULL,NULL,0);
-INSERT INTO blocks VALUES(310364,'67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9',310364000,'cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4','973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73','6de02c61011ad812328b595e95dfd62a2a21ed94bcf59d87fc87c758a9ccd48e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310365,'b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409',310365000,'49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617','aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932','800333a93bd7fa0dda3e2ba69ae3e54849f6eada89153cb172fd950470da26cf',NULL,NULL,0);
-INSERT INTO blocks VALUES(310366,'a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440',310366000,'687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597','610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8','b33be7191d7e1afb1140f19fd44bb07daf83897c2fa1af45fc75c15bc85307a0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310367,'326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47',310367000,'d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7','531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a','78fd0206e26ec2c77965dec55fa417738c919261b8a436e69574a786d313dc65',NULL,NULL,0);
-INSERT INTO blocks VALUES(310368,'f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006',310368000,'97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba','289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e','a75962c77a91893bfe4fce4d8e9b6e6f85d863b7f2b30060f7eb61b913c8f988',NULL,NULL,0);
-INSERT INTO blocks VALUES(310369,'0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da',310369000,'1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66','a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b','9f6da7f4b88f3abd9705318ff6a1d23ee9bcfb11c16f6de7a1dfc5c160c8f5bc',NULL,NULL,0);
-INSERT INTO blocks VALUES(310370,'9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67',310370000,'578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486','d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58','7e1fc55016a8c1f7d8aeb507891febc3d2ff083d15a8386cb151eeed36126902',NULL,NULL,0);
-INSERT INTO blocks VALUES(310371,'7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154',310371000,'473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492','8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6','0c1a84220c5740d841e1019b76849a49f2760d82afac404c46ac333840724478',NULL,NULL,0);
-INSERT INTO blocks VALUES(310372,'d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d',310372000,'0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c','ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3','c4f885c7acac670739975c95af4f377eecfb635a112cc87b6881d6972cf46374',NULL,NULL,0);
-INSERT INTO blocks VALUES(310373,'c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0',310373000,'48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d','b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea','95024e723544b65f52242f2c4ec5e71264a1aceb8e4a02136a0772be1c7d60fe',NULL,NULL,0);
-INSERT INTO blocks VALUES(310374,'f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e',310374000,'aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4','46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60','015375f1837c56f1921aed0b6297ce0ed5279663bb9bca13ede1392abbf17d81',NULL,NULL,0);
-INSERT INTO blocks VALUES(310375,'da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458',310375000,'2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b','9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb','9f74f2c9fc67e4d2364b85c8d975f11c53dd96dbb33512d3718fa815b5fa070a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310376,'5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc',310376000,'a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82','a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767','53b6ffb8648293f11adb26d10dce89a55dc0b6645c74bac3b8841421a2715476',NULL,NULL,0);
-INSERT INTO blocks VALUES(310377,'f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3',310377000,'e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70','4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579','318599633adc13ffcdc8228c39103c9f25eff9a3b1d1b1fc308d10bb41d7f9f0',NULL,NULL,0);
-INSERT INTO blocks VALUES(310378,'fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce',310378000,'607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6','49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab','bc105cb041223f0dd3c20019e8a7a9aeb127d6fddec1560d606cd5b8af23279c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310379,'d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c',310379000,'9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea','4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44','902cbbb20d2a0003f4c579bfbedb04e787a2a5ef5a8c485a269c215c9628db32',NULL,NULL,0);
-INSERT INTO blocks VALUES(310380,'292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae',310380000,'d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532','77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5','1c8bc40c48e73b0993830fb4073e2f2ae056111b5bd5d22a87831c4b88d32973',NULL,NULL,0);
-INSERT INTO blocks VALUES(310381,'6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38',310381000,'8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a','48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6','910afea0bf4129dd27c06428bafaab6c8c8bbf95ec371466640072a26eb129e5',NULL,NULL,0);
-INSERT INTO blocks VALUES(310382,'0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8',310382000,'809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797','159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f','9cdf0d22a1b690bfb2f542326c53e25e0f1d2b83c434bdc8294ce03959faeba6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310383,'992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508',310383000,'d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903','aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a','4b565f4fd6c07a96002f87eccb7e693fe8d7cc6d8a81cb85cc6b06fb071069c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310384,'d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e',310384000,'fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2','e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111','8e77a1836fdc196b50c2a525208fb5ff587c38486d1dce443a2fb1a7227119f2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310385,'2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28',310385000,'6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef','d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb','7668443002aeaae041ff7859c252f642fd930c4d51a616247a798f47942f97ae',NULL,NULL,0);
-INSERT INTO blocks VALUES(310386,'9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda',310386000,'4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff','1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee','1fd22e6bf448e0771f8c7da5c0829614f5f45612bd6592104c369b001fcfd266',NULL,NULL,0);
-INSERT INTO blocks VALUES(310387,'b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b',310387000,'327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f','d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545','194a4ec47379a92f7ad3ef8b24e797fe33173d2036b687596fa534356c07a672',NULL,NULL,0);
-INSERT INTO blocks VALUES(310388,'41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284',310388000,'6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401','4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e','5de4d26d0f94ec5c143e465eb509d22bbd2016bf9068ffb5e5c6949384a648e1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310389,'3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607',310389000,'89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9','b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce','232a974e8b60494567216ff9b2b8744fbd48c5328d04a63b29c671a8274df924',NULL,NULL,0);
-INSERT INTO blocks VALUES(310390,'f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a',310390000,'2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50','8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86','bf9827228ad31a03a85dacfd3a333afbbfe662611550bd431077abd226c87845',NULL,NULL,0);
-INSERT INTO blocks VALUES(310391,'fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952',310391000,'06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831','b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa','7eb2b6f227e5550b5d0d75c21818c58263a4e86dd6b160b0b1638dda017d3062',NULL,NULL,0);
-INSERT INTO blocks VALUES(310392,'f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d',310392000,'44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149','97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a','3341d9abb5324b460d6a80df5fd0b9c4003b38dffab3a503c27cfd21a3cd60df',NULL,NULL,0);
-INSERT INTO blocks VALUES(310393,'e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308',310393000,'1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f','c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3','7e02c72085143c68bf4ec2f0d7f9cc74a5bdd0bbaf28d7c441401a8990e64fc7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310394,'2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f',310394000,'3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770','e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91','b386b65006170bb4b28bbe1a8235f9fc7104ea3e9e34d51d86eee06326571d99',NULL,NULL,0);
-INSERT INTO blocks VALUES(310395,'19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4',310395000,'872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555','2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5','5f9db4e525ecff94de73118f2cb2ffaf872fe2692c4c35ab221fe89adc13b28d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310396,'aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e',310396000,'b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a','25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6','9e0597d4190ec3e829b62fe7ccc8020109369dbf72ab2b14ea115da386330813',NULL,NULL,0);
-INSERT INTO blocks VALUES(310397,'7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c',310397000,'b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66','e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44','b55fadb9aadb55ad049079769711016434ca942454f5bc39d9f6dc4417b24dab',NULL,NULL,0);
-INSERT INTO blocks VALUES(310398,'55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e',310398000,'9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5','0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9','f56692ed7d8f224a45a3c2563e2441b55626f8845abb6879fd1364cfa442c189',NULL,NULL,0);
-INSERT INTO blocks VALUES(310399,'765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a',310399000,'50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804','82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340','b64321d63d483d9e7c09026e749bf3e9ab67e14d2e6c09363728bfa02c102d09',NULL,NULL,0);
-INSERT INTO blocks VALUES(310400,'925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218',310400000,'349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd','e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18','fee9df29e116470c1165c090931eb1bd7e45795f53350fa87da5042ce529edef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310401,'f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351',310401000,'52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5','6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81','05538970685115a9ddaf41d458a3cce59ecf7b9b6a888729efadce1014e7a899',NULL,NULL,0);
-INSERT INTO blocks VALUES(310402,'1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44',310402000,'8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab','3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33','21985f293ab45f0cc41e2760cd3cd2c3e5fe8788ad16c5008b1853869e574790',NULL,NULL,0);
-INSERT INTO blocks VALUES(310403,'f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c',310403000,'fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827','1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f','e0e319bb5d4189cd952e021faaf0146e2872b62dcf137856d61959adf81724a4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310404,'401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040',310404000,'47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f','10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5','64c5499c7eef627a35277d801a7480aeb4a1e845ae368475da0c2edac597968c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310405,'4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a',310405000,'185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096','8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435','dc4339e5e79750da2e11a43ccf76b285e85e50187e81bf14237084c2a3c414b2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310406,'6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97',310406000,'367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59','0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2','29eac43bd800bb93099e696e1f4cfe1bb7dfbce8316e65459c5e7780d32488c7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310407,'84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e',310407000,'2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1','a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934','b570ec3ca500cb58c1388584391c16e4ff5061ac434b7bcfd8185a121f318207',NULL,NULL,0);
-INSERT INTO blocks VALUES(310408,'4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda',310408000,'fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3','3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426','91b0efd57597544fe96539dbab912ef18d57dc237a42ee5245dd95c59eafd375',NULL,NULL,0);
-INSERT INTO blocks VALUES(310409,'01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba',310409000,'5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837','68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b','7b6bfcc602b144da1f9c12773523114a4a54267eca14f4c8f255a9ce8b2e85c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310410,'247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348',310410000,'93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0','bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008','ca813e8e604e5ac2adf5fa18e2776ddf48ef3b2f34a1471fe71fb80ff73769d1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310411,'26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2',310411000,'8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d','103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55','6be534a6fddd54f6813f4f6247e6c47bb0eddda08e28edbafa132bf8115f390f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310412,'ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20',310412000,'a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634','4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f','a3b69de49ae3569129f96bc994fd0566acfc5cf6ea0c346e7297aea967283636',NULL,NULL,0);
-INSERT INTO blocks VALUES(310413,'21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf',310413000,'768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283','7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38','f8ffa3c414d806885764c093a7a8d362aa78d68751e710cfc89e2e318d59817b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310414,'8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6',310414000,'906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec','807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621','94b9e9f9260a35300ea27a15a0a9493350c2a6db704bc0d4ee0e78a5818cebdd',NULL,NULL,0);
-INSERT INTO blocks VALUES(310415,'dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc',310415000,'d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e','67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3','8146c8dfac8c08e8d1a7fd45ace0cbc146f928616343c082603dea1dbe0375ee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310416,'7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b',310416000,'90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571','1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c','dca1d2b95f7f534e3dea2e7a2019838753efb31c5ced981701f50940f3cf0d26',NULL,NULL,0);
-INSERT INTO blocks VALUES(310417,'2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002',310417000,'19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b','920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5','827cc7c36c8f51da81c980c10003c324cfab26a15e2e7d5698ae323deff752c6',NULL,NULL,0);
-INSERT INTO blocks VALUES(310418,'fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509',310418000,'2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d','290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a','85d72f558c2926cf357f739ea311de5aa840cbe82c35beee417a1520860d7a59',NULL,NULL,0);
-INSERT INTO blocks VALUES(310419,'9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e',310419000,'7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37','d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539','77ebc95e7c6af80280c5d7915ec2b599d700151c4160dbc5a8d5b2a109bbe05c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310420,'138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372',310420000,'3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509','ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25','1107a47b26211af98233b1c5293451ae5bb9349c73368b513ecd337ad2a64d3e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310421,'71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a',310421000,'1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b','01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4','1a47a0616e0d7d4153e694dc20509140325be90d30203a496bff146da7aadaef',NULL,NULL,0);
-INSERT INTO blocks VALUES(310422,'cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158',310422000,'e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4','6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583','a6aca492da14b2a2a5911a1eb9fc2b94007ac2618d18c7141e0c917af583b09d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310423,'6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db',310423000,'ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375','dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92','d52d5b979c57d1fc9b43ab2133ffe65f383646105c22be971c618325a4e295a3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310424,'ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad',310424000,'e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e','bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80','0ba84d839fea22ea4634d16617df4437859805e6ef3fcecbf9319648152c959d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310425,'73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7',310425000,'29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750','2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1','7f501e4f4dad5fc70bb3c56d1378bf4b292259188c56b5d5e53a3c5206c9700a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310426,'9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415',310426000,'9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15','c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289','25fa3569e346dfc876bba62b9d23783c146a543cbdeec50fc6e18332122fb2b7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310427,'d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a',310427000,'f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e','81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95','a139b9e0838217dba78ff8d8503ed732bc0a94ca9a5aa75ab8938c99edee297a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310428,'2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2',310428000,'9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d','002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c','3162a5d50ea03633b8b2d947cc3c52a5df9593e245376bf80756f48e7c1fc2d7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310429,'086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d',310429000,'ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5','4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7','fcea4b97a5fe73cf70e2d0263371e1e00e099bf1cf6ec7db042b3bea048a265c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310430,'870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048',310430000,'33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21','3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2','1b3b759f56da231657bf1c579b3186abe1a28fba2c262a9e872f7ee83aaa4e26',NULL,NULL,0);
-INSERT INTO blocks VALUES(310431,'20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648',310431000,'ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1','67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81','23d2c60e160ae68a16ab609dccdb9b78f1b7d3feeaee2c97c7dedceb13c02eee',NULL,NULL,0);
-INSERT INTO blocks VALUES(310432,'c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93',310432000,'7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f','c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471','51e2478b9f02aba026af477be07173549dba6acf715620c3080db983d5818ae4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310433,'997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725',310433000,'a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279','f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5','9d406a162538d5a0b083ddf1edbc2af4da4772e3dfafeb471757019b03f07860',NULL,NULL,0);
-INSERT INTO blocks VALUES(310434,'61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8',310434000,'e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc','173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7','216849b38a9a9bf850733296d6a14b539b2c2261354e26019a723dd7403ad006',NULL,NULL,0);
-INSERT INTO blocks VALUES(310435,'f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f',310435000,'e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f','a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558','c974a643a40e5993fd5ecf85e7a627f6ed4c7d32da8d2bb27528e99f226d5efa',NULL,NULL,0);
-INSERT INTO blocks VALUES(310436,'a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19',310436000,'82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7','c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05','6c8edec3773ad66f3ef89d20d5190b2c19318ef48bf3752e7f482a7671b006c3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310437,'9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002',310437000,'70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda','809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26','64193ef0680fb09096cf55f02405bf8e2a133b12bd8e1453330143d72700f164',NULL,NULL,0);
-INSERT INTO blocks VALUES(310438,'36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc',310438000,'44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722','2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196','65151ecc33ae384e013535fc1f6cda04494809cdedb5a2cdb891f0f38035bd3f',NULL,NULL,0);
-INSERT INTO blocks VALUES(310439,'4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877',310439000,'66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163','41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d','01d3ab7b218d6bfef3c5b6b6db851297e951cebfdf60b8d4835a44a665e163ca',NULL,NULL,0);
-INSERT INTO blocks VALUES(310440,'89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a',310440000,'5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c','c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae','d8b0a242ba1e6003bbdaf0bf2369b95d39c736ab52e66be2a9113941655e698a',NULL,NULL,0);
-INSERT INTO blocks VALUES(310441,'2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15',310441000,'2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6','f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710','18ff66422cca18b8b49392bae2d93ece152f47035c44ef71dda8cbd5a2cd7f96',NULL,NULL,0);
-INSERT INTO blocks VALUES(310442,'50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec',310442000,'a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9','5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9','d7bba011aeaf59c39a79cc90a4d40f11c86d3a44c12b722cdab3f2d32b96b430',NULL,NULL,0);
-INSERT INTO blocks VALUES(310443,'edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a',310443000,'d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5','4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081','fc88f701c65c71e2d90d31fbdc10378ea284a88543543af540b49d970da6e1b3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310444,'68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4',310444000,'ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b','5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293','0e2148899b497e6e1edd0f0401e2b364cd863d67a16b2d2ba01575249fa44e61',NULL,NULL,0);
-INSERT INTO blocks VALUES(310445,'22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef',310445000,'7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc','6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6','a4956f7cb1d7911fe8b00ccee3a92b01db13f0bd2b28ebc66db307c0307c8632',NULL,NULL,0);
-INSERT INTO blocks VALUES(310446,'e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837',310446000,'db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204','e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4','cb0858f2c2d1df41d5fce1f8f312d4f31646e876d82754898046d94166f86988',NULL,NULL,0);
-INSERT INTO blocks VALUES(310447,'3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8',310447000,'5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570','026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0','8e43ba092a6ba21408ff40f8248c07d7eb27a7deac290ea2d4161bf16d1e21c4',NULL,NULL,0);
-INSERT INTO blocks VALUES(310448,'6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10',310448000,'ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633','e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb','0423502422f1719bb57b16c22d7155922a4e57dd46c10c67443ce901fabace72',NULL,NULL,0);
-INSERT INTO blocks VALUES(310449,'9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779',310449000,'84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1','4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870','f4202e68bbe225aaf543a2595773a928240b7033f7f920803d1a2281c5e927d8',NULL,NULL,0);
-INSERT INTO blocks VALUES(310450,'2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3',310450000,'0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73','c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e','fd5af776d6a38d7d8789a15aa9d76e6d304a94a4d5ffdd2943345da446b6ea80',NULL,NULL,0);
-INSERT INTO blocks VALUES(310451,'55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296',310451000,'790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f','3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5','7d18be6c377428f660ba384eec7a473fa7e44627922722cd5b3721c81452432d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310452,'016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa',310452000,'30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586','a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c','c5922e3df1d54ca1fceb420ba9ed3538aa432da592b8d11ed98dd577bbfd7973',NULL,NULL,0);
-INSERT INTO blocks VALUES(310453,'610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776',310453000,'56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355','a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1','8e306a9c943a812c6f52865d39d2964eb365fae7b17b0329b4c251f8dacaaea1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310454,'baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9',310454000,'38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654','022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057','f28d86ee84fa30a79a74e3205d45c40c3525c6ea58f9201dc6b5c79fdb526dd3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310455,'31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744',310455000,'b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28','91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a','70550cc53729dedacfd7599305a6ba24dbd67d5349e610da1b3aeedbbdb670e2',NULL,NULL,0);
-INSERT INTO blocks VALUES(310456,'5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa',310456000,'6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15','5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26','48b0c3451909c475fc3273ac84abf136b6b81e2cd6e7022018711a1a8a46abf7',NULL,NULL,0);
-INSERT INTO blocks VALUES(310457,'9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9',310457000,'8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800','061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81','9cb1f06768f23821c73219929b52fb339a5aac8a1f60e905bbe974759b296606',NULL,NULL,0);
-INSERT INTO blocks VALUES(310458,'deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac',310458000,'520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c','b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297','da021b6ace7610144fdb7bbee83fdf5f617508c18b3b28d111e9abb6719d510d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310459,'839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565',310459000,'d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0','21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97','464f88651f885a9c3604bd83352de75252aa4a53b40a94e55cf04cba3860b315',NULL,NULL,0);
-INSERT INTO blocks VALUES(310460,'9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b',310460000,'33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a','2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d','626b13a5e856517c5e8246032184d39a3b70a8d63b9abd7a56d824ec3573e3cb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310461,'8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b',310461000,'22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f','13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0','34e034a1eace1f9cc331b124f20bf9b02b06e9920c860d5258bc846afa59be6d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310462,'16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146',310462000,'74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32','4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f','c842b12fd725cba9dda8fba23d55154a026780bc6af2b0a8193126e35560c1b3',NULL,NULL,0);
-INSERT INTO blocks VALUES(310463,'bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94',310463000,'b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1','7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50','f79b69008dcbe3c3362ee21d19da76108039cb558761d4dcf9e1cdb946bcee10',NULL,NULL,0);
-INSERT INTO blocks VALUES(310464,'91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60',310464000,'00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb','28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52','ad018c29e0f488918c6a134fe27ae637509d72341a28725cf82d74bae0b2fe75',NULL,NULL,0);
-INSERT INTO blocks VALUES(310465,'5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d',310465000,'09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851','7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d','1de15ad33c8b345fe1ad52110c252cdbda801e4fa7fb749dfba0dac2dd773497',NULL,NULL,0);
-INSERT INTO blocks VALUES(310466,'8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc',310466000,'23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd','57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900','39f1eb92ac050aa56760fcdcc747dccdcadc1bc359632b6dd57cecb59d485378',NULL,NULL,0);
-INSERT INTO blocks VALUES(310467,'d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3',310467000,'a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf','fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265','a2889082db39a64176b16ba1a33377440b0f45dfb7d30b36265477d98bd5a95b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310468,'d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891',310468000,'fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3','5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2','91296f5df4dff2e619fbe8e9d6d94a1e3b196062fc936ed6f07f72b95d912b3e',NULL,NULL,0);
-INSERT INTO blocks VALUES(310469,'2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755',310469000,'09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf','38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b','8d17e3a799c3ca2be1da35c1c75644f696843093177564b37431e1e40030c925',NULL,NULL,0);
-INSERT INTO blocks VALUES(310470,'ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921',310470000,'41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a','bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae','758117c9999addb364c604cc287e6dc9e51cbe5e326f2690d70ce87a81407597',NULL,NULL,0);
-INSERT INTO blocks VALUES(310471,'fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739',310471000,'bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274','d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5','b6b19c84723ff33624fbd5154bbf60083c48b83caeea4ceb6667ecce4bd710bb',NULL,NULL,0);
-INSERT INTO blocks VALUES(310472,'57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7',310472000,'2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c','c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13','2f940bbc941844d4dd73837ff7f6c96ce80efcf385e2d44a1ce5f68d545da057',NULL,NULL,0);
-INSERT INTO blocks VALUES(310473,'33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095',310473000,'1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88','ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459','6559100889b99c05398948cc0d47d0cde899cd6ac3006ac5fc344a0847a87940',NULL,NULL,0);
-INSERT INTO blocks VALUES(310474,'312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09',310474000,'5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e','b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48','9666d2dbbeea540ac615ae637bb58d5e2199bf937a396750d2a877fb8f55c75d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310475,'bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb',310475000,'b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8','345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89','a4d05b2dd9af6d5ba804421e6043f4ccf727eec75ee10a002baafaed45bc772d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310476,'3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0',310476000,'070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c','014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41','1e684aaf8da9104bf057a078360bf99b878290991bb14c8747d8be386a536095',NULL,NULL,0);
-INSERT INTO blocks VALUES(310477,'7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918',310477000,'4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1','1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b','8cb254cdf81022602324076922901e7d7c4675bebc066252bd20a7e83c23b76c',NULL,NULL,0);
-INSERT INTO blocks VALUES(310478,'c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0',310478000,'d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590','cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb','fceb7400129cbad4ae34656a15a35d8e625e515fdaf78a9f644c43f1da3f836b',NULL,NULL,0);
-INSERT INTO blocks VALUES(310479,'f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030',310479000,'2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0','81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6','b878bf2f4f70e1c15eb60535887db7ba9e9414ec524d0f426bbde5a459a56bb9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310480,'2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681',310480000,'aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c','8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385','855cd018f577fe76942fe9837dc27d3be5e71bf378b611f25cdd6381b04ed703',NULL,NULL,0);
-INSERT INTO blocks VALUES(310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59','8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5','7b058d359a23326a73d98644d5cb0312360ee69f98c85814b2d574408f8d442d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209','838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f','222ce836127c79d43fc5847a1cc427f7218fe84d23c2454ae1fd35585c9234dc',NULL,NULL,1);
-INSERT INTO blocks VALUES(310483,'013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460',310483000,'fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8','2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf','14e0c00fe389f298230aabba0e084ff09875e49dba8b5259fcb99a3604081345',NULL,NULL,0);
-INSERT INTO blocks VALUES(310484,'7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b',310484000,'310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad','ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2','00e1362b924985f5761ae514112cc30c143a610d15e936fd909a52e8735eaaa1',NULL,NULL,0);
-INSERT INTO blocks VALUES(310485,'eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478',310485000,'b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd','c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f','f424a423cf7f105c5f1000cbbc4552b83589f70e959c2a062eca313f5713271d',NULL,NULL,0);
-INSERT INTO blocks VALUES(310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0','ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab','3c08e19ebcb07664b7679a724ed18c73d7c8c7698a56f85f2fec5e7eb5a3ebd8',NULL,NULL,1);
-INSERT INTO blocks VALUES(310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d','76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72','900c8266900450b11b7b896e61baaea9e7f4677b5e722ac78cf07985c65a2e5b',NULL,NULL,1);
-INSERT INTO blocks VALUES(310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104','78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da','5c74cb1bbff97b44622a3371822508ea90e9b55e22b7bcf5aa69ae39fbf9ed8d',NULL,NULL,1);
-INSERT INTO blocks VALUES(310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc','23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418','9985c79b656f017f5eac15b1aa0e9bef1b0bf2fbbd39d687e915323348af64d4',NULL,NULL,1);
-INSERT INTO blocks VALUES(310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909','5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7','8822b33c741af78b8def7d9bca7275cc62f388c9159c953b0fe7b621ea5f21e5',NULL,NULL,1);
-INSERT INTO blocks VALUES(310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6','f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8','fa5278b9c27ee7e35fb9b13329e4146133c9219897aaa6fde667e2eda5ac015f',NULL,NULL,1);
-INSERT INTO blocks VALUES(310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740','daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e','fc77802662487506752caa901851d67dee6b960606286e180c6e9cd5a5f6cba0',NULL,NULL,1);
-INSERT INTO blocks VALUES(310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c','7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6','2a51d45368d39a8ed09a7c24aab6271397a8a6dbabc960b4b26d051547f15f3e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919','9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014','ab785cd4356200a496f5b85e7f824d03bb32b81cafa403176a6ded65e0aa8a0a',NULL,NULL,1);
-INSERT INTO blocks VALUES(310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd','09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29','c426ad40e2d4e6e3e6301c9122fdb9ef7f28fad2ef6135985046a4a9b2acdedb',NULL,NULL,1);
-INSERT INTO blocks VALUES(310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941','9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4','1417fc5280cab90a898e1b89baf5e8ebafcf666e43ecc2042bae44519c54794e',NULL,NULL,1);
-INSERT INTO blocks VALUES(310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819','ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519','ad86d199894b3c4e8a2d05332b58b81350bfaf9686b5a0896fdc286cd5d95833',NULL,NULL,1);
-INSERT INTO blocks VALUES(310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414','b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7','31fb849548f5054c3f49f5ba1fc015a6169db27f00e90ea2baa6fe453e2744a5',NULL,NULL,1);
-INSERT INTO blocks VALUES(310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'b9fcbdafddd46fdda061f6e9f8744b426b6ca37e32b315df1098cbc7899ae9b9','032166892f568bb97f4f69ef5bdf49cc1b15cc9f8c7f6c1f3e1f9d54816ad7e5','dc4258fd460745fe443598c0119627362b7bceea1892f32243221551f45db0c9',NULL,NULL,0);
-INSERT INTO blocks VALUES(310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d','35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1','4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96',NULL,NULL,0);
+INSERT INTO blocks VALUES(310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4','f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67','b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57','ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e','0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da',NULL,NULL,1);
+INSERT INTO blocks VALUES(310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c','b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25','ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3',NULL,NULL,1);
+INSERT INTO blocks VALUES(310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2','b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06','07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545',NULL,NULL,1);
+INSERT INTO blocks VALUES(310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129','3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387','3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795',NULL,NULL,1);
+INSERT INTO blocks VALUES(310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa','2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af','092fdd31ea597da3c6623b94701387a103e4ecf16ecce9dbcff7b2656c69af91',NULL,NULL,1);
+INSERT INTO blocks VALUES(310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0','a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e','c496343e196749056a9c5d8cb32f31cd989c9b8def81d208af418014f8dd4e14',NULL,NULL,1);
+INSERT INTO blocks VALUES(310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68','ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af','ba9300cb8828b0fbd75d9258a33dc126a4bb9227ca937a3719320449b907d39c',NULL,NULL,1);
+INSERT INTO blocks VALUES(310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4','d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5','e8c0d80c8b8d9bb2636dd711a3ef82861868eaf2ea3773be0e63fef09d970ca1',NULL,NULL,1);
+INSERT INTO blocks VALUES(310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea','173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2','27c208828cb07a131d9b893b23c0205d26adf423d8866fe722e5146da11bf99b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1','7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604','c0d077873f1037ead989052f4de498361c3ea82b92bfd76c15569bc6f1190967',NULL,NULL,1);
+INSERT INTO blocks VALUES(310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589','86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc','36e98d3aea754604da80ea2624deb96d78d9a250de7a6933a32cc7eec0c01c57',NULL,NULL,1);
+INSERT INTO blocks VALUES(310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a','5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7','4f5d5f9d6a0d00e9a73ed3e5d8ac4cf174e48b53351a1e41edb760491d1924e7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8','1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7','b68a5298c856d8ac685da6e18d78ab32c536f6aac8e82f71be8853f3a9c61419',NULL,NULL,1);
+INSERT INTO blocks VALUES(310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e','d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180','a01091f05d990839c3a44dfffa01f561add27ae20e7298cfd5e881e7dfb4019a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88','b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b','0c54f16f43b43b38ef3b7b4a83df41a2c907791fa27fb957774a9f41366f6696',NULL,NULL,1);
+INSERT INTO blocks VALUES(310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710','6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6','18db8ab5cdae89dbd2f3737e222c273ffa8eb8ad685e8ec7f760d925e502209b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad','223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80','feb24386a3df5d6c2e66402b8eec85f6a56a7449812d83aa5a7527c1148dda8a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce','9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d','8dae640fff5e30f6fecc9f31ecf896819fda3a2856b44052e9b3c8aa694efb7b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8','88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e','351d377d959ca20aae984048c9b1068ec29075c4aa7f52d6c40592f3f7ac34d2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b','087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621','a03e4da1b25118ba87fc3fa5487ddb147a24be33caf30848353080392b3f8f90',NULL,NULL,1);
+INSERT INTO blocks VALUES(310021,'7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2',310021000,'c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1','e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27','ec0a35e9d334d20325c20dc0af2071cc0bd0011c9f2e9dc495764099b25f868a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310022,'44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc',310022000,'619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445','e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54','7d66e5032cbbfd62641467e5a15a69d28f69b1f0b7da934fcbde3209c36ff15e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310023,'d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08',310023000,'ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de','e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5','e57a336b82b7d62efa497619daf7dce26be0c2034f763efac3b83237078c159b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310024,'b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5',310024000,'368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db','2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e','ad26d635f4b961d3a78770ff225d37876a77417cae3eb6d60a10527cd2cd3c50',NULL,NULL,0);
+INSERT INTO blocks VALUES(310025,'a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666',310025000,'9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c','ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f','0c83d5876fc4d68ddbe960e1f2d8c8eb234cbf159af47dd8f77824955b5b99af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310026,'6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a',310026000,'074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7','21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc','4d68c2eb143296d351c03e7651844ae0a8009183e30c8a0bffd41bad2d4b9944',NULL,NULL,0);
+INSERT INTO blocks VALUES(310027,'d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e',310027000,'a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3','9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633','4f0797f7f8ab0b2770b7c5629123ff73c4c9830990875119f4eccae443bf77b6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310028,'02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b',310028000,'3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5','55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4','227f74ee23c06c8fbaba67b1b7614338ce70e468ddc8cb8a6d884fefc9065efb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310029,'3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6',310029000,'e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf','3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2','cce012e3c11c649ed7964921096877c7362a5360fbdb27056e4ee925fe6d93c0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310030,'d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5',310030000,'d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1','c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a','4212d1bd8aaac5dc6fe4d47c8356dbc1ba1095167a37bd1fd0cc8d736fd5cb26',NULL,NULL,0);
+INSERT INTO blocks VALUES(310031,'0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689',310031000,'e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740','4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af','c7c8e5e7340ff9c4144369ca8a56f30c3e0f9c29dfe33b2b69849bb4a3ee998d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310032,'66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074',310032000,'2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea','2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb','b30046a31b25427b4ddb094ba78211a6e3f75ac173a45aa732f4d66741f777d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310033,'999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707',310033000,'4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261','d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776','749396e3c27221fa9b14646dfc76f4199c4af0eaba73d490376ca771df435311',NULL,NULL,0);
+INSERT INTO blocks VALUES(310034,'f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208',310034000,'c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9','826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f','b2abf73f136a990f9bd769b3d298aae8f38496d68e12697e2ba74d7aff1fd2eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310035,'a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2',310035000,'c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26','f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9','9639b0de61c2a6f7cf0a9e9b114d59395ff3ba20f81b4f16cf52947338324e16',NULL,NULL,0);
+INSERT INTO blocks VALUES(310036,'158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76',310036000,'86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed','ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9','d92bc42b8a1d8d5bea9bd21b5c68ad9f0f89c6e7eda9b0b20b15bfba6d9eabdb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310037,'563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07',310037000,'3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b','aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b','2c6c47b437bcf19e9f304a44dddda5b2f6fbc8a907975f661dfe9e6b8109c47c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310038,'b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2',310038000,'18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11','46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc','e4c2effd39fa758e00ca97939dd1f1d9a5997e95d23d2a0ac3af4ca64d8575be',NULL,NULL,0);
+INSERT INTO blocks VALUES(310039,'5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347',310039000,'85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d','23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c','ae61daf40f4954d6e3a3f50771e77255727f9dd72bc7fba5a6088d6e07d67b3e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310040,'7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3',310040000,'b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943','163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1','bde4fc33ae572fcd28318e25c0d9df37d6cc42a5e4936770954bf514d9b37728',NULL,NULL,0);
+INSERT INTO blocks VALUES(310041,'5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359',310041000,'efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483','a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed','5b37661a33a03123831332c92c5ae492d3c0eb8546bf809ba75c5e603329b711',NULL,NULL,0);
+INSERT INTO blocks VALUES(310042,'826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4',310042000,'f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d','52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab','720af2db39c50a777e24e2b00b5a6320e5fc3166afe767faf4e778ee9dd5dd8a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310043,'2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51',310043000,'961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194','1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608','b5a557d94ff33e200e321f345d047a2229db60aa45f65b8065967950bf8852e2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310044,'3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b',310044000,'d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3','ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e','c4ec17550657727a9a11daa68ecb1b4d88190ce52dbc83bb18d764b6bd478723',NULL,NULL,0);
+INSERT INTO blocks VALUES(310045,'7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98',310045000,'9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1','3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac','f8763437f47aba90ae535e1e2356cfc42f4edf240d9be69099ec911f64f407f5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310046,'47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6',310046000,'114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff','becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c','646915bf01632a560b9429d393de0635b2553d8e9f83a6d92f029a79880cf170',NULL,NULL,0);
+INSERT INTO blocks VALUES(310047,'a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075',310047000,'5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3','6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634','0000546f68b557fce8445f8fe6a1cac6c813d7a848d5661bc112f36efa03c1e3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310048,'610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309',310048000,'0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582','67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe','a46538569450db26d72774e237e5e05e057d085455862152c45534a7b2831805',NULL,NULL,0);
+INSERT INTO blocks VALUES(310049,'4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c',310049000,'978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be','ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c','b89e6463177226a7d916fba3c1bd0fe881c7cc8544b4882dab0fe619ea40d700',NULL,NULL,0);
+INSERT INTO blocks VALUES(310050,'8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348',310050000,'ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d','720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88','70fa5f396f6b6bbf5e669c9ebc50261da201c34eb2733b0bd3e9c29410d363ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310051,'b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6',310051000,'556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5','656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4','9a5736cc8c8944fff5f4c695a6c228e161685ebb08fa83cd696334b1352b7828',NULL,NULL,0);
+INSERT INTO blocks VALUES(310052,'0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2',310052000,'15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7','3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be','14045040d34f9f8ef2ed53c11c4a6ef882e4cbdc22dfae8709535eba1cf12011',NULL,NULL,0);
+INSERT INTO blocks VALUES(310053,'68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f',310053000,'ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c','67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609','88b3a77a804065f58fa8a117e79276ba2b5250c4344e604b68620affd3617690',NULL,NULL,0);
+INSERT INTO blocks VALUES(310054,'a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305',310054000,'f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108','c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690','16f838aafbd52bddbd49c4f4ad0b23dbeb9a40fa6aecd39a1d2522d7c692ad02',NULL,NULL,0);
+INSERT INTO blocks VALUES(310055,'4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356',310055000,'90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1','5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213','741def8beee53dd41b1c93d0b3f6fb297daad05959c8d3463c821f717c494955',NULL,NULL,0);
+INSERT INTO blocks VALUES(310056,'7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3',310056000,'c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba','1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31','0a31cda894930eed849e19e9c02ef0ef1d09794686d1aaf1edc6dbcb8c0a237d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310057,'4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411',310057000,'e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e','2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029','0fb99b765219ea3a5f10fa5f81d55b5c0062acfcdcd2def532023e3afc3e5bb1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310058,'a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f',310058000,'9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d','cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4','d55aa61c630c66fb07fab12428d118c0480838ebbbcd0fbac08e8a1499b83eac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310059,'ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9',310059000,'49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541','12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724','940a2326385c0c4d191460c35e274353005ce1612fb42d615d3c0385a2838ffc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310060,'974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b',310060000,'1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17','40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6','5fe92e88f1466fc6de163ea775fb9930f5da3d02842192e742af948a166ddf2f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310061,'35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf',310061000,'0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c','4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de','3068a8d1ee7733af53b4995ec8ec168bc0790b4977a6ba07155a782e9409aa30',NULL,NULL,0);
+INSERT INTO blocks VALUES(310062,'b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f',310062000,'cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a','3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079','ff216a1f3d27c07b519e4f0878ab90c2e5ea4774982b7d0cf59a8078cb811958',NULL,NULL,0);
+INSERT INTO blocks VALUES(310063,'0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe',310063000,'e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb','b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432','ef6eb698344ec32b9fdd1d18680accf1d52a7cb0bff5e2afc4cf7434a3d01452',NULL,NULL,0);
+INSERT INTO blocks VALUES(310064,'e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30',310064000,'ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e','e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39','9c2e20c4eb44ad863b815db1585d2d8af43f1069dc6285dbeb0962d7d7734fe9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310065,'8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a',310065000,'db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958','9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f','b75f05047f221109179f51bb1692764e36a8f68293b4c4e72a9fccc0c52186e6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310066,'b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d',310066000,'cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882','5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e','191d810188a47237554db70e1196e13b81fa2309d4c0eeb573181df64f4bdb70',NULL,NULL,0);
+INSERT INTO blocks VALUES(310067,'8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577',310067000,'a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d','764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9','6fb37efd1c21aac24a225c862e2b88d11286b2530e7993bd7435e831b38fe823',NULL,NULL,0);
+INSERT INTO blocks VALUES(310068,'9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5',310068000,'14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c','866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85','4fa7f80fbcaf4e54ebe864cdc7fc81078d45e457842300da587e9ac70026db17',NULL,NULL,0);
+INSERT INTO blocks VALUES(310069,'486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7',310069000,'a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658','9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531','bf949bb3796dbf2bbf30935905093ab1fee2e740e4dd3223f2d95fbb465f2943',NULL,NULL,0);
+INSERT INTO blocks VALUES(310070,'8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5',310070000,'8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0','03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655','e5f52986f6913f9ee078e81ea705e9f2f5f8002649b6fa45080a3395fe5acfec',NULL,NULL,0);
+INSERT INTO blocks VALUES(310071,'7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b',310071000,'af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17','9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f','38474dcba9bc1f4452082b63a5281eb673202f6177847430e5faf3e11232132c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310072,'7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a',310072000,'36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee','33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8','a0238475bfe01e3f54e545c50dd345d0ae1768091b1126a6850a85fd481a8cfa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310073,'ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943',310073000,'4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f','7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45','f3ee3bb3ef907ebbd81baa164a4f59c023dd4bfe32a96b157d14eeaa5807a061',NULL,NULL,0);
+INSERT INTO blocks VALUES(310074,'ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb',310074000,'54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e','1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2','88e42f2ca73ebe9930962154ad1d75e981fef255900700a906980213b173b775',NULL,NULL,0);
+INSERT INTO blocks VALUES(310075,'ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b',310075000,'2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8','a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97','0b82b2c2625852fee6d69747d1d008db2acfbe9ad39af34974bf2c2f37adf2af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310076,'3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92',310076000,'577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc','05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641','c4f86f312ef180a2ff9b49f8a3c1bfb363ca4a01ce5097eaf575a711c35312b6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310077,'d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd',310077000,'d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2','6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71','5c2a47f3451c0f085fd5015c8881e0b336072751beea8291527a6a7e9cb7fcb2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310078,'f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6',310078000,'c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5','d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a','1f79638ac7ba93860152e158470cb85467a5d933171b727e55c7655830442d21',NULL,NULL,0);
+INSERT INTO blocks VALUES(310079,'f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c',310079000,'74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815','d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c','66fe063bbbad8d3b7957863f61677bcb41768aa09bd8ffa94f3b543551fde349',NULL,NULL,0);
+INSERT INTO blocks VALUES(310080,'42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c',310080000,'a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde','f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f','307a9968bffaa2dae3e73953072a494d7dc3e2ac9538fd2cf11d2235ce810403',NULL,NULL,0);
+INSERT INTO blocks VALUES(310081,'6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4',310081000,'71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa','9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366','f98c24b0a1a28a67ef5fe5546470b70ad802a873a1ea11650da7abc97cded386',NULL,NULL,0);
+INSERT INTO blocks VALUES(310082,'4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644',310082000,'47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd','c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1','3d07a3575c13095678c39c78ab22439018cd5ebff95822da5a20eba2cd064c0c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310083,'9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850',310083000,'e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882','21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75','2b7647f75b93d26a0bff732e3a2df4c58dde0bd7e4e075cb89a7f11c9b4b6b32',NULL,NULL,0);
+INSERT INTO blocks VALUES(310084,'1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3',310084000,'20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14','feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13','9df8b71401e3ce380fe0a7fec1a3fe2004da522abd249dbe41ee3dc1797c4c05',NULL,NULL,0);
+INSERT INTO blocks VALUES(310085,'c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34',310085000,'9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92','277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501','97e5d595611e2e43b877dc7a8f1a5b0713efb2bf09f009b7af4277380920cf43',NULL,NULL,0);
+INSERT INTO blocks VALUES(310086,'080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78',310086000,'e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a','ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef','e580ac2d8a2be303a110c8ab5bd5f4c686f730702f5a91edffdaeee1f0b0f945',NULL,NULL,0);
+INSERT INTO blocks VALUES(310087,'4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c',310087000,'777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3','3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc','f4e90d370be413c612ec975fbcd25a12a11151c054962c1f4269452c299135a3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310088,'e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3',310088000,'85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64','4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7','4da72822920fe3161e57cbcb6cda91eed27f39515bf0e5e367d58fc74211191d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310089,'0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33',310089000,'bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523','255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b','44ba1471cdb469c413e941ed34c08176c7ad50c1bba20e211b3813a80bac5ec2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310090,'b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969',310090000,'9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0','7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d','f519e2ea81399121771f7e37da3f055879b898f2d864a7631c66089b3d41f4bf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310091,'734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c',310091000,'25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc','1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea','a9500840cbc887bafdbf4836c04b69537486621ee914e07c4119c1624ae37b89',NULL,NULL,0);
+INSERT INTO blocks VALUES(310092,'56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d',310092000,'bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40','889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029','64ad964d4da1d8c1c41897a56aca436f59b6313572aef0a5acb7b39b9f0fb54c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310093,'a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc',310093000,'cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95','dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99','9d5b59fc00126a4800287f92235473c774f12700df541e87de360481f37d03da',NULL,NULL,0);
+INSERT INTO blocks VALUES(310094,'2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23',310094000,'b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d','625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047','51b025141bec636c636c349544b4e3c88288bdcc545ac1b3f3810210742fd443',NULL,NULL,0);
+INSERT INTO blocks VALUES(310095,'bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2',310095000,'513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571','b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959','e4fbb9bfee5ec512c49a3672528c11ef3b18bbed9e0b2750f586a3d25cf0de31',NULL,NULL,0);
+INSERT INTO blocks VALUES(310096,'306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f',310096000,'3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03','8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158','f7e91f99556223cc69b33032fb7d8d42e1a44cd0c078a58cb82b3990f87c8d6b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310097,'13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf',310097000,'19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6','1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a','ebc9623688b02331d81b74790f32e8994af3659b94aa6b4663e2ee926520e8a5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310098,'ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca',310098000,'be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de','7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1','2c535698b22226e968222a9e03c263e7e8f16427786053ca41661c1757248b59',NULL,NULL,0);
+INSERT INTO blocks VALUES(310099,'3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a',310099000,'9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d','c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6','1bf4589d685eea753559bc8b6ab3357f6b4183ba4e6876f6df46f5d71186380d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310100,'96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb',310100000,'d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e','793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388','bba464b87bc827b22f557d585532601d5915ef329ff62a2ef523402862c22beb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b','7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28','40f5829d6516e39084234f4648c84fa06ef771504f5495e85f24de09e1799775',NULL,NULL,1);
+INSERT INTO blocks VALUES(310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b','7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd','b94df045d11f891d822e72da08f1567961fb0243df0f4ef334025702131cd40a',NULL,NULL,1);
+INSERT INTO blocks VALUES(310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae','ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28','5c1d9b70ef3f17c6bc39d8c871c36d82e9639e5eec4836090e7e52ddad3034e5',NULL,NULL,1);
+INSERT INTO blocks VALUES(310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e','66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6','05cf59ff88094509b01f55638055e78ba53f86813af6fce19888cb9bc45ac61f',NULL,NULL,1);
+INSERT INTO blocks VALUES(310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0','656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209','45f70031485c596e497a39605f5e0c5d44ffb8e28016c8f41856970d19b4f731',NULL,NULL,1);
+INSERT INTO blocks VALUES(310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499','6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576','d37b622ca0ea82a62aac2916bc72364257a746d8f70a302ea13934a6cb464360',NULL,NULL,1);
+INSERT INTO blocks VALUES(310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783','b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a','930ba28dee6b3cc8ce77fcab02237230c0adae11b7958ee6912b2a5b9cad0505',NULL,NULL,1);
+INSERT INTO blocks VALUES(310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518','d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae','61d47596577859f94b9405538f6dfa58779faad355d12ca180ab36ab34cc6db7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059','cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61','52dae041d3620204b2e5251d2aff81c3c532d7563a802b1efb75341b039c43e6',NULL,NULL,1);
+INSERT INTO blocks VALUES(310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6','d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad','d22bf6bb8a648289a71bbc0af4a262c43073bdb9cfed6cdcffc13798cff15182',NULL,NULL,1);
+INSERT INTO blocks VALUES(310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75','9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808','6fc454b12684651e8825bb6ee751f550a0535e508aa6efd9e8da0337360cdd04',NULL,NULL,1);
+INSERT INTO blocks VALUES(310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9','4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b','624934c6eec1af21cd764405d67271ab9ef74d140a030dbbbe3500db1ea961e6',NULL,NULL,1);
+INSERT INTO blocks VALUES(310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989','baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c','6a160b25500904a8e2fc0ecc0f61725c5253b352212c04c9c3bdf6a2f51fc58e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd','22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601','086d1f7a591a18bbfc77dc239eaebdbae88d4b1b3feeaaa73ae4160b6affcc02',NULL,NULL,1);
+INSERT INTO blocks VALUES(310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc','cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41','1b67e80c2ed78bff0402e73625a62941d060bc4f27ddaf8fe7154f74fb52d915',NULL,NULL,1);
+INSERT INTO blocks VALUES(310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25','a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6','6e84c64caa16d362b020f0a840ee5fa183a559c15b70b5caff610d8daad52749',NULL,NULL,1);
+INSERT INTO blocks VALUES(310117,'978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71',310117000,'0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e','1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f','a3b51846c0b35f957176678cae6a7edcd009b9b36e2596e2fa26b3f6d9b51392',NULL,NULL,0);
+INSERT INTO blocks VALUES(310118,'02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723',310118000,'011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f','7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771','b0351f3992fa660d7e32c30f900379e620082f39f059f1adecb204afcf02bbca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310119,'6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481',310119000,'a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f','1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca','b05a87dda8ffe8ec3eabf14e352c9bfcf7a41d059802f8bbb5a6e1df651de722',NULL,NULL,0);
+INSERT INTO blocks VALUES(310120,'2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb',310120000,'e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923','1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6','b3341f00f5fd0b73dfd94077420635517d58688c5e641b1c33ad43fedf837248',NULL,NULL,0);
+INSERT INTO blocks VALUES(310121,'9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7',310121000,'5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b','9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7','579d901dcca6e7d2399219e7b852ab5ddd8043c9337d8ace4c701c212344f4a8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310122,'d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932',310122000,'70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070','a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17','0fe6b56f84cda6614f46ba676bb47010aab75e0b5d2f3e5b5da23803f361238f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310123,'be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd',310123000,'3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd','78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338','19e3f582ad9ad6250e8057ec95e180bc0b7b02255ee1729935f4f77449e01a2c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310124,'0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810',310124000,'9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3','c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3','aabc1930e9c381224cf7b7da9b0bde42e4419ea03cbdde623ea2da37cf1656ff',NULL,NULL,0);
+INSERT INTO blocks VALUES(310125,'cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6',310125000,'1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6','3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25','b3897b1dd915774c95bdd265c8fbb1a1e658be0e702f4a8ce50f49d7da133297',NULL,NULL,0);
+INSERT INTO blocks VALUES(310126,'c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797',310126000,'1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272','7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5','aa83ef41420cc7843cde9408ef559a19f994482601a3e5fe45c43f08898c4f54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310127,'c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904',310127000,'094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb','0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478','b55631834f923612a73b659cb27ae27ac880e2fd26bb79f706200023c5bc4e9a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310128,'990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079',310128000,'28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19','aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786','c132bebc107e3136ea8cc78a45a644239f989c7617ed2bdeb5eb300858fc6538',NULL,NULL,0);
+INSERT INTO blocks VALUES(310129,'fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc',310129000,'61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c','ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b','85e11a92c5fc48513ae7e83710849b08180eadbe29ad984faca23ce667fbaedd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310130,'d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721',310130000,'1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781','bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71','f793793de86957ef58013a06b6ed779c4c8c330cdd984894693d3ca268c80496',NULL,NULL,0);
+INSERT INTO blocks VALUES(310131,'d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d',310131000,'aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6','69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb','5edfd69343be580e6f03a9c9e91a9f7927c91c7cd21553fe1249ff516cedccd0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310132,'1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818',310132000,'a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe','352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7','27476a9cb53db260e8909ec5922e944a87edbde6d374408e7ddd093a51c9e070',NULL,NULL,0);
+INSERT INTO blocks VALUES(310133,'1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51',310133000,'626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef','1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a','07725c61f535cdcc7c1ca6b0da84db507c5769ea9e318cba17c128ce1befc5fa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310134,'1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398',310134000,'4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55','855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440','3d5cfbaac42499e555831c587865e356612e3c6e46d94b5ff532ed2035f0dbc6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310135,'d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f',310135000,'e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a','80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0','4841d7271edd65089af68a93d50e3f86933bf4d05548541db6ccdbf71d736e54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310136,'6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5',310136000,'93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a','5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1','2637a61c95e25b3ec2cb739d236bb8030c57f29036adb7bf981f323cc39cf06d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310137,'7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900',310137000,'8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585','d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6','c09f0175cc685bf77e9ca37ce6a069530c3a4277aba629628f7e70fda8d86549',NULL,NULL,0);
+INSERT INTO blocks VALUES(310138,'d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5',310138000,'4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6','645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948','c7a23246c5a4bd1a227775cd80e66548b7f1e4678d5bdd55959de1740f51268b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310139,'b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46',310139000,'2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d','c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c','3b78c856d3143016af3bea464ccf64b4695596f7a03594a6b53a918f67de7085',NULL,NULL,0);
+INSERT INTO blocks VALUES(310140,'edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb',310140000,'277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624','ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac','acdb179c5a74ce2b918cef5e10e93bb6402e182e461761806483e0b2baf3f2c0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310141,'b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709',310141000,'f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc','d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f','c47d6be26962bca640d2ee4fe08a9c5ce88d850fcd1a9c3d24e696620b583e9b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310142,'a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143',310142000,'a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7','0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97','85dc1497834c1b15c6af18bf2b4c481409f89ed98caffec52221d181d1e59897',NULL,NULL,0);
+INSERT INTO blocks VALUES(310143,'8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f',310143000,'b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea','39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6','996968a15427d4f9b35b08d9b1b02a56c8428dc360092e4efab1c3fc2fa82842',NULL,NULL,0);
+INSERT INTO blocks VALUES(310144,'879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9',310144000,'1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a','0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b','b3ed6fdd31f986960976fd3d1812a9a97c6908ac4771a5470a64df9547418e7e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310145,'175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e',310145000,'fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264','bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c','72621b5af8bc398e97c0b2cd3c6b44071eee2613d41abdf85c9eaff10b6b8bad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310146,'e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184',310146000,'9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84','036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411','eb2f714de272f1ce572c182db7c969f22f84995e4b2f0d186faf010812f2bd7c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310147,'7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83',310147000,'336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3','184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6','3f60c7681688bf8bb1e08f457dc677cec77cb3fc79c555d50daff1d7ab15c503',NULL,NULL,0);
+INSERT INTO blocks VALUES(310148,'77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e',310148000,'f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612','c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f','647c2a25eeea0f27d3334e58f9e0a7563b2ab8cca81bd9880d7f0f85bbe745ef',NULL,NULL,0);
+INSERT INTO blocks VALUES(310149,'526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c',310149000,'c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85','8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660','8644014a3cfb577341f9010e93cdb4f3da7bc04d214715e11b9b7170e6d805b2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310150,'cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333',310150000,'88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc','db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1','f9d7ab71830b2129ff8cb527692755d60a9b44fd51dd3304142f0833652f43a2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310151,'a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330',310151000,'b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25','c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85','9102ee9621eddc59389844575d3276e577caee437a74bdf6d5ddb7f30c978753',NULL,NULL,0);
+INSERT INTO blocks VALUES(310152,'89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67',310152000,'3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09','ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88','b422d3aba369d1ff718bab0d5e8718448ad9f6f56d88857afbc9edc90dda5a1e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310153,'d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482',310153000,'c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7','6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441','187598a6a8055647c1efdad1bbbd82f96e11188374a121f14bf23ba0e51f5f1e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310154,'ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6',310154000,'b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4','b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f','051f58d9692cc8eb3bb0f85ec07846684670f4ec8d697e8bd8cbc4ad65b5ea11',NULL,NULL,0);
+INSERT INTO blocks VALUES(310155,'cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137',310155000,'27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404','0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3','014066182ef2deb918d333d51858db41257802d247501c3df7cf38cd06ea295f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310156,'6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83',310156000,'5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d','ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380','eb63655fdba3bafd8b2db80a5890e9192722636140738cee397360541a8a5fc1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310157,'51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a',310157000,'cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8','9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d','bec1523e67d65b982aefb200ce1da4a644716c0e5877cb9ec54e1d86c9983a54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310158,'749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2',310158000,'6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0','03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4','514956ec19bea6979b4ffcf31b74b233152baeae385c1362a4e0ec8682e129c7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310159,'fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12',310159000,'d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033','c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6','44af8239abc53571c2155a17d75e5a9d143bf0d20f681cbc81504ccf88727c04',NULL,NULL,0);
+INSERT INTO blocks VALUES(310160,'163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b',310160000,'2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9','df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e','148803f5671b6c6e8acb48f38bfa937107378fb496acd68d1f0e5571be8c123a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310161,'609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8',310161000,'beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980','e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425','fd7f4e92adef34699dd0f6acd232e616d1657e13ea5ab9809cb1128522b1f07f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310162,'043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804',310162000,'066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f','bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df','8ea4e1f130055e805bb996dd15189034d29a892d14a980db3e4dd0fbdda79ec8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310163,'959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353',310163000,'460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a','d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea','87366186f53ca7a8eeca7ce436faec867a7d2d9bbc78d9ee1981b1121eadce92',NULL,NULL,0);
+INSERT INTO blocks VALUES(310164,'781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2',310164000,'19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268','54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3','297ac32dd5d160c4f996cc3304d4200b748960aa3db1b8ad6eac83a9d005659b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310165,'a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599',310165000,'97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33','0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6','53cef4f572c1881f2cfc889b735f73b7f2f30b4cd8da5ffa4a97e6837ab9c0e5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310166,'a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41',310166000,'edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0','683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8','0a7e9c4108dae596aa7efe98f41ddd7bac323e16068180e14127801a6d769e91',NULL,NULL,0);
+INSERT INTO blocks VALUES(310167,'ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66',310167000,'e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14','d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b','a959dd943ffe80982909fefffa27b474b822a8d82ab34f24bc5f56af86b7781e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310168,'a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9',310168000,'267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1','ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797','8be097ee641bccb50eb7498f0366ef07981b01e64b5b1979a4cde7495e85ebc0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310169,'204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3',310169000,'df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a','3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace','d4df5ba45e26cbd17af5e5796e7f22681161cc7af5a0570cd8d25cb71685f059',NULL,NULL,0);
+INSERT INTO blocks VALUES(310170,'b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119',310170000,'3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2','f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd','78f1036d3d2063f358bf0a27fc8b0dddb4e44f0cbd083697e439d5307dbaa7c7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310171,'b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d',310171000,'e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9','e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d','af3d8ca73a122e4851105356df23498df5f2fc1ff3398ac078fc27962aac622f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310172,'b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055',310172000,'89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103','d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996','e2a7881775aef920b3066b9f6ecce7041085b945de142875562bb65e2f40269f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310173,'f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016',310173000,'35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3','73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef','817325fa148dd39b8e4449274055a1c7bf46fb948413064c2f5a10bf99b6373a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310174,'fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679',310174000,'101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017','71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263','b8a6db792a4f373fb53b6a376554646253c138753a48f0005a1219bcf0764128',NULL,NULL,0);
+INSERT INTO blocks VALUES(310175,'f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333',310175000,'67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c','90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b','9a5355a93495d86366d29e5274ad2d7abf970c09f134c778851f735ff0f8c387',NULL,NULL,0);
+INSERT INTO blocks VALUES(310176,'67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6',310176000,'a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c','b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1','c850e09446f0a52ec6404ced1544e54c9de294c7bafa6e6957e25ac056bbd4f9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310177,'6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52',310177000,'bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716','80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092','4c7cd1688e4736625d5ae8bd877af13f0c77f2ee8b6a02506108792b42804a38',NULL,NULL,0);
+INSERT INTO blocks VALUES(310178,'8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816',310178000,'186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e','79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd','9f424a07865ff4bb8d7431b8a3139b46fadef1844da81374666993d7ed66f922',NULL,NULL,0);
+INSERT INTO blocks VALUES(310179,'d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7',310179000,'0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8','3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43','aa920d97a7205fe9cea1c1f6acd1655d454408355eda0c11367715ac4818a56d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310180,'f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1',310180000,'13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1','2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b','fd195f7ba187d845d0b094cc88e0db9f65b00c98aec1106a857ef405d482bc1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310181,'bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145',310181000,'81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7','82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599','a972f87acd57c8bbefb7bc372e021216008cc4ad482ceaffe9cdda885e03dfdc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310182,'a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f',310182000,'935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c','1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a','151b050b1997cb9d24fc2bfc4c649433d2be4068fab9203f01ad75a4b74b339b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310183,'85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb',310183000,'268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f','82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293','140a5d6a6e2ff7c655c8a001fecb2984ef92b88c7f38f85678188dfb0960b170',NULL,NULL,0);
+INSERT INTO blocks VALUES(310184,'042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc',310184000,'64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935','9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb','35b1d8731911e0736da008b74e2c12fe980be036e1db49770bf655871cb259fb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310185,'bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f',310185000,'8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94','8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3','7428246a3a61bf832ef19399079941cdca0f63d803402ffc2f545a3818c6dee1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310186,'e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707',310186000,'e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090','137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256','b79d05b5c0be3a83925d8c966b40bafd0cf6d2c8281db588dbf0b8ba543d233c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310187,'fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414',310187000,'c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5','cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a','1172f0a9041795ff450522332f728ab624d8622c69ae9380222a2d081dc0c009',NULL,NULL,0);
+INSERT INTO blocks VALUES(310188,'85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917',310188000,'13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d','2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b','13c68f42ff0cee68be1d5f4e3f4a20eab37bf861727baae26bed7dac4a5b3b2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310189,'7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06',310189000,'582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368','ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f','6da4d2e4e687a0dd00fb6771c3373e860d1869fe211991730ce8767a3924930a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310190,'d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d',310190000,'d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4','48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611','87c4cb256b7e744bf4bb9c028ada9f03cb3fb33f7a346569270ced535a140acc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310191,'5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139',310191000,'23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca','704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b','e6d9afc16c470f029d83bc5688b74fef372ce3ce9729502c4c4bb66029718d52',NULL,NULL,0);
+INSERT INTO blocks VALUES(310192,'31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa',310192000,'cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9','17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672','39ca55962499e7a312b65dc560e59af1fd7ed815324ba4871245bee81f27142f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310193,'ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a',310193000,'391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046','d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd','2d7b4bc4a272129ea2c9d6b5ffabba1f9401980b42b47bad08461532576ac640',NULL,NULL,0);
+INSERT INTO blocks VALUES(310194,'d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a',310194000,'9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b','d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d','c37025b4cb18e69f8996e322f0540d9fb2524db4ae38859ecb56119a77d9dd90',NULL,NULL,0);
+INSERT INTO blocks VALUES(310195,'0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53',310195000,'705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde','d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0','44333c1fbc3cce8955d3332e12464c5d7dd930aafe1484b2eae3a5f8d7a9365d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310196,'280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6',310196000,'59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227','57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80','16ac28193eec0393435c18d24fad2edf984750bbc25aba58946e6e718f8bd338',NULL,NULL,0);
+INSERT INTO blocks VALUES(310197,'68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467',310197000,'a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07','58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4','3f5b9f1efe7ef5c80a968126dfbb01f52b462087a0109a26545dc80d13790e04',NULL,NULL,0);
+INSERT INTO blocks VALUES(310198,'30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2',310198000,'ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2','1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a','5e5cf3715a123e73f08baf1bd2a3471f0b2af521da005cbc953663678d733e6a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310199,'494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613',310199000,'e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1','87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599','152b66aa4612046bf3f69f278f7e650bce71216556952dbdfedd2417aadab7ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310200,'d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03',310200000,'fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a','a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54','5755372731f19b400c2457ff201c911c724e8a28e6957cee53452000c7f8dde7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310201,'8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95',310201000,'7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722','f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f','5e9645b8acfc57e5637842893c6ba66daa306bb2141d351a509b6f176db61e54',NULL,NULL,0);
+INSERT INTO blocks VALUES(310202,'95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8',310202000,'084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b','76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113','7a5c5aa34df30375a10c02e40122d512dfe7c27ec690fbb597dd000db891a021',NULL,NULL,0);
+INSERT INTO blocks VALUES(310203,'ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8',310203000,'4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5','3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4','78b6c7393349880c72ffd6fbed6bcf04c7c028bd9ba95714c5c549e5d62129bd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310204,'18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb',310204000,'9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416','89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6','35b8bfa4ff2dfaea86dac467cbf8bc2746ea25ec23bb63a185999e852216f155',NULL,NULL,0);
+INSERT INTO blocks VALUES(310205,'5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a',310205000,'fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01','1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6','a9dccc9708940608179b8524499d8c07bb34ff3a1e938431c1d77a5c20fc1249',NULL,NULL,0);
+INSERT INTO blocks VALUES(310206,'0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518',310206000,'5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07','e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8','35cfac507aa4fdf624ab85dc72d7154f46f183596a34bed1a60014a27c6285ae',NULL,NULL,0);
+INSERT INTO blocks VALUES(310207,'533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585',310207000,'b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34','596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6','b2602edfb952cc3e4e9539bc38a9ee49e933971fd47237c42778a39a4d8efd44',NULL,NULL,0);
+INSERT INTO blocks VALUES(310208,'26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44',310208000,'aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102','3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a','fa2249ac9d2db16f2071d109328ff02df2aebdec916bee679b89b5100c0f7e9f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310209,'23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf',310209000,'c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0','56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb','70bef389a3fa6e1ec5a6e3a6d8d5c2afc9f7af76c929ba6f48b46f24359d7b6a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310210,'70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0',310210000,'207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f','ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151','53957a0ac723e36951f1c4423e09ab7c5259a88654ecad878260c082792bbc12',NULL,NULL,0);
+INSERT INTO blocks VALUES(310211,'4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d',310211000,'dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208','f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9','2d5af408810e4075f3d957c69999abb481dc3e950cd616b92c9df0e32261781e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310212,'6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547',310212000,'32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9','2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8','0d662eabb735aa267564ecbdbfc3a244574284de980c67494d8285a7380e6116',NULL,NULL,0);
+INSERT INTO blocks VALUES(310213,'17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7',310213000,'15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36','fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb','7ff8320d35d5cb301432d711ec4988360ac3c2a81e7751fbdc78a2f1119e8fed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310214,'4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454',310214000,'dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4','5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f','a012b5b4352afd51fd4b1bd5709e385f3bf5cdb212bbe99e2cca68de491c4db0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310215,'c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7',310215000,'6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed','b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a','f2918e64a3525ff790be88f04d060c7fe24144818d340cfa90361e4ee688ddf6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310216,'6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524',310216000,'a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef','f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148','2945a07d5e95f38bac8f3c506d481f03288a461050c31a933d1abefae694aac4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310217,'0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8',310217000,'419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8','a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce','0e0c36dbe732237319afed9cea84d711b9eff7643f6d6a39031df4c2779a8161',NULL,NULL,0);
+INSERT INTO blocks VALUES(310218,'3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9',310218000,'a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173','dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e','37046f25c853793d3b67aeff55d55b88ec468be97297d6415212751a77e1e699',NULL,NULL,0);
+INSERT INTO blocks VALUES(310219,'60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf',310219000,'7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e','c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384','1d6813a55c87558ff4f76f83ae1031c8a3256294592f7f3245009634ffef4bba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310220,'d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef',310220000,'00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240','d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65','8f37c582e65141859105bcbe6b7829719b536e1bc10a49cb1bd858885551d5b0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310221,'cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d',310221000,'2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540','cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800','c6c60d14f2a1632c741d9c7ade5c5d3b809ef46212288fcc2577031b688d7a4a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310222,'1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993',310222000,'00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82','6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107','759e6c1e020dd941ca2b330f09b13ace383e8372390b94fe47dc1374bf512a4b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310223,'af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047',310223000,'41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955','1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7','0deae5db369a00014094253ea4c2e18b8d47c39be5ee174fc9d3d651e462f6b0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310224,'5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c',310224000,'66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929','1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af','24532ddb646f9c8b137a341c8a96c698c4bc68f7b729b6476953e60ebc76b19d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310225,'0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c',310225000,'cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95','61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7','c8dbae5e6ad6bbb74dcd774787e221721f8f10896a536a45f4ba581232449aea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310226,'b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb',310226000,'cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5','2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4','41adb84f61b21dbcf0d72e8700aa686a3b0480a6b790aef7dd298232cb5427bb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310227,'ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552',310227000,'60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c','200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a','fb5501d2647743f35d76c930765a5df2b226b798d1c1e39995d9698f8975dbe0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310228,'8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b',310228000,'798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb','c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185','dadd596ae77bd1f94fc5da78525ca52a70898b9c94f8c90ee16d21dbce71e2ab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310229,'d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297',310229000,'becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df','1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45','36d03440afd4f38ef6a77601dc0f78b9627b883b700cfae60c8d72a9e9134c24',NULL,NULL,0);
+INSERT INTO blocks VALUES(310230,'f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35',310230000,'e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6','d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95','c2516be4dc99763c3c9729e4500750c3c6bc282751fa840bba50261b55d78d1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310231,'8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb',310231000,'a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59','7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200','d28b0def6c30f405a4772b0c79d951b65cdfdf2ab1974c332eed0ae90bc6cbb4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310232,'813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8',310232000,'5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43','721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6','d459913eef43573187e8ad1c6eb5b0b568c6ad8f81c9ff8bcef33e8f90d1da3d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310233,'79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6',310233000,'d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914','a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867','e60149bad1d1707535622f581a174706ec02007bc9cf745201bfcd1de425f23d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310234,'662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd',310234000,'0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766','b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a','516e650d9d411a8da1e7fd3a4fc2d9586c0bf4888080c8a777bcf7a7d9ed959c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310235,'66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e',310235000,'5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8','8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd','2b7bf49e73705d8f3087cf6e9105af6ca437f4500ed459ae8578963c4b2b7497',NULL,NULL,0);
+INSERT INTO blocks VALUES(310236,'d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4',310236000,'c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76','1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db','34eae453b89d76bcd5396946c248050a29ef931a2df0f28b1cf2b0e95b8c6d4c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310237,'2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095',310237000,'4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff','2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f','8949c7e35cf5582b600bf0cdfc6fab59b8dc4aa5bd428a690ea7722d20e47759',NULL,NULL,0);
+INSERT INTO blocks VALUES(310238,'43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55',310238000,'6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7','31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961','9f0b86012f8bf36c17f7c3dd1ad2fcdf6d7f8bdd307f75f1c44c31a31ee80da9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310239,'065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1',310239000,'1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac','82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e','7d301d9e81f060ea649f888ea9f86a71a4fa1c81803d7097b11c02819f37e860',NULL,NULL,0);
+INSERT INTO blocks VALUES(310240,'50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26',310240000,'be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240','bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b','916a66f7a82dc37f61cd55ba904767f3470aa0a01c8efc64676f56e9471337ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310241,'792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4',310241000,'5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a','e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe','795e9868fc7b21c7c3b93882423c46776e928ef3bb589ad3a7563e71aca294da',NULL,NULL,0);
+INSERT INTO blocks VALUES(310242,'85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93',310242000,'5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8','a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f','6e3a1fac8679a6ec025227a845f469f006034af44c34e6552d66888177ed77b4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310243,'a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd',310243000,'ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730','b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0','cab4716514e366e297d68dea26c6115e37533800e7cf5efc9d77f6118c26a9b2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310244,'46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df',310244000,'07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80','baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a','216db55f165298733175aaed6a0af3cad65d6a756b32ab61bd08b2527ca2c125',NULL,NULL,0);
+INSERT INTO blocks VALUES(310245,'59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae',310245000,'d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903','18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e','6f86f4bc7d8a4e3d2a957c50ac7ab53ac24778ea98518e31a9c1c0c503a54cf6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310246,'6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd',310246000,'a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98','a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7','7b162fe8efcfd71be3956bda007ee2ac3f19c6e2717167c6ad4c65374a3ba19e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310247,'fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66',310247000,'ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90','39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6','02263467d6c228054852ca87fb5837f613c03c97f195c6bd0241c88ddaa4a972',NULL,NULL,0);
+INSERT INTO blocks VALUES(310248,'26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275',310248000,'029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2','6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce','dd1a1c3549588e7bf19c0b8922be68eedbcead52701e7e9e28adee8f4bc06b40',NULL,NULL,0);
+INSERT INTO blocks VALUES(310249,'93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617',310249000,'dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02','2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc','43c6887a6c72ec8782218a5127c54d2d9f832ea21e7b3c75bae7a08c60388bd6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310250,'4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2',310250000,'a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641','5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176','1571d520ab94cee90a1f23480807b9c117936fd17fc2a7dbdbc4626fb7345d11',NULL,NULL,0);
+INSERT INTO blocks VALUES(310251,'63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7',310251000,'bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8','6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee','43df61debec53dff5f035e4e38c885fb03d3d49eadf67f86161b63e8de14159e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310252,'768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43',310252000,'8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e','2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125','1e547dcd71029e46e5216ab77cea02471424278cc5ee9413c0a193dce2742838',NULL,NULL,0);
+INSERT INTO blocks VALUES(310253,'bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e',310253000,'2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4','1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f','a9742221f4847c4243dc10c5b16136ca3afe384dc15c168faf38e7f874f594d3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310254,'ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0',310254000,'d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547','098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee','efbfe186ba093ed52f0721acb4eb35cf5cbbab136743ad41cbe4680ea9f47074',NULL,NULL,0);
+INSERT INTO blocks VALUES(310255,'cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4',310255000,'5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a','b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4','e8b10d57552433f463f1e0ffb4125c404fed0edd4006e9392a32c53dc80df0cb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310256,'d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619',310256000,'8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51','fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21','6adf1deb27a1ba5dbae17302608916408f89a535342d35b580dcfa5c63cdbfe1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310257,'0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34',310257000,'0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913','71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055','55784f483ad47a1d2d770ef328316cc95135efca272ec7a29cea3fe529e94dac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310258,'3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f',310258000,'e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e','0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca','173a591f47e20f22c45645842070f1aaf26bd4fe34482df1961ed91514f503ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310259,'e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9',310259000,'03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc','19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1','1f59fa2d5d68bb98a56da510f17227bb54ae7fc1be83759f412bfa9139fb2028',NULL,NULL,0);
+INSERT INTO blocks VALUES(310260,'8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd',310260000,'83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe','de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db','6b4966d50541c79683bcc898431b375b29ff04550e6121c6b05be1860075a35c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310261,'a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232',310261000,'e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0','58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e','7dbc8b54a7067f72247eb37047895d28609a7c6f99d3345ea62ec6476e51025f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310262,'e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce',310262000,'c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91','a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d','d00bb65c3d296ad74ae8b847fd54ffb0d39e2c6a4424713a8c3d8524065fa971',NULL,NULL,0);
+INSERT INTO blocks VALUES(310263,'f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2',310263000,'676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8','ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab','5fba7ea49972341cffcf73a94e4e79822a9912d37bb9479529d8d04a9f58f9c9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310264,'ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416',310264000,'258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25','21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd','ee5d2f2c7a52c515c2b732c16951a5a4bc28f192a485fac34786280c79e995dd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310265,'41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1',310265000,'72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d','9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c','7c75707088e96538a3bb9054dcfbfd084d7aadf4a600e2e4fb1c9f190539f36d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310266,'1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431',310266000,'b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61','578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e','4196f21aa3f1a7dae2df161c60f946f164fee7f571dd33343bb898b98e708323',NULL,NULL,0);
+INSERT INTO blocks VALUES(310267,'c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199',310267000,'ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5','face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c','9353fb7552f2f62bf2bed57c132ff8db34b02e45d35d8bac59c4b8af942e7aea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310268,'b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af',310268000,'1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1','ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd','a80a2513e09b9b94fa7d8d63f75adfe5bfc1b63d01b47a64f9b675f880fa0e0c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310269,'37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e',310269000,'fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67','6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412','4e827684d9b5da8930adae84c99977f6b7a2cec6606bbaac6900f1330b34d627',NULL,NULL,0);
+INSERT INTO blocks VALUES(310270,'a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d',310270000,'1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785','fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53','3023d5b620df212957a759c348d88041dabee74948ae060bf337c2b4b90384ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310271,'67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b',310271000,'cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17','b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a','6f5f434a19a426d95162078c1826ceb7e48d49a59c4aff96191ca67f22fc0bb5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310272,'6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea',310272000,'2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8','329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35','17618e31edf25d02d7d9a73fb7b3b5e027c403826427547fd9950b6774df0e3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310273,'625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a',310273000,'ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8','f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a','31245f12d3eadd04ae9ac9b8408a032f62645c40c240fc92547d6eb5ae2dce6b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310274,'925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6',310274000,'ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646','bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62','1806d9d4c6ae0e5fb500bebe257e679df3d452f457b925aef003e43c2232b3ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310275,'85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9',310275000,'23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163','c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f','b11dc2a9eb66c3eb29a0a3b8881839132adc4e607709e26320c9c14111825857',NULL,NULL,0);
+INSERT INTO blocks VALUES(310276,'ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77',310276000,'a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034','99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec','1f55d47cce2676642fd81bd18ac461c9e8d862dd48548117f0d61125aa9f8e03',NULL,NULL,0);
+INSERT INTO blocks VALUES(310277,'c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93',310277000,'0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532','08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3','3ebe0207f41a5c9dd7e268db3311cc89456886f11d257b432e905e6c2d1ab2a5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310278,'7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05',310278000,'0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259','6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499','cf92577378f8b09c4103667a88f04fc28b046d62615d02bc2f9dab69057c5e17',NULL,NULL,0);
+INSERT INTO blocks VALUES(310279,'1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f',310279000,'442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c','04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41','f37d3670aba3a7688d5eb86096a8d5fd3afb9069fa5acc6f2c4479fcd60fd4a3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310280,'bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142',310280000,'38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225','d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca','8494f375494e3c9404aed3ddd3aaaf01b52ba5c8003f4607cab4ce2827590a1a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310281,'4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f',310281000,'51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc','77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b','0831ce5de96f826a12fb7a871164308afdd4e1e9f3dd75d2de5a22350d093353',NULL,NULL,0);
+INSERT INTO blocks VALUES(310282,'51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f',310282000,'73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb','889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240','cf78638ffd89b36786753e30256a6b8d0144d028b361e38ff77c69737fde0f43',NULL,NULL,0);
+INSERT INTO blocks VALUES(310283,'df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49',310283000,'5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144','1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2','b525a86c2037d3b867bbc8d0cd7639bc696a49eea97b99895a775c87c65583d8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310284,'f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7',310284000,'ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b','c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a','0f24250de541f26fbb74fb1955a8bdabd8000cdba48ccb3a4ed769a8a3e3a3ff',NULL,NULL,0);
+INSERT INTO blocks VALUES(310285,'8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a',310285000,'3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c','35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed','d8fcb18316694e727a14588803bdd46f88b9e3dc274a9ce76696a7665944a94a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310286,'d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0',310286000,'4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9','5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311','afbd710e177c6d2444cbb77c57c8b7cce0587d9f08d93c77a6d77202129463c0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310287,'a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4',310287000,'67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410','791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84','81891111fc43ca92daab85026153966955f2580b74f963fcf47d7442a1198713',NULL,NULL,0);
+INSERT INTO blocks VALUES(310288,'2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7',310288000,'600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc','3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65','8039c2a4fb969f7e1d9d8e164d7a75224a5db25113d064da0b5511e264a93532',NULL,NULL,0);
+INSERT INTO blocks VALUES(310289,'dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75',310289000,'cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158','26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8','201f06ba8bcb29ad2f74b5ee77f3d9e6a58d0c8db65b51a33cdc238f0ff2b296',NULL,NULL,0);
+INSERT INTO blocks VALUES(310290,'fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370',310290000,'04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f','74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e','ae165351292f3bffe75b08022cde38db94762e96a98d5a5119a5c38676b98654',NULL,NULL,0);
+INSERT INTO blocks VALUES(310291,'1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2',310291000,'50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917','13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279','70e10c1d7bdab6f045c84d998d86112f4b66c18d34ac9bfa28482d5fb2b3acbb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310292,'9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d',310292000,'9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0','1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56','eee9a2dc2372c2160aae86e38d4d3de693e7608c518f2f415a9b995873c852af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310293,'bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712',310293000,'a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa','2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb','c5167949c03fa8cddee58c868c2e8d2ba26120e4c006036a6594eac04928adcb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310294,'4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d',310294000,'3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25','36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6','113cde1c0fed76b41d3290402cbb78053621578d0ba3fc65bfa53ce42098d746',NULL,NULL,0);
+INSERT INTO blocks VALUES(310295,'66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53',310295000,'bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a','2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da','8679be965882c71cd14321d7adace95cfcc872d03b4eb3c24352b7ce6806a31a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310296,'75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916',310296000,'08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b','517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff','541c9d8613f122854c989b9edc899208e4d84d72267067ddce4df927e3865dd1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310297,'d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650',310297000,'cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8','85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7','1b977693de35f2c9c48a5af2fc529eff0b71730b1241d493e278ab2970943a24',NULL,NULL,0);
+INSERT INTO blocks VALUES(310298,'8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a',310298000,'25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec','0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68','c0b67d556e4a533654a24b3ccdfd4ecef5072118195dee65c7740bf63423ae65',NULL,NULL,0);
+INSERT INTO blocks VALUES(310299,'a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9',310299000,'756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14','299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0','bdf9020708eff06a99f9d0091820eb80868d784faf336e0e7eed6e2246e7f46a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310300,'395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2',310300000,'e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d','8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020','e9dec9062e926e1394ce7810dce4e9a0fcdda4e5ee401e67e547113d092b690c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310301,'52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a',310301000,'4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0','676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0','a96c2989033f189cef59c58e81c9ead54f13782fb93cf5bca337e8bf8b38b265',NULL,NULL,0);
+INSERT INTO blocks VALUES(310302,'ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa',310302000,'a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f','ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021','cfa3b4ecc1ec97e185573a9cf950f1cd3d0eea0b34fede1201a40555daf18752',NULL,NULL,0);
+INSERT INTO blocks VALUES(310303,'d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca',310303000,'23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49','d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4','1fb525686cfc2d2c62e869f435c83b05fc8e3342069de7072fd99a468f0fa636',NULL,NULL,0);
+INSERT INTO blocks VALUES(310304,'b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c',310304000,'6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3','96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5','dc0607a7d44dff313eaf827411dd9ea22b093d2cb8998e376fed1973c75f5f33',NULL,NULL,0);
+INSERT INTO blocks VALUES(310305,'cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b',310305000,'c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1','35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef','8411a1ecf5d9b7a48f53e5b5b5f746ffbf1ee4818fbad5b76e01ee9184b9cf6c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310306,'a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a',310306000,'fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79','df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997','062bf7721c34786a19dcdbfbb61d0e73ee06a5d97473c9ef12e454ec3328ed05',NULL,NULL,0);
+INSERT INTO blocks VALUES(310307,'bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c',310307000,'e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee','272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944','8a0ac9a3373402279cf87eabf6c1a2920fbb1fba6377b4559a95ecbe7817a533',NULL,NULL,0);
+INSERT INTO blocks VALUES(310308,'2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30',310308000,'523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5','30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1','464607010e49cfa74b86496dc251e9d622efe7e24c2575435706b9e4a6e05ecd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310309,'ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737',310309000,'effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017','197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c','644bbcaf78d2dd3bebabb66550ce8a31a4f145748e0eb7c3a551a86675cf3010',NULL,NULL,0);
+INSERT INTO blocks VALUES(310310,'07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c',310310000,'968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002','b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0','7ae602e7d077e6cb45c2cf958f1978e1ee08a124edbcb7309176ab324376c907',NULL,NULL,0);
+INSERT INTO blocks VALUES(310311,'2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36',310311000,'8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72','86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649','73d961aa283a92fe02b50057b135d3d027ac1bd35496353976e2508b26a33343',NULL,NULL,0);
+INSERT INTO blocks VALUES(310312,'8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7',310312000,'8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad','802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86','acd8aac46e499a58b59f622ed57f738f780b8031204b712499975d9a347e07f1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310313,'7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5',310313000,'1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73','e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51','a707d7df87cf26dd21ee9cef6b143fb5876f8f680f5a3dd5f7c20712ad245e60',NULL,NULL,0);
+INSERT INTO blocks VALUES(310314,'1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8',310314000,'8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1','17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695','75bee8dd3f5b11ee602c473057d847752fc2ca398945facc181b255d662aedfe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310315,'bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb',310315000,'24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba','d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654','d574d1728571509fb854307b8fa5501a08ef8f464298e3c462237d61028e5667',NULL,NULL,0);
+INSERT INTO blocks VALUES(310316,'ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44',310316000,'a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239','daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84','ceb97ebdeb9b5f88fbf632151ac15c82c51289e32a69284d198a67882555f8aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310317,'aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63',310317000,'bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647','740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153','139fd14dae8c47ab2328d67ed59fcde87f6c23782337466c5b4f9fa8f70ada77',NULL,NULL,0);
+INSERT INTO blocks VALUES(310318,'c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03',310318000,'6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee','3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c','2e9e820523416f34de2ba2cea26b7c5159b1c50a2a1b7e6613d2d68ed58632ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310319,'f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71',310319000,'efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8','ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222','b8f734e3855b7c0f738249f3f0817b5f87076d03dcd21af9052c1b264b7d37f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310320,'fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b',310320000,'8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a','b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b','65c972e34bb57ba13ed04604f8fb4c01b41b9d43605a08c830b6695ba3367718',NULL,NULL,0);
+INSERT INTO blocks VALUES(310321,'f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5',310321000,'21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd','77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a','917f18cb9a40e855401434a018ae02446714c9677e4855a5c4a7b3256475a785',NULL,NULL,0);
+INSERT INTO blocks VALUES(310322,'ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668',310322000,'01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a','3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3','991dc50ad5614911258f82d15a340f76959b2604d69f3bd853ab58675d3cc0d4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310323,'df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd',310323000,'a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc','2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4','64fb69a92910d9101a56a7c423d2078da6f2cc382dd5d4a3afa162353ca6946c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310324,'367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826',310324000,'d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6','051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157','fae0e171a6ee94889779ffb5945df3e2e9629b14d0e8300e118afb4fbbfa1ba7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310325,'60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac',310325000,'7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0','7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251','384359eb9ca6bce64aac5d7ec11b53d8fe0a690a60d4abf52dc82fff95936bab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310326,'d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573',310326000,'ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617','72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa','ec570ffb8a7d710374026f84a5ab4324d1c826134e1a70ed7a2f5eaa5e179719',NULL,NULL,0);
+INSERT INTO blocks VALUES(310327,'9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc',310327000,'8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6','ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739','c343404a071b294e7055538c070f1b0cef476f68eaa46fa57736572f2d12cc47',NULL,NULL,0);
+INSERT INTO blocks VALUES(310328,'c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf',310328000,'bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d','42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344','6f99c11b1778951d24facf26097eb6eac16227dd30c851960464d57f22fd3b58',NULL,NULL,0);
+INSERT INTO blocks VALUES(310329,'67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30',310329000,'4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b','a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a','c0aca83a6f7fc4a960b9ab476a95aaeedf45b6f76157f63f7299b09d4d1d9de1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310330,'b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c',310330000,'4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3','263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436','3d372c158d70bc842b32b7f3e2ffd95ef9cde05628f534cb678de6e798fe622c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310331,'52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e',310331000,'c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91','646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6','c94247d2b698ff3c3d3f83c3b22e7db7f0ffde8a014edaa9e5e2c87921d3f02c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310332,'201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2',310332000,'cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000','8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b','08905851c02d9a073f8f2fcecd03e843828641bdcb10ad2968380fc186a3f1b4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310333,'b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82',310333000,'b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b','c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67','007702e6e29eb293977921f36c104e0f4a0151e5641d0db38e2e4510748bbfe8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310334,'a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd',310334000,'7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1','24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9','dd2d4d64d57ed022b46659c5345bd760406f71a79002023e27a1da13a27fd57d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310335,'23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89',310335000,'47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644','ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec','142c384f5bf9eac3a7fa5cba70f841941584d621abf435f9a8ca4b9b1ec864ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310336,'ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199',310336000,'c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594','a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c','4668de14fcad314bf08e3a241b8c6da054c49ee9c7c7399990421b1899240602',NULL,NULL,0);
+INSERT INTO blocks VALUES(310337,'055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a',310337000,'a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e','15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353','ad2290997dd9a9ad9020a642bedda1c5a0efc9329496fb5f9053247868c9fd3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310338,'97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd',310338000,'31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905','ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166','205d060f3443635d719233d90051a36842a58541b94d0243920b5be732ce375c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310339,'99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052',310339000,'6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220','af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff','edc87e0d6f923dfd82f66871ae016eaf7f64a891a32d55e64e917e952ff6659c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310340,'f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0',310340000,'7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f','f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92','f92c7d9d0de8cf9858f3a0eae157af19ff857638d8538b1742f609d6d8b3a7cf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310341,'6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f',310341000,'1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b','5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6','4fa796b5f24a97c4a005d57a2208afa15c640c97353025a2107cf72cc9db22f1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310342,'48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7',310342000,'3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92','b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145','b6c559dd500838db20c2aed3e148fa89c309263658a878eb2a84c6091997c93b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310343,'41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11',310343000,'26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2','37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090','c187583b8a55d536d5e6eca2f9cc06f02c8b2efd94db3c912c3df09996b4a26a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310344,'97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977',310344000,'444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908','52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19','decd1a4f3f0b69849d4f1fdbac5a1598060202b1550bc219fc3e15ba2c2a5cbb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310345,'0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65',310345000,'d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e','15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf','a731b3051144292529c7d6b902985492bd424768dc635cc7e031c5802624f1a8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310346,'0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16',310346000,'3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781','58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d','1e5e3139095ea2ae9758a112e20db4c16fea90ea959b772eef8e330ff37768ef',NULL,NULL,0);
+INSERT INTO blocks VALUES(310347,'f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d',310347000,'6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166','716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd','4eebf2b9735a33c0e18fd4d27ca8c8b55d872a6389bb0ada35e09f27c1bcb8ba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310348,'c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412',310348000,'668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf','8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293','12dd2bbd984925a5dc916a224558e66cbac276542ee3a21d147288296ac6571d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310349,'ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c',310349000,'32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12','8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01','41e4b81a51c4ba0ad543970a1410209b3be1a0d3ec684025fac166c8db52ca50',NULL,NULL,0);
+INSERT INTO blocks VALUES(310350,'c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d',310350000,'dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05','1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf','ea35f102808bf8a26d5e7c768cf165490601ef4969b4682c047128c4d6f97f3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310351,'656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f',310351000,'89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151','f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524','244987449406364973d306dbe62598139c0929b88023589a365812a5e71eb49e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310352,'fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50',310352000,'fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb','1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4','031d4dff64916ac3c9258d70572f74a1d6ea472e35c1ccfefaa23ebb8d79d633',NULL,NULL,0);
+INSERT INTO blocks VALUES(310353,'2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8',310353000,'73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1','8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141','cad4178e8f93daea91aed22c2be78b57b41e0ecd881ba3bc07b895fff727b3df',NULL,NULL,0);
+INSERT INTO blocks VALUES(310354,'437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0',310354000,'b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324','8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c','77573354a998f422c5069e51f912f1d9e18c810b8f3bffc78047130069aef993',NULL,NULL,0);
+INSERT INTO blocks VALUES(310355,'ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d',310355000,'ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579','8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea','38204d3168af99baf64d6f5d1adf616ba0d836b15c0f12f8c5b86867a4f2f913',NULL,NULL,0);
+INSERT INTO blocks VALUES(310356,'68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4',310356000,'06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f','3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566','2acad89b01a594cc31f992a3d44effbafc348fc378c58ae1dec71ce8eff51437',NULL,NULL,0);
+INSERT INTO blocks VALUES(310357,'4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f',310357000,'443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b','af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a','826d24f8aae326da58576b14bb24b92f4be288b8313cd0b38ba1cb7ebad45d25',NULL,NULL,0);
+INSERT INTO blocks VALUES(310358,'d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6',310358000,'c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f','635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31','64d584d86ace25a27fcc630c93bf0ec1598ff84d36c7a00a9fa49135412ccf9d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310359,'4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f',310359000,'5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7','eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d','7e6df1662019e3b9e2101670d0b73381e2690e512c97b7a3366c04d349cb1b5a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310360,'cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0',310360000,'b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658','32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b','58e90cca3333c6d949a32184e857631b1b37b190ec954c49f20772e70af704f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310361,'636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019',310361000,'fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c','4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3','bd5e3e0d1b88381f062d92dd3ed978aa48187c81c403cbde5832ffdb85bb2311',NULL,NULL,0);
+INSERT INTO blocks VALUES(310362,'6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2',310362000,'38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046','2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97','0fcf86dd42300375ea880171e8b2fe8b4b5e32e49a99cf47f44f683e6599d447',NULL,NULL,0);
+INSERT INTO blocks VALUES(310363,'a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6',310363000,'82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3','baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d','7858f1f096a07367403f604be1423cc72c7e4ef081c0d4772801fcc5b0198e38',NULL,NULL,0);
+INSERT INTO blocks VALUES(310364,'67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9',310364000,'cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4','973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73','9124a7e2148fa8d962e232e568710593fb3861dd53b6288cf904693bfb714bfa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310365,'b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409',310365000,'49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617','aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932','318a1e2865a422b38ca84c5791a5c58b36e521ec1ff8a4df6f0a860411817733',NULL,NULL,0);
+INSERT INTO blocks VALUES(310366,'a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440',310366000,'687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597','610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8','e61cf39628b1d43a48443e294f0bce4a9be814381abc1628835664530fe8d41a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310367,'326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47',310367000,'d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7','531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a','3e868d60c3153c31ba83298c1d4aae099da68a21e9b9a4092524c1ac1f7de9aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310368,'f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006',310368000,'97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba','289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e','6169c9dca78bfaea926977e069d40c841ba291fedbf0317372889d6e677ba2ea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310369,'0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da',310369000,'1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66','a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b','8003f8dad350e74b3c92a05fd97fcfd40df87c238ff0ef1e970367d2fbdd67c6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310370,'9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67',310370000,'578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486','d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58','0b32539753507a56ef0903e510f8702e6c46dbad1c711088663d0ac177bc18c3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310371,'7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154',310371000,'473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492','8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6','1831fd632b07925c3c872734e5a6c8477f5c9627cd4fcaf84ceb0f1c672f8d57',NULL,NULL,0);
+INSERT INTO blocks VALUES(310372,'d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d',310372000,'0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c','ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3','dd4b574811986e7ee1339e3e93d1729c86df7bf083c46f3d1a312bd5055bdb96',NULL,NULL,0);
+INSERT INTO blocks VALUES(310373,'c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0',310373000,'48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d','b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea','e2d559b62d0d4058a4ddd55f79be891cd8d021019238489d050c7d3eed81f931',NULL,NULL,0);
+INSERT INTO blocks VALUES(310374,'f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e',310374000,'aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4','46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60','1ee78026540d87a193c602de925e52b645eef726dad5fda2fc759eec5d6257ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310375,'da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458',310375000,'2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b','9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb','00d006b3b5d64246407d6de8ad00f7b7d79c0d3a7912e41d4b7959d542865438',NULL,NULL,0);
+INSERT INTO blocks VALUES(310376,'5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc',310376000,'a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82','a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767','71f7f745bfe6891be3de7c1c9cb73347b4a8dc627b6c861703f227c4ffd134ab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310377,'f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3',310377000,'e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70','4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579','92bd7c3cfec934d773594b68e1f913273cd994e94aa4292b753783e8fb0d5f59',NULL,NULL,0);
+INSERT INTO blocks VALUES(310378,'fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce',310378000,'607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6','49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab','ea83e7971e82ef366ec96fd9141737579bb3ebc10e9f4469afd9540a830b9d41',NULL,NULL,0);
+INSERT INTO blocks VALUES(310379,'d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c',310379000,'9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea','4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44','c0c7c05ededa44c7e65c0908679eb34d7cad986375e15ebd0d0f683c83729a58',NULL,NULL,0);
+INSERT INTO blocks VALUES(310380,'292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae',310380000,'d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532','77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5','ed4a29c3387961059f43795861d929aa20a337a664fd984331f2276b35d2b526',NULL,NULL,0);
+INSERT INTO blocks VALUES(310381,'6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38',310381000,'8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a','48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6','ed39c524ec141484d36b2d000b552aba4ddffc254462198954d1c365498b344d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310382,'0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8',310382000,'809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797','159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f','68c3c0a0602440173dd56bde3c36da766981ddcee65346a6ac0b563e3b7a348e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310383,'992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508',310383000,'d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903','aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a','1ae61f57d27ee48f6ce52e9b7db2aa123f51b13c535112fed565e50f3356d5a3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310384,'d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e',310384000,'fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2','e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111','0d00edc4ac46ff2e00ad11b61ced839ebfa03a9e33e7596bee093e404c0cf55a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310385,'2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28',310385000,'6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef','d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb','552784daedd82dd951f7c620821a5dd0fa63eb6e2116af6ca470c260e47248ea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310386,'9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda',310386000,'4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff','1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee','d72a4beea7dae0c972feafcb1542de04eb1f407c2446964a77b4b15f2d489bb2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310387,'b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b',310387000,'327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f','d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545','6c4fdf12a3944933286f82ffc2cc8ea5717e92a79662a1002ee87b6c3c328358',NULL,NULL,0);
+INSERT INTO blocks VALUES(310388,'41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284',310388000,'6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401','4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e','7fc9103dad9e6891d9b9de61a14acf6f0a5ad35bef48927444252504290adaee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310389,'3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607',310389000,'89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9','b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce','11e6afd0bba96e205869c3a4a69e66234f9392e0302ff5f5ff49e83c834cbca3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310390,'f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a',310390000,'2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50','8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86','e52c228091d702041c31e0e38e84fd66e446dd2eeeec5fddc782877720ceaf7d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310391,'fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952',310391000,'06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831','b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa','3d53a7993178fb1677adb5db2583a2a98b71a50e37022564c92a563f76970968',NULL,NULL,0);
+INSERT INTO blocks VALUES(310392,'f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d',310392000,'44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149','97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a','1cc4811a488ed35ebccbd82cceba623aa79b82061cbf44656730fe1afdc806e9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310393,'e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308',310393000,'1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f','c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3','448db6001da6b26f80f360db92b09f5d3f7fdca4153b6d8043d5c1ad6a819e65',NULL,NULL,0);
+INSERT INTO blocks VALUES(310394,'2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f',310394000,'3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770','e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91','520cf9ed4916983937a5c927df80dfd8d700027da8c0c9ad89b485b484a9e011',NULL,NULL,0);
+INSERT INTO blocks VALUES(310395,'19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4',310395000,'872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555','2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5','75ef5223cfccc9addca156b0483556b1e66168a49d0e84cd5c07389b276a4fe0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310396,'aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e',310396000,'b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a','25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6','b93119cb624bdff14cf408f1fff736d5dc1635780de76556f31787c4769e1492',NULL,NULL,0);
+INSERT INTO blocks VALUES(310397,'7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c',310397000,'b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66','e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44','c30bc0cd819f567ea23116d924ce974964dc9769bed4fb6ff685acfe007bf684',NULL,NULL,0);
+INSERT INTO blocks VALUES(310398,'55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e',310398000,'9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5','0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9','bf14172c1c7249a7e6b41ed7c80a1163f6e4a573dae8d15afc1ff8e64aa111ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310399,'765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a',310399000,'50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804','82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340','6d5cbc8eea82b8eb7613b04131adce13a45a3001c5e6dc037cbce36d4528acc3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310400,'925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218',310400000,'349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd','e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18','9e1fcd3d6621686486774cc32cd0fd9685461be1facd2e63278f74bfb478ad75',NULL,NULL,0);
+INSERT INTO blocks VALUES(310401,'f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351',310401000,'52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5','6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81','f3baa73765b6ebe741681361c22127cd7ca4af545ed41188b81c54477fe4e10c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310402,'1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44',310402000,'8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab','3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33','9787b7b45182c6d57118df7ddc9a5e8023ac1165e57b2e7225cf48e2e47d19ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310403,'f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c',310403000,'fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827','1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f','5edfa935fdf026ead1ae0d7f99f6e6bc2d48209879f4c841df19f6245596f55b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310404,'401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040',310404000,'47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f','10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5','75d90d2e7b129814b68fa5dd4fdcfc85ced4d68c40fa2849f90c67977e9a9b02',NULL,NULL,0);
+INSERT INTO blocks VALUES(310405,'4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a',310405000,'185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096','8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435','fcb93f66eab0d100dd46545b1aa8abbb8d847df3aa49eedfb562c499bf719740',NULL,NULL,0);
+INSERT INTO blocks VALUES(310406,'6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97',310406000,'367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59','0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2','fa4c558f1492ac0046e54c69f0810e14ff56d10c5a8697437d5e52a3a8cfa027',NULL,NULL,0);
+INSERT INTO blocks VALUES(310407,'84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e',310407000,'2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1','a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934','de9ac9c6bdd7a18930a0a225ec8711c8b43ea886859373e1227ab969f969bd5c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310408,'4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda',310408000,'fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3','3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426','1862d4012155a9831a3287984d9717d9f1e353e0f478912adb9d9a54950813eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310409,'01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba',310409000,'5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837','68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b','843e91b4f8f556351d5f34b5dc9ec9e7f4dcf7b7f9a950fa53fbf6cd21f5b097',NULL,NULL,0);
+INSERT INTO blocks VALUES(310410,'247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348',310410000,'93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0','bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008','01ef820183eced548e652869011f1d2cd7fb0c2e72e34ea87c7b1dbbdc117cfc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310411,'26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2',310411000,'8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d','103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55','f51297150aa18a34815b9fa1b190e53713cdb1edff7b14da41921f1e1cebd227',NULL,NULL,0);
+INSERT INTO blocks VALUES(310412,'ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20',310412000,'a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634','4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f','51e8bd0ce5e1fe8c1838080eccd47b2945f767dd999de275e2494bce24f1b80a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310413,'21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf',310413000,'768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283','7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38','6f8b700a381e9b1899549129e333bcb4482147d7a3a013b3718bb376ba9d12d2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310414,'8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6',310414000,'906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec','807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621','37e351cfda5d24a99f5519eeb2ad241d1ba23f926599e591ec1a5a87a98d4a2a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310415,'dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc',310415000,'d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e','67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3','889bec7116eafdb2d75800de39bbf44e28a2b7104a0f72091fe1d44346f45ce0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310416,'7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b',310416000,'90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571','1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c','053a7a0c1e332363a315082c7d3ebe0ec46010ff292c326847f097b23fb94105',NULL,NULL,0);
+INSERT INTO blocks VALUES(310417,'2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002',310417000,'19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b','920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5','0ec21b071e93a654fe0acc298eecd6755d4f7f968578b4dd4a2823031482bdaa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310418,'fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509',310418000,'2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d','290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a','d68b4737689fadd1043e2a1df010e8a5c571c02aad90ab8657bb915bc7ab5173',NULL,NULL,0);
+INSERT INTO blocks VALUES(310419,'9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e',310419000,'7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37','d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539','845cf1141b13f3edc1b3dad5f0b76ae13255ff744e520f68b1652f7444e8e369',NULL,NULL,0);
+INSERT INTO blocks VALUES(310420,'138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372',310420000,'3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509','ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25','ecd60ce5bfca5707c1659c5257c7619c65ea946ffc84737f7e431397c7b75acf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310421,'71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a',310421000,'1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b','01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4','8d8a4969412a09dc50881fc22965607a9fbec8377e905630f1c0123d466b23a6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310422,'cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158',310422000,'e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4','6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583','080360e72aa3a0e5cf5db215604e1f88f13245832a6317337c594346d6bcb0f5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310423,'6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db',310423000,'ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375','dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92','24049c109410fd7e9757b5a79d44a9395f8be026386172809c40a9a2aa1c2f6f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310424,'ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad',310424000,'e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e','bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80','28487ea66f848a80139cbcc9672e74363859f4bdcb3c0119f97fdcfaa6bbca9e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310425,'73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7',310425000,'29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750','2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1','fb5eaff1315e3832032d216f875007cfdc4ff836230107c46ed70e7c398a8317',NULL,NULL,0);
+INSERT INTO blocks VALUES(310426,'9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415',310426000,'9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15','c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289','ec477f826248341c9c69a641b4e2c492bc066e4cac8c5acd8fb672f1a53680ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310427,'d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a',310427000,'f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e','81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95','9ee92aeef748ceaf5d7430c27b9763de6acdb51e7354d2cd4127fde93f665c09',NULL,NULL,0);
+INSERT INTO blocks VALUES(310428,'2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2',310428000,'9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d','002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c','b5eeb4d5c377450a9f76cb9478336b2c2c923d202e34baf26921fdb376829d4d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310429,'086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d',310429000,'ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5','4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7','14adbb4a27e071e03732ca48f299cbb499a42dccb90f47bca54973da2d69fd2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310430,'870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048',310430000,'33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21','3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2','0e89d072dde10174bdf350dee0a3173a123b935ff900e1aed112a7b3874d1e2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310431,'20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648',310431000,'ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1','67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81','ed50aaeaa24fee6e11ab673511fef6b34e8ff7dc93a7ce1577d490df0618b260',NULL,NULL,0);
+INSERT INTO blocks VALUES(310432,'c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93',310432000,'7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f','c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471','0391adbb11914f1543fb6105d4b5d527bd4ea3c7925fe93c214e8a990de812ac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310433,'997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725',310433000,'a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279','f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5','23a87d7e855d65d799a49edd6f528f46de68c6503d31f5a2085b9283ca96e3f8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310434,'61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8',310434000,'e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc','173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7','a049224ac8ef93b12a2d484448fd7d630979344992b734ce80ea935af759645b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310435,'f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f',310435000,'e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f','a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558','af3417fc486fd4b5bcbc1cf4738466b40ee693fad1e6ebd84bac9289c42499d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310436,'a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19',310436000,'82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7','c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05','c2e8f4987ff436411c6729a50a8e8449c189df1b3c57342d588080c675978eb4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310437,'9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002',310437000,'70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda','809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26','af856b378def6d5b5e4f47e88ce78cb92f05fa481859d35697df2351654f9737',NULL,NULL,0);
+INSERT INTO blocks VALUES(310438,'36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc',310438000,'44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722','2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196','ba437d66bd9106e5dfba9abaca8523a49402154241336c48e5fae18055348265',NULL,NULL,0);
+INSERT INTO blocks VALUES(310439,'4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877',310439000,'66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163','41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d','394de9c4af6f1e72606fea7c07233bbe50c658548ff8f1d36868b19d4eace8e0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310440,'89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a',310440000,'5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c','c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae','b12cd5754c6ead386f3e75c6770248d05281ab99cb08db994a1bc184c8e37c87',NULL,NULL,0);
+INSERT INTO blocks VALUES(310441,'2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15',310441000,'2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6','f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710','4f1fac34f1c683f047ad57f735ed40315439b5efe2d8e4243527b3b6c60b3cb5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310442,'50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec',310442000,'a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9','5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9','8f34423881bd18aad46c3452b07649edde8d7b0308cdbcc57de76ffae059ed14',NULL,NULL,0);
+INSERT INTO blocks VALUES(310443,'edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a',310443000,'d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5','4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081','1c244e91c5a685097f48f55f81d063fc917c816933cad2bdff2357b8a7c063eb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310444,'68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4',310444000,'ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b','5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293','bacd8f1e97108e18297d012e2ebc95279e8140cfcf6c3b6c145d015e45b35cbc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310445,'22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef',310445000,'7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc','6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6','d669de9250dbd03fbbe5f4e4f01f1f1e6a95a30d98732340e8c81743d1430004',NULL,NULL,0);
+INSERT INTO blocks VALUES(310446,'e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837',310446000,'db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204','e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4','d2e44226c28c5e6e097519438fea8639215702130906c4ccb2573aa22acf6924',NULL,NULL,0);
+INSERT INTO blocks VALUES(310447,'3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8',310447000,'5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570','026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0','be181e7ddfb3aa0527e059763c972e160b9d3e8b89f77b1dc87a9e870c4fb3ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310448,'6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10',310448000,'ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633','e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb','598149869bcee867166fa1d679ed1a2237f77a8df3b009a2830cea292d990248',NULL,NULL,0);
+INSERT INTO blocks VALUES(310449,'9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779',310449000,'84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1','4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870','afca019eafa05f1493f11ecf78cbafb7e057d1d65f4dcff8ba28353b89912704',NULL,NULL,0);
+INSERT INTO blocks VALUES(310450,'2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3',310450000,'0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73','c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e','2245beaae679257ea4c041f653a25d5682678c562573c0a6d705eba7e8de80dd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310451,'55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296',310451000,'790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f','3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5','669db1defb1ef01bab9fc747e8d3e8d0eb5c055f665272510c952988febd034d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310452,'016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa',310452000,'30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586','a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c','08be855eb4a7530f27caba04a0d694acf1ff7a11a4eacb3d423fb305841c15f8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310453,'610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776',310453000,'56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355','a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1','c6d61883c60555b2ceb5db12f80b6eb2a5f1ff9f4710d56dde9cc5856ae5f904',NULL,NULL,0);
+INSERT INTO blocks VALUES(310454,'baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9',310454000,'38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654','022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057','fb5f1049a29b4bcefe05d7a7369e02282641d032abae4502def0a3f1e664a83c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310455,'31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744',310455000,'b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28','91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a','7e489e12aacc1229f3a6acbc43ea1fa8d2d3f2138c86a72981006ca3c2bbf2ec',NULL,NULL,0);
+INSERT INTO blocks VALUES(310456,'5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa',310456000,'6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15','5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26','57e01d9b8b6d39d98340d47e2500f9c8eb6ed608a7fdf73dae13cf140dee538d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310457,'9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9',310457000,'8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800','061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81','471b03eaf728606a904cd338bdffe853f0292cd01cc74e3b7062e00131be15c9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310458,'deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac',310458000,'520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c','b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297','94e083334b06f881e2c885040f6f30511529e6152310b438105a7882d401080d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310459,'839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565',310459000,'d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0','21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97','1f78f960cf305a7fb66750d6df1c8c328cd92ca738c348422a85de6f9803cc09',NULL,NULL,0);
+INSERT INTO blocks VALUES(310460,'9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b',310460000,'33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a','2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d','a1a8f755136d8c1e002673a43ae4f9c25a998cb53e84c3613a8e1e6658da9846',NULL,NULL,0);
+INSERT INTO blocks VALUES(310461,'8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b',310461000,'22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f','13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0','10e50722472b67e160edcb8dba4e23ee3f66814ba243e222fd9c5785286ca090',NULL,NULL,0);
+INSERT INTO blocks VALUES(310462,'16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146',310462000,'74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32','4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f','f9a08101549db0aa9c6e67ae3a2cca46a59526dc5a313c2ad50f76ec5475f820',NULL,NULL,0);
+INSERT INTO blocks VALUES(310463,'bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94',310463000,'b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1','7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50','caa64b96bc124bb33e6a9042af4ef016d359f2a78383e7e76024b6f5a1e3067f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310464,'91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60',310464000,'00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb','28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52','539ab03391bc8b4a2e62da7208b35f028011166420d97e0b335206a3a3ef6ebb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310465,'5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d',310465000,'09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851','7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d','fb9d564583c18088c46b49126dedf7389071698866951a2e21447285893fd444',NULL,NULL,0);
+INSERT INTO blocks VALUES(310466,'8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc',310466000,'23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd','57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900','74518dfb141064392b09d36ce6e749781162269155a0dfb8fed188c29bfe968c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310467,'d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3',310467000,'a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf','fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265','93cf78601c0e3a8a456b115962f8ab58695c582ff136737eb09be1a7680f2491',NULL,NULL,0);
+INSERT INTO blocks VALUES(310468,'d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891',310468000,'fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3','5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2','dd0290589cda516ec6eddb2d75d86d64441550c19e8b8d3e9adbbb1544cf0544',NULL,NULL,0);
+INSERT INTO blocks VALUES(310469,'2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755',310469000,'09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf','38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b','539c38d03e2330542cddb0826e1787d061c5521bc2665d4a95f865e808108f24',NULL,NULL,0);
+INSERT INTO blocks VALUES(310470,'ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921',310470000,'41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a','bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae','9eb29fc43349c9c9eba529ff4994e9d6f91063e923e37136e14efdc7f0280854',NULL,NULL,0);
+INSERT INTO blocks VALUES(310471,'fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739',310471000,'bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274','d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5','dd1da36cbaf6a1417087abf478e9a63e828d79cc956de97568328429fe35e172',NULL,NULL,0);
+INSERT INTO blocks VALUES(310472,'57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7',310472000,'2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c','c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13','06055afb3d5c34520bdebfa82843416194751f582864050cb6ff8dd206b8a420',NULL,NULL,0);
+INSERT INTO blocks VALUES(310473,'33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095',310473000,'1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88','ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459','b1fa993525a8ff98aec397fb3f0e882cf1aa01a0a07ee3bca9ef543bc2366258',NULL,NULL,0);
+INSERT INTO blocks VALUES(310474,'312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09',310474000,'5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e','b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48','f61554899fcca1135dcce45a468d91170468a8531e3ee564ecd84372ce32f7d1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310475,'bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb',310475000,'b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8','345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89','3e926512bf9640bf41a62025435cf17bf9f76eb10db313ec520120f47e0b8710',NULL,NULL,0);
+INSERT INTO blocks VALUES(310476,'3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0',310476000,'070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c','014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41','504ce7a02051b85beec5aec3f966ef1e27296818dc1cb2d33d90df9addc2209e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310477,'7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918',310477000,'4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1','1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b','dbcf2532422d19dcd61cab53ba009a72ea64584bf2963d1a54e6316e35ecb4cf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310478,'c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0',310478000,'d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590','cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb','2d38354f588f7444d08b83ec1bfb229391fb9e536d39edd0c6ed01e3ae6615e2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310479,'f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030',310479000,'2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0','81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6','cffeea14d3d4af3dec1742a1e754397f09f1689e33cc3b38a382d74b4ffeee79',NULL,NULL,0);
+INSERT INTO blocks VALUES(310480,'2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681',310480000,'aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c','8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385','7feff465e13b22a734949e2d3d6f1140f3a678691da42717b38b5e0994df9c95',NULL,NULL,0);
+INSERT INTO blocks VALUES(310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59','8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5','2ae951fd6cf6e0889356eedc61d768c4525631ead613256b725866de2b88ecf0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209','838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f','54f9d1ce2022edb448e6b60988f10661916a2be3c0c88d257f4512f4661d3cfb',NULL,NULL,1);
+INSERT INTO blocks VALUES(310483,'013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460',310483000,'fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8','2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf','ecf5eb0a239482dcc60b55ce9d7ae555d91926d80eb7870deab151d5b0c30d89',NULL,NULL,0);
+INSERT INTO blocks VALUES(310484,'7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b',310484000,'310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad','ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2','afec302c107b27644ee0f39a850cca9f86703a0ac8d78a40580694d33e7c3cab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310485,'eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478',310485000,'b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd','c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f','8b2a5b6a613c9f190a253983aa6578ef496edd5a8426aeaae21dfd81475379c2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0','ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab','74231803907f08e1d469edec4cb87590248b16b49e101fa502fe0bb21645dc34',NULL,NULL,1);
+INSERT INTO blocks VALUES(310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d','76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72','dbcff459bc535e44556f4ca4fcc7a8992bddccf9be2b2e3880437e4203be6b99',NULL,NULL,1);
+INSERT INTO blocks VALUES(310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104','78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da','3ef2798c9af0fae8ddca24c6480f43428d5612c19ab9b1340fa19a8f56eaaeb2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc','23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418','770a0750a3f1e400309da9b29ccba06399e3faa2c5b74f38b114de6a79e24fb8',NULL,NULL,1);
+INSERT INTO blocks VALUES(310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909','5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7','b10799e81bef49fbd4b57768bae9fdbbe85148f35fedcdf273327c0d78e7e1ed',NULL,NULL,1);
+INSERT INTO blocks VALUES(310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6','f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8','9e9c8f8f8d7dfb437d16e3fb14b93104a64d31577e5771fd91ad73d816d0feae',NULL,NULL,1);
+INSERT INTO blocks VALUES(310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740','daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e','6be55e89129fde30a1c54dd27eb62baf59845f5f35cd43a435dea6ba7b18b715',NULL,NULL,1);
+INSERT INTO blocks VALUES(310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c','7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6','8d04d8d9bacf66aec04b5eedc6dae4ec20cc2964e7e2a03a96a368dd8cc92bf7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919','9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014','f9e39883736e349f6c06f7a0f7b0501d5cf4c9feff4eb53e9d3c0afafc85c6a0',NULL,NULL,1);
+INSERT INTO blocks VALUES(310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd','09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29','3f691c9db715a8e8824082201e3e64b8693be7dc0cce079b89b35da3ce6fdb6d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941','9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4','5eca451c1b5b96497fd7e9c95966aee8f7cb89d5c7a198059631e9e4db60df23',NULL,NULL,1);
+INSERT INTO blocks VALUES(310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819','ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519','1b1d5d1b626a20a86f47ef4ac50bc55ffb05bb7569bf294c312d70306eef77b9',NULL,NULL,1);
+INSERT INTO blocks VALUES(310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414','b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7','6bb9890fecd1e6d7df2077d3a93ce52295a7e77c0400332c287b23c00318b4b1',NULL,NULL,1);
+INSERT INTO blocks VALUES(310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233','c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3','1f284bc0283d35a0e16080380df507528f987e1b74d7f221eb4214bd8acd4efe',NULL,NULL,1);
+INSERT INTO blocks VALUES(310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b','d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767','7e9485dcce4f7f6aa33c498249ecf99ffb3cd102cc30888c70b93c73d43d591d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3','b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e','56e65a2c34de5746cda3c9bd15c28c0fce98bff2f61a0fd60c24d998ea87cab7',NULL,NULL,1);
+INSERT INTO blocks VALUES(310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a','630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea','7a09fe3be87e3463a81f0c31e1d5a380f7171ff1a4ef855ba769fe877936a099',NULL,NULL,1);
+INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db','a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2','cde2608bae2eb699993efa4b79cdb33288c5220c9b3771db3803f1f8555348d4',NULL,NULL,1);
+INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','9f802ac448be60ae7dff91bf0d9be9c3ae9b22e42967592d1de7ed83c5d55481',NULL,NULL,1);
+INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','b533acfcc0186c3673ef702efe5259fa88b0327e7331f86c7c13d38048201f48',NULL,NULL,1);
+INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','bdb7759ca028c4e77b935218321adbcd2b57350905e2ee17163c7622b109e44d',NULL,NULL,1);
+INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','70607a9526c0f2c4361fea26aaf5e3f11ffc02ba166ce5afdaf9cfdd8d4ba4b2',NULL,NULL,1);
+INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','4a4d72b278971ef337754a3424d4cec3799122eb07fffb2412087a9d70c4e74b',NULL,NULL,1);
+INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','533077fdce00d88540869011d696b65ec5ac5de1255e6b639a547e3ee326dc89',NULL,NULL,1);
+INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','dc3bbd61e07c70212e5bc61e890ed464a44b69447624d6e375f4d1259323418e',NULL,NULL,1);
+INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','377b80a9b46d405fea95879d7245fc9ec8c7a94a311b4c11dc7412f4e4d5beb1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','e57fedf50f5e589557828ef99ba62eb5b487d7074a3ee562909be037f369a805',NULL,NULL,0);
+INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','40cb981160e56743bcbfeb5332557a77609fd0469f4aaf45a0d13a96a616a4b1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','f09e3a98073d66ed6ab0e60b877e57599ff54b2f711e467a5be30a7e568deb3d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','e1e735494efe8655aff2d85f8da16c5bd49c6081b9e5663aa1e993eb6636b8bc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','580e09a9bd27bef7b3cca49576088d409c9f9216927708494785d3ed300da77a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','f7fee89aa4742dbc8530f49e453d9d792a9551d1eb784bcd9cf91229f3d33723',NULL,NULL,0);
+INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','fcdab08b80aa353c69584af2691670c40f14d7005ae8211b8c55d838e69c85fe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','1d3d14d33e2a0c96b22c9ce7c7814a4068621c24ca7b89011187012d0be6341e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','dfd3d667b1fbaaa916b09d1b594609d58f54dde5a908a6fd0cfd517047ceb85e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','2a22c2ab92e53c25f51968b1faa6b5421a740922b256353bc9a5040d6501aa8e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','f7e5b76fa88a19b4b9f5f287f0b907fa3ae57b30a5ac19435afda7cdd4eb77ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','bfa61c215ee22be3f7efab822268aae10991d0c0b1944b07fd61912c87f032d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','ac00f053549ea8f45bef6bdcf3d513a45d9dacce6a144d06f84b140b00be91d1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','e14d957d8509b0eab7cde558efc2a05700208603818becd17a9a13a118d340d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','f80855d680e2abb67a5a25a5466f3145ed268296da900ed7e618c2fd5f717891',NULL,NULL,0);
+INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','dc506661dd766d375b70999ab07b57e84fb629fc81c7a93bef55f28658ea37c4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','cf32eaad387c5ed2b3d65a8a3c170fa813341df398a11d014ffd4d8eaf328c23',NULL,NULL,0);
+INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','31fe60b84c42b208ab135789882f894cd65e34c8f884ac7dfa4fd9ded9cf3ecd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','6157abc3bd4a2b57bd150185f90769621dd92a7b8ce718e189572a613442dc19',NULL,NULL,0);
+INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','6481917e4602ccfbd0d9f6515aa64686970ddb12b573154ea65c693d9421735d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','558baaeee5f0a6a25ecd524e9d5ebda4b1b239c7099774966129b3d81d0f432d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','f6826bde541e9d973bfba4cf31098cca10fcd051c21069a2c2ace23c998662ab',NULL,NULL,0);
+INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','2790ab8560aef67849590b0982be710478bd347c5fab2f9cd18e4b0d7e2f35ea',NULL,NULL,0);
+INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','94643866b10a6bfdad9483e2f91cab8c353189cbd11533723f61576b8bcbdb48',NULL,NULL,0);
+INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','7c6aba3b11d92ecb27db8d623e22e362530497d994dcb58c9494b1fad8390c3a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','7b61a5f9f592e156c277e5663a214b2d1f6dff3759945ab00ec5df0bedea7132',NULL,NULL,0);
+INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','424150875fe6abfa671114f1de6ee25cba158ba9a785f4de66016496ce4b8245',NULL,NULL,0);
+INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','cffa0d5acacbdab0f647b1d616e58f5b6a77cb4f152132f8646b2c0312022777',NULL,NULL,0);
+INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','e2732a291f53732dc9f17d1e5b00314233e97647f750c9034420b111d422cfca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','4b2a92757890f74c8dc1cd25b79087de549e95c41b2df88275b1c445f3ce02e7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','b24ee3dd85c82c88f3fb9eaa06ed92ca376686f87a614a2e07c7fd5f035bfd56',NULL,NULL,0);
+INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','efc83e6cd724fe89d3d3fe1c57dfa6bd4b91c63399a019a11d715ba9bf6ce0b8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','8bf5a381abc25bc415bd415a27cb190e1f285c88ea31eb8c459dc4da65fdd444',NULL,NULL,0);
+INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','fe3fdd7b83da05622f9d9906587511bc99c48bb512f51faf674bdc9e985486cd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','7dc2536ade31822424c3a8f34fbdc9c6706f1bc9c366bf5f4aba14559d3ee445',NULL,NULL,0);
+INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','217081e6577ebd699ce0fd3814beb7ecec042579293f12d08137c8c50777f961',NULL,NULL,0);
+INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','ea397f7c401126afbe64b1a7857af6c66c470e88e17241e98973ef3521c2fdaa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','284bfd354a0631172414fc5262ec0eb0b32a22a11a89cfd4a3530fa139965555',NULL,NULL,0);
+INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','b7dae5fdb8f2a8f5d8b2b60d0be7262f5f604187d6af40bd3cec4aa4a2712c97',NULL,NULL,0);
+INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','156b7d109db27f0c5b438f50f70686d0b74697a2ae324b697718f9baabd7c644',NULL,NULL,0);
+INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','f0dd7b04ecc60667e63b095d1b8094fa3115eea58940f23b9c37c6bf97b2ab22',NULL,NULL,0);
+INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','8e8ba18912c0725a5b4a918c3b8f1ab876922308a37606d6a5ac41d165471ff1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','7e4151c22059e28d21bbb58532dbff0da9541d6035639a008900cf33da9d941a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','a05a55216987e52a4cd71edeb67afacc01e4de5687cc1d86d9f988053a0060b8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','4d2775a870dd20810e75af34ff984483ef38614e5eaf471ec036696bbb30c3bf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','ddfc9adb4f5df158dec97783d9cf6affec910e1cd039174eedd44f17b8778514',NULL,NULL,0);
+INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','3ee7e75a498506b1776d53c171fb5ff06466bb32145e3413aa181133bfe7be3e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','5b9ecb55fb2754a4637eb9a77ad86dd3aa5833b4b752570c01bc30a9023f428f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','08c63d3d75a56117d943287df9f2f5e5b5aa8793045fe5811cfdae2aa25b99c2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','634ed3c4f90105f17393b6d06d9468bfd20e72f54da081fe29993c1cc3646047',NULL,NULL,0);
+INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','25b4888e600f4dac90272171cc5ca2d25956da67479aad56ccc9ade21e1af470',NULL,NULL,0);
+INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','f66da75f6792a9f3cd9460b51e6b1278cb03ae295398c0bcecec62848fb09a55',NULL,NULL,0);
+INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','ad12978790f26a911c79c2199a35fbd742883e7e2feeab47f2f6114411c3da55',NULL,NULL,0);
+INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','22a65d8c55114b0557255bda0ed0fef09d82c4639d72bd54afccedcd6536e120',NULL,NULL,0);
+INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','21ec649a7935abb03ecfcb280bd0fab4f230ca2d91b6c30ddbf33ddb04e4ed4f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','e767acab4a3ce2dd6bf3afcba93a2226ee01c3dfc384caa303e428d4ff6ba9b5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','5328e9f8b6467d7397e3ee60caec087c4b50f07a42617f6224f906dc7d85e4af',NULL,NULL,0);
+INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','8f5d787fe6cee69046a2fe9e538ec4f34b164cddab1889ba581930c5ceb94da2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','980ff0336aa223399aa25c8fc903f38b4e06a5c071b0367dbb44f9e3c3434ea9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','2e3b5884fb5032203ceae5782c9bad4fa62556331f98d1dc68b86c539777601e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','02154c31facf51c1981bd8a60ff12a2ebff2660f1ee9b8df14362e0b87222ae7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','b6d1efc33a75c137746d2a7927f93700213176937c66ac9e988017519021e705',NULL,NULL,0);
+INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','69518bdaa5777b5938839c89b6f38ba7431389fcfb4ba21e75155af37f204c33',NULL,NULL,0);
+INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','6374560641ede2326a655baa894c0ce3af24f6ae931e6ce5a2db6e763c53450d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','163ef3cb33c25fed114247401fe7c4b29b6c24f528f97beba30798d277ff2277',NULL,NULL,0);
+INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','86753a4a848575133cf073de2466f53c3b295b1652f5d905551cbcf1e41d1507',NULL,NULL,0);
+INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','37edfb0969ae5aa3647f541f7093f9ce11c73ee131aa4f40c50d83174eae45d6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','e2a8a0eddb5430752694510ad9672b226e1ceb00803567983cb353b901e5ee02',NULL,NULL,0);
+INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','9cf513f576f18ada23f3d8ea08fe0ff798bcb24b63706c510fa08da0b1dd68f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','c0f216b427f251d36f4c25519bfeaf16ab6ce3aa7177439eb7acc3b98fd1aa35',NULL,NULL,0);
+INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','818fdf1b55b56125a2572af426ae72628c792b38ba71b9c4309b81b7875640ca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','e2a1e7066ed8801df57ff449d271f57de4fd94e2a3f2c26d585b0ea6bdb4beba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','7d9cc2e20887fdddc472bd1f160a24eb51224a7b7414d239ffc3af6fd2ed50fc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','dca4ae1aaa0516ea81ac2cb5118b4f980cebc46263929c678f3fd7c483bd25ce',NULL,NULL,0);
+INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','fc6f9c59bda735c1fddf3c393e290edac38cdbec0cccfdd3fb47c60ea2d81bca',NULL,NULL,0);
+INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','9285af91e93c082e04cadf02726578f7e562ea62fe021de92cca66d2b42133fa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','14fee9852e2292cc9d13403f67f6c71ed2bcf8a6e5b0bf7b327b4ba6f0854b8b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','7ca7563648c2333e269bcacd41105d1ffafb80f51065b153a4ee2c91317ef6ed',NULL,NULL,0);
+INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','3d59f48fcb005cfda23fa02bd91080db6d45d6beab2be7967eabe516f071c940',NULL,NULL,0);
+INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','735ad20bd609e7af27cd05128025b3f28216297e260107e21a4dfaefc42475b9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','390e7fc0b23505dc054cf152ca6b4e0f85e3de5305f33a5b6b6babbbba00b9b9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','f4a40cacc4b43995dd20a807dd32a353b9abe4d4cfc120f91fae0c9d18e93ecf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','719d6d0da72b9c877e3e397b67b4b9e7b39058b7d14fb9b838d9091cb7d9643b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','3de82b39a5fab20c1e9ffb199e85e40d062f2a14dc6785915afdf7237ee2d91b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','4d1d8b57d6b8f75c625171621f01575aa253b9c69e3c01c9a26a22ddc78c436d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','672977e75961f1b6fad4871e1904d114be10b11181f5cda075141f98ab3365aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','e406de167f88936588d2d427bd6b8d9c90a947ff6bfca529c37042515b242f75',NULL,NULL,0);
+INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','bce85fb0fd133918ffaac7660520e80d7b42272b18e01fa01ca330bb384493ba',NULL,NULL,0);
+INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','75a871e3857891a3494d1f9aa3cefd639dffd27538598c97fe9e9fd45f42d26a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','0e4a4da780b4f2272d88ace7413d0a0f19a9b3beede089f9c6346f7143bfcc09',NULL,NULL,0);
+INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','a2e8a5e63c659b877359f4b115f6aa507fe9d95f9fffac20fb8613063254f89e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','91a480a959b6c20dd9c0003769792479b4ca1f3187cc95281d5bbd752898ead8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','7a70d8af9cb999e78142a4bb5fcf431a99f6de479ce74470be8c95cbc447b1ac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','01e35ff7b52aaede21978f33a444e8322b191eac224e4327746e34dbe4b53a4f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','0002cb44723839b1eb5416453b1bcb390c7c25f2ff6f0fcf3eb0a643dd45bc87',NULL,NULL,0);
+INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','2d29551343c840afcc23e5367116922594a9cb3dd49c9f98c331d2383a1d1b61',NULL,NULL,0);
+INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','072a514d43030b305cd5ab52dc7f025a6fa8fdafc700c8c4840922d763e87709',NULL,NULL,0);
+INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','0081d700eb987df05224651c7a86aad8466c1c0aed1f8b9adcd804c0c357ba95',NULL,NULL,0);
+INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','aad7d0f1b069ead9be5840191c72486dd35a99cc0d636f84dc26c9011750515a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','cd1831370719d122b3f104816d00c53999d5d3c4231d61a63939cac11b9e371d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','dfcc0432d894cedc1b86b930ebe7c2a91923c73a3b48ddaf20af6a91a1fd8d4f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','35bbf8c0a4c7b76ee99651dabc7fd61ecad1944ec64894d58b4b23b3f56e32f5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','c17603776457e6b4ec866211fab5a67645264ad88982e074e35934955aafb672',NULL,NULL,0);
+INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','658470a3c81fa20340341844f3f6c4421d4163a563ba6c76bad26ae5ff8f6f30',NULL,NULL,0);
+INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','3c19e585c98db921941f5b26a126b80a49c2dec9557f830931ade7262e91c062',NULL,NULL,0);
+INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','d3e6cfcc59682b7ca7651a4d0b764e978f39e0275179d9c7d345ca2036df6ba5',NULL,NULL,0);
+INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','5b4b24c7af8e50b44e4fc6d23ed3b636c2f720d79427696f39e5f5a744f0b1ee',NULL,NULL,0);
+INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','99b36bbe5f19e83ea1b1ccad1d01356648aedb05e1e596ba41600358164b8ac7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','4527b116244cca77263350c03e796f7b8f68e3359a31122544a8506d649c0414',NULL,NULL,0);
+INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','d49ffe3fb323982ad595474cd4d4a750e40f92ed7bac60328fabb6b3adfc4ce1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','e31efce2466a3499fe85fc3fd38c4239dd008155ce0bf7197760cb52a82ee77c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','25bfebc1c8ab376f51290a883ecab7b9ee9f9ca243fba57f1d784287bf73560a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','5f7cf3364676fb64b39fce7d55240f958e9832c147fe1a028ec7e08f04bd7a1c',NULL,NULL,0);
+INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','86d7dd3386c1d6c331bb7d2ff4c66fd058f8d061cb81fcccd96984bd730278a2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','757bb6997fd9c8958569c3b90924b80dfcd32e2b600dae70830cb79e6b8cec59',NULL,NULL,0);
+INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','c303f75cc2fe00d44ebab4d32b25b49c2da39284686382a36b35d509b1adc8dc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','207919db28449144d8bfcf7a2d2aa1c3f9da1bb30d625d4346be0aef97b9fb41',NULL,NULL,0);
+INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','b2deb2e778518a65c7e22d9ea3dfe8b20f22a6f0a98fc121921824a6ccc5767a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','0d5746a5957752c2906ea859b36fac65adfaed20b77dc5221f0dd3b82adb153b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','d28f8cbce3f48ded964028367ac5bbb4705c81ba6fc0f89bdba45229a1bf6d95',NULL,NULL,0);
+INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','802428c482632ff14810dd4456420e560672dd2bde33476b9583d287243ec83a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','0a3765d2494e2691d6f99e6323c5babad9644c5994a6fa0a92791e244bc69743',NULL,NULL,0);
+INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','7bdaa1ff0e78bd031a50bd15d814a283282ac11b1201bd957ee4473ed1e19c4a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','b4f02b8d29590e5cd36d497111827654f87e6d984e687aabeea90a7a625af20b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','86fff556f529899c5904c21c3718a761203480e004d8f5806c3f9fc82bd221cc',NULL,NULL,0);
+INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','80ae4a42a3ea75d772058d3b84fbcdc6ac5392f4fc2260258b97a7dd14a28abb',NULL,NULL,0);
+INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','a0fca2d1c45a647f0f5cc160cfa040d7876b70dc1a4bba5be573ab39812fa2b2',NULL,NULL,0);
+INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','51d703529c87ce1110fb82b1852476613763f042f15db40d27a1ea60cb8bb2e9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','6cf2423bbc5d8b255d3f80e88b3150150d0934c16f7d6e97aeaa9cfead892869',NULL,NULL,0);
+INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','031cfb4d2a53fbdc957fe2fb4221885914ddeb33fd8e9ab14b788e26636ca3d6',NULL,NULL,0);
+INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','5a04be3dbfe8c59f55788d253e52e64724cbae371470b139ae6c610fda9feec9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','7a5f8d4ee64b87ced44ce44e2aea65904f97568cb9bbf5105acaca9d42b01cbf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','3fcfd123a88ad9d8710d32be1f0ae8e752a2864a6fa3a6acb472fe8e9f89aa13',NULL,NULL,0);
+INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','1b217483fa5bde6c53b24bc615dd10f59d41fa74529e2dc9f45bcaf213ca8aaf',NULL,NULL,0);
+INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','ff57e5cff64d2e1286bc27110d4b88c5b261a401907c4e26f9d6d301c2e44160',NULL,NULL,0);
+INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','787c55f9b276611a37751587e6b930944b47a7df6d7fc0b78abe76e7cc0d852d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','7f884ca84212371f3d07de00c05e171d40aa53f8d93fa919819bffd9eb69c37a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','136931a8c79bed40b5d2af24148b5d4dbfb1688cb9a380b8a6d0f9818df0e4a7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','3acddeeea5792debd38fa3dfc11a3d4fb4fea48d3bbecff8a3034c11f30f582a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','a1393b20aab486d72245785c0d6167bcf5bbd163cf6d3a16f40f32ad934e9c19',NULL,NULL,0);
+INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','64b05af3d6aae2858432eac39d614837d9cf7ab67e2a4665c77682cd35f7c932',NULL,NULL,0);
+INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','2d0c524badfd5efb7992e4bfe5a8cd4b365e44f5364e31383fceb616dfb3a172',NULL,NULL,0);
+INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','b1d407191bf8dc946e2dd99d0dbbdc69c51b971b416e448b94519bdaababb2fe',NULL,NULL,0);
+INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','5c989bdbf8aad78e3dc2d749e7c279e423e773096edace524b21dd5b8aaac8ad',NULL,NULL,0);
+INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','89b56221d0b58205c1fb244796ad86e5a33814267d60bfec9757e4e929a7e8ce',NULL,NULL,0);
+INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','7a53a155b4665f4a4816b515cedb51ca43a2886be73284cec520e62d15a72bf1',NULL,NULL,0);
+INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','dd7b544bea09772a3f6124a6164b1c3d53ae2fd30b1cc0429a7e7056a697408a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','e2d5fb7a5080495161fe416b9e3541d80316a3647cbe22a64e8af6d32af07473',NULL,NULL,0);
+INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','e2aa54542a95a8e8d6b7f2faddbf926f72b60f745dc96a23725fafcc05a5f84e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','a43798189afa87e197830f8df29e8686a1dd3ef5fd4a8a1aba4bc81967bb2347',NULL,NULL,0);
+INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','23fee6035da4ebdaff578b4afc6e6144fe2b0dbdd11c742fc4f3644bcc4cbbb9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','5b3235621e8b9163be2760e6b7c2f97da6eae84d8521c903d2cb378772c78936',NULL,NULL,0);
+INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','5f31077e72445bbfacbe6fd75d3c7b98a61535937919a9276ea515097191cda0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','8b7e6330e620f547807b44ee45135190d336eeeb332c22ca9715d06bf362724b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','14a8864d9c20ad253940a754ee55f0e897556482ed3aa04c6b24eed23a038db0',NULL,NULL,0);
+INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','1e966870fcbe2d8b8d50453b974bb52b12bd5da819485a5369b6524484c6ddac',NULL,NULL,0);
+INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','59491c7be213e15d2f0c01dfd7234c8ca0d6c13654dd811d9f589f1328cf958b',NULL,NULL,0);
+INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','d46db7182822aede24231ac4d2bae54649bd81093f5503551ac3ae50cc55b24a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','bdf5e5a3b7c2ab26c978e2ba4b37f4cf76f01a2ed18861a7cee3619133074fc8',NULL,NULL,0);
+INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','b57450c4f69f5f7404ec6b4718469d49d237934443f490112b7d7a40ed01f764',NULL,NULL,0);
+INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','187790ed3e50c37b64e92ab78178bcf83709a500f3107a3a648426068470b921',NULL,NULL,0);
+INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','ac1869305532cccdf26f545546e6dffe0e266773b7f1271d963b03768311501e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','eda9e4bff58b78300c49f153d946a05ad79cc2a2c4d890f62107862bbf58e281',NULL,NULL,0);
+INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','15c13a8577041a93affa73dd930c61d3ca3ac4cd24e5bc195185559a0288bf0f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','82f57f514dba082ff58f07898e9ceb7dfafa7802e71279de9f9b1b50c37bdd5e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','93ffe2201b58525b8c2bbfb5e8274cce94adff6a620f802469894da3d07d28f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','8cf0bdefca7c9f082895f573213c31fcaf679090b0ba4086356527122bb4ea1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','d9d40e4a4bf36c698f89003ec5b12162b0a8a69a3c6a787bf6b019bc4663952d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','1520317691e7972e26ec441c69e1c325c3f68af33b81b129000f03df21ac3ff4',NULL,NULL,0);
+INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','335b4ee753fa80bdaf49af4448b2556b211702cdbc6e879c31bc8883615586f7',NULL,NULL,0);
+INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','be040e6eb65a044cc6ef71e63e215f93d0d1630ef5265d0b4aabecda92d39736',NULL,NULL,0);
+INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','e5767f2f7f04a2ef37312736fd5d191341b2b9342adf1c403eabe0c385cdd1d9',NULL,NULL,0);
+INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','873efaa1183593ac12a37d9d4166ea1b4535f2825db80a2f71b737d15f265299',NULL,NULL,0);
+INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','3963f5c2f0b08d1181a5dd2f9074b03ab29d0c9967cf16d1bfb35a963360dd16',NULL,NULL,0);
+INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','8263796916d90637ca98afc47d057801ba14dd96efddaa27ad88b7dbdeb07e15',NULL,NULL,0);
+INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','0bd4ae72810a6acbfa4129c446f371b48c5b21938cdd67488a4703633f376081',NULL,NULL,0);
+INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','9d2a21ab22a0cd25d5d3bfadb697ce48ae45b89a1231a59f5e2189b950bccfe3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','6a933def9bb004d37ae9ece8f5b7c01d628d5cc9029b59547e82ea9000f63ff3',NULL,NULL,0);
+INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','fc971e9f6de6fe3655a6c79a15f620f8f24c7066a94fbc577368cefd73b26a1d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','2cee1ba30e1b1be03ff712650d5f37b16ffc1e5630e3276a0eddabaad8591f8f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','31e4ea83f5958ff14927f00e62cbb52b245d3e6509834da426806b396cc117aa',NULL,NULL,0);
+INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','ede966fe3f835c5a48e474870b179d1ba1b7938744f6133a3804686c136e9f7f',NULL,NULL,0);
+INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','193fa09a1d321e9e1eb9fadf56dbf46128a0e0f23276afb0af169be0a2714a51',NULL,NULL,0);
+INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','7112da51430ab9dfb8dba1fe06f52fcffdac61e146a50c73e95e1ecffa62b6fd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','1b9aef26cd6d6e43ebc95c01db0ce8ccb05b8400955737643bef4458471f7c29',NULL,NULL,0);
+INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','ef1273df0c8d6bbe9078468440fe92eec3515e5985064775d453615448d836cd',NULL,NULL,0);
+INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','2d3ce8e66aa0fa6491fa43efa2de7264011d91dc04b6a7aa37d7974876c3c22a',NULL,NULL,0);
+INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','3a2b15d7772dd7a9d22d7bfcc558ec8da5713b427e25289eb809b4edeb673e2e',NULL,NULL,0);
+INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','8a30a60098f9f82a118549ec730568a44d5fa6eb3335a20aec2b44599039342d',NULL,NULL,0);
+INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','a12df3e7bce37d8f4a9c4c0a2a3f367fb071142acff947cecc23173b4925fb53',NULL,NULL,0);
+INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','9e09c7b47df3a09f541b40931ccce3b512ca113a6d4dd5e6d3505e29bfea8e31',NULL,NULL,0);
+INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d',NULL,NULL,0);
-- Triggers and indices on blocks
CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash)
;
@@ -548,60 +751,73 @@ CREATE TABLE transactions(
fee INTEGER,
data BLOB,
supported BOOL DEFAULT 1,
+ utxos_info TEXT,
FOREIGN KEY (block_index, block_hash) REFERENCES blocks(block_index, block_hash),
PRIMARY KEY (tx_index, tx_hash, block_index));
-INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1);
-INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1);
-INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1);
-INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1);
-INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1);
-INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1);
-INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1);
-INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1);
-INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1);
-INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1);
-INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1);
-INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1);
-INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1);
-INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1);
-INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1);
-INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1);
-INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1);
-INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1);
-INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1);
-INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1);
-INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1);
-INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1);
-INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1);
-INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1);
-INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1);
-INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1);
-INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1);
-INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1);
-INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1);
-INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1);
-INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1);
-INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1);
-INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1);
-INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1);
-INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1);
-INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1);
-INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1);
-INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1);
-INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1);
-INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1);
-INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1);
-INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1);
-INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1);
-INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1);
+INSERT INTO transactions VALUES(1,'6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',310000,'505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c',310000000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0');
+INSERT INTO transactions VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',310001,'3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e',310001000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'00000014000000A25BE34B66000000174876E800010000000000000000000F446976697369626C65206173736574',1,'ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0');
+INSERT INTO transactions VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',310002,'fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964',310002000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140006CAD8DC7F0B6600000000000003E800000000000000000000124E6F20646976697369626C65206173736574',1,'8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0');
+INSERT INTO transactions VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',310003,'d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a',310003000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000003C58E5C5600000000000003E8010000000000000000000E43616C6C61626C65206173736574',1,'197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0');
+INSERT INTO transactions VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',310004,'60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615',310004000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E300000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0');
+INSERT INTO transactions VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',310005,'8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a',310005000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001400000000082C82E3000000000000000001000000000000000000044C4F434B',1,'2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0');
+INSERT INTO transactions VALUES(7,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',310006,'bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb',310006000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0');
+INSERT INTO transactions VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b',310007000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0');
+INSERT INTO transactions VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33',310008000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'0000000000000000000000010000000005F5E100',1,'4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0');
+INSERT INTO transactions VALUES(10,'21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',310009,'4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0',310009000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000A25BE34B660000000005F5E10007D00000000000000000',1,'70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0');
+INSERT INTO transactions VALUES(11,'1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',310010,'a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042',310010000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000F424007D000000000000DBBA0',1,'8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0');
+INSERT INTO transactions VALUES(12,'a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6',310011,'8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb',310011000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,1000000,X'0000000A000000000000000000000000000A2C2B00000000000000010000000005F5E10007D00000000000000000',1,'ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0');
+INSERT INTO transactions VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677',310012000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'0000000000000000000000010000000011E1A300',1,'07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0');
+INSERT INTO transactions VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61',310013000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'00000000000000A25BE34B66000000003B9ACA00',1,'1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0');
+INSERT INTO transactions VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f',310014000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',5430,7650,X'000000000006CAD8DC7F0B660000000000000005',1,'a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0');
+INSERT INTO transactions VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922',310015000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2',1000,7650,X'000000000006CAD8DC7F0B66000000000000000A',1,'3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0');
+INSERT INTO transactions VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',310016,'99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9',310016000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'000000140000000000033A3E7FFFFFFFFFFFFFFF01000000000000000000104D6178696D756D207175616E74697479',1,'698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0');
+INSERT INTO transactions VALUES(18,'d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af',310017,'8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3',310017000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0');
+INSERT INTO transactions VALUES(19,'f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660',310018,'35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3',310018000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'0000001E4CC552003FF000000000000000000000046C6F636B',1,'903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0');
+INSERT INTO transactions VALUES(20,'2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',310019,'114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294',310019000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0');
+INSERT INTO transactions VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',310020,'d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9',310020000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000052BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0');
+INSERT INTO transactions VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6',310101000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',5430,7650,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0');
+INSERT INTO transactions VALUES(103,'16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',310102,'11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99',310102000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0');
+INSERT INTO transactions VALUES(104,'65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',310103,'559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17',310103000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0');
+INSERT INTO transactions VALUES(105,'95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',310104,'55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2',310104000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0');
+INSERT INTO transactions VALUES(106,'e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',310105,'1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a',310105000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,-99994375,X'',1,'3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0');
+INSERT INTO transactions VALUES(107,'bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',310106,'9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff',310106000,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','mvCounterpartyXXXXXXXXXXXXXXW24Hef',10000,5625,X'',1,'fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0');
+INSERT INTO transactions VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435',310107000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C000000000000000100000000000000640000000000000064000000000000006400',1,'0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1');
+INSERT INTO transactions VALUES(109,'93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',310108,'8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34',310108000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','mvCounterpartyXXXXXXXXXXXXXXW24Hef',31000000,5625,X'',1,'698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0');
+INSERT INTO transactions VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',310109,'d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9',310109000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,6800,X'0000001400078A8FE2E5E44100000000000003E8000000000000000000001050534820697373756564206173736574',1,'c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0');
+INSERT INTO transactions VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382',310110000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7650,X'00000000000000A25BE34B660000000005F5E100',1,'fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0');
+INSERT INTO transactions VALUES(112,'510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186',310111,'fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae',310111000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','',0,5975,X'0000001E52BB33023FF0000000000000004C4B4009556E69742054657374',1,'3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1');
+INSERT INTO transactions VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251',310112000,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',5430,7124,X'00000028000352BB33C8000000000000000A000000000000000A0000000000000000000013B0000003E8',1,'2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0');
+INSERT INTO transactions VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',310113,'63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7',310113000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C6900000000000003E8010000000000000000000C4C6F636B6564206173736574',1,'7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0');
+INSERT INTO transactions VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',310114,'24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283',310114000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000044C4F434B',1,'a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0');
+INSERT INTO transactions VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',310115,'a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a',310115000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'00000014000038FEDF6D2C69000000000000000001000000000000000000076368616E676564',1,'61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0');
+INSERT INTO transactions VALUES(117,'27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',310116,'8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84',310116000,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0');
+INSERT INTO transactions VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a',310481000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'0000000200000000000000010000000005F5E1006F8D6AE8A3B381663118B4E1EFF4CFC7D0954DD6EC68656C6C6F',1,'bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1');
+INSERT INTO transactions VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6',310482000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,6350,X'0000000200000000000000010000000005F5E1006F4838D8B3588C4C7BA7C1D06F866E9B3739C63037FADE0001',1,'2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1');
+INSERT INTO transactions VALUES(487,'3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14',310486,'d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862',310486000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33003FF0000000000000004C4B4009556E69742054657374',1,'6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0');
+INSERT INTO transactions VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f',310487000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',5430,7650,X'00000028000152BB3301000000000000000900000000000000090000000000000000000013B000000064',1,'ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0');
+INSERT INTO transactions VALUES(489,'870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638',310488,'80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b',310488000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33023FF000000000000000000000096F7074696F6E732030',1,'66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0');
+INSERT INTO transactions VALUES(490,'685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1',310489,'2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6',310489000,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','',0,6800,X'0000001E52BB33033FF000000000000000000000046C6F636B',1,'147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0');
+INSERT INTO transactions VALUES(491,'7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af',310490,'e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c',310490000,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','',0,6800,X'0000001E52BB33043FF000000000000000000000096F7074696F6E732031',1,'dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0');
+INSERT INTO transactions VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310491,'811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16',310491000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6800,X'0000000A00000000000000010000000005F5E100000000000000000000000000000C350007D000000000000DBBA0',1,'34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0');
+INSERT INTO transactions VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607',310492000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,1000000,X'0000000A000000000000000000000000000C350000000000000000010000000005F5E10007D00000000000000000',1,'01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0');
+INSERT INTO transactions VALUES(494,'c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',310493,'c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf',310493000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mvCounterpartyXXXXXXXXXXXXXXW24Hef',62000000,5625,X'',1,'55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0');
+INSERT INTO transactions VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',310494,'7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d',310494000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','',0,6800,X'00000014000000063E985FFD00000000000000640100000000000000000000',1,'1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0');
+INSERT INTO transactions VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67',310495000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000063E985FFD000000000000000A',1,'968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0');
+INSERT INTO transactions VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8',310496000,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj',5430,7650,X'00000000000000000000000100000015A4018C1E',1,'2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0');
+INSERT INTO transactions VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',310497,'f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e',310497000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'00000014000000000AA4097D0000000005F5E100010000000000000000000C506172656E74206173736574',1,'fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1');
+INSERT INTO transactions VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',310498,'b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e',310498000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6550,X'0000001501530821671B10650000000005F5E10001108E90A57DBA9967C422E83080F22F0C684368696C64206F6620706172656E74',1,'0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1');
+INSERT INTO transactions VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',310499,'1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764',310499000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A46524545464149524D494E7C7C307C317C31307C307C307C307C307C307C307C307C307C307C307C317C',1,'3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1');
+INSERT INTO transactions VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',310500,'54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b',310500000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6300,X'5A50414944464149524D494E7C7C31307C317C307C307C307C307C307C307C307C307C307C307C307C317C',1,'63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1');
+INSERT INTO transactions VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',310501,'9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba',310501000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,5575,X'5B46524545464149524D494E7C30',1,'fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1');
+INSERT INTO transactions VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67',310502000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6375,X'5A52414944464149524D494E7C7C31307C317C31307C33307C32307C307C307C307C307C307C307C307C307C317C',1,'c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1');
+INSERT INTO transactions VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,6675,X'5A51414944464149524D494E7C7C31307C317C307C35307C32307C307C307C32307C3430303030307C35303030303030307C307C307C307C317C',1,'3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1');
+INSERT INTO transactions VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,8825,X'5A413136303336313238353739323733333732397C7C31307C317C307C35307C32307C307C307C32307C3331303532307C33303030303030307C307C317C317C317C736F6674636170206465736372697074696F6E',1,'a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0');
+INSERT INTO transactions VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3130',1,'f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1');
+INSERT INTO transactions VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','',0,5800,X'5B413136303336313238353739323733333732397C3230',1,'33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1');
+INSERT INTO transactions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C5843507C313030',1,'c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0');
+INSERT INTO transactions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','',0,10850,X'646D6E367133645332456E44557833626D795763364434737A4A4E5647746152377A637C346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383A317C444956495349424C457C31',1,'1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0');
+INSERT INTO transactions VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6800,X'0000001400000023DED9AAEB00000000000003E80000000000000000000015546573742064697370656E73657273206173736574',1,'5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0');
+INSERT INTO transactions VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','',0,6150,X'0000000C00000023DED9AAEB00000000000000640000000000000064000000000000006400',1,'b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1');
-- Triggers and indices on transactions
CREATE INDEX transactions_block_index_idx ON transactions (block_index)
;
@@ -649,75 +865,108 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106);
-INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116);
-INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106,NULL,NULL);
+INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116,NULL,NULL);
+INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91825000000,310499,500,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91775000000,310500,501,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN',10,310501,502,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN',20,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91725000000,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','QAIDFAIRMIN',20,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91675000000,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,310504,505,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999890,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',30,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -729,6 +978,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -747,75 +1000,108 @@ DROP TABLE IF EXISTS balances;
CREATE TABLE balances(
address TEXT,
asset TEXT,
- quantity INTEGER, block_index INTEGER, tx_index INTEGER);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16);
-INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106);
-INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107);
-INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111);
-INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115);
-INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116);
-INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482);
-INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483);
-INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496);
-INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497);
-INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499);
-INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499);
+ quantity INTEGER, block_index INTEGER, tx_index INTEGER, utxo TEXT, utxo_address TEXT);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,310000,1,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92950000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,310001,2,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92900000000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,310002,3,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92850000000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,310003,4,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,310004,5,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92800000000,310005,6,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92700000000,310006,7,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',99900000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,310007,8,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92600000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,310008,9,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92500000000,310009,10,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92400000000,310010,11,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92100000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,310012,13,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98900000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,310013,14,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',995,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,310014,15,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',985,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,310015,16,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,310016,17,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310019,20,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92049999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999991,310020,21,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999981,310101,102,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310102,103,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310103,104,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,310104,105,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,310105,106,NULL,NULL);
+INSERT INTO balances VALUES('mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,310106,107,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130360,310107,108,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,310108,109,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548508,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,310109,110,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98800000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,310110,111,NULL,NULL);
+INSERT INTO balances VALUES('2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46449548498,310112,113,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,310113,114,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310114,115,NULL,NULL);
+INSERT INTO balances VALUES('mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92949122099,310115,116,NULL,NULL);
+INSERT INTO balances VALUES('tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,310116,117,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',199999990,310481,482,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',92050000000,310482,483,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138812,310487,488,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91950000000,310491,492,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,310493,494,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,310494,495,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',90,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,310495,496,NULL,NULL);
+INSERT INTO balances VALUES('mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',0,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,310496,497,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91900000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,310497,498,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91875000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,310498,499,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91825000000,310499,500,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91775000000,310500,501,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN',10,310501,502,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN',20,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91725000000,310502,503,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','QAIDFAIRMIN',20,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91675000000,310503,504,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,310504,505,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999890,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',30,310505,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL);
+INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999880,310508,509,NULL,NULL);
+INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',98799999999,310508,509,NULL,NULL);
+INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL);
+INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL);
+INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL);
-- Triggers and indices on balances
CREATE INDEX balances_address_asset_idx ON balances (address, asset)
;
@@ -827,6 +1113,10 @@ CREATE INDEX balances_block_index_idx ON balances (block_index)
;
CREATE INDEX balances_quantity_idx ON balances (quantity)
;
+CREATE INDEX balances_utxo_address_idx ON balances (utxo_address)
+ ;
+CREATE INDEX balances_utxo_idx ON balances (utxo)
+ ;
CREATE TRIGGER block_update_balances
BEFORE UPDATE ON balances BEGIN
SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
@@ -848,42 +1138,61 @@ CREATE TABLE credits(
asset TEXT,
quantity INTEGER,
calling_function TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO credits VALUES(310000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,'burn','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',1);
-INSERT INTO credits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,'issuance','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2);
-INSERT INTO credits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,'issuance','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3);
-INSERT INTO credits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,'issuance','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4);
-INSERT INTO credits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,'issuance','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5);
-INSERT INTO credits VALUES(310007,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8);
-INSERT INTO credits VALUES(310008,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9);
-INSERT INTO credits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13);
-INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14);
-INSERT INTO credits VALUES(310014,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15);
-INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16);
-INSERT INTO credits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,'issuance','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17);
-INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21);
-INSERT INTO credits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21);
-INSERT INTO credits VALUES(310102,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103);
-INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103);
-INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'feed fee','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103);
-INSERT INTO credits VALUES(310103,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,'burn','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',104);
-INSERT INTO credits VALUES(310104,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,'burn','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',105);
-INSERT INTO credits VALUES(310105,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,'burn','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',106);
-INSERT INTO credits VALUES(310106,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,'burn','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',107);
-INSERT INTO credits VALUES(310108,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,'burn','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',109);
-INSERT INTO credits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,'issuance','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110);
-INSERT INTO credits VALUES(310110,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111);
-INSERT INTO credits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,'issuance','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114);
-INSERT INTO credits VALUES(310116,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,'burn','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',117);
-INSERT INTO credits VALUES(310481,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482);
-INSERT INTO credits VALUES(310482,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483);
-INSERT INTO credits VALUES(310493,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,'burn','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',494);
-INSERT INTO credits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,'issuance','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495);
-INSERT INTO credits VALUES(310495,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496);
-INSERT INTO credits VALUES(310496,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497);
-INSERT INTO credits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,'issuance','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498);
-INSERT INTO credits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,'issuance','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499);
+INSERT INTO credits VALUES(310000,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',93000000000,'burn','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597',1,NULL,NULL);
+INSERT INTO credits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000000,'issuance','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2,NULL,NULL);
+INSERT INTO credits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',1000,'issuance','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3,NULL,NULL);
+INSERT INTO credits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','CALLABLE',1000,'issuance','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4,NULL,NULL);
+INSERT INTO credits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','LOCKED',1000,'issuance','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5,NULL,NULL);
+INSERT INTO credits VALUES(310007,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8,NULL,NULL);
+INSERT INTO credits VALUES(310008,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9,NULL,NULL);
+INSERT INTO credits VALUES(310012,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13,NULL,NULL);
+INSERT INTO credits VALUES(310013,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14,NULL,NULL);
+INSERT INTO credits VALUES(310014,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15,NULL,NULL);
+INSERT INTO credits VALUES(310015,'1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16,NULL,NULL);
+INSERT INTO credits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','MAXI',9223372036854775807,'issuance','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17,NULL,NULL);
+INSERT INTO credits VALUES(310020,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21,NULL,NULL);
+INSERT INTO credits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',0,'filled','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21,NULL,NULL);
+INSERT INTO credits VALUES(310102,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103,NULL,NULL);
+INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet settled','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103,NULL,NULL);
+INSERT INTO credits VALUES(310102,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'feed fee','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae',103,NULL,NULL);
+INSERT INTO credits VALUES(310103,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,'burn','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b',104,NULL,NULL);
+INSERT INTO credits VALUES(310104,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92999130460,'burn','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff',105,NULL,NULL);
+INSERT INTO credits VALUES(310105,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',92999122099,'burn','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa',106,NULL,NULL);
+INSERT INTO credits VALUES(310106,'mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK','XCP',14999857,'burn','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3',107,NULL,NULL);
+INSERT INTO credits VALUES(310108,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',46499548508,'burn','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73',109,NULL,NULL);
+INSERT INTO credits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','PAYTOSCRIPT',1000,'issuance','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110,NULL,NULL);
+INSERT INTO credits VALUES(310110,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111,NULL,NULL);
+INSERT INTO credits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','LOCKEDPREV',1000,'issuance','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114,NULL,NULL);
+INSERT INTO credits VALUES(310116,'tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx','XCP',92999030129,'burn','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9',117,NULL,NULL);
+INSERT INTO credits VALUES(310481,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482,NULL,NULL);
+INSERT INTO credits VALUES(310482,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483,NULL,NULL);
+INSERT INTO credits VALUES(310493,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92995878046,'burn','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a',494,NULL,NULL);
+INSERT INTO credits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',100,'issuance','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495,NULL,NULL);
+INSERT INTO credits VALUES(310495,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496,NULL,NULL);
+INSERT INTO credits VALUES(310496,'mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497,NULL,NULL);
+INSERT INTO credits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PARENT',100000000,'issuance','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498,NULL,NULL);
+INSERT INTO credits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','A95428956661682277',100000000,'issuance','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499,NULL,NULL);
+INSERT INTO credits VALUES(310501,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN',10,'fairmint','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',502,NULL,NULL);
+INSERT INTO credits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN',20,'premint','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,NULL,NULL);
+INSERT INTO credits VALUES(310503,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','QAIDFAIRMIN',20,'escrowed premint','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL);
+INSERT INTO credits VALUES(310504,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,NULL,NULL);
+INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL);
+INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc');
+INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL);
+INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL);
-- Triggers and indices on credits
CREATE TRIGGER block_update_credits
BEFORE UPDATE ON credits BEGIN
@@ -901,6 +1210,10 @@ CREATE INDEX credits_event_idx ON credits (event)
;
CREATE INDEX credits_quantity_idx ON credits (quantity)
;
+CREATE INDEX credits_utxo_address_idx ON credits (utxo_address)
+ ;
+CREATE INDEX credits_utxo_idx ON credits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -918,42 +1231,56 @@ CREATE TABLE debits(
asset TEXT,
quantity INTEGER,
action TEXT,
- event TEXT, tx_index INTEGER,
+ event TEXT, tx_index INTEGER, utxo TEXT, utxo_address TEXT,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
-INSERT INTO debits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2);
-INSERT INTO debits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3);
-INSERT INTO debits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4);
-INSERT INTO debits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5);
-INSERT INTO debits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'issuance fee','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',6);
-INSERT INTO debits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',7);
-INSERT INTO debits VALUES(310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8);
-INSERT INTO debits VALUES(310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9);
-INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',10);
-INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',11);
-INSERT INTO debits VALUES(310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13);
-INSERT INTO debits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14);
-INSERT INTO debits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15);
-INSERT INTO debits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16);
-INSERT INTO debits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17);
-INSERT INTO debits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',20);
-INSERT INTO debits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21);
-INSERT INTO debits VALUES(310101,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',10,'bet','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',102);
-INSERT INTO debits VALUES(310107,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',100,'open dispenser','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',108);
-INSERT INTO debits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',50000000,'issuance fee','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110);
-INSERT INTO debits VALUES(310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111);
-INSERT INTO debits VALUES(310112,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',10,'bet','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',113);
-INSERT INTO debits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',50000000,'issuance fee','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114);
-INSERT INTO debits VALUES(310114,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',115);
-INSERT INTO debits VALUES(310115,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',116);
-INSERT INTO debits VALUES(310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482);
-INSERT INTO debits VALUES(310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483);
-INSERT INTO debits VALUES(310487,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'bet','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',488);
-INSERT INTO debits VALUES(310491,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',492);
-INSERT INTO debits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',50000000,'issuance fee','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495);
-INSERT INTO debits VALUES(310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496);
-INSERT INTO debits VALUES(310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497);
-INSERT INTO debits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498);
-INSERT INTO debits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'issuance fee','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499);
+INSERT INTO debits VALUES(310001,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',2,NULL,NULL);
+INSERT INTO debits VALUES(310002,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',3,NULL,NULL);
+INSERT INTO debits VALUES(310003,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',4,NULL,NULL);
+INSERT INTO debits VALUES(310004,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',5,NULL,NULL);
+INSERT INTO debits VALUES(310005,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',0,'issuance fee','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',6,NULL,NULL);
+INSERT INTO debits VALUES(310006,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8',7,NULL,NULL);
+INSERT INTO debits VALUES(310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',8,NULL,NULL);
+INSERT INTO debits VALUES(310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',9,NULL,NULL);
+INSERT INTO debits VALUES(310009,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b',10,NULL,NULL);
+INSERT INTO debits VALUES(310010,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a',11,NULL,NULL);
+INSERT INTO debits VALUES(310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',300000000,'send','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',13,NULL,NULL);
+INSERT INTO debits VALUES(310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1000000000,'send','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',14,NULL,NULL);
+INSERT INTO debits VALUES(310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',5,'send','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',15,NULL,NULL);
+INSERT INTO debits VALUES(310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','NODIVISIBLE',10,'send','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',16,NULL,NULL);
+INSERT INTO debits VALUES(310016,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',17,NULL,NULL);
+INSERT INTO debits VALUES(310019,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',9,'bet','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1',20,NULL,NULL);
+INSERT INTO debits VALUES(310020,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',9,'bet','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93',21,NULL,NULL);
+INSERT INTO debits VALUES(310101,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',10,'bet','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',102,NULL,NULL);
+INSERT INTO debits VALUES(310107,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',100,'open dispenser','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',108,NULL,NULL);
+INSERT INTO debits VALUES(310109,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',50000000,'issuance fee','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',110,NULL,NULL);
+INSERT INTO debits VALUES(310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',100000000,'send','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',111,NULL,NULL);
+INSERT INTO debits VALUES(310112,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','XCP',10,'bet','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',113,NULL,NULL);
+INSERT INTO debits VALUES(310113,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',50000000,'issuance fee','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',114,NULL,NULL);
+INSERT INTO debits VALUES(310114,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',115,NULL,NULL);
+INSERT INTO debits VALUES(310115,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','XCP',0,'issuance fee','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',116,NULL,NULL);
+INSERT INTO debits VALUES(310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'send','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',482,NULL,NULL);
+INSERT INTO debits VALUES(310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'send','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',483,NULL,NULL);
+INSERT INTO debits VALUES(310487,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'bet','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',488,NULL,NULL);
+INSERT INTO debits VALUES(310491,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'open order','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',492,NULL,NULL);
+INSERT INTO debits VALUES(310494,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',50000000,'issuance fee','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',495,NULL,NULL);
+INSERT INTO debits VALUES(310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','DIVIDEND',10,'send','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',496,NULL,NULL);
+INSERT INTO debits VALUES(310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','XCP',92945878046,'send','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',497,NULL,NULL);
+INSERT INTO debits VALUES(310497,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'issuance fee','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',498,NULL,NULL);
+INSERT INTO debits VALUES(310498,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',25000000,'issuance fee','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',499,NULL,NULL);
+INSERT INTO debits VALUES(310499,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',500,NULL,NULL);
+INSERT INTO debits VALUES(310500,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',501,NULL,NULL);
+INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,NULL,NULL);
+INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL);
+INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL);
+INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL);
+INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL);
+INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL);
+INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL);
+INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL);
+INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL);
+INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL);
+INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL);
+INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL);
-- Triggers and indices on debits
CREATE TRIGGER block_update_debits
BEFORE UPDATE ON debits BEGIN
@@ -971,6 +1298,10 @@ CREATE INDEX debits_event_idx ON debits (event)
;
CREATE INDEX debits_quantity_idx ON debits (quantity)
;
+CREATE INDEX debits_utxo_address_idx ON debits (utxo_address)
+ ;
+CREATE INDEX debits_utxo_idx ON debits (utxo)
+ ;
COMMIT TRANSACTION;
PRAGMA page_size=4096;
@@ -995,1243 +1326,1743 @@ CREATE TABLE messages(
INSERT INTO messages VALUES(0,309999,'insert','blocks','{"block_hash":"8b3bef249cb3b0fa23a4936c1249b6bd41daeadc848c8d2e409ea1cbc10adfe7","block_index":309999,"block_time":309999000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'965f19c821dfa5b0ce29c0b99a18a7d2b1c5f70439e4d44627b946c5ac479db9');
INSERT INTO messages VALUES(1,309999,'parse','blocks','{"block_index":309999,"ledger_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","messages_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223","transaction_count":0,"txlist_hash":"63f0fef31d02da85fa779e9a0e1b585b1a6a4e59e14564249e288e074e91c223"}',0,'BLOCK_PARSED',NULL,'640080d2cb6d2e2a1c1d99da104f34aa7632774837b4090fb36fadb2a306d2a0');
INSERT INTO messages VALUES(2,310000,'insert','blocks','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e92402478a1ae3c97bae88f2b0dc960fc81385c88cd9b273ca0b74a0993c1b5');
-INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'NEW_TRANSACTION',NULL,'546c140a707612fccdf11e24259ddaf29926f3e4c33ade3ca1104c9e08886c5b');
-INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','12b3981155692399d216d3e4b7f77da5717f18cafc207e827530e0641da62da3');
-INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','5c30d394fe77dfe617dc3968ca5691cf7bc3a37053864e4fb5bc360e7ac4ac6a');
-INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"9e7dd13f1ecb4ec6481076dc9bb5fda1bdb9103747455f9de9ab516748201ef0","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'8d0ebe1cd6cf1569d3172b524136dbe202206e5535cc51d558084795e683c9df');
-INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'549575b008e084e5fc2772e35ba7390a583ac09484ecb23b6ac656a6468bf501');
-INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'NEW_TRANSACTION',NULL,'16babf7bc07fc5119281661b641dd0b9247baaa83f60e5689ca9c1706361795b');
-INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','a1f154387403474aaf76475f237961c683f306c4a5f1816131b3c49fd7c0f2aa');
-INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','9e2a87ee92e2fc4ce24d3c6b3e7ce88050e0b95f870abd3136745990630bc5ba');
-INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','1dc8555054a2be66079b187273eff23cc0a23095f289ebc81feff690574ff0af');
-INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','7618dbe5e1cb84f1089d9db186f86632bec9be07ec44e219be7eeb4d4f4fedf3');
-INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','ab2fcfde6e4b056e7ed4955596417380f227e0afcb115bb93330a238e63b6937');
-INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"73d038390ff24d64df88c69d45b46bbc90f6b77f68cbbe2081dbe1e556a65e5e","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'8e72852719e54666135ae661db34889e6cc328141383cb705af047e14bd9ee3a');
-INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94c037ff26d792bcf5937c3f9c291de23436a4e92a22905ba0cad0e454d65d31');
-INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'NEW_TRANSACTION',NULL,'ec14780da15701f0faef950165bf626697607cfac975bef91917324a54c8a704');
-INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','63b7924cb099cf5686deca3b33388807937363032e975617728f064582a41e25');
-INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e099926df1dbb53683e1bb17b4d9aa6fb26059a2be013a88ddd0855e995f3409');
-INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','48eaa4ba5a5b5cf5d27ed4d415c158c9aade372ac29815908873ea3f7760e70d');
-INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','1aba6e2d9ea915a72fe74bf67499f9b450b2a73c7ff41fb13a77f9cf4b6beba7');
-INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','27d3c1fe94f1f0f1b4a4664fdfeb13094d24b16e7f346096ad09b00619d105ed');
-INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"a180177bd180e7945ff4ce61b48c12cb0fd21535f71e943ffc25ff67a770e0f0","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'25aa2d2802cf266fe14115851a5e4839ea5bc4293ce781498b88267b5a36d587');
-INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da785ae5b03de482a011025df507bb8ecf44564cfde0347e551f8ef9a69f7daa');
-INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'NEW_TRANSACTION',NULL,'b458b2ca2663b1fa4ce34a5852d07974da7ba18bbfe550817b88f049b5e6057f');
-INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','b1f926325e6efe8ab4f0fb14a91aaf868f28447099110d0d9f4f3ed0c3530590');
-INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','21b7b57192009568dfb55030b9068e709b86c32470116e5fd4f69bbb67b3831f');
-INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','e9801ceb50b37794182db33fa751ec6b785e2b4c050338ac939ff53ec62b889b');
-INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','e8de1c6ea7a1a23517e6f4c48a253a37d19b86be7cbee706ed135e393c17b5d1');
-INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','8bc1af3cbff61c7fd13b777ee089ac972fe2a6e6e6bc7e5f522c781718553473');
-INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"424e7f569243bc71c70002dce988e93e6b19cfb7f859c2a5195533147d099d87","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'d1242f48a16b7e6b7fe721bfdd1a33cc685df12703c285d02e9ec2d8d0257ca7');
-INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'140a80b2871f59a846efbcc0fe00724e7d1b32a4e411151a3af7b8bcf0136a71');
-INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'NEW_TRANSACTION',NULL,'fbd3eb1381c68b6e47677e9322cdc79ecb5405750ddda2a754d014e8f9866357');
-INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','697e46c2a52a184332256fe63be50f266155ae4dd4b34ff83efc9d83f745743a');
-INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','355555d5738d09e5e63a94ebd687efa4e1f672c8a76989642a9ebddcb1829c8f');
-INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','3d07c2d528db11c91d00ec37afe7d9f0de62bcaf34b84d8beee628709e1af03b');
-INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','f9e1162c2b245d5b7d7a06b89f02365bb04267e1e0dfa4cd630d4c92174d29c3');
-INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','2c90fd40cfcee786434f691c2a13d672d74452e89b2b7b30497c57f6bb4cfe33');
-INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"e47e38f99b22b4e486fc05ee95352ec049c4d7e9e4b67082cadc62e928a2a9e7","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'eba521d1cde5068907196424d1e233cca044672779aedf1f68ead2005b009789');
-INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8db25e85ca00be5b31038e8a8145cbcc13621c754dd1e70d015e610faf8859d9');
-INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'NEW_TRANSACTION',NULL,'e583faf6392bf05be249e5b68d8051a94112f1efb4bb9545a6608620c446e6a9');
-INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','68256ecc078215304b4c28c977d4902b06a49afb875b434cde2ca4fe566155ac');
-INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','d48c787b3e2601f11badf3f9dcf02a5f405a3a2bbefe796207080654c54d4fd1');
-INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','837509748ac0fe95897879d4773a362c07f458a12d8e31b9028e2640e8cf726d');
-INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"b5346d07ec8d18e36cbabc930ea2dc452d5fc26b12af0d060f7fb7ff46b8f99d","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'0234ed4f579831370daece583a89a23f2e58a1be714c22654146dc258513e5ec');
-INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6eb60de59b1bd920ef391f6c49c62204b4fcad4bcac0529c1407947f9861f3c');
-INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'NEW_TRANSACTION',NULL,'08e8c4546b0c4cf02e0a4139cf2361e269d887f0ee68ee744ab2ac0da69ad03b');
-INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','885bfc0a82a5f23c47b2a565b5446e6e1da4bd2804bf5e74c12cdaac13d3cce6');
-INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','3d8a6183f7de103890335167c39486540b1c79f5d7564b93b19bf86b59029add');
-INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','f604b84bf1bc349a91ced4a4ca49b6ae34ef202271a2ae54803923ff282b7142');
-INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"2490d17814a7fac90af178d960f9e277e98bf005b8d3f076bc7c5d58634fc271","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'5883ad5a5a8acb5e3688e84f8bf845c096779b7da6243b0eef132840883d1a73');
-INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc8c6eab97f5497307c5fdee8220a3d9e5b8098c80590fe4fba84721744ed9a7');
-INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'NEW_TRANSACTION',NULL,'566c495d90566a5c625b4046412653d68d3f1467283405e89b679e07824b058a');
-INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','39076c62bb4dd04f2b9a7708fd8096a7ad10d0f5cda96d12d3388295c0406c1c');
-INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','467f256952ca9ae11d70becb6b4bcdae8a75df7cb91f1f1b17440eb502c58481');
-INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e323eb94aeff040590bd48138be059ad8eba428df2d6735eb9c5c50028234803');
-INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','cde713af018ca3646c3faa21b0c619ddba8f919dbc0f1de63215944a4721506c');
-INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"8147e6b42edd71153d880649a4b7b75c3e2fc59f122de054ebacf5204abee406","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'4aa97c537855d72c8c422caaebd8174c40952b7f9c1ac4cf64162663d8fe895e');
-INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09368def658d1d8cd254f8218dba1ec3dec86c1b8dc634f9472e50ad3b649586');
-INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'NEW_TRANSACTION',NULL,'800541f39fc285caa006d3383657bb569c832599ceca9d2a443c0b33ed1e1da2');
-INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','26e76f4efd1b17860fca1a91f29bbb759dabec7ab47b7087cb9d9c9b70148aef');
-INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','d8c3c77afc9df233dc190fa9fece9cae042d9a255ed301ad1da4f8c8f6db66cc');
-INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','40c85f1d2c1c9112279e1fbd476f190b7682c8e52c2d36db28fe31353b74168e');
-INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','5bd202e1d6a0dc0c5837970ab0e08a7524183f5b5edeebada6528e0ffddb5964');
-INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"d573b3b22e23c8e7ced1388219033e4b3a1c7711944acfb2926abfdbdd63b44b","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'8435090160b77ba77d18283ff9fdbe60fc6e3d5f0e504b3b5b7f8c79ea1481bb');
-INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e6c148da45edca6eaf1d9eadbbc1280542428cdc995ab0b28a1aa6c6b8eead7');
-INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'NEW_TRANSACTION',NULL,'8deb9ffcd103c2e2766ad8abd96cc6926628146488e3d238ad4992f05d27deaa');
-INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','15caa236e02aa2c197a6c50ec4fcc2088a80b287a30bb9fb5febe077aea0d606');
-INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','a166b5c1f4910cad68e353159ccffe1cbda7a3790945fe149232d76b4c08814a');
-INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','b5807fa6b29f5ed2837b6f61ba5f721017a2a203c33dcb3fd7c0652e2b2b0c77');
-INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"54c64b7338e79af0bc6b238eb91692ac0331345cbd6278ef27aa3f6a7351e35e","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'5bc9990362be712640058cbf5a241142d6e760bd171144a6aeea66ac7456abab');
-INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e964b3f9aa5d7e7d92f6cc7ca07b50380f94722054f4c807f377a637fa64120d');
-INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'NEW_TRANSACTION',NULL,'fe9de9236b24fecb37edcfa1995a7a34fc3faf0a135ddf58ad4a675dffe87a7c');
-INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','40378d6136af51ed48e5946f52dba3cbc01a166c774a696292977c9e2fdb29fb');
-INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','006293062b3191934fb84d48f129e3bc600d4a44a29a75567ca8ae0276df409e');
-INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','2a97017b39888625f65eed074206042bef2d33516109ffc76b17d3e847b701fc');
-INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"895d6cc5aa14f7618cc66b2593b43d0223387fd11f1b2b017c9f22140613afcc","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'fac9fe7dda8d745e440a66b8d498581b43496f8692a48510c4e8389ffb38d5a2');
-INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f53bba8fbe964f4dd74bd33fad0355d574af066ef48dfe93bb4360471a5230d2');
-INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'NEW_TRANSACTION',NULL,'2803d6e566770894502dd4fc800de28ffdb74d523ca43e95161977bf29b966d6');
-INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','30e658aa3ab9192c83a4054e0266e37f2a5d9b314a0b87b0a68b8d8545384998');
-INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','d734ef6dca36dc6c61ea1c152376e2b0ad9a4b6d1ae11f2a2443113ad4cf4ada');
-INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"9603465a786c9b927cdf36078b09eed3481d863a390eb52cf617fab895f6be65","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'696913fd618b7c83d5ce4c022154a75a54026399d97bf2f5045e1554a4985428');
-INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00bc20a6b84ce5d81e335bfbad1a23b9c6f7d52d1f63293b68aeeb0d10f3987a');
-INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'NEW_TRANSACTION',NULL,'9e7919aad0463a08858a41572b084cdf3255a3e158b5a540f00e11b7efe381ac');
-INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','75f6003eb0ee196aaf2e57ec9ecb3ef0f871b7a496c367811dce8a2c0109c86b');
-INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','dc5eed4d55fb16c1ca7867e45cb58cd1950bf252a4c8c6e7cfcba116faf6fe09');
-INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','9a1a39da5058a29158341c0a115fd91dffb302b900fca990411963b6f702ae1b');
-INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','00e65ad353c2d57201b0920246a3f6b4979870e3a3af55fe837f25f75c11c681');
-INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"f064f5cc3b48464bef3b6aa9b77a01adf3fb99168888a5615a369d1bcf125ec2","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'5f63cbf496064273c35b803f6201c57d4ed13b04c920b5a8f2f7963e007788f7');
-INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44d0c28928286c35d23b6f92e8c5ac9a153090a9691be4ae0374f78aa3eacbce');
-INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'NEW_TRANSACTION',NULL,'fbf978a3363eabc17ab79fdf0da2be3cbded3aee57fcdf09bd147355345dba32');
-INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','2ffa98f911f670cc1864d6f01da6e73ec0803c04aa8376b3d27e38a696a5e089');
-INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','a329fb9322b03b20469c9429aecdcc2ae321767bf066a323e4510c13200d2fb4');
-INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','fb8bb6f9b9673a5e22b09c791603faead685d94351ad7e272d63bca5d9fa0a90');
-INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','fa0c2d44b08b5bd6c9e12678127bb5f01b75948c6bac9247b06353f2129a4284');
-INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"9c164d38483ae1923ddc825d301d86d8a71548f2a1edcfad8311e4111cc3e34a","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'d4c3031e9fa0f5434e901747376b14f941dea8b85b4133f62a5e17c3b32e37b2');
-INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6467ba727923c1d21cc8fdf3e40d4597ef1157112b8db2deaea08aa671b7ae1');
-INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'NEW_TRANSACTION',NULL,'b0417f1ce0b795969ab04d9c0935d8d2e0073acc74e73f652d23ca13921b9e39');
-INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','50c186ad62a5c6503ac412a2f082d01eb70abc663d7d811a23dd3accd06ae722');
-INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','319784ac835cb73a8cab714693c3b8f49551b2d24265f89b762f5afd282a4498');
-INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','43b8ea93abedf2cbbb9313407a417088af5bf0e4db7a6aef063f6005950ba2a6');
-INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','99b6b7716c483b5fc42474bc9c791e2066703faa436a90a0488693ff52070ad5');
-INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"81a62b796cd9dbf6eaecf4053b5896e384cf08135dd7aef545c48feadfbd6936","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'5953844425a0239d6166b76c6083a30f5c7d8e94362cb53571462d14af7579a9');
-INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'407d0197616d37eebd94516b1391a10bcfcf3a5a9e5010915947190262bdd860');
-INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'NEW_TRANSACTION',NULL,'c1b594e498e2cd5b0f79448ca70d0484eb3f43a62abdd7ef3e7a8e45ce370ef4');
-INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','ace52ea598998ca43546f48a44691735d1b0ebca1f84dd42859394f2251a3938');
-INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','bf15b7e943cd128c280da066371eff63623ab2686915c355ac899ecd22ec5969');
-INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','05eb9a075ef8d8c8723f085967cdec3db0dc50ec1a5ecfb0e7c0dcfd2a612e57');
-INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','70a828c6ae8b7f5e7a2542719828d09ff076ec6d7a7df43bc214b2ab3ab5d2fd');
-INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"ea46fd7c1ff0ff2b73dc503b3ba507ab43442ffac120f56b5fd0803d27db4b9c","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'72d45f76d1eb5992c1cad6d0456af3baea92773177abe23c0c54294ffca07baa');
-INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c5a574d812c323b6358f7f4ba39a5074929f6ac973162986f529c3b3f84b7c3');
-INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'NEW_TRANSACTION',NULL,'d9ff2a5b57a48f3188743f81df92789b5eff6b04559f04bf48be1c8becc45315');
-INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','a4f8bde36ed42c0f3b8e9a408b634003e90cb93b289ed9c4aa6dad46e07521bb');
-INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','555e7a69c3e47180f3e644a7c40ed0bc4b830c9ad82ec98a072df39b2a2b0601');
-INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','0d695ef0890616103e348be83432ad2af3d17120214c0c3205b7fdd97ce357ac');
-INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','df7ce2dda8f8f5cf5ede19a30b4a1b36a87dc983b5e26d965ca2928d1bcf97d4');
-INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','2ed751b1b76739c539f51a4f462268028c3930e6cfef12c1fa2a83fc299002ab');
-INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"32d216ca6a80cb867f8963ab1ddde2bd07a969e095d67c80aecd0950a01a6218","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'a821f8ab51571c4dd18514724df5101029c578addf32c76693816cb6c3494cf4');
-INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'812c982636c9cf8e031b4a5196e2185ebcfb30ee1a9f4e7bb05f5053db08d3f7');
-INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'NEW_TRANSACTION',NULL,'f0b556d905582d0bce6e2e1a1d8023417d87c1df218826ac4e75409b6f56f0cf');
-INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','ac1a2029ecb27f966545e75fa5eb63c20576bb75affc72c5128bccc429f0186d');
-INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','d576656db4ae1181800488ccb581ccf667bcab324e858e7ebca947d7a9931cdc');
-INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"720dfe78fccdb0831b951f79905c945a3c7abb6f13c3e258e7c3b8b7ddbfae36","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'7ced7a6de08f84e5ce88e5e41baa07aedf6271291948024608967b03027e7835');
-INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b183cfd7fc134167bd09598013ce934fea3ed2c2d09d33ffc54c22cd9c890994');
-INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'NEW_TRANSACTION',NULL,'75b27e87a63ac6070e2baa574d47dcf96a7a481c234c5c62ca6cd0e06eb06bf4');
-INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','34c07140793f3cb0887dd669f09575d3455149d0a2714559bd13e512db8bce15');
-INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','7a7636072f7b4aa384a4eaf877250dbde629c404083df357f246769e41eeaa4b');
-INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"260724f92886f32a80da2705559eda171d2bd55724a534c72740e05b348c1874","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'8fe0985551bb0cb84ff6d0cad2775a479570ee511664510ecab7e0180866b272');
-INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db3915176ccb8feca25005aaea1282c8a29a1634071a2412da865753137af9c7');
-INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'NEW_TRANSACTION',NULL,'5e903676d766072be26ca538acc9f5423ad6ffa64d606210941bfdf801695e1e');
-INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','08e6cbef19b75039b5ffd6f1c0fced94c6927626ee96aa3a4ba39cc81f9dfb48');
-INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','2df1def7f0d46a2e5e423a6342828e1592b463f1feb18586ae651ba82dfc467f');
-INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','f9fd7768484bad78f0a8200f83a851f1044764542dd274c1767b04d45a34cc34');
-INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"10830661175f7d2bf48585647709d277e5a895b536f58f83672c14d5026992e8","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'3f09c616d829f28a50d0d6d82a744e9f179e9a346016ace94aec10a4cceaf2f7');
-INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d11656a3f2442a132100504d2a8f454c74e0fffe706386461341bf98084f0106');
-INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'NEW_TRANSACTION',NULL,'1c3253ed350c978a77c4f52e54e3f1b4f0a06fd766ca5a4a657dbfc7b7161d12');
-INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','6b78ce4e8e11c2b72c645a16d82a22f45abf11399810fef4d37c915fca4535c4');
-INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','5fcccb6e110a08d797d00332d1c5bd364c0e34a176c297cc9f64705ac88fa509');
-INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','f5b0cebd9ab5554a39f677c09d23cfea47b98c185d423cf2724b504cd8184421');
-INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','739aa3eb7d74914b86b4cb677852150878096aef2b90da47bf179509b9f92f54');
-INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0115b475600e09263cc61a9b15501026f1f3e53d8e4979ac54d54001cde14f0e');
-INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','e98f73579dcf2b48de1ac7a4c948c5616497bc5b354fffddf60535dc032dda4c');
-INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','ceb0986ab7243ccf51f820c65c3ae64f19b6dfb58deca298950bd33f1926b131');
-INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','ebb04c2d395a5ea59cf3a85ad14d330a7517de4a0e37be88c9f2a9465dcf1c63');
-INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"dd333107fc51c883a23785c8e2176bc01fc1bf8d52ff8d37ee925e9991b03a7a","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'fe75251795e1f25c4a46c81ee7cd5feffcedfb3caded679af5b42f9fba268ae1');
-INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d781cecd7de855a5973c7780924cb5e33c92467892146327b10accedb0858744');
-INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"45bb0c5dd432a2d7313fbf6185637260877da537b18334604280a29539e73205","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'ab408ebd74ba2bb7103a6a03febb76131636cbd8fee19862f994bde5309c8ed8');
-INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'738ebdb88f2af10cb0b1da78b7ae09feb600a39a891f66c14725399ab8231899');
-INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"0b5b6279634c98137b3ebd37b0e31af63b183c0f8ae6942df3aec9e0b6ef725f","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'29217068dc4929ce8a5801e6fdfdf06ff9d287a01c31b21b1257f61520076608');
-INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7649fad0c9e91a4591e492bb8d2925787dc4c540c11d03833e377cfa3a798550');
-INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"41612e674a216f80e46263c28770962c5cacf632df3151fee409c0f9eef3a498","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'587725cfbb3cf28cb17203f743d36bc3e1a9b6d205c47148fef599b5d64e74c7');
-INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8df3c440d60bcce9047186009bb2c04f32bba66bfb46db7127888a68f0ef68df');
-INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"5cc0e229526c00f288c81848c45d12cc6a24fc0ba84e8d78041d84b8e28fbf88","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'69522c5bc9729276457134592074bfcb18c6d3ec37a13617577802b003a309e0');
-INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e25360f92d0aa24de23042aa9b34254dc7dd5455f120169f57912f62af302c92');
-INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"cc0a82636125f077fd262e62ce5e60bd457154376ba685a771a4b92388324420","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'acd02a3791ab6aade73aba4ed1532d2186f901a242f0a0b4d823d9913ea0c030');
-INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66ce8943d7b23a5375a42f59c8f13e48584707f27fe093e96b1ce08da7f30796');
-INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"33266041a43b151330c149d5536ca098c595054d54d88c2a06bfb257f64c4c06","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'a3ac8def5ded719d66faae2ebc6aad3eb85dcb65bbba749ded7e58585a2138a6');
-INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbc4a6accf5a0bbf877003df7a43a32a84ace808c725bf9c916f7c7c55ae841a');
-INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"df932138bd7a19f61e98148cbc5ef645be2d4e05674258fb5f1659bc0be276ca","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'16193a479c8858b1510c6544493d24128b23d8942d2a06e63647a426309d7566');
-INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ca151b96aa2674575015d4a042e2e3015dc3c02d763a9412c85df9e433af033');
-INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"647074e7d5c71b584b7661d02f6f5cac0ea9a0a9fd13ae78d4d2bf4c76793d2d","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'0a85396d417aef4b80874ea21ec9816ab1a5b66f79bdff2afffbc806404a7bca');
-INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ee5df1652b7f06752ee6adb92b1afe27c5401167b7719a597eb00a19bb16dee');
-INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"bfe4c7d60e0cca63ba44a61e12c48e2d840faf4a0aa92ba197a9d4fb17f7ddcc","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'ff59c1211dca0c13d60bd677caeee1b458aaa52d251203362f00489941ca8f76');
-INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af19ce330ad1121340016a970719c13ae6d9a2a10ea63368ad7d55d0f3003972');
-INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"96e13c2a5517d1740fdd2dd5c805a13a37104bc0470eebf6ab1ee5f6edc49343","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'ace6806b35b8698354924391f7aa5de4919b69c1580d1533c41b8dbbefd17f72');
-INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f8411c3a03de86941da27d777937007c0655ff334baf622957fdd10f2624215');
-INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"92abe74beca9968adb2f2952a4eb710fefe4df33f4cf2ea0319a0d36c93b8bec","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'5ea2b7cb1ba4161bf86d478dae991b2f8a5974c8404d40e265ced3e08501202d');
-INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e31ef16de1a7e2608abd8c206dda66d2719694a94d8e15c448c040b2b4764f37');
-INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"49f3542309f554440ef13516ddc8e88ae079b92a2c7c8eb97765a6ed6ac6cd10","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'d1b707f68ed492ce9e71ce91d3ce7cd2ae482d943189409f707a0c500387922b');
-INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4c185a3551ffeca1be73adddd54488894d539226342f5b9f451651d69081879');
-INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"ceb14a6637c8a5764c7f33049973a6101daa056d265b46c248c3b8363c919c6c","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'961dfa29f63b218ad992636b1e8b3e111f4c35d1fe82ea9d1745c5176528215d');
-INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbd69017e858dabb09f4357416d88df59fdb8b3d54ed341c9488f16e97f6c368');
-INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"4ca5dd8e74223684d3d8c28a79b4e872787788fcae088ab3e3066788ffca65af","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'d27e9b3616c956d062239427fe371ba4624d81cbf29816c0e4e5f03e75c6fff1');
-INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a8a8661a8b83d0651ee93ea835dc109cec5b177ba84532fb513e484e58550df');
-INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"b500c7812d872ff80b668ed88d7a8898df99b0a2ef8d4ba16b85597fa3e1cd0e","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'31e188ad0fa0d303cc8d27e550afd46fd22ead77f6a50668fe1fd2d6ffaa174f');
-INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31c98982c470765ed68f52bb29f00dc367f80bf1edc3a85b20b36f10da707ae6');
-INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"1c2819e818ad5ef4ef1d5eb2b9e7630930a559a1cffa880ad0d34fc482b4063d","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'daa93b1ba3f397279a51109799b5687959c5a38303ff8f44c1a13c56977c7dad');
-INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65cb443e794542fdc19e762ed688e1fc439f7a4f6b35c6623163c60f36a0d97c');
-INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"b39a9f69fbe9c498602609f3c6bf9bb18e6b97f83519c743afbc14e99d9cb95a","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'3c1821f639ae022881d702f24caa9bd9ce3825c804ac93daa993b0e349c81b40');
-INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17e90d3ee336dc872828c141e3514fb86f62a53d63d2fc5a0ca9b611e41bdf51');
-INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"49205a5e8db239c4c785868b103864f8727376c7188a58544537cdb035ce153f","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'bf983520c3b1ea951fc05e62215238a8f8895720fdc09da8ecc03af204763dca');
-INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9cc0b9fc8f1feb7ea0a6043a1ef9d261a7d1bcc4efad859f1e18caacd1135d5');
-INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"b4d3737b40df8aecdb8f755b92db906b8f215641fd79326bb4700d1f662b2f36","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'d79819641c5063124ecca38ca14639093ffeab788ed5d09b58181a585718a1ee');
-INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5619c920bbc3139b93042fc41a2b848c5660395eb49d40b0d5065da337ba702');
-INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"d5348f656d30e6e4b55706ba5a4a6dfdf262d8ed36d57c5f2fc71f8766d72af6","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'439d40d30d8979b4f0df312e850fe6e4aa63d26ea1dad88a006bebcfd14d3710');
-INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c2afe9ac873324cd100af349d21bea584bd84ffbd6467e6b65f195790eb67bc');
-INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"440373118703e7f53afd682abe5514d489a78722a600c1067430e7fec5f5fab0","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'8eab0efd30150c896217d1ab44531e6a984ea8fcc23ea8a626cfe234864e2f82');
-INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a814f2148eb18b4b4aa2183a97ad459ca6192125739bafc1282583b695bef65b');
-INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"7611f3db3529dd5fbd5cf9a5ca7affc454536e57455b1b0ea043751c9437a89c","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'3e1766bc4d88166fe5fdcdb005e6d391baeec555a908fc7a8c0ce437160048c1');
-INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20be98fbfeacde1aa17c79d7a0f9c6fa54cbdf97e20ce799c2cb32360ed5bed3');
-INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"110ad00303e1a01d59989b5ab6e4f166edff24c1a49e06b41cba8d56778e844e","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'72996aaf23b2023ac43ff5148897bc0673c89f3c125ee355f2c67d60a51f143f');
-INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e28f3ca304da28a188e0e144a605bd5a5315a287faf95a8df63628f12b3b6af');
-INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"f7708c99c134b071aa3981d012c773e12738ece583c1b2b2908abc6a31556ea9","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'d091ce2a08f748d77dd95524822e0087b3e79e2300832c683cabc2b63d2585b8');
-INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1709b7595b99d31e59531856efccecebb26e90a90628f9a19db57708199a119e');
-INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"15f23755cf1bc0aff99c1a9ed38462d951ed3ea24168c18786d71207390ca4c1","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'848952a49b68d30e83acaa8b510111f861645003d9f9ae434fa583caa37697a9');
-INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b53483695595fa2b461bc3d9fe7cec21f499428bac295f78712cd15fa96a827');
-INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"5796f08f5f53035af580104f79cebd606ff66c38b88361325289010a7a470268","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'6f053b79b2e0b6134fbf72290c089d9160cedcac178ce65e9bd9710028d9960a');
-INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39448d35a24772a03cdd2c1de37a52ded10df96f6e7608098e0245239c24691d');
-INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"645ba6137d35e81be31cf45092ab0838b241755dd9d33aec134c20c08cd6b091","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'33daab2217daee435439848dcdb3231dbbd80a241d74cb3f790b65562202a62d');
-INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09cb3c7b2e83b3c3e91e6e04917d62d4b09e6248a54144a1da0ab63a7baa4465');
-INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"98854c5467b3003c63ec7e208c6c8282f461bb8a9a65e2dd39927a09b44a108a","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'55ba06d421e022b08e7e327931239bfdcfb1e3d6fa8a99d6d81ba0e0ab266462');
-INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fb9d3b2b06e0cc2542b2c5d165711383b65e8ebfc2ef13f71c606340fde636');
-INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"7524187fdd1244a0d1e4ea4ab1c5cdf5fdd2e1582e30a0d5b7af81ca0805ab76","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'26219eb433e52a7d1f4ab448d6180b36dfd14dfc2089787ad1cfdc90bf461665');
-INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e5b43de2ecc6c92baac5fd492238dadb279764d79751753266cb483906ad1d');
-INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"0b5471a5d2323a894a74d6332822f0f216a0745089ac58a694b1c61a4094454f","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'6ba6c74c67fbcef8037e4393b486ee091f7d3924ad4977709df7dcd2cdf0c4dd');
-INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d5cbdb5fa6ee53449614e4c35ca89559a77bb7c50cdc467496765d2635a3b14');
-INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"ebed9381df6057bd322c0652f404116bcc77e4a0c6acf142d5faec47d4baab45","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'fe9d7eefd45c738f68c43a9b54dbf7aff1c2ad2790419ab19bbf159e27ad4b5e');
-INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6c6e393dbc63d1c5c25a0d03dab32ccd4c359ac60a8343916c5f6eb013fa1cf');
-INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"95629a91ab0bd8a87878f7f65e9d02d6114e7e6ca7b0a0fcb36aacd89f0eeae9","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'dde5ac4171c2d3dc62d291251008ff55f2bc212d0f157698f6fa36155660f11b');
-INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe06bec353f5f86e31a3395bde70cd30f40dd1ddeebed8d657dffbe67fdeea3d');
-INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"80cb6a5ce7cc7a796965d8351977fed0a4655f702f72c3fec64ec6dc92d23f13","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'40c50ec371a74d5f84eb276b79add6796478e67cfde7db653b4b0e31397d29d1');
-INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8345172ddcf9a85c707d785a203d632a89b7959f412dcda71d6e0f940ac5963c');
-INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"d8dfbd478fa699dc45d2432bbb29ce342b54fb22abf175d13bb6da5c2d3abcf3","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'fa9cecce47e8cdd6c665671b98de0dc6f39c3c03ec329b3023c598972d7d8908');
-INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cfc8783cc9778ba5fa7510625bc8dac61db17e9fde77d0e91be91b2a3a630e7');
-INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"8797bf8b7fa1c772c7c44e3301c80e0f723de397db4b8a2f809c096609242cf3","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'3c4c06efe2d17e81a247f631cbcc3c89f005aa688d9ce02176416a1d087b5aed');
-INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0de9af12ccfce1e7c96f276a713de69006ae68c51192750cea91ac21a683add0');
-INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"8e16d14f35b8d9caa018a8a40be0d0850c5ae513906d5b4638c692a6b764909a","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'530daf8a522d54e010eda2ed9f78fbf69259c4b0a0fbd297386a94d9482ea0aa');
-INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54c656b2ae20af47345c388aec9b0117167106bc35a81650c19141e92a188a12');
-INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"930ff03b64e3b4d399933ba76354b1d9291112c0593dba85d763c8300db1913f","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'a2d5c0c0d8ba6b57c998be6e6004cb33d8fcb754c5bde57baa4c0336f6b6c2d6');
-INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95a75f080b501cdd09c39464617ee0e4d8ad0c878d76b70683413d85ae49fa23');
-INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"0fbc130a453f3284eb9ec9c847ffbf5ff216ef3bffc06037190267cc2025e835","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'6fb182f01747eb5fdb168094cf05edb7e157adcb2d6890b2b6a137af1f9d474e');
-INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2bf2ad7eef6ba42c54c47f29722dc8102de7031cf65780cab2fba33c8d847d5');
-INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"fef609d5eaabd31efa0317a33730438569163fbab3fc09b9eff59a7b555fc4a5","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'2b03029504c2ea9abd111a8675e61bc1aeb1cda937040526876be2d84b941056');
-INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b94ef7dc1575f783a10a552d08b437b6f5f31e6229075c4f5dce7a14958ea97');
-INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"c29369e9d69fcd23979ef58b8cfabc2d6041efe31c810e33bd62b46c8d7866e8","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'7569afed6291ed418be03ce17f99cf4dd26e63686ab5209ef1f8fe71f646fc6d');
-INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'700710a5d928557f1d94ea9f0d2e4df703da76a416098e4757d8be4b6c310e20');
-INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"38aef8af21f94ace651d152fbadb529721e3cc64959566388d348d249b226d68","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'afd13c31f89a15a4cded7583024aa8c803ffc8b2013d17b4234774a4bb6b4e77');
-INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bf3547f5a9970349e4e825258c40fc36b99bbf011a9d12ddb6d8f68c86b913b');
-INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"e0764773525602d47d332abe4c68dd8c32d8c4585fe47587ecd218a7bc49ebc6","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'386f63edcce398633ffe2121f1c6c609c074f7c8943a951b67f8027f55631692');
-INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb5f438e3a8e479eb4a63d94de7534f117fb217a4b05f7ab8e17945550626bba');
-INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"c20c09edd2f2235e7287d0439fe2c6c46abfe7ea5a04fa35260840400f54b201","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'922e44b36122d7026a5a4ac09494cdfe15844514fc834c7e43c24b1521ccf072');
-INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c35b81ff608cb4af1c1be5415d5e7cb31e949bb80cd8b15e080971111bcd4c14');
-INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"cbc39bca2b7f961cd5c661f187d4dfa1b5dcb55eba9dec87327cea7eadbbe663","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'513acd1c4a1f3cc2b1352f4bcc2ab72da3bf9cf2467a081b5b2630e23ab02425');
-INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33aaecf57ee77297a4f5477a37c28ea32739009df40c2164757f64988d7da536');
-INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"24ca6fdcbb7bdd7358b565ac84d2f14c2314fed7857544359d0c850996e6b151","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'912581921d36d86c7a7d15d6d916bdef36eb0a5a3733b63a785c271d0c55c3aa');
-INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77daaa74f1a875c504cbda47fabbbc0a249adbcb4ea030487821735551b9b3f1');
-INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"9d96fefa3d3e1d197e765fcaf64952ec79b419ced4edf858fed794419153b848","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'d29a84fd60403eb5f328529e891dd676a7b2f3fd586833d830c2282dfea3b9d3');
-INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2a5c1b15d7c108a8f75663a4f34720b4c7296ea857af9b33905dbab36ef375d');
-INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"bd447b29f603c6d56257ce8a559c137dfe2fdad10acdacce2bb003e391655225","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'589496c2119f775706ef73696cd10d5ac546df25065c3417116a3d1c10d1308a');
-INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36d125af2b6acc2afe85548336a9e3e1225918ff7d15922080c487a641deec1f');
-INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"61dfcc035dbabe08298144762a6ab94589e14668d412ea20a79a0070437fb202","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'c3ce445410d34edb55f49578c8520e9792acb5f27df230da814a9ce277e73e84');
-INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23ecc6d3b2fe591e2a5f4832081bc03c4a1e4a202823d651bfd8a739d3d69a04');
-INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"0eae6329012b77e96a46de6c909ecdfd0887599361884a84a9218aa70665be21","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'88d74c4a64886ac7e7cc349827d0976e41685d4cdae3f107928902067e011033');
-INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0228a2c7599a57834dcce2e86ef3c7dc2047fa58b70e088c5fc0b18412782098');
-INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"4419538295a5c394523a396ad0cef24f72972618b2108e4cd084f0bbbf6a7cd6","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'d2a4de3c87f62d4596d6f8fe8ce3f10899c70369cba6bdc256591719b0c0e84c');
-INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d02530f64fd2fca45583974bfc7c72869b95fbba7459b360ace9ee4b2acb84c2');
-INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"6a299b36e4ccfd1e32f81f91009e367cacc30aedaccbcefbd0273e351b94305f","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'de37e9e67047b2b7886704c356c0c031d4a0257924827676fbac86d637925977');
-INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de4321be08b194123bd9140451a528f7119003450e47ee96205354f2a345af11');
-INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"180ff6f6092c485217d79b3c5510f9d8e0664d09c882fd164ae3a49cb8a6a356","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'622c9c721d0fb93bb6e225e18f9cf66d12d24111eb588da7961892bcac810bf4');
-INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'164f1d2a095ee39dbece043cd7e0dfd4d3777306ea92ba8cb01b3c6018e0c63f');
-INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"0e4b56334021fa1fb190d62b5c33fd7f37c126d28ef7a61a80d84eb1b7f833e5","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'721d549493f5593a3774902f7b5f45392bb5031102b1c9ac241113f78e865fcc');
-INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca57f013b14114fc51105b1448dcd4c6b2a6fc5b87a932854f1e0057148f58d1');
-INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"ec24c8cf2685cb4750e7e3da65223b72da2e8afff49e12f36b795105d7dd89c9","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'6e2658f9127484c4a6001a8d7c686fcef62d64d49b6d8467bf70f8b00c4126c1');
-INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa4fb804f18f6f6020f5c85eb0d2e90903d23e3e16e71f9128823902aed38e26');
-INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"2178b64331b1afaf3a8d650a93f6173ab0729b9d776b5f4c552970e79db18a0f","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'bb736085430a0f0028ababc151f7566faf4b9fd044227fe5ac7ee7f821c55d41');
-INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf91a0cc992d5666ef0db1265d34a9aef73cd13c76e1179a3ab6889ff22d7e8e');
-INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"29783a12523c7d590f0c9aa3b71f221de0359f61a368924800b80919084823a2","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'da546c441ea4cfd5265482c5cf6480945f023dac378b0d37fb14661861419c4f');
-INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8a6c4e0233736de01eb11159c11cf8300fb79fc8831ad1ce6929700e204c951');
-INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"821a8fad56889c6609d97cdd7e6bc8b6ecc68d54318986551c747ac45e22cd54","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'edb7b24c9a6e175cc7bfea88f5703a5d4e9f1231352cf1a24159e78505f3c472');
-INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50279589970a0bf41c19e1e46eeb05493a378716effefb9c62a30506e9bd2d8f');
-INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"c765bfd546685684c2bfacdbbb248478a115f88dda12b4df64efb0b336362540","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'0e38d7bce886174adab5e07175e9a0802f06f9158f3cb95c6042d0f78d5fa694');
-INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a960fc3c28ba926e90d5e01d8afd7d26bc35e8632a4586ce573ada0ab5347b05');
-INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"b38c60aa1982b330713c16d5572143e5970e4b0273ef5461473e237be5133a8b","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'7015b7426fe1891e237a3a9bfc548ecd2026c7aa87fed8e8e8223d611b500ebd');
-INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7248222f5617b15364410ef319abed662e3c3be50163296ff7981bc1cef6cb4');
-INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"059af64961a1fef76aafd5d22aedd13466299a9727bd9b21072794674b02c140","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'2ecd531b16b00ace17e579796a728000dbfb01adb6bd050715e16a61b4bbf4c0');
-INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66bb0255e4c158a60207afa6d293e501275e60be01a14c3b3d6bcf531feac1e6');
-INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"f6134380063f36dde912c04787580d3c40a8c8393a595178165f0ff57b5ad90b","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'2e0285484db9de47e4ae0b402d4a6a38d134907cae747f315b8d02ec02b0d0c0');
-INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4e7aec3487d0651c608b2a1115b42c051a3e7af1af71137246e061547f0f1ed');
-INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"21d4d5920b914ea36e3c7065dd7f0af4b294454030688c44e1a011835ef8a49b","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'8fad305e0c52d3f65980309be9f805488ec787c0d6dd06d54d42c96cfec14ddf');
-INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6a6f6f320f3529ceb8bdc56ea1010d40c1f1f3bbcab217893f7391ae3037216');
-INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"b3e7328b23a6af5e3df01bb9bea68d2a8445820c50c2adf3b13bf79c3c4f9d54","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'606adbd91289693d75d7b7a3f2097c70d0ea84afff99f51876190c12f9bd5e48');
-INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba00bc596dcab209b04f8bb98c35e4602178eaaa5e6a8b3aa6c2fa76c449198');
-INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"3101e4813e73498cef2ec786023347dc13fb29aaf1407bbfee16d04f86ff6ac1","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'de8608f3459391d8b84d879545942c503e63d932f227201f9207c95cfd8abe59');
-INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03b72e8f76cca70253c4b58b9e670c40ad16aacb8e3a65123bfcba859b4ab028');
-INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"a10a734ce80faabca0177b12746f0483692fd13256d7d75af28e615b2324e682","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'3aa4c297dfe8a2ab0c4891601fa9308b0f47a6fdaf14c54bff0d74600ee9631a');
-INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3cfd221b9c5b1860e1253d049fddf7f5657e6f374619c53d8efd594e5042674');
-INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"54ccdfdb8690395f13bf11d70244d69052acdb3f9948e8238c0d4bede54c899b","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'526c4409af9c7408c592bdbac811732be41dd97876f303efcd449c9c3a2f3fcd');
-INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2da82f452728a4f19622abbcde3ae6161203cb364b4241f1479c69567d8ba53');
-INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"96a8a5d4606f2e77f429e6ae8f54576e51e1159969612a14739e69e4121e0fb1","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'f19cd5859aa564d51aafc457c21f24276478e0f6df66f9d2bc30c45497c792ad');
-INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d616b637eed28255aadfa5eaf99d32b10d7b256b36948d37f88b830f0186d85');
-INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"20fbc6981fcb9ff9aea35590a435ac2c7d1513bb4a038a8f62602632b6bee622","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'964cf3c911e0fdc50ca8e54d0a676f82534d74134850fa7b1a3f51be246e37e8');
-INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298262dbcf35346e2b12b020285205400c6d038a3c2bd37a6b7ac710876943b4');
-INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"3e376fad3e36d13f5c50f8bac968fba251f8192e0661df0dec9266d0de986838","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'42a5d0b5a619db911d274eb4745c088817fba7f4f3c8e9f3db098d14201385a4');
-INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f80a7b1519eb2fd55df486bdad477adcaf3dff280f1aa8595486a01a6fc64a3d');
-INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"c61c461272d69c03c027a144418a877a6122dba7ba9f2376000d53656037ce75","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'996755bdfe3e3359b2fbb18f2798fc3c0711bd0f8e79ad5ab82c6da3a1c7b27d');
-INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81ea6995179fbe867510a5e02437e472b2143dc7847eff31463c7d56e905b491');
-INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"48792e4348415165ef24cbfadfe83934dfd900c8f2a0bf47251604ad1f9819b5","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'6cd1bb277caa993853ac05e468b5d3f6d127b9e1ad727a3ae95ab0a37d931fcb');
-INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7828987074f124cd31eb9dc820d542e525effb0d3f7c05c12abef41db1062312');
-INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"44a37e3c8140c5d6cc507bae93571af20c9cf4b48e8404edfa4e55c8e5e82931","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'2915ba5c5517a17ed948bf75d7024ec034f7a05b8e4504177e4d205cf063be22');
-INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a73faf1e71ffb1a77c214895a5bd591f4165fa53cf240ab01132095bee53d148');
-INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"b0166f95f4cf48193827d3b5423889419477c07e9a041c41b72df8229e46adee","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'a5049c262cf4f3daee142dccf4153eaa4ef43629917e9fa4aab10e815f63d2f7');
-INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bf63b8d74da9ee40fc62ff24d9542f837daa3cdbca462680878eb57685fad45');
-INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"34ba529a171f062f8e18bd65ef967158d21a63f907c90ff79f00381c1d9836e9","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'c495b6ab1dde32b5ad9b9d3f7c84a829fadf3cb8e8e81e511e40d899eaf3288f');
-INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3fc0c176982285f842a9b38ac4b144408694cc6992cb6cd9ec999bf6e938815');
-INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"108e625c8ae24f372335196ec1678080f2f5d211a7e47de3eb1da4817dfecd5e","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'d8cdf6321a804a14911ea89f9e64913c46e3d630663b9045ead8b40b7cb09001');
-INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'803369480c995e4642a91c8719c0ba1bdc345075fd0ef617092fccbaed81b5f6');
-INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"d68fba6521389577f6303af99b28050b6cbceb05908bd85de1dacd982537db4c","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'59a569bba75c9de1a1a2b7dc6897cd705a2585782ed2bacfc19e87501932045b');
-INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3e3a918e4753452a20540590728115462819762349cd9193c2c3adb30414a4');
-INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"3f04ffa37371d7689609be3f5e65a6986553bf2e0c9db51e8ac815dbf61b01df","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'e33529a86d8e351188c5a2c34882fbdf9d5f5f517218e86a119e257840c87c7a');
-INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09989a99bbae36f3fab9e3759f90cfc6a3b2c41dc7aea4912836acc547813d31');
-INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"cc3e49edd68887f1f34db7c81e3125f9f76ba0c45aae70a5a4e4f7f8a85baf4d","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'1791bc5f229c8c0cda59ba5e0b93fd1abe64bddfacdecb7ece968c716a8c7c1e');
-INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'53340d03e89adb7ced1985fa1ee172815c7f2a1dcd30f22ce217440e440d0e54');
-INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"274d30a0808c4740b2fad528bf374e4b65e3bdfa17247e7e1c924bda16be9794","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'5170face91fa60e9698fbed905d479fe58101677ae3b1db66db6925499e2fe09');
-INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11455546e6204b10fa32343ef3877425a7c38966cf016ca9eb88aca4a04e9539');
-INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"33ba6fe2f691128379ebff991b818614c4665fd09e4c54b61619d2d2ed54c0ce","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'a009a50ec47b864bb446ac192e83571b0a7308861c5b1e791de5cfe5c4946988');
-INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c0211ac3fc16bc6ff165351f3ed11a842408c00a49ae2c3e45f369e61cc9591');
-INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'NEW_TRANSACTION',NULL,'a70e31735a949b81521a8985778c87b778dadd919c9a077ed5549d9e5c4a6a83');
-INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','c51981e15bc52e2039f4f68859af6196d52311becd78e996f895c98162f0bc61');
-INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','20ad7ed09b671c2a877fa6a71221d3f6b4b11d949cb71bc0cc8b698b5d0ca72b');
-INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','f2585cee733294a546148e62d648db43e0d6dc34157f04a25152616410fed270');
-INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"f3689c9c1663d8e96f34d9e34442f1db962b00725c617592ebad5a5b1338cae4","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'fd01bede9b2c84e075a9fd41bada35d619bceab81ee8cb7d978652ba0a7ffa73');
-INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c037fba90f0f80072bce5fe520db37107df94ec52b12454cacda230a91c82967');
-INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'NEW_TRANSACTION',NULL,'cbeadbea38b35a0b99e7914bd249617b5e0b7de2a02b22444713ba2dc8b3cdff');
-INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','c8de16700d2b18c3b392722293b608a3c9205d969a3a9f74c6b98f4453f3bac6');
-INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','1ca23aefd69e85e4e7de0a2aa09decd64b37b344130655839db3b5bc5e9229e1');
-INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','aab7b58d1e083c401b59b3b3d393265812149fe7ed6f9b3002ab02ac458868d8');
-INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','77226935589594e56fb6be8d285aa1b2658c2fd6a41d89c64d49aa1f4ffbc2a5');
-INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','4376ff1b7f28a6a8899bba4dcaee8be98e99baebe7c8ad76932fbf71444a49c6');
-INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','7bf049b103212b88272c28322a10d343e0b7e77dce22002a4b13ad9d2488e4c5');
-INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','deb6d11704927ad4f8062bba394bed465e1cabfb4f1e507fb5a2da6e63ee7cc6');
-INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"c3f16c9c50b71969ea4e21819eaf214b1e40316e91af4a3f3964a91b35808e6b","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'97547f9b1175f6e424984081f3d127ef4c296e4b6639f0db810e1788f449218a');
-INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0ecce198f24677166172e6c1d6aca8735d92aa710ceb623810be424bbec8c1a');
-INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'NEW_TRANSACTION',NULL,'0e9246861cd39ef282e01523316a6a4eb8e3b77bbd00138e4c62a4916c18e03c');
-INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','799f04fd8abcf53a547a06724f3eea0a8868056bcc8d24837f2281db0d95d04c');
-INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','eb1e5f20c9a12c544406bac4643752f9553f746b396f0e6233fdb8cff9cd6553');
-INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"d57ce83db250acc25efe3e0193a3ae93aa5e521eaf0063a745f538e82e0b6c3d","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'2c1d3c4706ef12e5389c584f790fb1115630bd79eac3ddc5d96b0a8eb978a02f');
-INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74da33886e528cd3060a802ce8a405fddda9eb5bd287a55c5264cfb83a7a35c7');
-INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'NEW_TRANSACTION',NULL,'4c39a0b8c55b6ef393577558c9f986771167e47687af1335ac24c2537ab81818');
-INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','b2cfaf8bfba2902cd123edc68586096b325c3510b79749a7aca9f1d856b91e63');
-INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','24c6ca54d5b648d22ddb5f660619bffabbdda584d7377f2c4ee6def7874783ef');
-INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"b04d2d8cf335c953fa24a5e17662783dcc80794e937589a0dded13744a9c69ba","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'4629f0685e56a9dceac8a5c8049a4299f1e79065d651369a48f990f34f4b73de');
-INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e54526b6f5c086bfe05e45491f954985bb0e5adb1b077e7f4f9feca3fff86a48');
-INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'NEW_TRANSACTION',NULL,'76c1157e49f2d70a1c2e57867b05e123b3c18e529dd7fba9d209e3e82d3256d7');
-INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','d3319058fdc165d1af6a9d1c65b05858acc6b72f309dea033a18beba61203f6d');
-INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','269d1191f5ad3b49f7def96a711459f28206244c4b544c6614438a65e456b938');
-INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"2e336a7a4575cfab7289b78ebf57f67f09e3efa3a4bdeb2c9b9397deb3701c77","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'4ec86efaea3e0290c3f83085a00bde61885294353ecf9f50ac983af41ddb2dde');
-INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dfd51094efe36da0acba2f631e102309b3a44920b3cd80044ee3b2912d8d681');
-INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'NEW_TRANSACTION',NULL,'0e8aecc840aa213c58612a95314c1959443d2b6c131cc5456afe3193e749dceb');
-INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','fa6fffa27dca0e9e2ac2dec5a91e8ef19da8449db633f8cc4faa65cba71eb90e');
-INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','214fc05e2f19b1f4124817b8a9670b3981c60213c6f1a7eb30ad0f985212f88d');
-INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"79e48332abdd115517204c76fc873417fc8a3da56e255bade91e6f8842c4f192","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'62ff9774fafe57e9d89a400b230b1d0e113a1af623746b3874b2d284d91fb0fc');
-INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a9ab7ba5e1b7cbe310f018f7b06cb6c0eb479a120f0fc62427e0f0c39a69c8c');
-INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'NEW_TRANSACTION',NULL,'aa0400f22dc7c1c792976167bcd4e81f427b99bde088d9236646b00d809835b9');
-INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','fc818d5a7249bf23a97911f7a6bba4a388fc247ab511e2d7a9831f4631ffd4ea');
-INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','75c3c12caf643b654efcd90fd2f96f732455ccf64a5746a65d60f98173db6125');
-INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','c0e07cb69f8e3c937dd76e10e1c24a904479e3ef482793ddb2656393fbcc12a5');
-INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"110dd70ced22e1a1c91201c1c1ce0afc628885b2f2b3c785624b851983a71dc6","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'0889def5e8d66b3c10068eaaf145661680cd6446f323911ae3bbbede01a2ab99');
-INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'469e0f5f36aaa6399edd21cbe567daa20ddeb376a37f033685b9bbe26d02b382');
-INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'NEW_TRANSACTION',NULL,'09e3fd3613e2fd1d77e359cc65db3ae32ab04f926a5b46707c7eef82bab72207');
-INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','b618c17b78ec14f7c2b79de59bad4674bd2cd1c2e24c1636479f42f3dd79136c');
-INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','cc444cdde1d53b89812fcee604aa43aedeeecd54cf683d771349b07416849a93');
-INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"fdaa97987f607fff62cd0459e4d261ba764a7ed75ea6ab1afb3ece06277216dd","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'b18aa0abd6f78eb79092f20d3cd6522a5893b6f9f35f32fdcfc9356c262d07a9');
-INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'923dab9e34624630776396846c39a2e583de574d5ca9594d831a15a06ff71514');
-INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'NEW_TRANSACTION',NULL,'a220cd57bbda37d617e227851348dd3ae26e0e270d51a55867bae00569f35dca');
-INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','06e92c8e3420299e4d17df1097d6f369f085657b5be06e745092be2f4f44a8a7');
-INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','e7895dc825ef089381127990af6981543b078d122cf13cae8e64afcdd9c35319');
-INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','79c5514db9b7d473c3d278e4496d58d7c1e09944d4e50944079f3c3a0f9c7d14');
-INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','da808714af39e5a311608f9a1b05b1b5dd55c5e98524c0f17febe3f82afbc50a');
-INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','9105dd5352453cf6d1732f659e5f9e6e17c64f71e0bd9d9ee486fc24a00dcdc1');
-INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"bf0b49028ffbb1d91272975e819dd6ecba7847dafe7def099bb7119e99ee357b","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'61b2a7ace03fe0c672a0d2d70d14092e48de8197edd133665913a15233fb7dbf');
-INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48ce063031772b00674435a9f6737bbce61f3af2355b18fb52c05ca19d26657a');
-INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'NEW_TRANSACTION',NULL,'5c766cf070714a1310350eea044806bc27a1fba2b25722fd14145d276d2dd0fd');
-INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','dd66ce68c8067d94ec900b6adf7ffeafd9d5cb02869aa9dc10e2a5f364ae7f81');
-INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','e23d3f48ff85c70a96947a766822715e7494cfe8fd3f977fc7720a0eeee3d7fd');
-INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','49b92b711fc9254b236b50c7e4bb0df012446e4abd534b75724f6b0e066fc51b');
-INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','f45d03eac246f287838447642b71974b021fc82af1f1e74cb05c6a7d5adb9229');
-INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"9bb53822ba08d1625a3eacd2e25ddb87d578d63c081b96395b39a13322c581b4","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'b2cf15ce0ffbb9d85ab5f78b9dbafc64447c411992ed18c413a2b9767e3c9efd');
-INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'013d0a90f4740dfec4c953e03749848617b1e23c631050b44373e6d1cf3d2d0a');
-INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'NEW_TRANSACTION',NULL,'62c3b09ffca901850790738368f120107a4a8095823a0e8005980c5c76f2512e');
-INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','365198fb9a32faaa6109c28bad97811ab5ce4002d24fc21858961d086d158e10');
-INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','8bc53555078f53a123b45816e24070a1f4c63ecde2317d9168b585133a5a003e');
-INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"65d2ccd2975d2480ed63306ab9054ffdbb76fc442ed4c7dad2aac7428d2506e4","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'dfa4cfded9e9e9c372e3797c466657426602696ea0f2eaa2bcb47c5786f382e4');
-INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eaa9af8a6377cd699a39a1f4ea607815893669c0889c9db46fcf842bebdc97c0');
-INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'NEW_TRANSACTION',NULL,'ddd515993029d283c9821abb34b0a1976c62c99debcad546d53ebc32d10b2daf');
-INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','b5b0eecb366f818fc215a2265b2f78e8b80f1c4e9b0d1b379a4fa9e652c30fa1');
-INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','ea7f2180734267cf4ff6049080a890525a62c056729aeb2a7e09e2b299a2b3c9');
-INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','03e74af714b780b978b4ee8a4f81ca4ca6358243940930fd1c1db9509b939c8b');
-INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"8600ea90c90218d55e9aec3aedcfb652432fc0f8c2bfde19ca62f768d1653101","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'2efb2fdcd1fac73875c985e91a82d310a9b68100947cb773883b9b3caccadd68');
-INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'14e2aeade8973f39a21362fbfd685a79c313c2eb4da260e32c2426e8463cb6dc');
-INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'NEW_TRANSACTION',NULL,'050973f902e586e9691927b0441fb26e1cb81af5e132cde0459331804b136cf9');
-INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9e9ea37b5e4a5ffb5fe5194b3ae60c13f5aca9de78e7b08b4e3c408462c04143');
-INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','14ebfbe019c443b8142017c84facd5c973d843ffacc3439ede8f385b762fc28f');
-INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','4777b2c7e5880f4e1293b088c93cfc50ffc55c921cdecce3d8e9996cda53d146');
-INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','add53945e04372000b5b96efc69a39098a34ee8575d31c9964eb4857b700e61a');
-INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','9f977a725f8071c565dcbc3cdaf85e8f126532c2626fa43e653c176184d33522');
-INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"aaf7654cbbdd946eeec20b756019f62d012569d28e633380b50e501ea11d37d9","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'b5d5fe80a0c3f4ec67b94256e3f3c8b9681095d08fb95c7cd9e4741ea8f893af');
-INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8789e5aef60fccf7ea0a9b1220399bd0baceb0cfbd0b07224e5279240ef001d0');
-INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'NEW_TRANSACTION',NULL,'b7cb488bb24ea29b3bd05bdf9dbc040ef4dce533817194da851bb51d63fa832e');
-INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','de018da93b7023840c6746051ffe6e776ba08d61211018b01ede163e9f9c382f');
-INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','c00ce786a7b91901efa874e517877e88cf03cb038e7e88c847f853443bfb07d1');
-INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','0c0bab71f9c9dd59b4977f847d915344b07c47bd1c5edabe673c3acb25ef3109');
-INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"1dce35ef471c90ab925590429d3bc5d7c2987aedf5acc0ea1b3be46e88f0158e","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'e0914d8f812895cfd69cbd172073da0e458e21af55bceaf2b2f37696818f9017');
-INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca92b0d22b4330d21c018d9b269946b56c37c99dfef42564d0364b5fe901bb60');
-INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'NEW_TRANSACTION',NULL,'9fc09617c8b83814a5253b1b9698d1e1c1815d2a29b995d33cd73a58f2766642');
-INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','2a45b5ec3e2f8b36e5b75ce091ff780430a1524f6c91161ef517f111efcbec48');
-INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','1c103ac6cca483f916932f3d876622b63e490e01bb03ecf41d708d30e79e9aa0');
-INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','7ec95bde65984355712965dd21e3fc8fd183e50b0e614a21631930bfbe908f52');
-INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"2d466dd469c4531675c2190d0e4d9fb2daad5b33426b3d22058ed9770cdae63f","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'eaf91dbfebf86b71345d821e8ea04df24cfa88e146d379cd77eea54bfe49b895');
-INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2da071cffa846c68ff51a1996f044b2a82d9eb8ee766621f6bac86eb612f98d');
-INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'NEW_TRANSACTION',NULL,'8f4006ac2a034a9cf676fd1144fa9854ec784c11cfa77472fa226770c7c956b7');
-INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','ca38710a6a78979b1d42fecd3c3e33cfe92ae6fb68bbb6e8bda54f643c0c515d');
-INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','febb9d33dea6479d80b6e5e3856ee81170bc33eefc4a3fff2e239b1d34ff3163');
-INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"c94709a97d76eda00339d8b9313c132c7124fedcbb4f13f7fc65521eec5fd63e","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'97a0961d5fcdfd5f0baf9b0960b40bcef3d271dd0daf3fd496ed509a901efcdf');
-INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2e7aa1fb2d189fbc5041f8c4d3c48fcf5eab4838b66d8fd63410965b6ec5ef7');
-INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"d882f745bd8f7edc17b13d0807c8d3cfccfbd9dd6678913bd354e2fe5334507f","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'1157db69c2733753e0922a271aeb45e3b7b9a8d85c23bbaaa2d2c83c89be94da');
-INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd334e14c566fde3a468532ac2a1d2d0d4a58380b5a95994c4267e6239923bd0');
-INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"aefb56011c816cb6b5e7a388a109f991957fd957de7ecf9c4f0ea8f7758098db","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f5f79ece2e8cbd96533482bf8a654d26ea4a65457436d73f42db99ad429141b1');
-INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35b1a6d99620d529699cc4343d0b310dd49052fd57a934003ed51745d087ccdc');
-INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"0bb1e98956bc350cf8101125e6147253e60978ddeef6b931e13c772056153ce6","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'5b6c8b974e6426a3d7beee41dfb36de41c74b42f64e768b45d0137fa5c944acb');
-INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'591ddc3b9581f682ebdf806b91436264a626e73b14e57323de6ff42ec68aa186');
-INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"7b105baade40f901ef31f2f73cd8503ee209f79db870e9bd51502f7260c074f8","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'cb4453e9fcde6aed9356bd547e5aef9ae4ed3d1d6eab311319a7c78bd2c7b539');
-INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45293c9df77d65d61b1d4aa93010d4cdc9dade3de0c3f88d6b8367af57b8b48b');
-INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"124d2805fa3144fd091b2ef1c80ce44f9895f9ec4a44e8c7b48237f1282b1e35","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'8bb8f2aabe4052e5453ee60270c4334a5a409572d4d44526ef46e115ccaf7a1d');
-INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4cc3de377f9a615dc2607b6716d64cbab60ed8f9f4d49d293f9158be84c8ec6');
-INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"eeac27ff4665134ac9db123eed51a6ebeb9f66b830282684cf14b80fa9ad4018","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'9bb2a04f3984e48532769bc1555800306f62226dd958748f7c9920521d23b4b0');
-INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5c9fc7208b916c284e5f89caaaaffc332790904cc268529ad4f85d67d040b65');
-INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"0d89c488b635238845ad30bdc78ec4191561296f57240b2728a3396900f69949","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'cf22c2d5ef906cda5f6b1c7108d55aea3e7c1725cdfdbff2302c9394686c561b');
-INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2199c9dfc0ece27a447ac1f479c58aa617641603d483e9679a46e0403a593197');
-INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"6df82c4ffb3e630f9abd9b4f4577221f22a669a0bd985620fec81c585f654797","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'effc64dccac124380fa8b5261a935ff156b478eeb88e5275fb2e02aea7b385db');
-INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78478c83c329c1f5f89dbb71b4693219750e1ba09064e849b9ade2f802e157b7');
-INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"8cb8ff5c4c38c9c0fba5186c78e3c57041831ddc55b169a74995edce686de946","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'0399a56f441239a0c987a535d508d6adc02a87a635cf9e63316eb7be38e4ef43');
-INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bddea9d3c1d0505a596914569e99faa26ecc41a268a1bca8f5e07db228803022');
-INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"9fd0630d7ebf232470cd1a8c7e051bbcdb752b88598aa90bec029fb7f118a128","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'c85a100200800e7fb7c645ba4a25518d0d8c5fab5a8f11bf7abf1f28a868b3a0');
-INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6e9e9fb0e1ea80d07c26b6c92e636b6c2e5803e97b4df73df6c086b6be57829f');
-INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"fc7ec51fc69f7284dbd6df219ff906253036d1696f5518d346fe5a1997bbd05c","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'8d4b8b0a0d29f1386e6bfb67f766576c8874b1f75766b9aaf33c10472b1b4f9f');
-INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3dac6ff46b81e4e4d94d892eb91bb50d629b0ae83c156c518bd7394413dc2f68');
-INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"c726eba0cec90d465a44ede024b1f8dc58063711870de6e82d1424ffa23f4081","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'ba593c53908bb1aaa1cb90b231bc4d754bfec57f3d90dbef3c9e460da1f4d6b9');
-INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2f02d11a81f1360d1e32f40b4e0a57d03d4c15788b16ea7d0ae39bafe474914');
-INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"f0bfe24dec959d07b2b68a79c3c85caf68911d384ef64b4244b61fb86aa21eb3","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'a0178cb042aa0d3d775a4de6507cefdb6ce33098bf6e46a78ac6b538aaeafbd8');
-INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7384c39900520a5c9dda2df7158b5c2b218f84f5a2a00f46c6eeac274e1821bf');
-INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"c9d741a97b59ad670227903d4a4b5f63048712721e6ee4a59e6593e3a06a4514","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'29b53f7f1dab5b2ddc0538a403e96563f48bb86621113806851e5c22853769b3');
-INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4580cacf6ad386464e718feaac51320c446d68f89086bc7ee122e417e6177c68');
-INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"eb64baddde8b82bc629227449b9f5ac4cc4adab4b387ad9a2812591de19d6703","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'f9f2838ba221aa7a8c8c32bcab201e7b5d8c0e759734320bf4ec8e6fe692f4b2');
-INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a839b424e6a3c76610c51b97282dc3eb3bd87179eecffccf8a8b5088c15952ce');
-INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"ff03eb6a337397b372d03eed981a03eb5f3f9565f66bb943bc1e9fb931a3a298","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'9a0de39495965446c7b1b2c554e0e15b3e33878cd6323f131a12ce10c4f33b8f');
-INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'466d58bdb4e793984fc66174f1d392a344cf8b838589ed84ea7ef03dfa4fcdc8');
-INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"5fe7e9c01410af91855efed43e8f9a44d9eb0ef53d2fe80c1d88581285c86df0","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'3ed40c5f2c6e2deeecca33955ee555b0b26f07a0e7e895f036374116ccfbb846');
-INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0abff2dde79655806026130821c2cbbeb7474480dd36a038be4a6049e75e101e');
-INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"33874759d6fdcf012b2fc2b57d21fa0226cb3e18d14194500f282f3b11280f76","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'c0a40e8ab9dd74252f418c05b66ad4f1e42347ac922780c4dbf0531437bd2def');
-INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6979f8d4250cf7688616a9201c4e88dc99619dd5c5b4fc3a4b40f784b0caf325');
-INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"359ed3a20d949167d5d711db7a275c8e9a410f5edcc76a0bc1e277d1eb563216","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'9581dbcb589abcdc230a8e93b71a981cae2e93da6a86f562049ae0f4adb5b06a');
-INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'585a51256a500f785baa8ed067af26c41ab21e1c01982506ba568e5df564f98f');
-INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"d8091e8da964d953066d4973a4212788f9ca3b47788454f693a9a9557d8370f0","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'abd74320f7850470a3f8150aa04bdd385e7f022a6f93c4854031b19bc8a7d814');
-INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b0179189015a807c1d4243637189801692cb5a1e4601ece220e6dc502c8475e');
-INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"2cd10f30db70185a0aa3a4e3b085a99f9b68ddedea747d25a09fe43085873fd7","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'587894e36f8c79429252152e0f20ab051ed0cdcb952dbe44a635db8a46b20d0e');
-INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6058d08885254d4c0f6d1e266bca290b920b5b7a910accad3302c8a48cb0935');
-INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"0eb29408989eb9c5a38a5a2ef7808a99f649cd05a3d641f6e2d652732884d6d7","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'72db9bd39a718abc3fbbd40cbccd69adaac60f1d4ca48c4dd11445509ee8d74c');
-INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'551362bd98106ff5a52ec3e3b1d418c9098c0e311d837ed652417c6cf9c50cb3');
-INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"86088a65b7c10dc88153276f05db07d1fb4f6d4ad707c5a4a9875e739782e2cc","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'8923984b88691964855f0da2165e365b40a522bad33ca6c2fc8d0b9070d155f4');
-INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8022f54132d090468037ab9c3bd63bbcee0a920d164b1c71289939f1175b004f');
-INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"5ff093890b48f2b0ad5d1b99f633fccab79c3014a7f47729399d07e595cdfd45","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'cf0d060bac83f0e697d26666548f79df3319e62f24cc57e15ac93685cf5519ea');
-INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40ff05b2468d7a7528434d335ebe48ec814fda27e2c1cdc024a72b58e7361752');
-INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"89b97705896f32061405c10278c072dc4fa495e92c935ba0c57c5d54cf4473bb","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'bae4bbb00bb4da30ec552e112beedfa459e2d30cb6439b88a7cfb6c9f59d11f5');
-INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'feec84bc0d60ae21dfcc514a07ddbbe4ea743419235b1f1f58ef897105751fe0');
-INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"3e036c1c3d33d8075922c286510d7fe6bf687cd7b6b2ca54bc183e36856266c0","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'3662e9c69f277e858f26efe86ba813a2f933c1b4566aedbdf10fa117a1fb49c7');
-INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5dc80387fac8b45556eee44ae8f56c01c7d601563d5f8e0d1c40936b59ad87f');
-INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"02e0bd55a0bda5403762446e66a13753ebaa5a514c1cd66c7f04ef46ef4df738","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'e6034441a69c2f07ffde8dbe9eb5e760421a49076dd3fe6630b4d33666d82e69');
-INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc8e39b933de9e9396c4ce1a1dc898cafbb300bbf0314c42ec355fdb7882a96f');
-INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"807eaade814d710f7f74b556d926b294fff13c105e326d6955b02a4bc5d6d29c","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'63fc268c94e13b4710b25c30050459cce75f5a1dcf2a4a7508fbeab5d0d80138');
-INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b264475da231cc25e5ab7479481fea4231cd0b5451a0874d704b27742862877');
-INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"170f6971eaafb88ec0895d5d9af3ed34bbb3eee703117b5b0e6cf8d8deafe0f1","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'0cac7028d1ec05841aaeaf1a834ce6c533dce30993eeec274d05901bb5a48dd9');
-INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2708451c3403bfa6db1001e07e3292ab817f2a5daa81f8e212fef8b652dda685');
-INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"e103e1f0ee51b5fa86d61f8b8ddd9b7918e0d047727daa43c66ad3d13d7b3c12","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'9e946b11ce1f1078baffc328ca79268b0be3b38ccefc22cb3010dbda950417e5');
-INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59591b7751409d89750a3e1571c8e4a8cfb13cc07b3963b90eb2afd7d6f58ffd');
-INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"c671dd04015cf20b8cc8fce97e40ed1f31df42f7e42a0989eee0a9b49044554c","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'269aaa135e9f181474665e691b737da0b8922644d39486c7eb7588dabf19ee2f');
-INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4fcd2e1525f188154f3f0296b561479f1f03f4d36cff8b33a5f2312760f330b');
-INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"35a58ace6733dd96d89ffe8486a3d595754aae5271e3584aabedd6f8cb1076e2","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'9db8f23cd4610ba64c173f6aca9f165935911379a61164a319122dd23823ab0e');
-INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a796096f0f96cf07dfa7609db54ec338bca217dabbd09023e88f8550428a4fb5');
-INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"ecb6a27a09df864cd864d610a210593ec26988d4132f30f63c8607b6323e4c22","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'d2b5dd727c272bcb5ec87e9268b2fc678e8e17a0697ea9c1852f6b72b3193e12');
-INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a8c1f914215ce3bf69c480ae69b2d74df042ec681dda497e8302dac7dbf88d3');
-INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"6c18380805d06f23f130503ad7148ef1a215c0b217199995496a7670aad67c52","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'838225ab419cf9d5f798af135e29aab1de98b1932b603bf6540ac08482c03445');
-INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d584e87982318d313eb7e1194062191e3249600404c6c67b38b49a1dab2e4daa');
-INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"86d5f32768df40dbbc112f75dde5f7aef0aa1904a689cce3d24be58fc793bfb6","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'229747ef38f4a7557ec8416cd21c887301eecba435604e5dd8e0a65e3de14c52');
-INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'975513a1f171ecd58d3a2ee007bbdd5957ea44a90f071f6d0dedf423caba4da2');
-INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"206690aa73f071c14545eea0cb0c8838abdfbc8ebd64c0fd097cc2e2a254d481","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'107cceef85786f376fbccdf4e823d871e52d8d0a10f6c222c81b8b9de614afa9');
-INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4baa59fdd8af2b81425e1513e71758025da4b28d5e8d48aa02b5e8340323de8c');
-INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"ed1c7beb196128167ad8b9d03f1b9a1b7b5d70cd7add306919cd658bc32f0d87","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'5825b412f547d3f2bbb1f260aa2b2e4379d6c27929f23b0b09d508e73382be9a');
-INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee251e145e834420c1940b9ecb2b53d1788a11cc19982a0a34f58f6ec9b1717c');
-INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"977e7ff9f1e5f0c1f756e802013a6e72299de42a6e2bafad94b57bfdee7a6632","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'2af335b8f8fab3710b71de4f4f0e99fa844f3bd99d42bf2040b3b7a544d14454');
-INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'319349f4133462f408cfca8a629842f0030e9325e299ca410f026dc3a5af05e5');
-INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"a171b8e9e9879ede2f4c1fd42173d0b0ae0a07fc4d1e7f2f58ba50855fd986f6","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'057a3bf62a158434ccf6ace0e438a0c2db44f2ed39a264b3be89aadabd075bd2');
-INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90456499577651d1d1c4149a43b23b0be7f181112d5e93edabad2c8701601ba6');
-INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"e06a1bce3d693147d3df5c1a5ad3b7b421d526213ced3eec59be44220aa6c2c1","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'72135a2fa231aa6b312241af57786138272ee35a1fb7a33711347cba3f90c060');
-INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ceca05f7424979de91f3b1c52f76c01207188a246f07e70e6e60c2b58536ef8');
-INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"e9ab5031997634f6ad74021f5adf3d5a62388fd55401a584464d7bd1c7edd44c","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'70e0d852e54261ba664591d37610efed25118db43882a9e7e81863630675fb2a');
-INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4edfb9ee3f5a3d2dae339d253d3bbe999ac96b82b3d206a2314830534f665e1');
-INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"be1d3efb0c59cb3610c20487d20907179398843322cf4a26681010bc89d3032a","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'9719bc7c616db17dfec23eb64e9e94e2eb3b778c16e6d97e83b815454ed4730a');
-INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'915f4b97779bdf66e1b1f1595c796b2536b6c0559d134fec0d46ffbdb68c99d5');
-INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"4c81d40dc2e7cbc7e47272cbc8fd00b3b88fc7743ae9127216c8fd3cf0a29440","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'7a66c595220251f9b1744945af710a3c8a18aa5016af3cf9d653b1706a7d57eb');
-INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03fc2366e8223f2eeeb53e7667c47116bded5dcb5f0857c6033f93935556f71e');
-INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"4091dc7273cdb5d4bd19145a422394d0ce18572cbc6665e32274bff761d04c62","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'39e92a301cec11d0f142d5415721d8d55702d0d73d36e933c6ae5e89f94b70c0');
-INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'812e11b6ec4104ae9c9df8dfcddf972d653c5a967af6d5fb21e62318ccef4f38');
-INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"54055d0c951f4ca0806dec96cde66848cbb36f6bc836d96cd98db0ff9e4b38cb","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'f9439e2b09a39c2202df02e93c743476cd72746f5e23757ab10d461698e442eb');
-INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67ba27d87ca44b6d709810b3e524b92cc3bdce30fc6dee610633f6a4c4d46ac7');
-INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"2acaead0979ed14161b7b6665b5431098d5544d1415a8539f20bc27e880790d3","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'926e20c41cf25f96b42fe7e91be788c06e6da74c844bdb3bd6a5f158e09e7e68');
-INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7cda902f0e604cb206e5e065ac004a3c5081e2db416bafb3097e52bb02249db');
-INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"4616d2ff3ac7feec157408f1a40dda3e96b3ecbd1fd7977a5d89c40936b1d188","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'fa42acf12c67b75a72cb2877dc11bb81cf37bf89928780f769c226940047450a');
-INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'284adafd25c17d91a7d65f0cead82e168a1da0d32ae89732527053b179afe252');
-INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"a86e2d86f493fa42f842b5ae85a42f41a97740d844cdcba66dbe64a7aa48872c","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'b1a7729cfb92253ac5636c10510333e6e7eab4436bc00aaa6e9e5c7e48931236');
-INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b5db60b9083bc9f10b6959bd2648b66b5a6c818a09660119a7d0837a28acb07');
-INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"85a9f6ce9e41a035f7077c6f53371fbaf823985fb3e4aa88c8ab3f917b06014e","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'b6dd49bd4d5eb51954a01dd1f69470d7fa1e14e00c5428258e244a21de200467');
-INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b85b626de049a1b4bc7da6ea732d932e9967735ac96cb469f452b9a82e06471');
-INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"b45d7ccd18ec37708371b786d993d4f6cd880a42087093d0651432d357acee0c","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'3196cf83a908df222c38e1dc5fd6b51fd45fe185ce3c711d04a19a7f4934ff9f');
-INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9b7dd8137f10a9015202cdfaea8b3f70ba4ebe7a00d34c704db3f3a26d21654');
-INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"6cd15a6b0104e8343a928946b3bd0dc4ba7062b599e63576a456f9bcbdad2c64","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'03a19a47f25430d60e1d5c00a304cee312dd79480b79b2b5362e827f93de9d09');
-INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a12fa1fb9c9f079b6eb07e6a61512ea4a8e0fbe0df6ccb688d9ec802e4b9349');
-INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"696d4a61ff5e1174d4f20bdb76941ea081a4d2f3189ea334c4e95224f8c8c8a6","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'b4691a82156ea5efd5c2004c5f3117ed4b9595455ca6c1064b9ee18be45432ec');
-INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c394d9e99f158b77fcfb4269500d9d85834d033675cbcb56f242b87676d8a3e');
-INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"cdfd35fa4c56e13b5d326dd331f4ebf61f85518bbbcbade10dc40b1af4a15431","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'697dbaab004590d997dcf9f09682d54c8325cb1906562eb642318ff71d8e4d3a');
-INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1d3afce007d71a5ad43838748b5e414f87e3bd9a1eb963acb0041ed0389fb4b');
-INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"a771c459fa5e0cc21787d85a9b38e8ec396e77cc95362ddfa73ec9fb454495fc","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'07cff6450cfe40edf6fe9cdaa98a11f1103f452434b68f0dfb7fdbbf5c78ffc5');
-INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a533b21339b9ac8e412f7c41875b7025ae098d74aa0a12cf3b75a209630a17d6');
-INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"c31dfeb0e49cd9b9f45143ca853172c4f8d3ee88427c3e98f7cc8dd874355392","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'c438fb19422d38628b0df6f4f6eef1bf23fdab883a736f4073b1b4bffa300652');
-INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6096f58aed184bbd23bc3c1eb0f43f517ff3e62dc6b8061782acc6b2586aeae1');
-INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"7d8b260c7351e40751ff111c6c06d7c8aa885428710b3d1e1f0994c35e2f9643","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'b6ecf145b41733a83f2bcc03c5dee4d17f0bcd437ed43509a243f99adcad8545');
-INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6111808d9591a89065285a74abc17701e8ed38413b7c7b4946384a38eb2a0d6f');
-INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"af128c2ba7c50382bbe8e3b428f19fcd80958bc2e5d4c33be43712d47d435a70","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'1a1153b7d0a18de075701576fa19a63802a5cb23ae8fb5eac2d15a113ae288cf');
-INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0e96ea725b5dd486b2dfa346bbff39813e7abad6d9b1dede42cb553d9114840');
-INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"c963441968e83c301e8f29f28765581cc5f14e6623c040c3350dc589eea57da6","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'9bcc197a7ff8478ef4b84a7b2a5c75fda1a7c889a94a50d2716ce0b836eee8d0');
-INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39be63a935aaf39903c601257f3ec4b1b4a9677cbc1287ada4802a2c30b7269c');
-INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"dfee8971396dc54217e263b98b1ee284fabc170a53cf0fa2d123a1f9cbd14d64","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'ba4cb3d4049753a0fa26970eeda482a0bb77d6e9a993c475a8a25f022d1ca2cb');
-INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4e6a4009f9deb0ff93daa72fa7262be4ffc99920ea1b4ee6e3a04de493da64b');
-INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"493da573a8f068a577690df0b951ad995a49bbbdca22029102fa286d1d633269","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'21cd076770b269caf8feada57d04039ae73a1841271f7dccd251738f63595f7a');
-INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'243d567819dbfd1e995bef5aebce4abbae769fbd94fd2ab095bd089707a432a4');
-INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"e54ad17218ff9f1d0ac02978bc5b0ec884a467ccd1417779043860b108dc7e74","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'28e2a48aec1e6392fb3f35033f95db870544e853b7001ba0b4100492ff918912');
-INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e580d7f446d1f50b1a73ae8527e3373037616488adf50c9274c1d9034f000e16');
-INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"bb17de70c734bbc12be97953357cba4c749de77aed7ff5e0a5a7c95e02a48bec","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'0ef8ed313e6e1a779bfd74cc30b5875e3dca6d8bee135b4dcbbf510ba59476c3');
-INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afcd41dc4d9c0be26ae0e11b82fcf21a47fd8b3647eaf8e1051bebf24288bb6e');
-INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"2e03fe798f0a5c1f8dedb60d153f4fbb5c461b6df84a5427c4c5fc568c247632","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'748d8197285f2dc945519170295196d34944f9c20b4b5eec5ba21ab2e5bf7b93');
-INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2643f17725892c6489c2b63a5e916f096e9de9101a434f93cf8fc69dff0f5758');
-INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"de94fa7ca96ff9c889cdfda64f41e136ecdec886443ac534d48cab345400fdf0","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'c33f570e3260f7949f96d2190cbc0c43f9d38540410dcce376cc379e449e594b');
-INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6217283f2f56d5268871eea2eb8ba1d6df9c3643a76460cf42fc32034fbce7c');
-INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"f62a4c12fb1ef9e3f82035ca00f8b419baa84c536d23f127a552b9c3d9df6e3f","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'b409e8a4b4ca45129b2bc6bf670ba174fb3947be4c29adb5874b4a8a12e66646');
-INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627d7a488d52503a7d93c607838ae1a22f9fff44a3c2e66cb01da1d66af0ad20');
-INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"454c2009be61a3954687ce793fe7cb30490d41edd77bd9d62006622440df901d","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'ab84b826b4536586b87f44c55e749878746ea0249d6bba215226cb5b32156c00');
-INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d37c5b2b193e3bf5bf15f02cfd51757ad7fbc83498d485c26bd290ea0962e0c2');
-INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"6a772e172863a0a850489c0ebce5b7c5467d17a50bb1b04f9ba949dba19ca8b6","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'eed3c2bcf3bdccf5c109c0c5d6a30f1240f8d85b4f3eed920c03a62c039f0c2f');
-INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4504c59accdf5e9ed29c7bd1b93724cddc1ca3dcdf8249f043ea94a13cf8c36a');
-INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"c5850f7e42e373ad7c980eac188fc4c1d93c1b70fa5113498aa6a50a7e583a95","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'8ee43462dd564c0ecc8be1c616ff38235552d097be9cf678c5025aea03ad146a');
-INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aea51e8bd340461c1fd54dae48c6874823549664c528cac0b529499fb112f11');
-INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"d67a467f3facea45d03afbe61753a922cd38f8de8c4b23e064a530e2592412aa","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'d4777ac9b1da5caa5352c06c00761f604b1a511e3283aa4c9cfcb9fc0f8bc55d');
-INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8159c00e96f190e71cf615d74c7668179679d1b790ed534b84577e7442a4522d');
-INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"de219598994c08d7db8fa07ab2a525349193cf9995b12bdebf550efc116f6d3d","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'51d97d8aac4d466c03e493bc62ccd693e17ba9b6695a63e0b9890f0ae601c1e3');
-INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c247912211dcd08a3343ead71bb65fee3a2edcc8a13e742981820abc9378ef6');
-INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"d102dd65505ea26b381ebc87971f3346b7bc5caf341923fe94dcb249d69b4e30","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'ab693b94cf21a106d9d5c8c00cefcf79559c9d1e0735276491b8c847a99e1ec7');
-INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6fb5f01947ad3d96ada1ad8b193fe09dd0f5e938883911ef818c880778b12fe');
-INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"b8c7ce7442aa512c5eb00e3c222fd2ce668afb4ef43d20af4592755faedf27b0","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'a7044a47d2f381e997ee20299a4f9f13cd83b43412e4f57a26371e7078836ce5');
-INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'baab282316834a6fc2001469c0c54435ce3d74f1103634ca6c2aa6dac6951887');
-INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"51aa347c9fde3d01458f08a73c430406fd712a905ebc897c477ab43297fb57c4","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'1a9914516db95fa4422436fc6512122bc517340de74f2183754d144a72af3a44');
-INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abe9f0edd9b388088f84fef6860685e0128500a056a2554f8efd6086095e11fa');
-INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"badc62331f35d2d438ef5ac0d918e29d750aae86f1275164354eac7a7e7f5254","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'e62b3c2e57f6906fb4de76de867bf193dd6e0136ff91ff67f8543a06b0c9e8fd');
-INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e54b6b42c2c7c65aa3bd3e290bbe91609b0a5ab064760724d7b35d79a5558df1');
-INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"88f7d700b8ff35da0dbaf70bc08d827586f42dd7e817ae603c2f81058850c9d1","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'4a5b8fc9a0e805ee5398e8c4efbd7c47fd1a66266dcff1c4d37fcb5e82a9a35e');
-INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d1209f124b5acac0d34f2a9ca1b0ae72f5449ce514fed2a5fba0ee735b2141c');
-INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"b3ed38fcef537adc2756596562698c24287abe616870b22853ea834aed2a0bf7","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'56ae349412e721aef2b9de01ea503be6fca2cba669181668784793189626cae8');
-INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2b127713e06eb45e6aca081fbcb490cfdf7bbff29ac0445563d56c5bde3d962');
-INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"62ffa442b4f5a7835ddc82c0f5b5362aa3c97ecb66b039670ee22893b6891ad9","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'726a2ee354a576b107587c8a44f6064254ea078087bc7a5a5fd2241697efeaa5');
-INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5a1c2656474d02bd5c14ff52d55cfb750ab531e8465a3082d88a1687a2df1cc');
-INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"015c140f5d377fa59b3c9d8b1c572565f35cd73b230f7530d42d7bf3e84cf41f","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'5d22eee2add60c7be63080c1940dfb8a1e625778bc96819992884c40c07e0081');
-INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea0086be6b73402de813de2c98c9fadd8d8868cf86517403c89fb7186175a273');
-INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"86c493dd15da412115cf100f1ae5090054ecc5c70899504cd8d28b4341c6b2f4","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'499b78a10dbfad53ccca84528d950316071bbfa7ca5acb4359b13802569e61a0');
-INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbfdc672a201704ac084752d2f0039ae416fa2a3207b8dc5fe4eb44e7eda142f');
-INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"06521b1a530800f4e086530f29d38e8068690ef94e073c38fe834876aa7f9917","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'7d5bbc382079d81f7eac3c292ce8512932a0c584cb71a4d2ee8c1d4b8b2af806');
-INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ea19a814c482b366775c33f2426276afea451cc10a92ba79d2e3fcab2a6d040');
-INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"0e8eacaff59da1d2ba48a95aeb66456f4e3bed48ee495cea9ec2e0ffb98db2ba","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'a3da92c32f25bc8545a920c2b92ebcee2757603c3ae34fc8275eb955064b2d7e');
-INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e5fe75d3926b9b7bb4544457794bb99b43e0597956a719a8ea09ff3cd8ab250');
-INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"47e506e747a98d1964596e6c438825affd74e81533b2f48e21eb4e5a90262f55","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'0b1ef2f3969121dcbb0886816aaea0c80290f7d9d67fc6d004e652672c480074');
-INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4eec47d722e8967844faf9954ace0f9679532c6e2b4f7a63500928eab3e69e28');
-INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"fe470b47af5b3f99bbbcec04aa4e304ac0b2890d03f6432c9f9a3cb6ac22e474","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'bf32fe88e3ab08468ecc8fd75d956229326ad223e53ce0505a5fb1b23321123e');
-INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8369ed551e9d8fb1316d2d033adbd45fcb633c729845259030db90da96b3d26');
-INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"9eee9c3e3b358fdbfb78813b40b67c9b33bbaf1512e3d7d27f6c05e61d0bf6ea","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'c2490922799617fb2418829fd7b3dd15dd10a66dec7c8f38659ad5eace0f6ad3');
-INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8adb1ced183b2bee35472c72674ad588b08ca12fab97cc003ff855865ae95c2f');
-INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"a22e94319ba0331541ae9446e6313faa1ff5e579294f0a4e73d5a4cbf1368ae2","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'56aea925b0a758a08f9861ef19aad61ea0542a61ca7a1fb535f54d445035a568');
-INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'289bf11ccc18d45173c4dced549c3bb51d5ca0044eb670e51f5e30334e0aa604');
-INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"96cba00eb5b84fe3634ae0c4ab0bc5544b5f9a703f20e0c34c3877aa97769071","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'79d7ce567cd5dd83a344f97bffe65a71f92ed3c3f0c7888633e2283705037a9f');
-INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8d5445438dad7b77879c6f35f83ffb4ad1a8e9f6e48564cb84276806f0133e4');
-INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"36c279295138f4a6da31842ab3a843f35fdc05807920bb9909042562e3f72a83","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'cedb5f9a6d61d6b4c3affd041e9cd49a3ad35bbbdad62a15b086f985a9f01295');
-INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a709c68222561b80fa2139b587d9335b5caf4b0b6ad369864789a9820c93ef13');
-INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"689909b859f925743226073e922bf8f21ca99caade631f6a1dd49b16dff9fce8","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'052e1d45e266811dcec0bbb1409e06939967b1378bbf40df3d5eb6c838b48ea0');
-INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b2d32a14a744217a76c0fcb3e67d54f9295128fc018236abf4c72d50af6463c');
-INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"4457523f49ff3994beb0520d8f8c96387bcaec1e3dad5d4e414c0118768e1f67","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'0bf04158fa20cabcafe04f0ddd7579d7d8292a755f56ce82974ac67a4e96e59e');
-INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30ec5ce0d5c55cec171158008f4b1f79c52b28f8efb05168f79298b423aa1435');
-INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"643bb31e7baa89d28efcee7755e727165c26c6160da6e474bf0361ca45d4c928","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'c5e429b207647c401969cf8c5c5ff66b70a44294e843b5bf92d15236bf1645e0');
-INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9842e00657a4eebb1badc07b2be368f012b236919882c145fde8d8ef1834cef8');
-INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"7a0ee60726734da2812a9d04529425ae59ac22f6598b536a399f77428e3acb66","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'4894a70d64d04105917cd820c17fcfdcb59efa76703fa15744e503d0d365c94d');
-INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4747e31e33e446b85ce7a0f4dd42407a03773024c855d96f937c7e9b639d7df4');
-INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"66543655288b9354381b07bd124c91433357babb742999fdf19b7c5928ebb9ac","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'19c411012a760fba964bd68c6c0c339ff9451782ca5f3e939ebeb92eabbf7ad7');
-INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7f089f50cd6cfd72ed441645b8f382738b74a7caf62056033b749e5cefd3e92');
-INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"78c91e8e991f4e18fd9b2a200fdbceba6644c5baa7150ab48a55a06378fa2731","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'51272ffba651149ba99dc1fc82c12e9c174b6e4c5dcd90c457f4f8d745e2ba62');
-INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a436bfeb6442d9ee7d9f1df66c4e662b0f0a199db33783d8310b2076a3388b3e');
-INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"b8d234858f912396a71c45ebae9b3a21bace1a8dda0827b9e8a9b82a47cea34d","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'de4297d553a3f30defddf9b78565663f924827d97eeed1e28e53dad60920de40');
-INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'edff9a6fd33a82a20c07560a5fd06f29fa7cacde8a1af188f0473cf0a11c2ad8');
-INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"03209d67b7b17a0027728b8940661ea37594bc07cfc6780033aa44c481f48af6","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'54142359dad6e4ca8dc104797ba74328986f8d63e5a63b8f5dfce9be6e04f001');
-INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25e061e4ab933ee2933662b1d9421899c9c80bb361be80f5cc37b31313aa36db');
-INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"079f23e8476ed4f50d9aa11b1dbc3ef842c51bc46b622f75c06b06a62388e701","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'510e9b4efbeeb30ec3774cb82ecb054dbc8b1ff453f7d25e34f8416a5dae6e04');
-INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73289528e1177941a224f1be999eb430afbe68295f022afa8e829066ff5e647f');
-INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"36a8bd5e1cd13df3238cc21da9490b545e51981845daccd2d7c0f3e7476e9f69","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'78ed183ced251625fbbee8b5741ab3aee0a325a484bd65eed281fb2ecc8af6b4');
-INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e43f9466b4c0b44c290173a4877864786c97eaae304c78557e211aab8a206bd');
-INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"2e5d68dcda983499b5f291e65d92baaf171cc830e18385d212e6c66e5c8c7da5","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'b598bd4094f6ff546391c7a708d873350c11c202f75e7c2a0bdc950414128304');
-INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43ba9ef608b5831c880c7c61c16eda94d69a20c0429d9ea8ce89f81ccc37666b');
-INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"0b8f5bc09af225c25136f886347723693fd43c83b4a0602747803579bd4fe100","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'1d6a8b563e98562cd6e3e78b07709357d0a1dc5ea33215a0536759ba775a4d9a');
-INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fae908386c35374c947a85767234c9b4736644ad518991ebe30cfea1f0c6cebf');
-INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"58b268d9c7d1747b50ef4a6424d3e57365ce66afa440b9b365126437c676d3cc","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'ed09141aeb77f2e1e4910bc5a79421143119c38db89df7d3d90cb5ce1e3f2d8e');
-INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'833246bc69d118b64c3cb2c6253399369ca697d270d8df233d28d13dc508b963');
-INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"03e581edbb659df8a0b7a2996d0ce6b97f1f9dff6d10a7d1e9443f5b20836521","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'f85eb01841466eaffd18cc531b393c6299132d582abaf67a594c6745b536639b');
-INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0493b7052c60f74dfb64e66cbdbaea54a3044e9c8d8d2cc50d79ea2094e0d82e');
-INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"9c7ecbd39c0967b83ae38062d7674b5fc87e4330253c78da3d19d7c1d8e12fe2","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'c71bd18a7ffa8ed60f9fb71ba0d4fec46ca9f6e04aad4c025901209ec6cf1d2f');
-INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b3072a9309cc1651e858c2ec453961ed114952c2e7f6ca7a27fc681defed080');
-INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"128105377e3c494bd2ddebf06d4f7b341d300abbae44e42233771cbdb8f6b2f0","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'678aea37968f5bb211693767df4b4d30365c334e1cae1a587d941bd47fbb4c06');
-INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1589ad709fb59c16e0d83b91c94034a4bba7d0b978733052e845ef2b514df3a2');
-INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"f43ab6ee98113914d6107f8950d5f6fb8affc0764a4723aa3da76bb60462ebe6","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'0eec9954a5cd2b18f66ee814a97ea58c80e67ffa0f1d0ce5eebfe586c2f3dec3');
-INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c855899c3a2e5e608f3a377074abc367b93141b93537d64a6a89bfa901c46d9');
-INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"36833c9b3c6ada300b80182e1b9e78ba57b16030c2350a98ae24f85212a8d1c6","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'c8301087b578183f408a096f13f8be71a5c92deefcd92dc4f0977110a4d27c28');
-INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eec3860f4d6bd5225826e12d432032d44980d7573e601e69580e29f97a234402');
-INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"9436a06f0aa4299d6d9dd6eeb34a34763dc1571873ec7d801504482f84e0453f","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'9fdd35401cb53002285f4131f9a3c9eaaf0a3b2d472c6e3ed9fe109816873bfa');
-INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09b14051da918335a116d71050b1bc335b242036c447ae76823cef87f7774f74');
-INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"1dd11ae205fb0e3cd0e40f6b38f828c87984aee77d866a89459b419bc35c8b91","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'9402df61c5a4ee0deb7e508e81e0fe0e1b4498dcbc7cf56061f81ae5fce40d9a');
-INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e9619ee7abef5c3675bb9445eeb3c75ad6fa8e86211119fa33ba30056d5b5d05');
-INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"2959b2278c2b1ec51545610be3ffe8558ee5b8d21654226a04e99fbfad17cb5d","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'c9d06ddeaaea2277d3485d8fe86396425bb1b60bce0abf820694c615f6bbf3d2');
-INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc60e21e4d4c7e41e37dbb40a51081c6dced640d8d2102424c995bcfc025e546');
-INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"efd4e825c77a27f6c0d8b18c54f144166479fb35ad75dbab439122b908f4d0b5","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'0e23a0ca5d66463e0258c07d1fb9f3e2775d829a145d6ee8f8e9c158d7f84e8c');
-INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eddac69ec8928a10bbf34486895f9f4d8aaf28be0a2b95eeee4bb23231f9eb8c');
-INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"07a2801c71185f1fd03a4372433bc536c79aaf46ed374209a41a1fce2d0e9ff8","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'1adaf164f9ed06443535a61a703eed7f976a4b8d4d27ac422a70e8339901a3ce');
-INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46f8a735aa8642c7562f7b6ddb2356355b5a022d9423dfdb0c0e11a83489b7be');
-INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"d652cb4035428a7d0c6ff73d8f6b3bc341ebcfefbd5129f45d77d9a4c63648a3","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'0abe26eea21b8f2162b279d1a38ff8cc254488412101d6b8b5a86a55c6dd2a44');
-INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00f31c6fbc895a84108f618313674f5f0f4c98b0d221820ee339d588e91aa458');
-INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"03298834b11f7cf4a87e5717022fea72055bc47a6e8d0f62e4a9810f4cb96b82","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'24e54922cf302206d1f40e743a79bd2a3796afce80fe0ebff1901a08c3be4c9d');
-INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e364a839c950b776a2e4e5975ab05f61bad1f263a35c5b2ebb7c629db59bc3ff');
-INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"959fc4e9bdfff5818ca84c2a68c31868f6d3bff79e7dcc5df9da122959332a11","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'f57e9ba5ffa57b2b842d1fe3cd6258b10d237b0644fac065a4f46dcbcb25f5e6');
-INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'591cd40182ceecb70b6a60c273e570050e820c83158985902955bf67b963dfee');
-INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"b540fdab5cebac778cf187ae4e15720474ada921e9ceaa1393176bd2a4b8a3ac","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'8049602f13266640bc8d1855459c5618a15f5ad21e95a0253e4eb1448c89298f');
-INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4732a6ad258167d7c340ea7e89790b6572183c5cf9f743ccc67dd286e0dd6593');
-INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"c5044aaa4b6c6310e113ab4b8d4a06108a09e57b6f082589aa84210ff6ef74eb","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'652a79720275267d30ca2241a6c001bd201f4b07968141ca8159d2172e23c6b8');
-INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32143e307aceff0944830b4e5590ad62e99ba3fa7dd3c0dd4aecb3e206fec84e');
-INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"64b6eb076323d0a896145203b0c7c201c2b57511c3d85d7b546395d75ed44a53","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'99be4412f3ce65244351707993356b8627b29ef71da3683da187484d8d1307ab');
-INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b5dbfcf0f9fc74e8952975616a0998dc888154b2b29635f1b9a2a377fce3ad1');
-INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"d9f33ce31a6349baf6626faf215023a0dcaa381fbbc85519a36790adea83a30c","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'81dcf7b86507a69fe619364ea6bb12c8af16313b92a87130fbf50b0a68f5429d');
-INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24fba9fcc7cace9bcef344f29cba1eecd129539d1a7974c49eaa3212c57b939b');
-INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"9174a71d733b2d1bf9fe8554ee25a8f90b8316b6c4bf8f93a290c8bcd96d7482","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'04a50176e204756185d472602ddde9d872d70f6f644f3ffcc082e964da9f86b4');
-INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d229076ccd46d2c32cb0de72ef02c66a2a659c7bdd8b41157346f7caa9fd876c');
-INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"26bcd4fe3cc5d852b6ee428aa6d8fed7ac29d4870aa3765afb64a7f606f34f98","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'6a44345b4002d421aa2498dad8b08620e82c3c09680661bf9cc914ac469a3e2b');
-INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37f352436da294dabd2f29e0d73092baac5bbfeebacab219fbe05bb8cf521af6');
-INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"a90b36102b9796577c3433977637279f790986193da640ed70d16c82dbcb1697","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'056fbec7786f353ed92e457397f44ed73d1a5603db093997532352a30efc161a');
-INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8557dd168e99bbc55e338170d798d75794a2b227c709c207f9ea8240203a93dc');
-INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"387939cbc42aadf395163de49936ffa63ea379a764238cedc0a52ecb280a8810","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'28ea009310b54f935563d5eb941759c73d669dc119fc4c38134aa8c07e6b763b');
-INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfbd14bbb53c0f0882343852243de00a9fccdfdc6ab05b48d4938c1c9a61067d');
-INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"12bb025b6e426c682d70a6ae543622d706b596d8d1848c61b0fd456113766738","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'136652612367227b6bbe03dfba46848ad352b9427fb978bf23012628b98c7444');
-INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dd57b03ec6fed55e4bdd8f003c77d9da0dc6477decce5fb2b9003a7d17be6da');
-INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"c501a04f979e29b0f67e8c4b2ab0cd68bcc610b98eba76d64c28e426e9162334","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'3e764e276f42e9a8ffb529eaac3afd3a0a0a4fe6acf3a2a62dee077322c2a2b4');
-INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68dfc8be224651a56f6395fba5522264828eefe60dfe877971a2e700fb2f738b');
-INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"d0dc75e494d5935319620e47fe5aced48a36185547557d7ecdf4105ce3865810","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'f4ee0365d4956accb7ac16d4aab3693e59cfb56accf260e686c03df1fd70a3a0');
-INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50d6f8b0601306034a8f68c3a60aa515b5db648b87550ba9ce5efce1be45bcd7');
-INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"021d83e2bcd0861be9bda8a7c6543a42d5cb2b1cad18986155556c784420bae3","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'b980fbf46735bb8c984320171cc2b7a7f91c7a2d0ccb56020d271b13b827715e');
-INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'278d2ceafb71a155ba593c78ff683af8e9865f0286087f78b3b83d706b4bbf57');
-INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"f20bae6583a51b6e9170deca1b35559f7a93dde4f14718fba8d132d3fe0e6322","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'43818a7d902bc72b542d9880abe1dbf73daea77016a8f7454af3790b433504c9');
-INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f663810b19b683e1852ec0ba2b8d1b207f0592e109de332e25fe6ac51e91515');
-INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"d9519ac42fde29980b3bc45cb459ee7e430192d8b5780930877da95a6510c14e","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'fddd1bf5154fd1757a083bc8e54d4fb6fcf72787af8e03de258ff58a6b791ebb');
-INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'227b2b5d318649741c63e1abb4067abe31cea727ba7b4118e50eb864caef9ee9');
-INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"004314c5aec356c4085a994e40d6e7af4228da1e3ad37071c58a406c9d79ea21","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'e4630d4fc8ad1929b19e991aa9bbe72671dcd2bfa489a8c658c8bb49cef424d7');
-INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc57b48798c9da9738dee7f56ed55696c59b5abaf5292c46dc0ea92616169671');
-INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"f256e29cac9ed8fd9084d5ba5c67dcf17a9cfdbf448002b4d23be878f8f6c431","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'4df1f7def5c4149fc138704021baf3080abee31556ec01c187a0ac5c553df844');
-INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0d32e642c9d2d6f135d84b4d508f46c5a46c0685487584bda065fb75ae2b9b3');
-INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"92054cd8a49ac6948cac199791828d3caddd81f90d220fc2da94230f776c98b1","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'a55c827a11db7d43db88e7e3d9cb77457c4315e7a5f0b7c9bb62a67ad2dd64dc');
-INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a2daac7a49b61fbc639374eb9cbc6f342697da05c4d6e64ce3597a072cf590e');
-INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"5498543f7056d1878b53eee6bbfbfc859729deff6215caaf7b228b90c2ae0716","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'d5555b5d18c881e1e098c40a44588ed5a5cdf956ca1f0919503cce14617ee2a3');
-INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'efe242cb18d35503ef1ebb0ff857d0e212e784b825f3b947d80192d515cfce21');
-INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"a48928b613ea6f3f01d29fdf8a6627a62af3454eeb3fd706201264e41ad28e71","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'813103e24cd207b7afbcb40621fc4fc3113a2c188a188016e1b6cbdac81b9dc4');
-INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'224c205f3190e4b29bd7d2669f4803b6af58d938cd1601960f1c278b8b5d0afa');
-INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"1e5bb681e064d631c8fdaee31e42df684856a141bb47c387a509b4c888a83644","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'998707ef2f6195aebdf1fe22cf9700733a6279fd2a96c9c8baef21f5d835c6b0');
-INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cbe7974724005596c6f73d35509ec81f4bb7746273459f5a973b79127921da1');
-INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"58fe2492038e1061f1da22695198180f159b434c09fe8184abb758bfde7dd8ed","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'ce6bed607fd9ec4bb190ce2cb78e73ba834ff4e8ddb8e24ec4e6c52da514f4ce');
-INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'053249ea3e836b40f2dc22bcfda952cc208499bc18c291bbc7bb4156f6250d67');
-INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"dc119235a0d3348db073f20e5edd73ba7886d07bd928c6593c8b531697a2e8c3","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'5c3a6e61d61a67486e937767bd1986aee1d7b1f21440e4a85f0ffa555714af86');
-INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ff2a9e6b311cb7d176d0f284a18704c2facb8c11a39deff666128bb52f19d15');
-INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"b91883ba3c87f07f7f3075cedc509a164fc69cccb3f7b4955263f0a427fa2555","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'aa3ed0c2e1cc8871c00da99faeb305bae7539bcef32fcc5f604fc6f8df986ce0');
-INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4ebe29107c0f7c86f942858a44b0d9dd582abd67ec58e5b01564c7d5c0a0667');
-INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"8c30b4215455a7b5c4fb35ff4b675702192cf87e37cf3a89be543fd46109e8ca","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'667e9ecbacf8a03926d6ddef62990eb09c25fd1d2e18b0c98e12797d244be8ee');
-INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94bdeddc6d36600d721475052bb85df7a154dfa52ceae42494a4146b836062a2');
-INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"12b9c9f7b4c06692d2e1c8ccad20ac1ad2be2bea92cbffd939f4ab8d28374fbe","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'27104993e0ec684a6bc4f26b88bec7bca070c09b98c57d215e998ab254fe30a0');
-INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee5ea575586ea93d65c881f2b55eda0e9a2e4e69cc25a60aa9613d3f2de43aed');
-INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"0ad73b9f29a65b6006fab73449dce8503f1afb74b31cc14d7cbb873df28c48d6","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'c1abbee3e6f7c234d9f980d6ae556c5dda03f8a166ade9a6a587a63cee11a5aa');
-INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'107e50b079d522cc9c8cd26cc4bc82de392a6866d881244938d45d6c2b3b1b94');
-INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"58e3369f4b854d4dcf2b03cebb0d9c22eb74381bf8c4f77e46527f6db4ff9205","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'db74f5c69108507e9bc1a3770b37b7c170c22ac2cbf12070336c40479727e873');
-INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cee7865fcf0e281bc9c918e127b2eeaf2c849faea2226238407eb92a5c56da8f');
-INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"35b3a89b3adf80381946f70c49cf74fd946b88eb9d243217623c04c645c6be63","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'4362e6df44465af97e39090a83223910370cedc48961a8c5defc67c02574d269');
-INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6f5a53584693bf96b65e0a7ccb4e338906d4753511833287efe5cc104dad1c4');
-INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"c2f31d665dead39ac346bfc8a6459ef003c35ebe858bf2273cc3a532df345a5a","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'4b2b1fc838ede0d37895de4907bed41072a8bf67905a87be586e9d167614fe77');
-INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0d9d2eda1d13c4d67d63527c890ab938ba2be9ae0e3b07e10617bcfbb66825f');
-INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"27744046c69e0650cb385182b7b1518085f196c8c2fb11baf13661d2229f4a9c","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'7aeafdae020aae38668ebd016589814cb04b5498d4c97a7dafd7c3ec12111945');
-INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4a64205dcce29d9fb5f19152e1cab12dc6a427715109ab6524f22c2fdaf40cf');
-INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"d37ff480b33c750eb958bcd17e37f77d69e5ea91ba2cd0fc5bb3368e788691c6","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'c14dd6f394c912e1f78b336f3284d52082fe7ed6319dddf384b084914db8818f');
-INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ffe27c15d9e5e956d7985cfd1f24c143bcac7d1f261d5273683f127b789ab79');
-INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"5656eb27fedc0aa95a07805caadab9816feac61e3a7e97cb67cdfebfef2d3714","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'8cec667806fabc6114214ec7edd56ea2ee5870f498726f6117cdc7943134ef2c');
-INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0a3bd6ad2960cc97511853f1b0d13a166f37bf2258aecf585248253f8f9539b');
-INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"df2d34002ae7a0a83629c3023a29af627de3da68afd4369cae55737968d1ce5f","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'0873de0766c8f55947834c2a8414f7f902e2b8ada322b89333615c866b66cb90');
-INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'075e4b19c21f11938b6a336b835bbde550c25225611ab286d9a94ea1b4b2e8a8');
-INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"a5e5e3d49738214545b92d1afd827fb69c457af8294d891460eb14ef72bbae9e","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'39de15b0906f285dd0fbeeae3bc4628dfbd3cfb2a9368b899394377da5011138');
-INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3fd34976f32aa65b9dda608ef4c733fd990d287eca11a53abc5a5b61d2bfe57');
-INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"d06a0daa493d2c5c4a16315a0c4e43447a5cefd995df309dcf6709a2631f1fcf","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'6c5b83e1588beef9dc7b8cbb1c0353e5c537f06c1a4db4cb42292e7bdb2fd1d9');
-INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b01692d2dff52d5e66dcd964325f62e4c878c981de6b9ffb8e7a751665497e3');
-INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"f1bc84e08951dedc768f03db9aec057ac21d9a3eedbd644018defb10dfdd028c","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'489b8aef05f4155e659238551d171bed022d7e16f194ba6c6deae0494999c4bf');
-INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26dd237048f02e8ce62d519c68f2c1097c04fa1d97577b495a0a289cc35af9b2');
-INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"31341dfe24064025c6a6fe45b2443ca21d461280708f8070481a46a096880844","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'3a664b4c1207780ea6e620db075ea023725ef4db1723c6eb47e42ec686f753f9');
-INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'828085e213bb8e1cadca2b88267bc0d3cfcfca20d5450a4461121b85172be0f3');
-INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"f153cb888d8bbdf63f4eb45b9cc3b87d6e5ab845eb202deaa48c9d57ab78f23f","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'748038cef9c1ab529f2228b799c878304545ee4ad5904503318831eb60d32593');
-INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1ed7aedaeb5a9983b62f3f1dd72027c5d75cbcf0760277cfb263439c731faaf');
-INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"f5a8f5bd5e8cae447a96b75fc4b9a0d70e818a9654206cb23ad8d5ea07e92831","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'54b1f822690f2b4f661af89976183d553c21b94bf87de2548084d54d386d58d1');
-INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1d2921595ccdb876a4e28b4fb28d4b64a0eeea2b92ad563738fd8694e95f6c4');
-INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"c30fd1c2fa3af21d093e353716fc4c1e8cde49854002a411d98e2a0e76211911","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'63aa3cee9970aaef8958129f764ea591910003ac81e11a0e52ebc6b075709d1c');
-INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'319a00963988f39618da24696ff233524423f6bc98ad349f7a386787cad424c1');
-INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"bba3fcf5f4baf2b28664137cb7ac723d03999e9a17eebe6e564e15300415e455","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'cae6f4444221a0827eb089426a050994cde469b07e0a62702e02322309c03874');
-INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b9594d2c11e63d47e592c0890e30fc4ee66843edb1681584cd2fc9c30a0031a');
-INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"2d5aba60683d839b1579c2b69089c00819349fc4f4b6abc5a48f665230f67c91","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'b7176545914f2bef9d1f7553fe2dc88f0a9424f6e6a80fb536ab41aae4c5871b');
-INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85ed2066e85009618c60e347f8422f8251df8041811e4bc2d58781750862f429');
-INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"52e5adc7e30dfef0bcb7404f93c28177366b172a8f5c8713aa69c712f479b5fb","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'939b0e1d38a62579803b15b7e232fb09fdf265e97c637481dfde780dd1b490f9');
-INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b20ad12a28306d0393df3ac9cbd179993f64d7d5a6127ae81cefb34bdf45b07');
-INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"a4460c33d3af7eaf48cff39abbffd1b68bba521b1e1f814f0add5c91b00fdb27","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'437c32dee0983b710f9153da9d5cdd5ede6a4625f520daef1bdc76ac8122db63');
-INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'edd42cabe729da6afae6337663c887f8f04eb94bf613526bd0be0ab7df499355');
-INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"4daa321a8062e35b68c85d63c6c71cba86af28cad34ce1ae7a4a971f34addfcf","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'5ac262c0b71bd5cd645cbe471cc55d2ad7f9a9110a6f0a56a60936e19a6f64e4');
-INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac266d6ba19abed5ed4cd26a7dd645b575882ed265b9c8a0f3bafd70331ccaa1');
-INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"3e156c57def9f6dcf24682ed855311663d61079a0422522c3b660d80a4e88430","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'5b632a71481e8bf1300ebaf8169afe2a0a26564a06764f173d12b15318f6919e');
-INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80fc58bed5759dd8c8ea67dff9ececdbfddd533d7934d38a53db84c9295429b3');
-INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"f42264c5306769fc6bd1bd6f1955900113ec16b625e06d62ff3001b2e6b69707","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'5b347ce289192c5b705f5ea933460f401bb35150592960aa2159bdf3bff0e0ec');
-INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc2e98eb84313d5ce465be60f1c5985172a8ce7ee861e8a8c8872c5eec784380');
-INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"236d34af3aa5893e9aecc8fb65c1efedc4f4e38874a2b20b933c973da4b4691e","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'832ae2feafbacfe2086a03ea78d7f019f28adc7f684d40283197d4c1b8dacb99');
-INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ce68b66a1c947d95cd31605ef1331ac27dacd3bfb3844afb5f9a35083071816');
-INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"a70fb335be86478d6730dbcbcc8d738e5e3f55608f445b5a033f9f5800951167","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'c4ab676b14505d11f21f05ac661e952588766f3ccfadf4b169c781e7ee27606b');
-INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6486590283584370a433320b46148680eb7bc61685b3b8c7c0e7ac16bc7f6dd6');
-INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"7244980c44845ce8bd26268b39a1204f014f6c18f968f57dd2e765193b71dcb2","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'fc048aa91fef9cc58817a1bc83fad9b0f906e38cd957cb030a85901ad5b54e3f');
-INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84dd549642023c2b654131fee5613ad2e97c857e32840897c4b8cc981a0eeb01');
-INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"0b2884e47006914acf505e50ea5272ffeef43e2a646cf0b1c57afc47bf943c5d","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'c3f2afd1371647737db8401949f81894f3200169d26425551e3ab488c45cae2e');
-INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'16e20ae8d506ae4aef0c40de232f4aa3abd0f19969206665543774ca2d1d278b');
-INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"ff50d8f5f8dcce283b687ce2aff46b5b1250eb43a11bb5996164444879dffb31","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'52fbfc186a4863f6daea6f011bf3cb165239ba24fbaad6861433b5815f9b1b2f');
-INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae8b3dbeb0745231dd64d0429601658c351e252a4e8056092d51b43f49caa643');
-INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"02e7b49dd579b3355aa9063b38bec6e6e749b3cb5882483d3b15886e176f0610","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'3e6f6557fe4b56aeb5c4f6eea1a5de262bcc57a29e23d5db30c54162a0cadf12');
-INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4898a0caa8214aaa40e630fdaf2759baa50e7b3f9793d4e51aa166aa9b1f9ad6');
-INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"25008bffd8cec7dc2c3ae13ac7c9e868129e3b9203911aa0fa3db14f5fc89a9b","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'147649185e22eb7d1c28a3ab69da3bdf1ca995cb0ee9373190d40e4dac5212de');
-INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9faf5f0284cabc898ea2c55e5ac79c635300f661e53cbafb9774fd012b65f786');
-INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"4bb8f22e461d70d953ff1b9f0ced8b1cb143ab1b8dc38bd3a1fe3fc803ccd40a","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'a1d7761acf6c243177de0d599c608505c5ebee596e47662fb52bc1d11351ce2e');
-INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3bed61c0476e008fd79342b4b314d0948d226f957274d5c95746b07968f3820b');
-INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"509ae7a1014f0442bec8eb032d144c64dc8a11e6970d0e32a5ecc4d41fe68760","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'86bbca1d706ca90721df1cff6333531250afa83b6ac2656d92630351818730b6');
-INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cee7a046dcecbfae2a140761dd630066f11e8d85fee3ed7760f9fcc6f5fe13e8');
-INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"a7bcd9f0ef4a4deb4603c21e799e2c9418c9a085af6aee86082d3c79a7b4d880","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'65b7ff2820dc2212d9ee4468d47f424b46d40a056f7b74f2b62ea292d4d23e30');
-INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a052a960325dd842544d4144699cd41de0b5353034a10299de5c507a6cf29229');
-INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"a0940fad3e49fdf8668dcb4c9d773e1a5eca6fd5ef23fcdf4be0ccd1cbbfe405","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'8ed876e8c98d752c330062851275a27dd892749cdeead4f29d396d4bea398015');
-INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'044b9d6a1da56bd6289c4072d25951d46e1995b2a50db8a6ccd23bde83964bdc');
-INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"4dd23e9dbda9e5647e194648a2be3ef8597c5f9c4c0e5c58448d4195599de8c8","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'db919f8ff9c06c5bc9c6b30fc71f65e071a19521fbd923432f2d2e3f732f8fb2');
-INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e33a5d39024f0ca7913463c972e32b89b124c1d5eee9d5da78d77b46c4b8cbc4');
-INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"b406c7ad8001546298d16bfa1f0e77b3396787dc2324be51ce33e9cae0c6fd5a","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'a8b6afbdfaf1eb814775c6df0aee9bc06b5504b92583480ec85d9ca3e5b12d19');
-INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'956081709c83ca009034000bccfacd7767621f393840f44f26c0aa955fa2fd74');
-INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"dcb7aa5f99cbb70b4d70bf3a360be2c4a5756261a8792856828a6cc1f282a644","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'113f909b7769bbf2f8c37c65079534501c2ff75433e49c67d65339a5d672e972');
-INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7370ab8abb168abc786831d8b5bf0eea1a53b9a2f27dcee6274b43a0995c95f');
-INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"0b50391ad17533ea1807be4941305ee75a013a8a5330139e36818f60a9f7d8ef","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'d83c46b01f30d5dd5f9d219afb798f74bc03be7ff08dae4abbdea14288c891e9');
-INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3f5020f5a08fd3dfa760d40d1d6d0767e3cd01852e025a93f12812a639e159d');
-INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"24b3947f5fbed58b6a9c47ab51ef2e654114be20f84935eaa908c9544e275514","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'d2009c761d687481595acf1ed08da01be1316dce2d621cf91f080794b260b739');
-INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c2bb49cfdfd9997238a41b41ea7b194f0d7bfba36813b058249d06f040fe39b');
-INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"1db78c9abe493106e75d3629d221d046e1d6194e44df8f882be38b521d33ab53","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'1b6f23733fe5a1e8401ba21f42407a878e2862f59f2baab52ffbd911f2681f43');
-INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4af01c0ca2b63324b4f91f3ad6ed1d787cbf9c2b35bdd95d793b24cf50128cbc');
-INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"b6d94000a7b7dc674d610bf89faf7c0d43bdc3e8f391f6089ded1557f7f0f286","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'3a94ddc27cb661df190c7527ac5bbd6e257cce085a7db17e8e99222e9dec915c');
-INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1fa8f76791cad2cb8d97036c9771cb41188afbdfce890e511a98f636b699a7c');
-INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"cc57c30a8b34a715c886a444cedd81ccf2c8be145642f2df64d376d0acf1e1f3","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'129f8e595a59207966e176c60fedef4219163ad5a8dc7c602c1a2c98ac070662');
-INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed524d1fe8e6a8753f49bba5b89d0d1f64d5b79a4b235ddd82e63818d849ef33');
-INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"b77e2a71e0857e990c1cfbb021c0a04fb17b64ec9ba48c60d49e3dd8ecc6b0ac","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'470094f29e2425ad882597ac02b83f4c3e97f8cedda55c56c0579fdaa4da37f3');
-INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecdc9786125cf4fd9f6cb615c2f53c898f3895c002401796e8ce30dd80694740');
-INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"edcb77f23eb738d688c1ea5732a945d76279766c4a1ee1effd190bf3f726c05b","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'6179d0fa06c3ec4c0430fde704c1d5e87853775f49a5244e3a42fc3840785e7e');
-INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c4e2c309e63dc58110ada76dcc91a75f63b2f35cd0d73e34992c2b5a89ed83f');
-INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"5dc738e17243a84b37564b261267924bce9c6cce7595c74d8808f0cf03432a89","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'84855b112acfadd4e1adb85bec3c0892675f603867764561e5448265506ab323');
-INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28071441e14fd21e0c2648b3c42baa896cca7fe6c1862c844e9bb655fa58ff8d');
-INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"f3c6ab9d0253858a08da5dfe893c8266a32c796eb2e4a6c4f64ebd4263f9250d","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'d70d7e449975611955a8cbabed0aa3e087eb0e440277deaab2c92754b9d30829');
-INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952a1b806d4dbb70487c81c43bbf8a468521287c30e772745cd4b39cf7553937');
-INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"40541eb5a9dfd5c5a299a13aac804fb1b87e790891c55b66e9b36b1838dc8dfd","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'cb1827a16748dd163a3d19da98e88092d59b747698ea490bba8020347cfc997a');
-INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc1e8add1ce90514e58c8924a9b0db2bbf3e1996a32c20b0b63e537713cb28b2');
-INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"7273cf6a0294acc31eea0e0a9af603500f59a9f115b3c5acd5cca992f185f061","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'1a6a59d1c8ba903c637ca09503555c0cec76c6aa55ee1834ff215c870272ccab');
-INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26bda8bdfedd56727627c6b1f56453450c965dadf660efa648a90ed9e556eea9');
-INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"b26574ea33e8a4ca0bd958b82248a9fc9fdfe403aa717a9e0ef31474bcc32e58","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'1cf45d22cfb69e8ac6069a8bb2813c8744732006bd9f6dbb2e73f53dfa09b92e');
-INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9d5c304b42171e9ffe253f8fa147c4f1d36aadf65a2fc2395c68cb309d4ffb0');
-INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"8076e1b2af994482a8868a28ad8b5d41a5fbe2ccb349d65404e7c0dc59c6dd2e","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'1885e90973511208f4a1ed806ac34919965454c1d774c4e4decd5b91152239d3');
-INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'805863fc1974b7abd038080d32d6f18c5d7db718d30d7ed30f3c88612cf86eb8');
-INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"3862df7b71134b605229146563a78a5ca695a37c4d6da4b65d21876129c80f1b","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'2b63f35e771903f42453e618c18175d0fbe152fe134374f342ddda1320087bc9');
-INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d8baeaff01e8ea04eff7aca37b0c993b01f020725a840198d4d2203b824187b');
-INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"3b6505bd17f14fef0f06cf95c6bd3d3d759479674824f738b1c7fecc151b9b44","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'1cd16323d7804c82c87348309121a96a43ac276dcb166bfffb9bd762dfadfd1c');
-INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa292c3a60f644d160bda876222e3c47caae0b16ed08f3b7c71e3d9c7e47112f');
-INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"c052edd088e829c9ac4ae5ca349da7067bfd5dcb8dfec11c4ec1a635d3c8c9e0","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'c22aaa3b1d6f115f609d425f7d590577d0395d5853b15f5b623c756cee574919');
-INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3dc914bd4ec7a7ddd272b6a94aa1cdd84a54031a5b04a107ffa743804571d6b');
-INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"3bd3565fc83516439eab9db5ac6d85d8763d16c16bff122cc6e70b5c48246030","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'60d6178063f4632511595a98a9d31362cf64099d23acc534d6747e29032ac37f');
-INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66067ab5b53982b729427f21a3d54213f0db8265c9c5ee4a425ba72fe4ff9f80');
-INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"4b488ffd95c4d443b431c66d9d4442621cfcb3831e920f8f1d291501e2d3eba9","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'f3a1bf86d21a4b8800c139ff5a90ba282960ff9d204bad1f427c61b71417e47b');
-INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74689edeb1b1f0c30dc64411ea70defd384ef031fd5ed7e57fc874a95524c897');
-INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"5b336477cd043069fc94aaa9efeec573f8ea2f1915382602469f2ab6bed6d717","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'059aec2386690ffbfccb31121ae385112e32113b6819a546c56080df6b7ee2fe');
-INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1724d287b1a6a7548060f25e863ef22310475569cc73f3f5b8be6c8492cb6ac1');
-INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"d4b6b0de6209af38f0a99ee7cc1e629039233cba66bbd546aa874c9b5ec949fd","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'4755672fa48733826b36ba5403e5aa76562d09c8b49b335b18ff3339333cf8b8');
-INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1782c6c7e4e779e4120f633d2b6577409f9e7ba3e811b0ddaa6543329f44138');
-INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"9f34557e605c362c267d01a10c0e1230b96311675cf37ac22fefef3e348f90e6","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'d1178ec356ea0f8273d3c4874e29b91865fc7c10668c493fc7b84e57fe35795a');
-INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0376f314f81299d0e129a46af14c8a6bf2faf64a19771f11f83b10f6fb83ab29');
-INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"06ab0afed2be45271b993ebf500b3fca4df8e920441577bcb1842206129b58f2","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'976b8750f2e23cd550d92545c25e0e518c3de5482d09f042e321e0a86e909cd7');
-INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38a31563e816a6ff1c665c98818b1c18863cd691abafee6457db8473582bed02');
-INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"471dc3888257e83dc49fb7acb75a3d327ccfc572fa4c2a597f68e97ced7b706c","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'c477e5818999b464d603db7cd6f6d533c5974484d60ecf8f4e85808a5c16e59b');
-INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c651fa84db988775e50b96c1e1a8eaa4fe6e445be7df78b1f66d01e56c97ed12');
-INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"d0edc182ab52e7db475d67edfa4b8d9b4d4bfaa79351ab7c7d0a93cc1e63e465","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'b3cab3f27ad1cb4e459d5a678d609a920e2ff045aaeb54b24a308d35346efafa');
-INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3424406e6e7a3488e5b6cf332299b875fcb3f67658e82cce1a2ffca758d253af');
-INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"f96452fa9d526175036d137afc49a849f0839c4338d29815ee3eac02e3df6f91","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'e06c59b644b6f7d0e076c9d56760c3912a1cbe747c52f20d46e4aa7f3f42487e');
-INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'85941b9973080b70bbfb3bd84cf0526f2fd623e07eed264ee34373160882b7db');
-INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"cf505f0c309fbaecae7d9e525557f8d1501a3a08d66bb8a7abc8d2a8db721add","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'09c51419799faac96bb0b74e78bc988afb6f2677e4a6c3048d450c8f00349e71');
-INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de9cb3854db056f8d79c61635e16e635e7fecc38cfca3f93cfba3af9caf72fd8');
-INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"af696ec589d2b95f36e16039d388a57c38eafee5f3de5596a97f3c823c77f892","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'ead46ba2bc4bcaa30bd0d83e0c3f178d7ed59b40c95206e9b067aa7eb89d8be1');
-INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4cb36933bf1336747a87535e8fb492863efee4bea6256032817d8b1f007a3e9');
-INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"ff573059e90f4aade75d1f2d950dcf046ef2c1217b589d0bf2fc9c38c6c42012","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'c052ffbc9dcea1b669da1f9c24ce2fe23dcbbe989a10666eb99d34e4d018a494');
-INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6ee8e5a8544d7142bdc010a437ac0fd8b9d0b405ab46e2f012a41739aaa91fe');
-INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"73a44e99dcb39be095771e34c74ee4b6a7a0819207807821d621545ca4b6a91f","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'98e4db07cc27002685aed4f2e3f44b5be513616338c65cb41987b3897d9c10aa');
-INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10f9603f860823fe7c0041b7b32ba493f4c512bec7f9897e2330425f65ac0037');
-INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"3abdeb2a4902cacc07440c8f176576963d48190c3e66bce2ccd97cc15d79f752","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'9601ef4e1f7a97c38cdb3fb12118708212658e8503314a6b2d709059caca0865');
-INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'19595e1ce63799e1cf17ff42e3c9184952cb7e881084aab50b30ff0302cd37f3');
-INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"0d0c1c139a2f9304f5111dab26862dd88c97f061ee9ec716cfdfa8f101cf9f2a","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'d6a8b4f2f588b157b6add892ef8698cdb07525e0e329f23ddfc39d473217f839');
-INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2314ad34cbd1df79347c895a6458f310419cd578c9d9a0443bc9531f4da0408b');
-INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"a803ff9c9a83a885463f0f41b774b09c5dad9ef8827579499cd94cc6ff218858","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'88f1941ba21db63ae1f84c806574d660f553d65c1fd771ed235dafc2c8a57ef8');
-INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cdc313f543be54b6b769ddf6c7ad02397acc8c4bc0f8a23650578f654b9610c');
-INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"fe10c5d1f27a192d9c72377818077b94ff7fee46c54b8bc52cbbca50743ccb56","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'73b4137e48f35bbe4c0d2c00a3888ab72f692f0c3c2e1cb0d6bdbe40aafba60d');
-INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e5a83a3709d68030e76a7badcda8b4ad6e4bd8983349374b59e7b4decc36593');
-INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"c654695d92ff853e15ec8399c1e5fd6b552b8a2e4da3167f792e2325b21fefa0","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'03f85888653e99b5a9dc2aacdd84836d2045b9de61dda1a8bb487b61cfa423ed');
-INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f59c785e52643a9495592d7e37230f5fe4fe798318bc43ff09fa97efb958f17');
-INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"0d9072553790491007aa13b4d406831506f7f770f8ac7fea5ad42db6b6cd2b68","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'b24a614acf334e08f3a782cd59720fcf8655ded14a62bea864371eebd026fa72');
-INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a253f70e61b7c772edd20fbe80c999a4b8bb2b5f46f273f2140d0bb20db8ec29');
-INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"e0a3b19fce605701f1ce2ed25cde785ddef37c8ae11a1af97f32f89a9faef45b","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'b0330d8ba67c5625acc70e1ed9032a98ca97ac8215dfcb98e4541ec10cf082f2');
-INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00285f7147b1685bf056dce48382d3229584aa8ba3f3e84e6292af9b0909346e');
-INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"f2ce43aa9e6374f95a9c5d5b55de0396da45be6575dc5223742c2d70369bd00e","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'9e6bbd94216fe3dad3023d1df951cc76d47bd6410e7ce0a9010c8a5a289fc2de');
-INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c71cdd430d52495720f1c369c6a336122405f4ae41c7112e13215da86f29abf0');
-INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"cb79907543638b77555fac7568f2f744f22ce989dc0e7654fd49e132eb7666c8","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'c4e20a73f84e81717e410e545d0c62193973ec4d1689172c8e7054e00acc4fd5');
-INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'813fd24841da041865bd7958ee50bd8885e32595ae8714e8bd085907df87e1de');
-INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"02047850f93eb91d0d83851054da00ed66f6f6c0fea04d627866f6355be4273c","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'4a2b5a155e5ea16d4f79c4a78d0e4aacff94e2b739cc37b303e98d4222571624');
-INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9077a26a353bce1c4ded68e69ef8dbe68a119a70d513e545623c169d9b797417');
-INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"3d6595616fc996c9fd880bc5b227a7e2d436bf27f6f06ab15cd456c4322fffb6","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'465de55cfdf746cfed472139dbe66784e3f903171d58dbd6730a84a26692079b');
-INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06c305fc5488700139692da3a31a63f2888a63a66c5ed351ce8c0121c650217f');
-INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"ba499b294c5cb3d50626ad04df807602e4f3fa955ca6b35795202f437182fd6b","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'471449da582614e6e811bd8bb19d0df17552ac412dc4f468f70041cc207ed748');
-INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c69af71feaf63912ba5f8c7adb62c082aac76b7758e4ad81ebf5ce92980eb514');
-INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"a57bfcc468c3f5d57b1b178ea7cc8c1af55f42867d0ba5d88d4e55b2bc79fe02","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'437579be64c3cbd8fc0e1f5be300c388f731814b7db704fa06fe44653feb73dc');
-INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38bfd097cedf658884d33dd3785ccb37ac75ea4b649baf158364d8807650ce28');
-INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"7694e14e12a15ab6aa8143f1e9fcaae46b1746f51398d79a4f6be6c3137d6c89","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'cde94367a5f6c294f93a31ba919980d517ea236fb5dabb49eddf8086c8357e35');
-INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'108900642fd9519e02499eb0acf7c8b988a03356304d1085236c0ed593152cc8');
-INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"226e74766ac5ef3a15e7d38c05990871f92ef80cddf954d17759d2ad2ea59d02","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'528f264197daf1ac29cf54ee9731dfb2215430732af3a28e01220e5308ba6b58');
-INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6c9753c74bbd96effe17dfb6631115ef366b62fe111da6f94db29c1be1963e68');
-INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"fe3fa4d5ea7f9f18f6564a1857c7ce23e418e46aa5b63b3365d6cf73ab930e07","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'696ea398b589cf3fa07522cb53f80ab981b7bfa637fdd2164e3b01a49270335c');
-INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ad771fa9eb19713c4bc17c1e60e25edb8192ecaec7a3d6b72d5f67cdfa98ba1');
-INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"1eff4c9279cff57e13e005fad48c92f7f5bd928e4b5a3d7eb102bfd0bccf353a","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'d1f211f122fe9360d5c0b3a0e06775be7a701d21278cb41eeafbe64502e46bcb');
-INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4ac045051c91e59c7c2ac0e01d456fb1a7f20e4c84376a4ba3f69873db802db');
-INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"61eeadd7e8f4c94b41e9f3c67bad3ff29cc1d19f580114b3ca3c2a929596c036","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'65d7a38b18e3613675fe753e20445584d74280dfecf60d17628fff0f2d7924a0');
-INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5df5537c5359d58298ee853855dd8b6160f7c9c78353355f944084ac43946281');
-INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"0b46e8c3b291dbc65e5a2ba99739bea530eeed734b7cbd0248c3b0ab06e3d817","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'efe69c4fef56b9ec2bc496bf9e2be018e1e8dadf0395837ced13b3de98e9a194');
-INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f69b3474ff3e9034c270c54dbaa1db45f088e747a2e1c5aa33c685634195c59');
-INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"5771cf30f52a621216658854604973564d9a3a5b659986d3f5ab042a8a4a2674","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'1b5c949c59de9420fba4554271b75fc969892d6f7863efe16aa6370f1156e037');
-INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b889bb3c64a39daf4340032b9236c4e37b50b4dddb879a005b2e9496eb269ea');
-INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"9b0c7bd03815d2708a3d6038b3783da0dd241e75b6de17402e89a05ec76e5222","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'e2e3e267a53dff7a250227c544014df8d9eab3a1a2896055b66e5cc1cc159f09');
-INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d72e0d4347b8ccaed36952eb52bc062e62f2df7472d086fc3b98e6e19a0e4778');
-INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"d0116b9fb089a2865d1425244075ef65425ce9e5f0f1b70fe7cf97e5ce6b8f47","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'e9aa72171fb87b6205c63540ba8c151486d9e75538ec24f73d17e60fabe3e452');
-INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c3bf24484d0a9b997c09e77108bf76d427966c8d3d0cd21eb06c4cfc28ecdc2');
-INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"2a6b0c1cd6ba6cb2fc95fa6fb0ce6369b7959d73680cfa1a09697626bb48f4bb","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'85e15d192679a3a848b3a43064314adc26b218a6eadef495171e1c76e052ecc2');
-INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75546374a5159dbfe12909fdbab31f235b5614acf6e67b896bca68e277b99693');
-INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"af3dd05b7f7751705f9bc0aaf099568289d0cc8a62b80cb8cf957b67ae9ccdc0","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'f100902b33d1b7d7393d1bd89a8707304c3ee6e1ad76b4b9276b7cd99ee39110');
-INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fad57c9c9c176559896028262ec33cabfecc91a62132917ca30be13866fb8c6c');
-INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"071a2af66f03d51498ea342dce8d818d4b2df9e2e5fb7ca9344988ae7676b0e7","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'dcf62ad207f7ee34b9fefc9c1765a20d3157c0a7899ee3a5def4734eb93e6fe1');
-INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0494f0c85bd7849ce2807494697ea7c9add64ea254866840b39a1a0c7b67c277');
-INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"54a59c638ed8ad1a8b9d72d0f9afef9616f7ee9c77b1cce9793ec14119c819dc","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'27c0bb29dc5507b17ec060ea9d70291a0db3094f2b432f040fac0ab24b88debb');
-INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b230a720adf50bfd60022889f72b636d6feb5f0088336cb0686b549746273bbd');
-INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"ed53197fade3b880a6bcd70a41112b83879f5a1b2733dcd044a152f6e06966a1","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'d12e3e06d0f7e42c9c2ea9fe0036eb1868ff4596ad9aeb9178967f602c730324');
-INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6041d4b34821c63d5aa30c4d94cf60f84bef8387fa873734714330f0dc227da4');
-INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"f9b1e1152ba3fd730692c61dc7b897b74290425148717cb0c7d26ddb2b066764","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'fe0e61cabbb381fb87d33340f98d63908bf80f90c0382a7945c5f359c1e50778');
-INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35f7d35198d95ea6fbcebae7f7e3a14041e9fa5334f7a5fe0a52e0f158d6c81e');
-INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"95410fcf3fc291907a1969f9cdc8646a55fd0979f748332a10a298ed1914b4c7","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'45cfa48293a3e407b54e8a74e6cbd177738ed0bbc411a689efc2f4209f3bc78a');
-INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c2629c411a28ead76a0ee6a2abcd57603058e2a904a2a38b273dae0b3be17be');
-INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"650e904e246fbaccd362968543bd414fe4e03941d96f0a8c1c7d509fc260b738","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'3e048cbce25e568f57486bdf53a84f540452a89aa89fe67576eca24b2eb2118b');
-INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'867328c646cfef1e32f0fca4df9d3fb4ef61511b7cb40b57808d4284e385cbfd');
-INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"33bc524f9a329407e3509a4623d89f6d2c3e00616c4314b86bab1d1b802a4a6c","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'ad6fb148953100261a6e59742a063df47dae7af64819bf500fc1951987b6632d');
-INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c710a592ac76451354daded1749e04da469d3aef5348ca06d55c53716423210c');
-INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"dbbc0a977c9bf6385e4652c94f97702965df6eae2863730b9930e7aafd8d6c84","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'84e8b0bee4457215c6b65226095263a7a58b7f80a15f2b22d1961d45c9243866');
-INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebb984decc48afded3dfb2c185c88fc451f656054ed31eef55b61475827c2019');
-INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"b2a4a9c315f66980a2a3525b322adf6ff4a47e60649559bd2e7dffb68b58c29a","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'ebde57adda129b6d5d8d0d0a240a6ffced9dd3f801b37a5ef4a7a29dcd09fde5');
-INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d539e6acd05e626b922941e5e4a7821fca47b828cec6bc62a29b6c9ab4df868');
-INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"a73650310ecd6b53b89787e20449de8e844aa747b6211dcc0b33aa389b3a5d72","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'75c4c7fe59aedbc14189c0436a02c374d365e135508bf5a70bd3f41d9913c424');
-INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9eb6c719743efbc15ba5d869ffcb0652ac19c8cb5c57090e1a75a912c3a5bfa0');
-INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"b31bc14fc3a9af3b1b3977100c36b1465781bdbe9390ff267afdc51d57caae39","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'19c5e2afb72f492746fd0010162739d81c7e045ac8257f77265ef6b631fcfca9');
-INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea97327b55924f2a87c8a40f5afc8a940910588e15da3b344cf9a65161adbc62');
-INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"f1f4e9f44d7cec303a3ff0e9014c66741e8463d2e1e2644edff38a7a06ae19d3","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'545868f480a7f7b143023d4b05a269ac47a21b3367df75e4cffcaeaca92333f9');
-INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'816ca26dd2157cd6ae0175ca7325f952999a696cb38a3947317ba7d3c9add95f');
-INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"cc0cc378fba640609764042b3a71687c5ea7085f9fd3528fc22cb4a0f33c535a","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'c2fc4e16ef740787d3b2067feec437ab5a1efd394d44a6b21af3d84a28373f9a');
-INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e1aaff3a997c49f62ad62d606657b36111ecb5a88d0559113008ef81993bced');
-INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"1a17b268e299c081550e6b708d3a67c8e9e5da464a248c07bd7ff2d37521aaf6","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'fca812a74b22a329dbb1d1bf541b5e2694898770d3cc1c722c3774b69e7cbe40');
-INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4b732b1fde2e9af1f3e74c1264dcc390d552f0142489ee6db5e2d747ada8e34');
-INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"8994641c9faf9510eb6dc0cafb53c9ddd941fb6c7f628361bc30a57b70d1c635","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'b97a7c7ca4c2629b23f43d76ff57c022793cbafa704518373b58d54bbffd6fa8');
-INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'849d9a8e8d36986f9a423fc26ca60e03f7dc9150b995d165ca9b4f935d406a38');
-INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"f65b2c8ae6adc575a288d4f042f90176bd007350206178e62c024584d6ed287c","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'51b1651337fcaeaac2a159284bea2739e8c096f86fe63fbb990ec668d3d6007e');
-INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f1db2d8c92b8bb12a5b339a74222c16d7d10f2345091c9ac46a4227092fd4472');
-INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"0f246fe11fc2b9fc1d2b8f7517473f6a7eb91915d765779783e7898a8bd3d5bc","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'ce1c2eea7845468babb5023917c234333bbbb70b30c6bc7a79d65cb424264e49');
-INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'658111887d2d58b83265e810781ea306d883b01ea16633382f86df7ff5960cd7');
-INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"6fac343e1053a7a48346243c906493f98c138355761619bdc0677a0b3d7c697d","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'9b13c7254ada6938dd9641a2d79dd1166f0990b7e19152b6cbecec54fb5874e6');
-INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96b0534936d3946dd261b370ce7d75e869be0b954d3d5d01186824db4665599a');
-INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"7208036024f6c4e6557619b9625abd7275a52a91f6bf0d62fbd20736138665f4","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'be5bbadf241a951c795d86a1358aee9107e081bf3a9fc6e5559d7822bf4d0998');
-INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'088dfd9a5f09a48154ee406b9b69ef2fa7d880fee8a30d502ffbbbdc59c33131');
-INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"f2e9a33842fc7f9a1482b1c985a2a6058b8b56535c2a508fcd3e3dba930e46be","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'2c3302270dfdb20a4f21e9e2c7c640d3985f36867d42a0a07194b9fc9d20d435');
-INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7398ba1c70ffcbbe30c3160df3a8a9d5eb7be97d0e659e86a9cbfd312811ac3');
-INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"6de02c61011ad812328b595e95dfd62a2a21ed94bcf59d87fc87c758a9ccd48e","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'0802f10c74be8a93fe880c75ab4fe651b117b99f1a85c23cb73fb37064c0ffbc');
-INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41e0464dd087e19bd96567890af7db362e9ce34a70293e47cada45576223f22c');
-INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"800333a93bd7fa0dda3e2ba69ae3e54849f6eada89153cb172fd950470da26cf","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'d8c2be819aaf7ec730281be6ac73e8b66887a9c25048860de083fd66666126e3');
-INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1de37ede9ea9c1d500ae58ba414230f24dc7da456017fc1be21946312b8af733');
-INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"b33be7191d7e1afb1140f19fd44bb07daf83897c2fa1af45fc75c15bc85307a0","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'fcdc2bbf1841e5bcf01bfe0ec35c5dcaa77fd8b57045864bf0bd7c327bbbeb8f');
-INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'095da6c2c34e1eb93a092ebd6591c89a2703a4e96132ffeb280b4019688f8bc7');
-INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"78fd0206e26ec2c77965dec55fa417738c919261b8a436e69574a786d313dc65","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'c0f7c94751e1261c1856368e53e778a2724c37fc9b84ef6f113f2bfd6dd92067');
-INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d039a636e64bb554fe16aa7b229c5be6e53254cacca17dbcd5af5f6b1b9b4c65');
-INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"a75962c77a91893bfe4fce4d8e9b6e6f85d863b7f2b30060f7eb61b913c8f988","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'0ae1af9be2944e42fd01075e11cb96bfba7a3cdf09e5a0f33e8237d1932a7d78');
-INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f615c1234ccf178b321e726a1b9499280b4f6f7989372029ebb9474c20ab99ce');
-INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"9f6da7f4b88f3abd9705318ff6a1d23ee9bcfb11c16f6de7a1dfc5c160c8f5bc","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'8767834157d1b81d3dcb34bbf4b0d9c1b69100c12742ce203682a453540716b2');
-INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdccd7effa8f3d868c3aa19a6a1cf1a197ea2fca227d75832e0239bf0261f57a');
-INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"7e1fc55016a8c1f7d8aeb507891febc3d2ff083d15a8386cb151eeed36126902","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'0fc9cec84e455ff4158f65340a27a941cf882a244d6832b7130c00063938e031');
-INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4741661fd18ba804a46b66a8206e2e4d69d255c249a2126677d0d5d983192158');
-INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"0c1a84220c5740d841e1019b76849a49f2760d82afac404c46ac333840724478","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'fefcfa2b10719819b1787bd1c240e5ef0091a7984b905f1ba90255126d0de1fb');
-INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1a4b80e92fa6a61460ad971578d5142991dc59b124e111abf5271b04d715148');
-INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"c4f885c7acac670739975c95af4f377eecfb635a112cc87b6881d6972cf46374","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'0fb97117605179ca9551d76bad76c845ace309512f347ad177ebcaf9d235d15b');
-INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce82f8f1f629a06490818a43e22fc77c77bc6a14dbb971c021f4dbf8c3225cce');
-INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"95024e723544b65f52242f2c4ec5e71264a1aceb8e4a02136a0772be1c7d60fe","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'e8441d84271bb08db667d506458213615ca6e6e6a27e231ec8dda2ba1fe30449');
-INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'baddfb70026266664d3dbf9f0e86297cdbf91eb45c516684ad765f2a486b5f5c');
-INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"015375f1837c56f1921aed0b6297ce0ed5279663bb9bca13ede1392abbf17d81","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'7e1517affc502f1a5829bd788ae34617acf307202a5a4d745001bf91f875f17e');
-INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9f4390b17b3f51c2e0ccd028b06888cacaa190747dc6ad0ce2224073049f1db7');
-INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"9f74f2c9fc67e4d2364b85c8d975f11c53dd96dbb33512d3718fa815b5fa070a","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'a86fe9f97e8a4072a400d479216b3ec8df1d70be1afde17dff5d4626ec856249');
-INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aaf3df9f8c11158b4a84e764e8879dcb233c64cb8fd68fad2b5b6c78a5623b4');
-INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"53b6ffb8648293f11adb26d10dce89a55dc0b6645c74bac3b8841421a2715476","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'c085cb1e893d8c3975c5b3d3eb41db247166c02c43ef7150426ec88542ff4b32');
-INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5ffd248d468b9d7c6e3ec5b0b4f8195dca415bbde6b6ba3c9201c65da423337');
-INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"318599633adc13ffcdc8228c39103c9f25eff9a3b1d1b1fc308d10bb41d7f9f0","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'e1bb7ddb805ea8159c27db9cf763ba7b6c0b79488871a4d152334a78611d1c28');
-INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f1c39ed77a48b9fbdc4ff8bbc7d28573c2260d324c05a327c09ee399324db10');
-INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"bc105cb041223f0dd3c20019e8a7a9aeb127d6fddec1560d606cd5b8af23279c","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'7924d5a399a4540c2f4f3116da35b6d45f55431110a5a82696233d9a582b422d');
-INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7f7755ff91f629f7c4db281b525630dac3666d4d6484710a46434ad6771ea60');
-INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"902cbbb20d2a0003f4c579bfbedb04e787a2a5ef5a8c485a269c215c9628db32","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'e28ec28be2abde4207b1a1b485d76247d3c4eff31ebbf37153feb63be71a9390');
-INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48e4a252d12f73e6174b2ecc063744711f3846e363b913240fbd46bb6cc142e2');
-INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"1c8bc40c48e73b0993830fb4073e2f2ae056111b5bd5d22a87831c4b88d32973","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'f6cb15a112de1bc2b40e8e92a15ae5bcaf94dc6c77f3f7c1b909ba954b36de75');
-INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba2f191455a71a48990b4deb6d2e02d68a58eec62d6061dcd1bd827cc829b2f1');
-INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"910afea0bf4129dd27c06428bafaab6c8c8bbf95ec371466640072a26eb129e5","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'a8f6baca44495fa70e114820dcd852c0ab0f1244fa6bd9592b14bc06ecf12d58');
-INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'31c96d8ab5239cb1fffc1d5b2d3ad2adccb88b1f3497ac1154cc84b77e1e50ef');
-INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"9cdf0d22a1b690bfb2f542326c53e25e0f1d2b83c434bdc8294ce03959faeba6","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'a8d6ba7902df480b6eb2c9ca744906241f8c4443b48eb2a452e940750a184bee');
-INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e73ac4910264f354d3dc880e6d9bd6f4ee1e525977a8e6adb63b7164acdba43');
-INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"4b565f4fd6c07a96002f87eccb7e693fe8d7cc6d8a81cb85cc6b06fb071069c4","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'b03327abc12459c72b23cfb1f6a85f17bcae8e9327659d920ac78c5346cb542d');
-INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca05aad5114f201c07b19447a2209497dbeb2674fb81c6c487462461cbab5c0');
-INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"8e77a1836fdc196b50c2a525208fb5ff587c38486d1dce443a2fb1a7227119f2","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'fc6cb424c053d94184c96d644aab793c945be406a94663a650a7554923e3bf43');
-INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abc523f28435921dcb8e1ddbfd3290382a60f473a4de6438278390a67632e795');
-INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"7668443002aeaae041ff7859c252f642fd930c4d51a616247a798f47942f97ae","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'d96d246ea8fab86d905db910df5903b95f21f63444a81bdad5aa607824e56011');
-INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6569246c41383967663c6ce160d9353d5784f4102077415e5f0d90880399e3a4');
-INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"1fd22e6bf448e0771f8c7da5c0829614f5f45612bd6592104c369b001fcfd266","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'f0781cb6c09a2f9928d3da3c397f5040887377460824bea18cc22599c2c01345');
-INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e914308ed1b0915a48531ae7a065d42798eb9fbb499d906f17a1c2e7bc6d9114');
-INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"194a4ec47379a92f7ad3ef8b24e797fe33173d2036b687596fa534356c07a672","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'1286b646248e80b118f3f098cac6bc165225064bfecb31363689dee1aecaa330');
-INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed79192a246dfe569de05702616a437fbbb2f53316a81c0d8e093cc17630cbbc');
-INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"5de4d26d0f94ec5c143e465eb509d22bbd2016bf9068ffb5e5c6949384a648e1","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'f66a8dd023b00f22b2373decaa27d61f45dd8060175fbb190230f382c4674f80');
-INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'006d9ffbc894359347318d63e04356d6bab16ce67052cf7f128584ca7841c684');
-INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"232a974e8b60494567216ff9b2b8744fbd48c5328d04a63b29c671a8274df924","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'b2be66737df94b4d7fb4cf2320bfc7c4e5a83898d1b62a619aa4e3a341b17e6b');
-INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18b479f6d41da4206626706c2bd3a28b1fd974ec618845b1865df84dd6516461');
-INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"bf9827228ad31a03a85dacfd3a333afbbfe662611550bd431077abd226c87845","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'e5b3efea23cc9dccf7d03f071b9c2376d657ad90183bd3fc1e9903bb96d9a754');
-INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5124fe74b804d6cc2dd2779d1ee5baff2d73d67af3be2ae7f121f8647dc899d9');
-INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"7eb2b6f227e5550b5d0d75c21818c58263a4e86dd6b160b0b1638dda017d3062","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'fd2ad677bca480a18af5ced47143c05151aeb54f60aa4d76546a006ce8fc0e5a');
-INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3123846718863c10494e8cd9107186dcc6c97a692a744532909eaaff6532c09a');
-INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"3341d9abb5324b460d6a80df5fd0b9c4003b38dffab3a503c27cfd21a3cd60df","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'3aa7fca689f8b8013a527d51d62daa361cfaa519fc8e576b50f86083bf3bfb7e');
-INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37337a4740c58a8bd9c6ec9d56643fafa487544646a3b183e97f62bf4a85821a');
-INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"7e02c72085143c68bf4ec2f0d7f9cc74a5bdd0bbaf28d7c441401a8990e64fc7","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'752c3dc5582136742801efec96047f8e4d9629763cfffa194ea428a4c53fef1b');
-INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0790193ddac7dbafbb73a540e61b69b11873a226484e079183c4bd6994338abd');
-INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"b386b65006170bb4b28bbe1a8235f9fc7104ea3e9e34d51d86eee06326571d99","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'511b8c8347d973d9b8f1d9ee936fe6c72143f5ce4a528ca68dc384a64d47f9a4');
-INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08d121ca65225b4deca35f1ffeea18274f14940efe4a37db847545c62a67b433');
-INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"5f9db4e525ecff94de73118f2cb2ffaf872fe2692c4c35ab221fe89adc13b28d","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'28d75eade23290ec865ff785ca1c63cf2c9243dc95bc4f8d82bf27e90a439a61');
-INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58d9417c92e371278b4c66b7b0e672ee707adfaf0671af3b32163b3a2af36dcc');
-INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"9e0597d4190ec3e829b62fe7ccc8020109369dbf72ab2b14ea115da386330813","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'a3b11851ec5538dacbc1af26720393b516b37718ec3a9a1a9917b4a77535631c');
-INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2416865c62fc3def7d2f2b54ab17c8a5a7074c5087388f7f02e248717f3b35d7');
-INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"b55fadb9aadb55ad049079769711016434ca942454f5bc39d9f6dc4417b24dab","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'72050ffd0a53c9cd0ecbfb700ed3a71857b5f6eea8c515ab2fb0c169a3b41bac');
-INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'303ea8af5847852164cb98cd9665ee54c877274de3f250255066f30b776602b9');
-INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"f56692ed7d8f224a45a3c2563e2441b55626f8845abb6879fd1364cfa442c189","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'8d6ccd03507634fc800d2f5f196e2719d271676e41b3a4a10c450e02e9c17e45');
-INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a76eb7864bb17d3c8a356485f35850c7fd2ede9380ec2591222586eb8c00b47');
-INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"b64321d63d483d9e7c09026e749bf3e9ab67e14d2e6c09363728bfa02c102d09","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'ff509c59c1998b783871d63eb343a37772ef31b0503206a00ed632b63340f8de');
-INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a352d7a028d8c0eaa132b048b8e92c50381ecbc6fc6026e31e49ab0a7673c56f');
-INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"fee9df29e116470c1165c090931eb1bd7e45795f53350fa87da5042ce529edef","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'8788f15ccbb6a1615e7c6331a48693cbd8578f1b3e6356716f64e5353a3d1b3f');
-INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8165ac5fa015181861de009edddd84fe26ae17f94819adfd44c71305d21b35dc');
-INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"05538970685115a9ddaf41d458a3cce59ecf7b9b6a888729efadce1014e7a899","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'fe7faf3eaf3c55e7da5a0cf0fb71dc7087324ed1229136e89661bde080589562');
-INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9692c3a472c5444b1363cfa1bcaf3d8bfc766180a78ccb193345f1ab7515f0d');
-INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"21985f293ab45f0cc41e2760cd3cd2c3e5fe8788ad16c5008b1853869e574790","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'8abab57f6b865f269d498c0716cedf32a639c95f3fc20a9c539b7686c28786ef');
-INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a798d40e364f3e3ed75dd72641abbe03e9eda3a88539a5d2549fee7e7bda6537');
-INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"e0e319bb5d4189cd952e021faaf0146e2872b62dcf137856d61959adf81724a4","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'acc61b348e058d3e43c32c52944e8df0069627a00d20b4fe0c6ad11d79ce1cef');
-INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'072164832a73c759e1d382dc254923009f0e7b3e823c8875cf380b05a7f8ac64');
-INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"64c5499c7eef627a35277d801a7480aeb4a1e845ae368475da0c2edac597968c","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'543c295d80f847548f50891fcc0cbc5082338fa06a2fe52cd44a65df56cd56f4');
-INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c403b21954602c4c957c47502b2e7022aa3716de2d2c36e5ef4c33578c93c85');
-INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"dc4339e5e79750da2e11a43ccf76b285e85e50187e81bf14237084c2a3c414b2","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'80910f75c06ef689502379b3b9e2d47dd8569c23e79cab4c7207fcf43ff4b0eb');
-INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3025535a30f1cdb11dd117ea3d3a88714704b393b9c95adb5c27167d88ad7cc');
-INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"29eac43bd800bb93099e696e1f4cfe1bb7dfbce8316e65459c5e7780d32488c7","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'1f86114edc7d3280892e38cafd026faa62e04e57bfca3b4c3f0c706d2d958e0e');
-INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4247d0d0c381ed2f8496a7ac7283e86746431a92eac0739aaab03d432b833674');
-INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"b570ec3ca500cb58c1388584391c16e4ff5061ac434b7bcfd8185a121f318207","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'9796759d146dda76bec968e339798bb8d7d15dd7d7e3a5deff8f524fc6ab60f0');
-INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afe113bc5017ec093d045ebad3b876c4285d478435cb596bb4a07dea31b684d4');
-INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"91b0efd57597544fe96539dbab912ef18d57dc237a42ee5245dd95c59eafd375","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'12b84b930fade08afd64e3deadd8c1380b02f17b338035bc069658ae55fe0678');
-INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22f4fe1ee528535c8ca9f06de7b19276ca2253cd448905d06bc6bc8b870991f8');
-INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"7b6bfcc602b144da1f9c12773523114a4a54267eca14f4c8f255a9ce8b2e85c4","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'7747e67979b5921345f46cb90b02d008115fef0ed06245d8ece1852664c015ac');
-INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7656a9228fba2a0c50f69b84d4f95efcf484e1e69d796651bb48ef313860528c');
-INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"ca813e8e604e5ac2adf5fa18e2776ddf48ef3b2f34a1471fe71fb80ff73769d1","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'90007b29cc22fe00aa1f1f07d6434b23f89d7d0fcfa004a2b78c1e5071cd742d');
-INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2436515329e54810890c6db79b1159dd199f76a9889e8547d562e5b4ba56b330');
-INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"6be534a6fddd54f6813f4f6247e6c47bb0eddda08e28edbafa132bf8115f390f","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'4bb91cdb138a33ec0aa314809a3594f7993dfd0dc361898f5e1c5cd14d984164');
-INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45ed97a2c348f54c87b0c876bbb8e36418e30638e92c3669fe3cd939b7e16c48');
-INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"a3b69de49ae3569129f96bc994fd0566acfc5cf6ea0c346e7297aea967283636","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'40d72016d453fe0917bc4130f3f9eeca1d6118db4450f19c0851aed64925fdc2');
-INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9cd6d8863b33f686ee62cfff0ede8ff52e4363395e32ffe7d6f4360b76ae54');
-INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"f8ffa3c414d806885764c093a7a8d362aa78d68751e710cfc89e2e318d59817b","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'9ed37eabb93626a455e23dbe867d1a658343e0241b1ef0c96704dc9e9eb360b9');
-INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddf944b8a8f51c7b858258be57d494b23e9560873168aa2e37f1257deeeb0bca');
-INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"94b9e9f9260a35300ea27a15a0a9493350c2a6db704bc0d4ee0e78a5818cebdd","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'d9e49c4f083a3fe05fbd82cf699cf0dea49c1d969fe3c8aded6729d0310ceb68');
-INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a883a6e54ccdf32e1ae615890bc511ce7f3c6f3ca887982f672cfa2729786ce0');
-INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"8146c8dfac8c08e8d1a7fd45ace0cbc146f928616343c082603dea1dbe0375ee","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'a1fb107e120519ae2d58765773261ca6de01871757f18babd1add7b0b8ce3504');
-INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c34754a8eda4721463cb7294c891337d0ea0dea719a6d6dc679fa35f82fef71c');
-INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"dca1d2b95f7f534e3dea2e7a2019838753efb31c5ced981701f50940f3cf0d26","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'1f006446ba7cb88d6da4f688ff40cd74dff30cb9b518eca0e177dbcf162b4898');
-INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c524cbb4f97887e356032025cfc936007ea99e9c02f32d4a19ece948f97427ee');
-INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"827cc7c36c8f51da81c980c10003c324cfab26a15e2e7d5698ae323deff752c6","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'ea181b53ad0b6aeb05d534286a5b4ce579f1996180c84ca048c73d8146ccae78');
-INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8670ce0cd80395968349c10a07ecf2dd3a281126a70cea46e42714e842bf801e');
-INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"85d72f558c2926cf357f739ea311de5aa840cbe82c35beee417a1520860d7a59","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'6c789f4c787bc7d206c9c34b585ba7ec2531c99af509bcdb7880d03e422eca5a');
-INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b32b407c45ae3b511bbf2c1357e6bd877200e0cd9e59fc752920ccac81e251a0');
-INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"77ebc95e7c6af80280c5d7915ec2b599d700151c4160dbc5a8d5b2a109bbe05c","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'680ea83c61f88681befe065a0214615aaa87c08b1f80bfbef86e0091190c454c');
-INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aad4b37318181e9e07df3563638d5cee3b8e844692ca314488f774188da4d18');
-INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"1107a47b26211af98233b1c5293451ae5bb9349c73368b513ecd337ad2a64d3e","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'7ae1c55887e2a06ba56df342b6e44482f074f1269f45e6e09a0f321096535843');
-INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'75c8b9135af539c7d0186942244a44d53418c9c645ad524cab2cd161c8c3b09d');
-INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"1a47a0616e0d7d4153e694dc20509140325be90d30203a496bff146da7aadaef","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'ae00c42031a982b4873e6ae0e3b2a9200e8e5ffb823097cf42211f91057eab3c');
-INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11cb7f1b6283c22df45acfc77950a60ab3308029d73975166f62d2f02616115c');
-INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"a6aca492da14b2a2a5911a1eb9fc2b94007ac2618d18c7141e0c917af583b09d","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'b269650a5b6e7cc39b07cab24a1b0a15d4ea0a3439988e1e264486d2c9f48123');
-INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca065dcb8b9a88c7458d9df502691d73aa8df796b91b157fa431bbad558eac37');
-INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"d52d5b979c57d1fc9b43ab2133ffe65f383646105c22be971c618325a4e295a3","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'8031e7cb750b9df5c993656fbc2cc7ceffd6cdf7fc68f86d17c8c5273f681dee');
-INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac56f97447c36ef56ea3266c6f9ee7f61ea25e53a5ee679fa5bd8d70de9cc9ad');
-INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"0ba84d839fea22ea4634d16617df4437859805e6ef3fcecbf9319648152c959d","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'06eb9d3d5973d582d65e27ca9d513d728afc8410d8fd5dcf48efac44fc3b596a');
-INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffdee696c82388692828890d196d797a07b8fe662fe6461a971804d07781a149');
-INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"7f501e4f4dad5fc70bb3c56d1378bf4b292259188c56b5d5e53a3c5206c9700a","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'5305032631837bff041a00d02defcdcd6cc2ffaa61de04ab666c5f10631c387f');
-INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7157818897d244931b5e988177aee3213ba518003e3319ea5a01669f8d13266b');
-INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"25fa3569e346dfc876bba62b9d23783c146a543cbdeec50fc6e18332122fb2b7","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'5b96ee45bb36bda39b728b75fc3388fc023b1d953509151a719681eecb2e9fe2');
-INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f2219c07e6567722b27a3e4acba46ca7ef5e44fff5e5d59cecf91ea8bfc0db2');
-INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"a139b9e0838217dba78ff8d8503ed732bc0a94ca9a5aa75ab8938c99edee297a","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'1c47d3ca71c9b4b53bc6a34dfbf057390e21c42b37cf9ace3f2c763e5a894061');
-INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348c7e5116a06c072258ca63ef762b6815e364d94a51c436c4b39e6187dcc03d');
-INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"3162a5d50ea03633b8b2d947cc3c52a5df9593e245376bf80756f48e7c1fc2d7","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'6880aa7eabd3a07a90122d7e2befafd4d8033e06d2bf43b947720d66875643c8');
-INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d40a1cfa9cb9fc419a4c794cf10145986385a9090b3b8bf8bc52d404043b31ac');
-INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"fcea4b97a5fe73cf70e2d0263371e1e00e099bf1cf6ec7db042b3bea048a265c","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'2fb13c9ccd2b4e8e7176164dab7da5a8591e424004dd70acc55fb0b3ef8a06ce');
-INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'609fa789756861529874992160d291f9ac06045fe7d6efdc5d4c455ce9f6ad3f');
-INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"1b3b759f56da231657bf1c579b3186abe1a28fba2c262a9e872f7ee83aaa4e26","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'22c4e86bdc51721d5a2aa39798a3fe1160c88462aa0584a93419d8999e3d0f59');
-INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'154695937508218d4923c2cfb70f31a3363754ec79a927205e1672c3e940fe22');
-INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"23d2c60e160ae68a16ab609dccdb9b78f1b7d3feeaee2c97c7dedceb13c02eee","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'4b2d7ed19ac71fd7bffd1a0ca2e8aaea254536bad91d7347ed62dfc11754956c');
-INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3168762367cf19da64af47f9a1bb079530cfdf5dba76e3c3cd4c99870acb661a');
-INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"51e2478b9f02aba026af477be07173549dba6acf715620c3080db983d5818ae4","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'82e009bdf089739a08c957dc9b7f3480f77ed7241316a9260e78fa4893c754ea');
-INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8fb0b34b2d9c8329c91816dd5ab6b3e2a422af06a690c66e72e7bb282e3fa14');
-INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"9d406a162538d5a0b083ddf1edbc2af4da4772e3dfafeb471757019b03f07860","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'e96dd31f7b61ed62944d885bb7c0e8765e3a105193c2ecf9dbab8616d837d314');
-INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40840ee92578116cb46a9d320bfd786e8d849382bdb3a20091778f66fda8caad');
-INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"216849b38a9a9bf850733296d6a14b539b2c2261354e26019a723dd7403ad006","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'93ea38d98576d3b413ad3d3dc01150a0b0f975f14fb002fd2a300279fbef62d1');
-INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa663be034daad94420251720adbc83390569c72b9d666e0af9ffa0cd7ffa63a');
-INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"c974a643a40e5993fd5ecf85e7a627f6ed4c7d32da8d2bb27528e99f226d5efa","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'79cd8f598700585a9db6c245cfbbfc3936dfc4e311e74b942b94335b4cc0ac7d');
-INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e03bca690f86262b5e1798954960513061d9abc44e48bc1497b61e4867a4b7a5');
-INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"6c8edec3773ad66f3ef89d20d5190b2c19318ef48bf3752e7f482a7671b006c3","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'b51946b2dc8b0e632cc4507f9dfacd009f50c40f0ef00725a21be6f134f4052b');
-INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ee841ebec84d52bab39a83ee77e675c2af011ae9160151e852b3f4a3da323f4');
-INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"64193ef0680fb09096cf55f02405bf8e2a133b12bd8e1453330143d72700f164","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'309046349953638835366c616fb9519c7807ec393daa1d1f1b016b11e37ec21a');
-INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'283f43a2ebf1c77311e26d3087ccbca917fbc09a1a31237e1b6703259137d82c');
-INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"65151ecc33ae384e013535fc1f6cda04494809cdedb5a2cdb891f0f38035bd3f","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'3fd67efc6dc4dbcbd8dbce151dc184130885146b640b070e564b01dd94a0286f');
-INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42b0e931336b3a9e4978783458b3fadb3cef3e93d2142fa0de9f08686246b438');
-INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"01d3ab7b218d6bfef3c5b6b6db851297e951cebfdf60b8d4835a44a665e163ca","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'4a58233b8a45d8bcb90243c57f232f2e0f8b25df73b57a9428cdee49c07393e1');
-INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7bd2dffb34bb05bafb4644bf6e73acb8593d94bd287b34da48c04db7788d9071');
-INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"d8b0a242ba1e6003bbdaf0bf2369b95d39c736ab52e66be2a9113941655e698a","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'b4a57989c5b5f73eaa38409c9b6a536a610fa45d0271e95f7a4e9204b00a76b8');
-INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cac64b14b9ad1200d2550137097af7b3dca68f47022d9568a2e87b55fecc64d2');
-INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"18ff66422cca18b8b49392bae2d93ece152f47035c44ef71dda8cbd5a2cd7f96","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'7dd1f0627c173eb8470f0c20cb2772446f1a2556940ef02855c32bf726ee3d52');
-INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cac1a0344bccb4c9fde6baef165f6064d9c31df567dd81b655cff108d90c897');
-INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"d7bba011aeaf59c39a79cc90a4d40f11c86d3a44c12b722cdab3f2d32b96b430","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'23fdc6f80a5418af7c93bb4d99067c9d594a148c8de0c2fe1ced9b8cbddc1468');
-INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5fa9622365fca1d80fe1774751403b7f0916d41d06e2cf84f3e840bba69d30ea');
-INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"fc88f701c65c71e2d90d31fbdc10378ea284a88543543af540b49d970da6e1b3","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'0da432e8ce35277b43d2203913fae52ea809fb1857671dd25301aa0b5f8e6d2d');
-INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa01b327c5ab1faa2c277e2cd98f1ef3e90d234c2ce40c9bf343d589e9e7cae7');
-INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"0e2148899b497e6e1edd0f0401e2b364cd863d67a16b2d2ba01575249fa44e61","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'243365a3fea954a43f3ef3684a1b41443924a12aeb90009c806085451c1d032c');
-INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'518ae498546c5f85634565a22e6d7e5aad302ff8c7e5a3c57b5292faf01bf6c7');
-INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"a4956f7cb1d7911fe8b00ccee3a92b01db13f0bd2b28ebc66db307c0307c8632","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'b6f52d0058bef79d9e379c0b823571808aa9c67674a0737a02595101b01c2170');
-INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c495c0178b0949f9cbde08a6fe52adc84d31749794b5b8a069ea6fb6cae46ff');
-INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"cb0858f2c2d1df41d5fce1f8f312d4f31646e876d82754898046d94166f86988","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'97f4112465777a6f518457e8bb85df8719d97b78887e40cab0e47e8b5220ff79');
-INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22e75c14e3526f538dd3cebd1fd765d03a579fee1d7b9489c5271375e952250a');
-INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"8e43ba092a6ba21408ff40f8248c07d7eb27a7deac290ea2d4161bf16d1e21c4","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'771ea7a3f33c176c89953fd645c5fee60bc332f710b5814fc545d3110002e808');
-INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f025b38e1f5b9a35f307e5ff1cae4928067ab5774bafc70c9b74df32a1ce372');
-INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"0423502422f1719bb57b16c22d7155922a4e57dd46c10c67443ce901fabace72","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'aff07ccc15dc23549d5d7236d91f3995d8b881b8da7100bb551f4f8cba985463');
-INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'186e3e5e3d52e2a61846bd311eebe63ff02c0f8d022164f55babdf1662a89290');
-INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"f4202e68bbe225aaf543a2595773a928240b7033f7f920803d1a2281c5e927d8","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'f3697874255c471b0d56ad6db01b1462f65c43da638e07bc701578e270658416');
-INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36b60aea8c286f2eb84987e0fc4dbb39938d5dcfbc028d140dfcb6c718524c80');
-INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"fd5af776d6a38d7d8789a15aa9d76e6d304a94a4d5ffdd2943345da446b6ea80","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'34a7a0662b79710d8eb013521aa1090dade7f845cf71faec682f26d6de38d078');
-INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'37a084ab913ea2ecb876a5545da3a5852088aa19d824c5a0254e3380c8bb0440');
-INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"7d18be6c377428f660ba384eec7a473fa7e44627922722cd5b3721c81452432d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'5be437f7c8e45ea22baddcc2ae2e25038cb58e4fd5327668cbb7cf3026b07e84');
-INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43d35ae40327182fade05159acdce597ee8ee28d194404ae195b2b8c096e5271');
-INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"c5922e3df1d54ca1fceb420ba9ed3538aa432da592b8d11ed98dd577bbfd7973","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'1df99d149bee35c355a0478d87ae17678e9e17f076fbc8c637a85c78d881c8a3');
-INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc9d5326db359acf5e089db9255cb9dc3908111c17c94e950a918f79a6ff168a');
-INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"8e306a9c943a812c6f52865d39d2964eb365fae7b17b0329b4c251f8dacaaea1","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'a638b66e3a2435b38b413856adcf09cc7368dbdb465486e1645b1747246c0aa7');
-INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'455a1d8731f23bbfc3cea479c36ed8aaa829960de42eb7333c4f90c0b94d1ae5');
-INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"f28d86ee84fa30a79a74e3205d45c40c3525c6ea58f9201dc6b5c79fdb526dd3","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'61ca639631a5af781bf6394aa6d553f790f1ddd8233c534af1f2bb88da16eb62');
-INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'574379f2566bc6a3c4ea5518a13a519c6cec397d7f671cb972168c3096511424');
-INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"70550cc53729dedacfd7599305a6ba24dbd67d5349e610da1b3aeedbbdb670e2","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'6d6bc73bd2b78bec4bb3b384f75a35f2b0019b08417230acb09ac50f1ee5fad1');
-INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f3e61cd83ad2740bef889bb0afd3e0e8714827c7f5e91ffe7e23927ff48c6f4');
-INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"48b0c3451909c475fc3273ac84abf136b6b81e2cd6e7022018711a1a8a46abf7","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'7862ba2769a5e82215138b0c82d5a92cd081f9f287d4b252bb57b73d2bc74c5c');
-INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b50895884f390165f250d8ff217c68c27f6239ef7cb446e4f9768231f698f0e');
-INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"9cb1f06768f23821c73219929b52fb339a5aac8a1f60e905bbe974759b296606","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'dc733dac0ea89f426aeb06e9b7d7ad78a1c49c33a2dc38c192fdad269d75b373');
-INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55a9fc7b9212589470b8c2296b2c1bb727bb409b3ded7d7e4eb555a14adcf07e');
-INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"da021b6ace7610144fdb7bbee83fdf5f617508c18b3b28d111e9abb6719d510d","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'4191a6c528d9e3592e50517a33fc21eb1d9a9fc67a61d190e95eaca7a573e1f5');
-INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94c8a66a496dbecb77775dfb4a47e48c918843f47afacdd6c3a4088156ae2be6');
-INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"464f88651f885a9c3604bd83352de75252aa4a53b40a94e55cf04cba3860b315","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'1facd311ab129059968667890dc4c44fabc922d2b340426dbd3d923da7476a7f');
-INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f91e8ef3a234f9e493290a8325593ea52893d43f19ce61164eda020bb8993d');
-INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"626b13a5e856517c5e8246032184d39a3b70a8d63b9abd7a56d824ec3573e3cb","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'4687c73ac2597be5f12182eead8356b50b8f57c0b5936c533500710e38da6990');
-INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffd624f73b9fb69f9fe559bdd2a603efd83d477216239a7592bf7948ba583d47');
-INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"34e034a1eace1f9cc331b124f20bf9b02b06e9920c860d5258bc846afa59be6d","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'13c80ca6da56a22f89bd2dabbc8d47d823435bfb29305f227b38a9b90f5d575d');
-INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'899153a5e653add3e86b72d3959202fa0e3b791f779082883272821f2152c38b');
-INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"c842b12fd725cba9dda8fba23d55154a026780bc6af2b0a8193126e35560c1b3","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'c2985cf018a637bb748510adc24e3541b53b41e2a843d20d411f13bd1b3cc516');
-INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'030fa83539ef0d9adc89c89f682c95f4368c1b4f6bb8c80cc331bac51e9055c1');
-INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"f79b69008dcbe3c3362ee21d19da76108039cb558761d4dcf9e1cdb946bcee10","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'04c5a99939244be7cf956144c2339e008ab87dddde14695aaff41f20273bd7e5');
-INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c8e3abdf615ebb954d02be8ee389f284fb442bacfa47d6ff3eea3bc5ef24532');
-INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"ad018c29e0f488918c6a134fe27ae637509d72341a28725cf82d74bae0b2fe75","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'911502c803c19ae3cc210355f82dbb4555fee8ecf5d2c3d4fa364b7613c624b8');
-INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da4d0a8be2338d468665ef0e83edc75984247440ed51fa381468634355dee81f');
-INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"1de15ad33c8b345fe1ad52110c252cdbda801e4fa7fb749dfba0dac2dd773497","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'2182d239c37daf55f3453bfe744462ec80d327ca7e1d07d14fda2aba0175981f');
-INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27eb0ef8142097ff12930016df61844a13ee5be27ddaae865a9ccd1ecf58eb98');
-INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"39f1eb92ac050aa56760fcdcc747dccdcadc1bc359632b6dd57cecb59d485378","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'7e5193ba5cfa445f3ee9d27e36ac433c03f0424dce7960190b2238cf23f70e5c');
-INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42a97f54b937fc10abcf28335e9fe10f8dfef309f3b07497194d470e3e3c9fba');
-INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"a2889082db39a64176b16ba1a33377440b0f45dfb7d30b36265477d98bd5a95b","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'d732de638703eb0405dd0819e4c040e688c7cac022e903b3596e5d034baf7155');
-INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17e387853770cfbc5929c0413f0ebdf8688c1c23d0fbcfc21a771e38f90afeff');
-INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"91296f5df4dff2e619fbe8e9d6d94a1e3b196062fc936ed6f07f72b95d912b3e","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'43817d40495dadc675443d99234d60971295373d152e957bd4f88973028ac79d');
-INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'577723c1a9c24e4128ca674f9d281540c3af2abd5f00452d1f75d3cabf8fd49a');
-INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"8d17e3a799c3ca2be1da35c1c75644f696843093177564b37431e1e40030c925","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'e35c2f71ad5ddf5f1ce082ddb1b346a6e5a455db27a09f7cbec4215e6e506b09');
-INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f157e09ab3ee33ff5075f6c35438987a73ff6fcdddccc0cb00e52d16a49b9680');
-INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"758117c9999addb364c604cc287e6dc9e51cbe5e326f2690d70ce87a81407597","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'5c3baf4e81492838346d43a8db803573ad4cf495658fbc17e29fd3f2c38755d3');
-INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'afedf2a2dcbc8e2a682e7b6e15b4c7bf807b4d6f402aaa53d3fa0ec4465ccb65');
-INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"b6b19c84723ff33624fbd5154bbf60083c48b83caeea4ceb6667ecce4bd710bb","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'4bcdde5adc758d74111982eb244df543a338acbd8fc5a15616c0fae80ced5565');
-INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72419405fd18be47d89f6522774b6af80b67d0a4781ca1f7edd404d8894e1a06');
-INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"2f940bbc941844d4dd73837ff7f6c96ce80efcf385e2d44a1ce5f68d545da057","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'a32d93e81943b01a6488ef9cbfeab167ff7e44de63b420eb64186df562696308');
-INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c5e75794e76a599b76935df860f0961b1f986434b6833002cf3dcfdc6ed19f5');
-INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"6559100889b99c05398948cc0d47d0cde899cd6ac3006ac5fc344a0847a87940","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'6cbb9d8ace57cacc7d3fa2c8ef6bfd245859a19bb0a561fd0d83a695e0018784');
-INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17b17305f369fe4c9391b8178c6ebc51493aef4f93b0be959553a5a70d516839');
-INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"9666d2dbbeea540ac615ae637bb58d5e2199bf937a396750d2a877fb8f55c75d","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'917abf9d2a6380cd489958549adbfba95495493fbc56d6cce6a227a7ef02d55c');
-INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'faa15f8cd833ec336957ba1584ee7d75fccd27d2aa39bc874804acd58b984e7b');
-INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"a4d05b2dd9af6d5ba804421e6043f4ccf727eec75ee10a002baafaed45bc772d","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'6ea49a9e94758c34d0a6f29fe0ba86c72afe8cb1a8c83efbe1323c19d96e1b53');
-INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00593790d945f542e99532ebb28f7b9764a824f32848464d3835d6151fbca0ce');
-INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"1e684aaf8da9104bf057a078360bf99b878290991bb14c8747d8be386a536095","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'2cfef57aa3c8f9e21aa70255a0ad6e9aa9bd7da6cb8adcc7eb2b68042501e2ce');
-INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'739df8f8054c2f8257cca0b2c622c9af6028dc1a839226d6158146d2de65309d');
-INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"8cb254cdf81022602324076922901e7d7c4675bebc066252bd20a7e83c23b76c","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'cdd5b4a201938c27e1a5a1092b31c28f699245e04cb9668f1f9bbc9e06cfa3d5');
-INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1662f26cd1de1a94637b89b7b465f3c50ba3125ca77a423f1d0e1f8f38a566d');
-INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"fceb7400129cbad4ae34656a15a35d8e625e515fdaf78a9f644c43f1da3f836b","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'ffde69c1359f3c51596ba5394ba1ee88955f073b64ee655da8b35ec50caaf29b');
-INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43e42de2fc7169ae3cbad447d41b67c575d9b6bfe704492aa399afd529817e5f');
-INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"b878bf2f4f70e1c15eb60535887db7ba9e9414ec524d0f426bbde5a459a56bb9","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'5a87e59a9c05de74ac90860674b846d5d49cb74d5444133c712c833805a689bc');
-INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62cadf5755421415913c5d560eed5b305d5dd31ce4d1f266de4d636f1c3a6915');
-INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"855cd018f577fe76942fe9837dc27d3be5e71bf378b611f25cdd6381b04ed703","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'a3d70a487b6044e3c95eea60fe522d500d5d2918dc0e72458a4fdfe2745a80a0');
-INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'821b3fd6dc9048cf0fcb6cf053688a43a3bce69a23742499e86ac1b49d6ef821');
-INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'NEW_TRANSACTION',NULL,'0f45ee1b3835c1fccf023988723e6417ea6c0f7f720e4c58fa91e40c1466370b');
-INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','6ecfe5575b669f21b359064865f1c9bb8c74b26874516f76285e89d4cfa86683');
-INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','6462aa905b0af925a57c823e69d3ef306c84aa404f5e5a2fc56e638fde7626d8');
-INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','1b5ed01b31cb5ccb2e028fa4040051128394a91faee014e4ac71f0b42d10c865');
-INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','1391acbdd92c6914b33730638fe422b2d8c32209e24db74773614202dd38272c');
-INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"7b058d359a23326a73d98644d5cb0312360ee69f98c85814b2d574408f8d442d","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'064576f166bf4560335b73566312e863ba508ef5ca8cc515b35ec94d2c43056a');
-INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23905f9fceaeaffe8fd8205e8e7ef0381550e71def3477840d0ea6e8ca4ce39a');
-INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'NEW_TRANSACTION',NULL,'25dcac7c514e43b022f13dde277d01f07e34d04c169cfb5c3c5afa4055fc77ee');
-INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','1130241316e92f1b325ae030d52e42044fcf736e0b70d536287b1d9763251963');
-INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','31bba9e7495673e5494e8a29d03451c1d41632508ebcbd63356da3eddd16bc33');
-INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','ea4a1dd56cbf00772a206b80ac52a56f047d04ae944e184bf410c60153a3dd17');
-INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','476828b7e81c5ff8e743230bbdc0dd7215ca66a6657d6610abb8995c9d6c764c');
-INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"222ce836127c79d43fc5847a1cc427f7218fe84d23c2454ae1fd35585c9234dc","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'35be26a82b06ea4c825cfcf69bb54db25b29594679018b0f5637ca080fe3d5fb');
-INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50a31e77ed57343037b156c33073d6440cee941bb68549811894fa6073eccd5b');
-INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"14e0c00fe389f298230aabba0e084ff09875e49dba8b5259fcb99a3604081345","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'6c2bef84bf104f147628830fb0a6a62cd73f2ba8acb1a4735f7b9a1c2281e562');
-INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06166f5e2be95667013f4145ad494da26ae41fa942e6501893e3917ecbc83d8c');
-INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"00e1362b924985f5761ae514112cc30c143a610d15e936fd909a52e8735eaaa1","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'371e5668ecda4e5afbcd1d162350670f73db37a7ee9379e6bd2040a2cfd2a35e');
-INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6149c3cf41b52cf56924a80ef9fb653551155792ff249202a53e04df19feec72');
-INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"f424a423cf7f105c5f1000cbbc4552b83589f70e959c2a062eca313f5713271d","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'89aae05553f4060f93b3f2e833167d5eacf59af4a34352324f9ac1fa73872dfd');
-INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7f756215982f2684863b35c89394c1cd1e908a25799c3076ccd5e66f3f1a8cc');
-INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'NEW_TRANSACTION',NULL,'b12ed614487828369c55e5b1d4b2f03e19e25c784987f684db4b37e3bada93f6');
-INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','9814f806ec0a44c5516952ec82005dc266bab824e9c5ff5a561604ab64b861a8');
-INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','ddcc9530e04e102c39c92e639e067bf651cd6fa2cdc0d730207a032c69f22b5c');
-INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"3c08e19ebcb07664b7679a724ed18c73d7c8c7698a56f85f2fec5e7eb5a3ebd8","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'d4cb876101724460143357840fbc52fcf58abe833492515c62ed8fa59f0bc219');
-INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eae83b7a8ff1239a17f7883139c10d1148de01867b8ec6b576ab547f8afe8a24');
-INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'NEW_TRANSACTION',NULL,'a7545adc7e3edd8a3663cf3a7312cb3cc570f76f768405fb141795136d34699d');
-INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','c213d1a5981baf96cdcd1e819a0fc4b39c6f76dc08fc733b3016fd907264d9c6');
-INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','f2f7c3918ac31ca07c3b0ad6f5e06e773b313112fbfc2c60f8053f0212c64645');
-INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','9c5182a6254be4797ddc1f14c12bb24d52793ac62c19010c30beb554c66ee7f5');
-INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"900c8266900450b11b7b896e61baaea9e7f4677b5e722ac78cf07985c65a2e5b","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'ed6b915e22e8a409fa2b33fe2cdc415146dfb5ad948fdb0f38b02a8e39dede27');
-INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89f11ac56228e7baaa687cbd0ddc2cd3b17c8762514d4b129f2024e45c40c0db');
-INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'NEW_TRANSACTION',NULL,'60da3eb28a28bc683d6f02a04cffc3e39b73fae8df1a6bd5beb6654dfb5ed06a');
-INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','2b739e091eafcb4788c71e22598bd5a3196385710f4b6da7c433bdfbc1521a6f');
-INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','05529ba9fe6bd0a05d6a769ae54a494974ff121a297a1e9d87fd2f3737c1207e');
-INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','d901d91de05eda6c4f6147630fccc798feab22b217345376b19564d88ff791bf');
-INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"5c74cb1bbff97b44622a3371822508ea90e9b55e22b7bcf5aa69ae39fbf9ed8d","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'0020a9e2036e7e162ba0993eec3e8198b5d6447d01c59bb8f9f1540d0bd07fae');
-INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46b1959fef33b5186c3809f621d07429ea11335864611a7628c117b2322e2671');
-INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'NEW_TRANSACTION',NULL,'5417817db77a51837ab1e76df5da53e82bf4d7328d22a1b54e643a12a404578f');
-INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','d8436c03d871105ae7e5a10c134be61b64c7d1ca11112bdf91c4b13c8e371ab4');
-INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','2e48b7c90904ebec7ace728bc5081a516f37d0930e54ac859714ad7a541b057d');
-INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"9985c79b656f017f5eac15b1aa0e9bef1b0bf2fbbd39d687e915323348af64d4","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'14e71650b169006959875f7b5084286a04b43c458888c528d9d67425c7de5c9b');
-INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'355c9246d2ce131427c7cbb44b7263df2624b3998aff40c52d92881768761c3f');
-INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'NEW_TRANSACTION',NULL,'778249c906f7e7cf260766e4bb2185d837426c031b8ea0a0b0b11d00cb53f3ce');
-INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','1d985a9eed36451cbbbc5098bfd838053ca2bad8e2113e5a8e9e83550c0e240b');
-INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','595d4c87313fa8ad1756066979775615b977686a170161cd9e9cfab631d5d11d');
-INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','f66b193f9ca8cbf62005bb295c25b2933d1b065ce821ef358e3bc081c68340ae');
-INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"8822b33c741af78b8def7d9bca7275cc62f388c9159c953b0fe7b621ea5f21e5","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'fd8b24f607f84b8c89ff52002f69c62c04251457deb91deab23e5e12db9f970e');
-INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'757d54ade49634c89ee7d03764119cf7d3f3d02be12f88cd47de2ad18acccd5d');
-INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'NEW_TRANSACTION',NULL,'f4c2b5bf218e18219adc11f6730d79ee7ae432bd2ce83277b7d9ee6d3b03d247');
-INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','653a9e8bf33d868ab2977f3329f5a13e38fc04b436d6260820250ac6aff868dc');
-INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','ff4768e79ac1c023111e46d2244ce5cebb3641a2e28a0cb58e11db605d443c2e');
-INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','c7c47271397ea1fae622abe8317ddfc3285bd7e5864c11e8fdf3fe56af75cc38');
-INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"fa5278b9c27ee7e35fb9b13329e4146133c9219897aaa6fde667e2eda5ac015f","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'3e45bdeb72be2a4d15f89d316f8838ddaa53c28c44f51d47169ee5e380e190f7');
-INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d78aeb9f3c476cee9499343233d760938002a1033030a0e194207d3c05e6ac5');
-INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'NEW_TRANSACTION',NULL,'1cf9e21ca746dcb13d78709ff7c2f4cf425973e4b21419805473d8bdd730f340');
-INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','bb1d81213d41c831d9f274a7bba5dab17eaf28abb54047ab502c094bc804a145');
-INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','e38dff1a8ee210f318e067a1d6eeab9539ae1cff1fb3a373b5b1d8320ae672f3');
-INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','b81539f2a91b5573ae6e3ef2d4a66e84825045faabb76c9e8a6f4d8d4e7491bc');
-INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','38f60af10e894580446794ab76e7415041909a4f5e2fb831565a19003bf92b2c');
-INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','66a46f7fbac9dd73dd3cfdef37935be17dbaedf84e80bc271d98b453b55ca7ac');
-INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"fc77802662487506752caa901851d67dee6b960606286e180c6e9cd5a5f6cba0","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'dcc9be625d18a52acb4eda2426b904a9f3705c17d0169ef5a599a4d3c1e7505e');
-INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5534ed8e92a6d9a48ca4eda565293aec6db342148be12bb9d3191442d9fa180c');
-INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'NEW_TRANSACTION',NULL,'43e3415b4145a5590f6a5afa8d4504c4d8da54ad210051f30827219c3c2fdb3e');
-INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','bca5b6094c0b737966b886b4f873f74a950201f8c2c1b300eaccba9302ffc2ca');
-INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','ee96dd7403e45bbdfac76a6650f5658eecacde8c2e3145ee4f8fbe236001c4ac');
-INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"2a51d45368d39a8ed09a7c24aab6271397a8a6dbabc960b4b26d051547f15f3e","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'dad207ed9ada4374bfb2c16c13461f280445bcbf4fe6eaa02ad84a85f43ce95c');
-INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'033be6d0e91a97e72b3c4049dabd2f51103f1ed08e131002f47cd3b2c87bd9ee');
-INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'NEW_TRANSACTION',NULL,'d445536fad880385a09ea8f8c571db5d846962e22d73d1df7877267d2225bb4e');
-INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','fbbc1698cca418bd05146b74d9677fb9004c85da08184d22d6ae16ebf5c8c479');
-INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','21e9b8d4f4ab26e26b40589f6e7d32555d8fe6fdd805498ce10988223e43ed63');
-INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','89e8d35da8387d5cba9a89661a74a0fc038a35c44701e4b0108b098d98cc0ac7');
-INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','d3c98eac03af86422635ce40a8734fde5e9f9de0da64cc9c8d4ac2ff7db144b8');
-INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','7defa889de305be9eee759279ddd244050d36737a58c18e7a74d1ecfa4cb6dbd');
-INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"ab785cd4356200a496f5b85e7f824d03bb32b81cafa403176a6ded65e0aa8a0a","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'a38d2d584277614090198d84e749895c90713937e48c826e463dcda9d3b809ef');
-INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7dfa0d09df5a56bd6b395a6c1fcd828210a651d8cc2c8c7f4ab29abede24542');
-INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'NEW_TRANSACTION',NULL,'acd5af104268b1a1a315169f3471ae60567b17d0526167fd8e72aa7221ee434a');
-INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','f45f02b352396204072b49b1c51010bab61c28f8eec7af294c1cc0028080f889');
-INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','8e9614349a6a7d706f9b5dc54eb99027441a0bcba7d8d1d0b77513a2542ff1c6');
-INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','9e2eb0a9fc9ebb9c646198d7a112754813f39536ac3d146704a13eafecb3f4d2');
-INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','2c5c79c2bfcbd90f39020f11a43c2cb729a1e2aa91d3dd608462e9559af4f57e');
-INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"c426ad40e2d4e6e3e6301c9122fdb9ef7f28fad2ef6135985046a4a9b2acdedb","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'d1263e8ed1921ad9189370e9ced2f139b48f9dfa747d0be0778687d357f51fbf');
-INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49cf9f2fce618e61728957ca57f60ed91b91aa41aeeb6070a1e9c78f761dcf1a');
-INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'NEW_TRANSACTION',NULL,'95ebea3dfdfba0701505fc32bfc3c1be641a748c7beeaf3fbb6eaef9776a7aee');
-INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','702b4bfa13f6f72e6f1e2f366dcdbf066069a123b837d168f771006e321145f0');
-INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','a7a607fae1884ddb9a700d69c873683717b222d318c8c4bab2d989772c331882');
-INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','3f237e8833f78a8c7161379ebaa962c4c5808bb31fe6893c2429f3156bd8095b');
-INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','06ec8d75fb7b3f69f1dd768553d163b81a22a14665960bc9fbebdc131f268312');
-INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"1417fc5280cab90a898e1b89baf5e8ebafcf666e43ecc2042bae44519c54794e","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'5a5431dee42084db9f1b0e25a7cb62b1ca4dfe84c134f03e3363d1a4b2685918');
-INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cc3dd3b7cbd6f0720addf83a3416c2ae6f5d4b6e123bf7a8b508cf0291d7778');
-INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'NEW_TRANSACTION',NULL,'743374584c811c99df321f635069e30e45a04bbb09852b63877d577d661157b8');
-INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','c34a327de9621819f0739d73ccc41ca5a43a8ff84cbe849ef115d04467961822');
-INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','40e4d9f12cf8bd4fedd966c4a6d8e747dd897195ffed2f6f1d2b2f87b9db3bf9');
-INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','c07d3fa2c035c3a32fbab61d56b43857f0bac1bdafc2334e8e1304641c4d9e60');
-INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','c0cb5c8b275b8d1817a84f95d3d8781ec792423b83953b0b82f3b24ee9cd96cf');
-INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','bb48ed3f46129a17a13c7d35e31b75e6ce28e1a3140b42b82509c0434b11aa41');
-INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"ad86d199894b3c4e8a2d05332b58b81350bfaf9686b5a0896fdc286cd5d95833","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'0dd008d5b870413afb76d63564e9ff78b7cc83058bc392adddb1a4e8cb2ff472');
-INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'245867ff1ac2137e90796a618b65e823168f9e1c6d967ea6df5bc492072ec288');
-INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'NEW_TRANSACTION',NULL,'79e67ae32c32be11a2f2045df58cde6160517f30d7b369c115d2f90e61144473');
-INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','351a12776d0362b367fff0462748835e1ea40fe2e57dba96ef9b873a294d91ee');
-INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','61d2c63eb9b6f216e0a80bbc8717ab70823fb3dcc3cee052d598e24c42a27a1d');
-INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','f64cf907d4f2c9d0f4ec95f248bbadb1b207cdf9e20d33570f36049bcb5056b8');
-INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','336527577586500fb42b47efe1730c1bc6edc2113d7e36fc0fd8baf9f0273b50');
-INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','4838442becdfd8bda42304cd8fac639cc1be8228a3e365495e079486bb357ce0');
-INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"31fb849548f5054c3f49f5ba1fc015a6169db27f00e90ea2baa6fe453e2744a5","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'6f49164dbab3030de67a68c13b2b5daae5088c8786849946395a067e42a9e80d');
-INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8649e7910125cfc32b7e9b857949bb99cad54353b6d400383fee168222425f68');
-INSERT INTO messages VALUES(1237,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"b9fcbdafddd46fdda061f6e9f8744b426b6ca37e32b315df1098cbc7899ae9b9","messages_hash":"dc4258fd460745fe443598c0119627362b7bceea1892f32243221551f45db0c9","transaction_count":0,"txlist_hash":"032166892f568bb97f4f69ef5bdf49cc1b15cc9f8c7f6c1f3e1f9d54816ad7e5"}',0,'BLOCK_PARSED',NULL,'f32a2bb8d084588fbe43f794dfab473a92ce6c2ab07d2d92adfb32868e475580');
-INSERT INTO messages VALUES(1238,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94364a367f61802c332630c676cf3415e6175a8c60edbe896afdaef4ac347e55');
-INSERT INTO messages VALUES(1239,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d","messages_hash":"4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96","transaction_count":0,"txlist_hash":"35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1"}',0,'BLOCK_PARSED',NULL,'0ce34415dfacbe1fcea7c7d629e170305dd1a7fcb196e7e6ff0d033afdabda31');
+INSERT INTO messages VALUES(3,310000,'insert','transactions','{"block_hash":"505d8d82c4ced7daddef7ed0b05ba12ecc664176887b938ef56c6af276f3b30c","block_index":310000,"block_time":310000000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1,"utxos_info":"e965dde6f8fa939677cb1bc28921cd98418e212f3468c9f6ea39baa1e8cd69a5:0"}',0,'NEW_TRANSACTION',NULL,'4a87cc49a20843c26b1df763f3ce6b52d59ed1c028ac6c36a1d96f52bae51b4f');
+INSERT INTO messages VALUES(4,310000,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310000,"calling_function":"burn","event":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","quantity":93000000000,"tx_index":1,"utxo":null,"utxo_address":null}',0,'CREDIT','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','885ebea2d49f4a749882f86e10e9b21fa6abc1a52e145cf510b39f1aec3bf6ed');
+INSERT INTO messages VALUES(5,310000,'insert','burns','{"block_index":310000,"burned":62000000,"earned":93000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597","tx_index":1}',0,'BURN','6dc5b0a33d4d4297e0f5cc2d23ae307951d32aab2d86b7fa147b385219f3a597','60ed070dd6d08a8afcb118fca013550daf8919696f16a8830e8184536c5c92b0');
+INSERT INTO messages VALUES(6,310000,'parse','blocks','{"block_index":310000,"ledger_hash":"cf0ea1d313e22ba5f413075b88e07dffc5c00e59f95eeb6d6dec935bd77f5ae4","messages_hash":"b212954e6ee1490c4671ffc0817eccb0d9bb4c729b599eeaa722513ccb4c883d","transaction_count":1,"txlist_hash":"f06c23e6040a063ed59693baa0d63492dce64e1debc7455b22f5535c9dfbdc67"}',0,'BLOCK_PARSED',NULL,'d4cf8a624f76c044302f63aba8daf9799694941ea251bd7a39f88954bb411315');
+INSERT INTO messages VALUES(7,310001,'insert','blocks','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c40adcd29bd386c6971d1826236154e7272070e3939aecaa73a5659eb39c1b5b');
+INSERT INTO messages VALUES(8,310001,'insert','transactions','{"block_hash":"3c9f6a9c6cac46a9273bd3db39ad775acd5bc546378ec2fb0587e06e112cc78e","block_index":310001,"block_time":310001000,"btc_amount":0,"data":"00000014000000a25be34b66000000174876e800010000000000000000000f446976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2,"utxos_info":"ae7a3edc95c2e5ecf013374d39915de4bbf5d98934bc7e53b00016267f8ffba0:0"}',0,'NEW_TRANSACTION',NULL,'965afca74493b295ca82e11e875f58c913fea311185bf15fbdae93851d9651ca');
+INSERT INTO messages VALUES(9,310001,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310001,"event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":50000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'DEBIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','dfc0b17fa4a97e06afccc87c24fbb7b2ee9690de70b3739bd570cd4ced5149a8');
+INSERT INTO messages VALUES(10,310001,'insert','assets','{"asset_id":"697326324582","asset_longname":null,"asset_name":"DIVISIBLE","block_index":310001}',0,'ASSET_CREATION','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','3601db0efd870070245923a53e4103d25bac7ea07aec0873967ce2af7c59e0d9');
+INSERT INTO messages VALUES(11,310001,'insert','issuances','{"asset":"DIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310001,"call_date":0,"call_price":0.0,"callable":false,"description":"Divisible asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'ASSET_ISSUANCE','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','69c133f7b7135486ac7ee00edcb20ced09224d33b74ce5dc6b1dfa6476b625b2');
+INSERT INTO messages VALUES(12,310001,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310001,"calling_function":"issuance","event":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","quantity":100000000000,"tx_index":2,"utxo":null,"utxo_address":null}',0,'CREDIT','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','81cd8e7e7c9a522bbb5edeb55fcb57f69777f03724c212b82fa372c1a4b7c7f0');
+INSERT INTO messages VALUES(13,310001,'parse','transactions','{"supported":true,"tx_hash":"1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1","tx_index":2}',0,'TRANSACTION_PARSED','1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1','c59cd5348a0e48274981749db99d617a54187b29e054c0e4e5e71ecb75d54212');
+INSERT INTO messages VALUES(14,310001,'parse','blocks','{"block_index":310001,"ledger_hash":"11461f972c4cd85c87b5abfedb3cee589d09e945570d34564dcde6f4df9d2b57","messages_hash":"0e2dc86cf7fad0df5465e63178b89d1df9c45e474cff39175a31557795cc80da","transaction_count":1,"txlist_hash":"ff8358e8c8b2cb9a1765deadb77bdfc6eae05a844831a0a8c8820d416d54446e"}',0,'BLOCK_PARSED',NULL,'d431ea5c36c8281924eea675245c1a57bf6e7627bac0bf7de1ae202e6ec18026');
+INSERT INTO messages VALUES(15,310002,'insert','blocks','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a732ea775c3074c37c07538237a921cfa12b99981c1fceb7ed63560f5503c8b');
+INSERT INTO messages VALUES(16,310002,'insert','transactions','{"block_hash":"fbb60f1144e1f7d4dc036a4a158a10ea6dea2ba6283a723342a49b8eb5cc9964","block_index":310002,"block_time":310002000,"btc_amount":0,"data":"000000140006cad8dc7f0b6600000000000003e800000000000000000000124e6f20646976697369626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3,"utxos_info":"8fb1fec9946e548cd74122788c45f37b6873122b928bd954eb2627431330109f:0"}',0,'NEW_TRANSACTION',NULL,'c623ecc76935dcb8986103a8c6590e0bbc401223ba99900fcf2b57e61bdf8e13');
+INSERT INTO messages VALUES(17,310002,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310002,"event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":50000000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'DEBIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','773f817e9ea734cf7567d73494998fd051354c7153dcd01e19051fc9b50b31b3');
+INSERT INTO messages VALUES(18,310002,'insert','assets','{"asset_id":"1911882621324134","asset_longname":null,"asset_name":"NODIVISIBLE","block_index":310002}',0,'ASSET_CREATION','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','f1918d0943111ca12faa0a2d582b839f3c6f7b7f522fb2447eecf3ec21af0ac0');
+INSERT INTO messages VALUES(19,310002,'insert','issuances','{"asset":"NODIVISIBLE","asset_events":"creation","asset_longname":null,"block_index":310002,"call_date":0,"call_price":0.0,"callable":false,"description":"No divisible asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'ASSET_ISSUANCE','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','75da65c1cb4fc710f930c8908b52ae371ff6e1674f75d5cfb831d21a653f5d56');
+INSERT INTO messages VALUES(20,310002,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310002,"calling_function":"issuance","event":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","quantity":1000,"tx_index":3,"utxo":null,"utxo_address":null}',0,'CREDIT','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','e5277c57bded43ba153e9414b1fcc3739b812b81bf401ac5e4435c7c5d1eae3c');
+INSERT INTO messages VALUES(21,310002,'parse','transactions','{"supported":true,"tx_hash":"7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584","tx_index":3}',0,'TRANSACTION_PARSED','7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584','48f7e87482b45a402cb6453ff16eb5f39eeadb4002dac42d149984644d4d86ec');
+INSERT INTO messages VALUES(22,310002,'parse','blocks','{"block_index":310002,"ledger_hash":"355d92f841de89a1d97c3b2ea7623959ea4494bb62ea7e67ad359beb68caca8c","messages_hash":"ecab7df994ae52f2b33359c48ee70b9eefc192e354d8001004193b11a473b0e3","transaction_count":1,"txlist_hash":"b17176b511fdea4cd899cfaf83f2e12193a4c92d1b199f18f590eb4fed90fa25"}',0,'BLOCK_PARSED',NULL,'c4c4820a2ef1f9c4193770028ed8c44c2d9728703979f55e545ac817cf87f6f7');
+INSERT INTO messages VALUES(23,310003,'insert','blocks','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00df60911b15aa382ed254af3a3624487eabcfd421371ca936c9d9f1fc563e3a');
+INSERT INTO messages VALUES(24,310003,'insert','transactions','{"block_hash":"d50825dcb32bcf6f69994d616eba18de7718d3d859497e80751b2cb67e333e8a","block_index":310003,"block_time":310003000,"btc_amount":0,"data":"0000001400000003c58e5c5600000000000003e8010000000000000000000e43616c6c61626c65206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4,"utxos_info":"197757033ba3a2af71a130f72a01bf9e713cb2cb17ee850e185fee521367f79f:0"}',0,'NEW_TRANSACTION',NULL,'bcdd799ff3074eed4c39841d84722bffa0987c1303effc3c1db69db9d7fbe186');
+INSERT INTO messages VALUES(25,310003,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310003,"event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":50000000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'DEBIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','5cfbcdb9dd51a4074410a6b41a04892cf1d4bf12d2ff195fbfde0a0ec89df6ef');
+INSERT INTO messages VALUES(26,310003,'insert','assets','{"asset_id":"16199343190","asset_longname":null,"asset_name":"CALLABLE","block_index":310003}',0,'ASSET_CREATION','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','8566b0c679622bb955c467781d9b57a112194af24888c3501e63ecbc38f51434');
+INSERT INTO messages VALUES(27,310003,'insert','issuances','{"asset":"CALLABLE","asset_events":"creation","asset_longname":null,"block_index":310003,"call_date":0,"call_price":0.0,"callable":false,"description":"Callable asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'ASSET_ISSUANCE','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','3f925e130865a7c1435d9466b2e761e3b235e9f226f8201bdd0b2468ffcc68f0');
+INSERT INTO messages VALUES(28,310003,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"CALLABLE","block_index":310003,"calling_function":"issuance","event":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","quantity":1000,"tx_index":4,"utxo":null,"utxo_address":null}',0,'CREDIT','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','0da26f4a283dd456401e2af17ba06532136a36594551b92416a68b863da9a0af');
+INSERT INTO messages VALUES(29,310003,'parse','transactions','{"supported":true,"tx_hash":"c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140","tx_index":4}',0,'TRANSACTION_PARSED','c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140','f760bc0ebe62320ec71d89b27aa4f452ce2a54088c87baa139dc922416c6be1a');
+INSERT INTO messages VALUES(30,310003,'parse','blocks','{"block_index":310003,"ledger_hash":"edcd7e344fb5cca16999f025594890b8b54543555e61eb3807406bb4204677f2","messages_hash":"07b39fe826dc81221808efed56c541935a54a764c9599d5a3b94983b05705545","transaction_count":1,"txlist_hash":"b6dffe5b8c1f483c3c20832d23dddd7b530afe7ac1f3f57f433da59d83b48f06"}',0,'BLOCK_PARSED',NULL,'f6760ced99e0cfd61d2c96f82ac131e36e4e091c7d48999bf5b31d075dcf7a76');
+INSERT INTO messages VALUES(31,310004,'insert','blocks','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea9f278a9d09a5b3f943d01f9733993daaa92bb2d83549396ff05eceb4001806');
+INSERT INTO messages VALUES(32,310004,'insert','transactions','{"block_hash":"60cdc0ac0e3121ceaa2c3885f21f5789f49992ffef6e6ff99f7da80e36744615","block_index":310004,"block_time":310004000,"btc_amount":0,"data":"0000001400000000082c82e300000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5,"utxos_info":"44f67ff70959390fbdff00651b7e71c39fc3f62166cb58002a0d937c4e6a5fa1:0"}',0,'NEW_TRANSACTION',NULL,'fd60331ac14a6cf0b5a37da04efc294f561cc5e03d6daf1647b26a8af85436c7');
+INSERT INTO messages VALUES(33,310004,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310004,"event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":50000000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'DEBIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','63eb85bc9e6ce79431a845d85c6c292975402064dda9ff8d8fabb514eb6ba952');
+INSERT INTO messages VALUES(34,310004,'insert','assets','{"asset_id":"137134819","asset_longname":null,"asset_name":"LOCKED","block_index":310004}',0,'ASSET_CREATION','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','0e874f68e1ea54e92d714c0e388f9c3a8084ea59cfd8bd918b6568758fa9df2a');
+INSERT INTO messages VALUES(35,310004,'insert','issuances','{"asset":"LOCKED","asset_events":"creation","asset_longname":null,"block_index":310004,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":1000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'ASSET_ISSUANCE','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','aa6e01961cb1584d941d9f907034a568a687ce7a9e04ec7def596d284b550630');
+INSERT INTO messages VALUES(36,310004,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"LOCKED","block_index":310004,"calling_function":"issuance","event":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","quantity":1000,"tx_index":5,"utxo":null,"utxo_address":null}',0,'CREDIT','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','a9332642805ce7ef970a9c1c7839c194692a274a60ca292ea984a80defe9f205');
+INSERT INTO messages VALUES(37,310004,'parse','transactions','{"supported":true,"tx_hash":"90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da","tx_index":5}',0,'TRANSACTION_PARSED','90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da','dc531da38c647694df8f746528e5baea3214d33e1449985b29df2ff15890d0de');
+INSERT INTO messages VALUES(38,310004,'parse','blocks','{"block_index":310004,"ledger_hash":"abd71a31bc1f8a072761b23a5bc2976731ebdf305d1d7d33922e93573f308129","messages_hash":"3320a2669d0684b362bec3faf7e73ae272f866e95ef581d8083030c372e44795","transaction_count":1,"txlist_hash":"3da72b0c813432f47a3a70887dfd29350d270e9ebaca9875ed6304c91888e387"}',0,'BLOCK_PARSED',NULL,'85da0c8f33d4810f09384309fb01cb17d91a545532dde211b377360abfcccf85');
+INSERT INTO messages VALUES(39,310005,'insert','blocks','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e6b43a298d8c3571ba4b79f2e7af02ec84af43fb311f316510b98cd92618e38f');
+INSERT INTO messages VALUES(40,310005,'insert','transactions','{"block_hash":"8005c2926b7ecc50376642bc661a49108b6dc62636463a5c492b123e2184cd9a","block_index":310005,"block_time":310005000,"btc_amount":0,"data":"0000001400000000082c82e3000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6,"utxos_info":"2ec530be8ec42b1234d8c7c9556d67f74045c393436b20b0017629f1a1ac75c1:0"}',0,'NEW_TRANSACTION',NULL,'082641c57dfa01635f6e174bcfa502f8e015b58862895b3ebf870bf7869e8f25');
+INSERT INTO messages VALUES(41,310005,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310005,"event":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","quantity":0,"tx_index":6,"utxo":null,"utxo_address":null}',0,'DEBIT','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','a9cda90cefd6e27f76a3d1c32656c031ece3ee6d1d2a48b54a5184c05319a14d');
+INSERT INTO messages VALUES(42,310005,'insert','issuances','{"asset":"LOCKED","asset_events":"lock_quantity reissuance","asset_longname":null,"block_index":310005,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":true,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'ASSET_ISSUANCE','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','7a55a2655e99370897df1aaf08912119432f6a6698601b0853745ac06a5148bf');
+INSERT INTO messages VALUES(43,310005,'parse','transactions','{"supported":true,"tx_hash":"344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc","tx_index":6}',0,'TRANSACTION_PARSED','344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc','efcdc84809fba6e411b0fde1e4328f0b857e7b3700161634fb5b640c35ecb057');
+INSERT INTO messages VALUES(44,310005,'parse','blocks','{"block_index":310005,"ledger_hash":"0c3914f9676e506a96e6db793f15200ef33087cd47de4d27628849013a391daa","messages_hash":"092fdd31ea597da3c6623b94701387a103e4ecf16ecce9dbcff7b2656c69af91","transaction_count":1,"txlist_hash":"2d59f139907859f9108360f7fa4695101a6b5ef0b7dd0e56c2dd41641e58e9af"}',0,'BLOCK_PARSED',NULL,'a037d88ec45e285a451b9c95d9e94c600743683b5a3f7903e2516f96e04d8a45');
+INSERT INTO messages VALUES(45,310006,'insert','blocks','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8da22c3ee67e67193faf605c73f9196368e64a2e29b76543c906daf5581f413f');
+INSERT INTO messages VALUES(46,310006,'insert','transactions','{"block_hash":"bdad69d1669eace68b9f246de113161099d4f83322e2acf402c42defef3af2bb","block_index":310006,"block_time":310006000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7,"utxos_info":"5009038eb2a30367602fab49886139c968cc731cd60a9a4fd0828313e1b9d6f6:0"}',0,'NEW_TRANSACTION',NULL,'fcfef7c418b630a2f347870e6686d24d6b3365c649893bc5f14b406235025248');
+INSERT INTO messages VALUES(47,310006,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310006,"event":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","quantity":100000000,"tx_index":7,"utxo":null,"utxo_address":null}',0,'DEBIT','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','0d38d78e9dfb703a833b464a941470b84cae17f03949ed87d6b1dd501183d53d');
+INSERT INTO messages VALUES(48,310006,'insert','orders','{"block_index":310006,"expiration":2000,"expire_index":312006,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'OPEN_ORDER','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','0ae23e1c5cfab65ef2146838eef55e13f5de565e78451001c53fcad63684592f');
+INSERT INTO messages VALUES(49,310006,'parse','transactions','{"supported":true,"tx_hash":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8","tx_index":7}',0,'TRANSACTION_PARSED','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8','291b04f28169d316bd30b1281dd3352470ee1ded3bbe38abb98d4bdba502c506');
+INSERT INTO messages VALUES(50,310006,'parse','blocks','{"block_index":310006,"ledger_hash":"57ff5f34a9e418b179db9003414c5f3bdfa7feeb538f24071b23d024a3d05df0","messages_hash":"c496343e196749056a9c5d8cb32f31cd989c9b8def81d208af418014f8dd4e14","transaction_count":1,"txlist_hash":"a4a6fb433e6c49968fded16954502c472b0d21b74c6cce8d08c8c53c00f2781e"}',0,'BLOCK_PARSED',NULL,'703dfa038818bc2632e3226775a850af56dc940e56e0987a2f345058fcc463db');
+INSERT INTO messages VALUES(51,310007,'insert','blocks','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1bd4191bbee69d5901a40a3df48a05b139ab38b8a92b4b4850da643e23f0f25e');
+INSERT INTO messages VALUES(52,310007,'insert','transactions','{"block_hash":"10a642b96d60091d08234d17dfdecf3025eca41e4fc8e3bbe71a91c5a457cb4b","block_index":310007,"block_time":310007000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8,"utxos_info":"e4f8185447ffc9855e5612f86564524dfab31a25b7623168812771ac938e71dc:0"}',0,'NEW_TRANSACTION',NULL,'358a32e1ad8648f9160360e1336353aa86c38a7890e7f09e24bd9944dbb6d321');
+INSERT INTO messages VALUES(53,310007,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310007,"event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'DEBIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','5fd165a3dcd376cb327bb85ed77051e88e4d311c9b98804a38a2d1b0e6a3034a');
+INSERT INTO messages VALUES(54,310007,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"DIVISIBLE","block_index":310007,"calling_function":"send","event":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","quantity":100000000,"tx_index":8,"utxo":null,"utxo_address":null}',0,'CREDIT','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','e0f8b9262f765a22057b1d1181932b06ec42f740c4a9a9a40ccec40d8b292fc8');
+INSERT INTO messages VALUES(55,310007,'insert','sends','{"asset":"DIVISIBLE","block_index":310007,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'SEND','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','d05e2c92ce8e8e7ab7147233d447fe9b6df4a6939f35131fbcdf68a509e4699f');
+INSERT INTO messages VALUES(56,310007,'parse','transactions','{"supported":true,"tx_hash":"6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753","tx_index":8}',0,'TRANSACTION_PARSED','6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753','3b4dbbd0ca1b04bc5f3d0e9d2ba90ef45f0a78034004be8d6e62fdd582abbf7c');
+INSERT INTO messages VALUES(57,310007,'parse','blocks','{"block_index":310007,"ledger_hash":"bfed530458339aab02ff75ad76738569dc6997c7a35d4452351678b04e022f68","messages_hash":"ba9300cb8828b0fbd75d9258a33dc126a4bb9227ca937a3719320449b907d39c","transaction_count":1,"txlist_hash":"ce20264c332892b0a5e0c3e2d4b63d02c901fa2c3f8c5171b2896b50c82ea0af"}',0,'BLOCK_PARSED',NULL,'6d222fd31a3b9bb7622f2ae9a85b3b4518f6577297453bc66f61fbdfc80c25d4');
+INSERT INTO messages VALUES(58,310008,'insert','blocks','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'090825474106ef69cd1bc45547423d9f5485a84cfe723cce91199322dff7b84b');
+INSERT INTO messages VALUES(59,310008,'insert','transactions','{"block_hash":"47d0e3acbdc6916aeae95e987f9cfa16209b3df1e67bb38143b3422b32322c33","block_index":310008,"block_time":310008000,"btc_amount":5430,"data":"0000000000000000000000010000000005f5e100","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9,"utxos_info":"4d137354d5136c5884ac767ceee7988e41538760b29b37d028c0ea9d5273493b:0"}',0,'NEW_TRANSACTION',NULL,'5eb0328e084157a282129515d5b5d6eb1c81c51b0d8933d6bfcbfb7709f00935');
+INSERT INTO messages VALUES(60,310008,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310008,"event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'DEBIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','6a8104bbed3791998f8cb49bb11b10bcec193d873c5341819f75570306e6a416');
+INSERT INTO messages VALUES(61,310008,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310008,"calling_function":"send","event":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","quantity":100000000,"tx_index":9,"utxo":null,"utxo_address":null}',0,'CREDIT','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','a428a377a95ef5462197ff89e09b92158a73aa3a38cc9c5afb15fbc96c334698');
+INSERT INTO messages VALUES(62,310008,'insert','sends','{"asset":"XCP","block_index":310008,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'SEND','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','191f0a1b60a636d061641745702b2978757186b2323af2403ba13346396e28cb');
+INSERT INTO messages VALUES(63,310008,'parse','transactions','{"supported":true,"tx_hash":"4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43","tx_index":9}',0,'TRANSACTION_PARSED','4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43','e297c355233ecd2d1727b006054b44bbfd9ddc330113451ae94ce163e1b34742');
+INSERT INTO messages VALUES(64,310008,'parse','blocks','{"block_index":310008,"ledger_hash":"d4feec997754d11a1502e5351ed62fcfbfcafb770e19a37da41d1d88b7b45ed4","messages_hash":"e8c0d80c8b8d9bb2636dd711a3ef82861868eaf2ea3773be0e63fef09d970ca1","transaction_count":1,"txlist_hash":"d25c9f48fbbe2010a62cad729d45b658a2caf9a7c9abc65a30e2a7fc47bc83e5"}',0,'BLOCK_PARSED',NULL,'36ea72686c98fb18d19d8eeace3bfd8456b18cac9f9cde02d370253385058cb5');
+INSERT INTO messages VALUES(65,310009,'insert','blocks','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0153a84cbd3ea5c65dcb17ba9d4285333cb360a7de29d98c3cc47dcc3c9a01c');
+INSERT INTO messages VALUES(66,310009,'insert','transactions','{"block_hash":"4d474992b141620bf3753863db7ee5e8af26cadfbba27725911f44fa657bc1c0","block_index":310009,"block_time":310009000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000a25be34b660000000005f5e10007d00000000000000000","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10,"utxos_info":"70ab525dff715d2bd93627834fe7ad516c451d4c6dcd89abe0fe491c480eb404:0"}',0,'NEW_TRANSACTION',NULL,'156748847d646b8f33445175b5f81bf41f98745d897e80aeb7fa44c8afe3d5ed');
+INSERT INTO messages VALUES(67,310009,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310009,"event":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","quantity":100000000,"tx_index":10,"utxo":null,"utxo_address":null}',0,'DEBIT','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','12a382494d604ffd6c3c0bca0bf8511056f0fa65665cc47668516434cd8f9be4');
+INSERT INTO messages VALUES(68,310009,'insert','orders','{"block_index":310009,"expiration":2000,"expire_index":312009,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":0,"fee_required_remaining":0,"get_asset":"DIVISIBLE","get_quantity":100000000,"get_remaining":100000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'OPEN_ORDER','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','cc32702a3df249b82b87eb301837487a502c377b65714fd56d072c62100f7122');
+INSERT INTO messages VALUES(69,310009,'parse','transactions','{"supported":true,"tx_hash":"21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b","tx_index":10}',0,'TRANSACTION_PARSED','21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b','d0cf88061bbb6882af4686cd84073c7d93aaa36d9c0bc73fe6f8cc2e48c3f48b');
+INSERT INTO messages VALUES(70,310009,'parse','blocks','{"block_index":310009,"ledger_hash":"4ab5ff9e71bbc83956557fb5abec98372fa38e5580838fb258b2d831bfc4d9ea","messages_hash":"27c208828cb07a131d9b893b23c0205d26adf423d8866fe722e5146da11bf99b","transaction_count":1,"txlist_hash":"173e769e0b4fa951ef0267c7e218f3a473d9a5857b0880d654a2181f244c92e2"}',0,'BLOCK_PARSED',NULL,'afed2b29fa0fc82ac4ae04cbff94ceb04e41af44e763dac52da4b2cbeba68d21');
+INSERT INTO messages VALUES(71,310010,'insert','blocks','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15a8d7ff478fd233e42b7a5fcfd3c7e9673a26067a841634f79c6ead954dadfe');
+INSERT INTO messages VALUES(72,310010,'insert','transactions','{"block_hash":"a58162dff81a32e6a29b075be759dbb9fa9b8b65303e69c78fb4d7b0acc37042","block_index":310010,"block_time":310010000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000f424007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11,"utxos_info":"8e4daab9ae8909b2ed524fa98a8c366ea2bca0435cd0b4f040307763fdeb103c:0"}',0,'NEW_TRANSACTION',NULL,'d4af102623b0f3f67071f605f7eecb7253e6d4c0632deb1adf5c6c4b0c5b27c6');
+INSERT INTO messages VALUES(73,310010,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310010,"event":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","quantity":100000000,"tx_index":11,"utxo":null,"utxo_address":null}',0,'DEBIT','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','c8a3f56df0fe39dfab4b207aee7c157cb8ca02ed77715166df1cbd32391ff309');
+INSERT INTO messages VALUES(74,310010,'insert','orders','{"block_index":310010,"expiration":2000,"expire_index":312010,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":1000000,"get_remaining":1000000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'OPEN_ORDER','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','397f360f6ee9de4bbba4b4bdf6bfaf5d56a747359fc83937c0116a131eee36c6');
+INSERT INTO messages VALUES(75,310010,'parse','transactions','{"supported":true,"tx_hash":"1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a","tx_index":11}',0,'TRANSACTION_PARSED','1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a','3257ee461b98e1d2d870b6eaf586d03e89688cb060ba1d10423161d6c8d93eea');
+INSERT INTO messages VALUES(76,310010,'parse','blocks','{"block_index":310010,"ledger_hash":"1909ef40a24263776cb9e0d52a690048b50728855a0fe4b0e1ba3834a9e401c1","messages_hash":"c0d077873f1037ead989052f4de498361c3ea82b92bfd76c15569bc6f1190967","transaction_count":1,"txlist_hash":"7d1ef03dad99c4bdf7a8e5af7209a136c8ac392922dd3afdbcc0446ea1f5f604"}',0,'BLOCK_PARSED',NULL,'0ba63dcb38116f5a40e08be28553ea7c321469318e21481a7e1b17b2c4a1c911');
+INSERT INTO messages VALUES(77,310011,'insert','blocks','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce93301fd3698ca80c99266481ba17b4cb4fefd2b8b575f0e15a064d23813d6');
+INSERT INTO messages VALUES(78,310011,'insert','transactions','{"block_hash":"8042cc2ef293fd73d050f283fbd075c79dd4c49fdcca054dc0714fc3a50dc1bb","block_index":310011,"block_time":310011000,"btc_amount":0,"data":"0000000a000000000000000000000000000a2c2b00000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12,"utxos_info":"ee3525a59635e10bfd65f7427a6c352b496d1fd5812c86cc58e869cf412bb92a:0"}',0,'NEW_TRANSACTION',NULL,'877a01a3395957430e89649733c932fa058f9522e3918b10f49307979542fbc6');
+INSERT INTO messages VALUES(79,310011,'insert','orders','{"block_index":310011,"expiration":2000,"expire_index":312011,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":666667,"give_remaining":666667,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'OPEN_ORDER','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','98fc51613e90b2b1773f7cb59275cd44023a4170c51b9e045b5507f5930c3f01');
+INSERT INTO messages VALUES(80,310011,'parse','transactions','{"supported":true,"tx_hash":"a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6","tx_index":12}',0,'TRANSACTION_PARSED','a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6','bd4b64b5d5681e49affcbe560edbd433df91bd9e5162f5b81c10772054ff260b');
+INSERT INTO messages VALUES(81,310011,'parse','blocks','{"block_index":310011,"ledger_hash":"c3d51a5f2df90c089844ba4de7d5541f6051490aa1389e5945a7bb91d49e3589","messages_hash":"36e98d3aea754604da80ea2624deb96d78d9a250de7a6933a32cc7eec0c01c57","transaction_count":1,"txlist_hash":"86ebe5be8b9443f411adcd49e7443a34941979c0c6bf40136a3b44193024abfc"}',0,'BLOCK_PARSED',NULL,'0fae5215b6ca33535ec5df86ae9ef9c8d6ef9309b45da0b9ddfe365646a77907');
+INSERT INTO messages VALUES(82,310012,'insert','blocks','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df9b6ddaa3406827b4cfb7dea3905dd85d4ec9912985589e84c969e46929300a');
+INSERT INTO messages VALUES(83,310012,'insert','transactions','{"block_hash":"cdba329019d93a67b31b79d05f76ce1b7791d430ea0d6c1c2168fe78d2f67677","block_index":310012,"block_time":310012000,"btc_amount":1000,"data":"0000000000000000000000010000000011e1a300","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13,"utxos_info":"07ff616bbc8b38f81525d5a1f5b9ce7efedf7eaf2741147cb430736defaf36e5:0"}',0,'NEW_TRANSACTION',NULL,'f1c46ec5f624ef964893a37bbc39347b35e12e6f7b40d7ff244017dfab0ee63c');
+INSERT INTO messages VALUES(84,310012,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310012,"event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'DEBIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','00cf23754d6556bb95ef54e5746aeed15d39733e15f0ccb655f0826efb4ff969');
+INSERT INTO messages VALUES(85,310012,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"XCP","block_index":310012,"calling_function":"send","event":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","quantity":300000000,"tx_index":13,"utxo":null,"utxo_address":null}',0,'CREDIT','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','baf447db45b75ea7c11882fc887bba15f22ba0abf9766b1bf5404c6945e09fa3');
+INSERT INTO messages VALUES(86,310012,'insert','sends','{"asset":"XCP","block_index":310012,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":300000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'SEND','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','ba082eedde64897daba9ea3df17deb22c203fb113378a970e0f6365dca1084dd');
+INSERT INTO messages VALUES(87,310012,'parse','transactions','{"supported":true,"tx_hash":"698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6","tx_index":13}',0,'TRANSACTION_PARSED','698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6','88df74e82749db1f40a23de1f079d64232681968711cbb8c0f4d3d0e2f00b7cc');
+INSERT INTO messages VALUES(88,310012,'parse','blocks','{"block_index":310012,"ledger_hash":"a9dc31556d38b118eeb0bcbb3a374a0ed79adec4eb23e00c80c0599ba97c9a7a","messages_hash":"4f5d5f9d6a0d00e9a73ed3e5d8ac4cf174e48b53351a1e41edb760491d1924e7","transaction_count":1,"txlist_hash":"5a729b250068fe7b175a540b66a30326344514e357023184540ef97bae5e16e7"}',0,'BLOCK_PARSED',NULL,'85e387d6af6dedf541f6b972c57ad6e83d75a0e11244e945045afaa17b418333');
+INSERT INTO messages VALUES(89,310013,'insert','blocks','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'838b5f02419dd80cc5e628414ccf09f6e2c90872004f30e2d0106ab0afe8a93c');
+INSERT INTO messages VALUES(90,310013,'insert','transactions','{"block_hash":"0425e5e832e4286757dc0228cd505b8d572081007218abd3a0983a3bcd502a61","block_index":310013,"block_time":310013000,"btc_amount":1000,"data":"00000000000000a25be34b66000000003b9aca00","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14,"utxos_info":"1bfb8255970fbb3505460f9f0785a34c3b27cd6ba34e32f2ce894ffbcf9a456f:0"}',0,'NEW_TRANSACTION',NULL,'4e7a0408f413e5e7dd5450125b772ed060b0cc97ca0e7ecc902a2439e7920634');
+INSERT INTO messages VALUES(91,310013,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310013,"event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'DEBIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','4e53e0d8a46e8d93a0b0f015f20a11eec0fbcbd2f0b9ca95a2f113feedaa7c6c');
+INSERT INTO messages VALUES(92,310013,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"DIVISIBLE","block_index":310013,"calling_function":"send","event":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","quantity":1000000000,"tx_index":14,"utxo":null,"utxo_address":null}',0,'CREDIT','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','0fa940a2141f7d63b60fbe3361fa42b5dd7b5130fd31a7f3dd34675a79054107');
+INSERT INTO messages VALUES(93,310013,'insert','sends','{"asset":"DIVISIBLE","block_index":310013,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":1000000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'SEND','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','3cf7048e821e93f7878b22f0cfcb4845d3c9d1d77871c81a418c2bf2bbb11e33');
+INSERT INTO messages VALUES(94,310013,'parse','transactions','{"supported":true,"tx_hash":"0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132","tx_index":14}',0,'TRANSACTION_PARSED','0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132','e485083444f0669ab3cb66f5d9f5636c3f25dea641801dc544a5c085fc28fb0b');
+INSERT INTO messages VALUES(95,310013,'parse','blocks','{"block_index":310013,"ledger_hash":"e72be5070d0a5853631d902d334e8b88eddf6e79616373311babc4a0a27dd3d8","messages_hash":"b68a5298c856d8ac685da6e18d78ab32c536f6aac8e82f71be8853f3a9c61419","transaction_count":1,"txlist_hash":"1294e3d0871b0c2297d9980ed46bfa3563b33b202b426949dadeeba7075b4bc7"}',0,'BLOCK_PARSED',NULL,'34c82cb44b7b8ef3d59e78786a89bde3f20ca66332d39ec306dc419407e75b61');
+INSERT INTO messages VALUES(96,310014,'insert','blocks','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24f654f13d3496e2ac1aecf11573d96f84c674d7efd2b88feef5c03a09130a57');
+INSERT INTO messages VALUES(97,310014,'insert','transactions','{"block_hash":"85b28d413ebda2968ed82ae53643677338650151b997ed1e4656158005b9f65f","block_index":310014,"block_time":310014000,"btc_amount":5430,"data":"000000000006cad8dc7f0b660000000000000005","destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15,"utxos_info":"a904fa34fd5e99a8d23ddfacbaec581049046fc39b1312524f8bb1f360bc247d:0"}',0,'NEW_TRANSACTION',NULL,'1ecd534ff2d71766540b7bc36662cb3621049d60347870cd553383f6f595c842');
+INSERT INTO messages VALUES(98,310014,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310014,"event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'DEBIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','4ae10ea7cc13ea487db75fe471758624d24beff210d310c1f06f9b545aad94a8');
+INSERT INTO messages VALUES(99,310014,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"NODIVISIBLE","block_index":310014,"calling_function":"send","event":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","quantity":5,"tx_index":15,"utxo":null,"utxo_address":null}',0,'CREDIT','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','e79bfff63fd38b411b156761892d3af5fa45cc97c61eb48269d1acd7f8753761');
+INSERT INTO messages VALUES(100,310014,'insert','sends','{"asset":"NODIVISIBLE","block_index":310014,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","quantity":5,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'SEND','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','daf0c448344700055e705cf71a5a45a9d1699557433d65ca736fed6ff2a8aea4');
+INSERT INTO messages VALUES(101,310014,'parse','transactions','{"supported":true,"tx_hash":"1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a","tx_index":15}',0,'TRANSACTION_PARSED','1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a','e5e14d504d802072679eaffb72f23b77232e6ac30c27e8cf0f1d0473e2972304');
+INSERT INTO messages VALUES(102,310014,'parse','blocks','{"block_index":310014,"ledger_hash":"cb0962222af917dbac2a11465c22cd80770c0b3cdb8bdc0870c99a8116745c9e","messages_hash":"a01091f05d990839c3a44dfffa01f561add27ae20e7298cfd5e881e7dfb4019a","transaction_count":1,"txlist_hash":"d5431af170b331497d8967969820632880473d06dae0d06fa7ffc93a0cb90180"}',0,'BLOCK_PARSED',NULL,'4d141512bff87b0fe57a172ef695ff88c14a6e195adcd0d9044ae823aea35a46');
+INSERT INTO messages VALUES(103,310015,'insert','blocks','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a5089c350aaec6928a029a4578fe73eb4091c839909b8afb69a9ecacbf2f6b6');
+INSERT INTO messages VALUES(104,310015,'insert','transactions','{"block_hash":"4cf77d688f18f0c68c077db882f62e49f31859dfa6144372457cd73b29223922","block_index":310015,"block_time":310015000,"btc_amount":1000,"data":"000000000006cad8dc7f0b66000000000000000a","destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16,"utxos_info":"3bb0f340541ec86bfd17e4e6986ff9b2a01c78ecbf56c101ff05e9efcd95edda:0"}',0,'NEW_TRANSACTION',NULL,'db6dcaaddb0d9057a1187dadf0a8c814570ac195bb1a5131e69d148c1db080bb');
+INSERT INTO messages VALUES(105,310015,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"NODIVISIBLE","block_index":310015,"event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'DEBIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','6a9676339ba199ab0b62fde11aee0ff2e3f89a33a8134bc6a3c9cc6810ac34fc');
+INSERT INTO messages VALUES(106,310015,'insert','credits','{"address":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","asset":"NODIVISIBLE","block_index":310015,"calling_function":"send","event":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","quantity":10,"tx_index":16,"utxo":null,"utxo_address":null}',0,'CREDIT','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','7ae43414e240cc0ef85a52425dc7776c27afb88ed2a25e68feda1a2c21b0dfbb');
+INSERT INTO messages VALUES(107,310015,'insert','sends','{"asset":"NODIVISIBLE","block_index":310015,"destination":"1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2","quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'SEND','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','04b5875fd75477df2af459c7e063587f4abb29259e8aa8236e48ffe5ef697608');
+INSERT INTO messages VALUES(108,310015,'parse','transactions','{"supported":true,"tx_hash":"e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c","tx_index":16}',0,'TRANSACTION_PARSED','e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c','586e624b643ddbe00049fd62e48cadef9f5435649df1c7934e7d1893eccce8f0');
+INSERT INTO messages VALUES(109,310015,'parse','blocks','{"block_index":310015,"ledger_hash":"6ff899433f22546c41a15f20b4c66913c747931500fee10d58c4a17b9e2f0c88","messages_hash":"0c54f16f43b43b38ef3b7b4a83df41a2c907791fa27fb957774a9f41366f6696","transaction_count":1,"txlist_hash":"b77c1d69b3ac7348e336cce9948f982efafa1cb56cbdde85fe9f49a73871ba3b"}',0,'BLOCK_PARSED',NULL,'d521b33eafa577d336db14b3c2fa0d802800729cd0c8399b2b6d2201f848793f');
+INSERT INTO messages VALUES(110,310016,'insert','blocks','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ce19584a6bcf31671c8b7992d074141033e6e038c0316ba8123b032d393b3b5');
+INSERT INTO messages VALUES(111,310016,'insert','transactions','{"block_hash":"99dc7d2627efb4e5e618a53b9898b4ca39c70e98fe9bf39f68a6c980f5b64ef9","block_index":310016,"block_time":310016000,"btc_amount":0,"data":"000000140000000000033a3e7fffffffffffffff01000000000000000000104d6178696d756d207175616e74697479","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17,"utxos_info":"698b18eb14570c608acf7b9e351e5b1d3353707389b4110a9867528c6d3227d7:0"}',0,'NEW_TRANSACTION',NULL,'4900a21d420cd54e1bcfb2cdaab36bc52037bd6d0de514f3989baebf3c7b16e2');
+INSERT INTO messages VALUES(112,310016,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310016,"event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":50000000,"tx_index":17,"utxo":null,"utxo_address":null}',0,'DEBIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','ca2160d5d7516c209f4fda95e59f0088096bb155559d9e2e827534877b9caa8f');
+INSERT INTO messages VALUES(113,310016,'insert','assets','{"asset_id":"211518","asset_longname":null,"asset_name":"MAXI","block_index":310016}',0,'ASSET_CREATION','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','557a2a58c97221476ba8fc66281f9fea9fcb14e349e54f29066b3e7182190e16');
+INSERT INTO messages VALUES(114,310016,'insert','issuances','{"asset":"MAXI","asset_events":"creation","asset_longname":null,"block_index":310016,"call_date":0,"call_price":0.0,"callable":false,"description":"Maximum quantity","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":9223372036854775807,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'ASSET_ISSUANCE','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','c4f1f1350a6397e4ac380611cb8da40f8907546e8350dfdb97190f26c04510bc');
+INSERT INTO messages VALUES(115,310016,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"MAXI","block_index":310016,"calling_function":"issuance","event":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","quantity":9223372036854775807,"tx_index":17,"utxo":null,"utxo_address":null}',0,'CREDIT','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','dd633878c38e42399cc1e7a170d7b9f1898fa1c84a1098928d9d8ac129281f66');
+INSERT INTO messages VALUES(116,310016,'parse','transactions','{"supported":true,"tx_hash":"bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39","tx_index":17}',0,'TRANSACTION_PARSED','bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39','b4c6c4bcc7c4a45dc0f28e297f6ddf3b208f8897f674de443b7d3aac14c2b53a');
+INSERT INTO messages VALUES(117,310016,'parse','blocks','{"block_index":310016,"ledger_hash":"ec66a06cde401b66917c6d1d4e1ee8893405cfbf0474560d9997d6960c8af710","messages_hash":"18db8ab5cdae89dbd2f3737e222c273ffa8eb8ad685e8ec7f760d925e502209b","transaction_count":1,"txlist_hash":"6d3d469ad1b72a67ee50d8a7c6c57069da3a0e2e9d12a23a30bbf4f2ccc64cb6"}',0,'BLOCK_PARSED',NULL,'12974860565323108a3f38f8f3e0f476ec0c076ff72ff95a13fb071d257efaf4');
+INSERT INTO messages VALUES(118,310017,'insert','blocks','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fab6a7a8cc7cbc042f0a26015e4fbe01b2cfd3afff7a3cf09cc61abfb4ecb0e');
+INSERT INTO messages VALUES(119,310017,'insert','transactions','{"block_hash":"8a4fedfbf734b91a5c5761a7bcb3908ea57169777a7018148c51ff611970e4a3","block_index":310017,"block_time":310017000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"utxos_info":"1ceafa5cf74dad4bec8743acfce55133c738983261683a81c12be457f7574126:0"}',0,'NEW_TRANSACTION',NULL,'ae0f10f0fca02426145bc14b0504c3df0e7d0c5568f3013a4661c6125aff5c65');
+INSERT INTO messages VALUES(120,310017,'insert','broadcasts','{"block_index":310017,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18,"value":1.0}',0,'BROADCAST','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','5a65f443afa052a9da1a345bfe1012677d547a0a003e134823bcdf7bf7b9ec1e');
+INSERT INTO messages VALUES(121,310017,'parse','transactions','{"supported":true,"tx_hash":"d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af","tx_index":18}',0,'TRANSACTION_PARSED','d14388b74b63d93e4477b1fe8426028bb8ab20656703e3ce8deeb23c2fe0b8af','e2fbe9821c764f4e551190e9c51a121b938932de2c42719cd485c533dc442677');
+INSERT INTO messages VALUES(122,310017,'parse','blocks','{"block_index":310017,"ledger_hash":"b2053109bff06dae1705fc32ab0712f38bf9d206fa3517fbf0a938d1b5f33bad","messages_hash":"feb24386a3df5d6c2e66402b8eec85f6a56a7449812d83aa5a7527c1148dda8a","transaction_count":1,"txlist_hash":"223e10a8e23e4435e635f1dda533a0662dff9f0e3fb86b72a22b2c191f731a80"}',0,'BLOCK_PARSED',NULL,'ff356201fba7bce335cad0b16e8c608cb35f1a38d620082c2a6cc1fd8e86e1f8');
+INSERT INTO messages VALUES(123,310018,'insert','blocks','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68cc8e091ad6b48d6f0e43183b40b9dcad8b96ca686974a6edf6d3ba8507f132');
+INSERT INTO messages VALUES(124,310018,'insert','transactions','{"block_hash":"35c06f9e3de39e4e56ceb1d1a22008f52361c50dd0d251c0acbe2e3c2dba8ed3","block_index":310018,"block_time":310018000,"btc_amount":0,"data":"0000001e4cc552003ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"utxos_info":"903a01ed1551bf31dc75cf04f61fc8bdb026a32e9cf6c41cd593f75f27b140b1:0"}',0,'NEW_TRANSACTION',NULL,'d73ed807f3001b83398756b4e08290244254ae6f5cbb133562b5e19c7441df2c');
+INSERT INTO messages VALUES(125,310018,'insert','broadcasts','{"block_index":310018,"fee_fraction_int":null,"locked":true,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","text":null,"timestamp":0,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19,"value":null}',0,'BROADCAST','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','f5cdf93b2d5a8bcdcb3e9d0d86c0f6d0cc977a74b70b0b72ace0bb771424ada4');
+INSERT INTO messages VALUES(126,310018,'parse','transactions','{"supported":true,"tx_hash":"f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660","tx_index":19}',0,'TRANSACTION_PARSED','f9e0527c85a9084d7eda91fc30a49993370d029efea031a8ccccdf846146a660','1000f3db45325eaeca07543ef2b3313557760b7bcd289cf9a824cb626d0aea66');
+INSERT INTO messages VALUES(127,310018,'parse','blocks','{"block_index":310018,"ledger_hash":"d7051de4d03fb31bfedf215b407b1edc12789c1f2748abb5a72257ad8f5113ce","messages_hash":"8dae640fff5e30f6fecc9f31ecf896819fda3a2856b44052e9b3c8aa694efb7b","transaction_count":1,"txlist_hash":"9eb6f4683bebb675467829573cd2f7e3ab613d21398c5aef31ed389a40f3c48d"}',0,'BLOCK_PARSED',NULL,'7a0b40f8d191097a5dd1c4387e4c0d02f2e360eeaf1be0d9830a7e110027fd36');
+INSERT INTO messages VALUES(128,310019,'insert','blocks','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9980274e43981a49fa2034529527ee953a34318228a055392ce6033f5e083c1');
+INSERT INTO messages VALUES(129,310019,'insert','transactions','{"block_hash":"114affa0c4f34b1ebf8e2778c9477641f60b5b9e8a69052158041d4c41893294","block_index":310019,"block_time":310019000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"utxos_info":"f9cc41abbb83104f119fe8377e0e52afa0bf3633d6a2920aa31634e0a1c762a0:0"}',0,'NEW_TRANSACTION',NULL,'be396bb1b1d6a6fa0ac7b74153963cca8afa685de2d66451f2d5793f0a97547f');
+INSERT INTO messages VALUES(130,310019,'insert','debits','{"action":"bet","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310019,"event":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","quantity":9,"tx_index":20,"utxo":null,"utxo_address":null}',0,'DEBIT','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','b0ea315e579f96b8d2692379bcf42a8ea7660ca6202f9d5504917bea5fc747ec');
+INSERT INTO messages VALUES(131,310019,'insert','bets','{"bet_type":1,"block_index":310019,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310119,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","target_value":0.0,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','2a41895194d05a99404424a973f1a6398329fc774889b46294bf24708d644048');
+INSERT INTO messages VALUES(132,310019,'parse','transactions','{"supported":true,"tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx_index":20}',0,'TRANSACTION_PARSED','2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1','0c595a7091239c5a241bbb6c62c9562470c8c82a6fe0435a6600b44313668751');
+INSERT INTO messages VALUES(133,310019,'parse','blocks','{"block_index":310019,"ledger_hash":"35c95a70193ded2f9ee18254a91ce5d4834bb162fc3cca85dd432339257539b8","messages_hash":"351d377d959ca20aae984048c9b1068ec29075c4aa7f52d6c40592f3f7ac34d2","transaction_count":1,"txlist_hash":"88220e5f48660f8b9e339c3afb65ffbad83d632164f1df8e22af2ee6fc18826e"}',0,'BLOCK_PARSED',NULL,'1b51ffcbd18a9dade043ef1ea668a20de880a37da7c3379f4ce67a4e5229486f');
+INSERT INTO messages VALUES(134,310020,'insert','blocks','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae372c0bb35c31509cd6af98cd1b488192521a366fed88a2b5088cd8ae9ab418');
+INSERT INTO messages VALUES(135,310020,'insert','transactions','{"block_hash":"d93c79920e4a42164af74ecb5c6b903ff6055cdc007376c74dfa692c8d85ebc9","block_index":310020,"block_time":310020000,"btc_amount":5430,"data":"00000028000052bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"utxos_info":"aa32016e80f13c7f7c33dc29f0e55add7f2ca7413181a20010c7ef10b5096ee8:0"}',0,'NEW_TRANSACTION',NULL,'07a087a98d88302e240058937a791153aef6bdc0c673c855503bc151c5ad386c');
+INSERT INTO messages VALUES(136,310020,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":9,"tx_index":21,"utxo":null,"utxo_address":null}',0,'DEBIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','cf5c20a2348fded359cdc5ace9748255f0a0d8427ce0b6dcd64f50555394060a');
+INSERT INTO messages VALUES(137,310020,'insert','bets','{"bet_type":0,"block_index":310020,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310120,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','4c043c3eae3dea42928d64a307bf27ff2cb1d612c92cb79f66d31c46122f8eac');
+INSERT INTO messages VALUES(138,310020,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','649a87ffe39feda535b5a6d5da50e90cf71d245c2b83ece75c1d0741a0dcf7d7');
+INSERT INTO messages VALUES(139,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','203dad72c1a2ccc6d4a056fcc67a61348cfdbe7165c59d22840fe576afe7e43f');
+INSERT INTO messages VALUES(140,310020,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310020,"calling_function":"filled","event":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","quantity":0,"tx_index":21,"utxo":null,"utxo_address":null}',0,'CREDIT','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','83ea5a6ee735343f59e79f07db1adce93ebbb6fad92eb4a4ab324aa771d3f80e');
+INSERT INTO messages VALUES(141,310020,'update','bets','{"counterwager_remaining":0,"status":"filled","tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","wager_remaining":0}',0,'BET_UPDATE','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','24d5a25d409b3b984bae985b4a18101cd3ec8ddc49da820853129c9e8b847b57');
+INSERT INTO messages VALUES(142,310020,'insert','bet_matches','{"backward_quantity":9,"block_index":310019,"deadline":1388000001,"fee_fraction_int":5000000,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","forward_quantity":9,"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","initial_value":1.0,"leverage":5040,"match_expire_index":310119,"status":"pending","target_value":0.0,"tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_bet_type":1,"tx0_block_index":310019,"tx0_expiration":100,"tx0_hash":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1","tx0_index":20,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_bet_type":0,"tx1_block_index":310020,"tx1_expiration":100,"tx1_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx1_index":21}',0,'BET_MATCH','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','a40893547c5536e8887f36284fd146148611528603afc2bc646c7387f07d6583');
+INSERT INTO messages VALUES(143,310020,'parse','transactions','{"supported":true,"tx_hash":"5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","tx_index":21}',0,'TRANSACTION_PARSED','5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93','0d66cdc960e4d876830b616a927eb688e8e35e5bc369234c226fd40a72abc104');
+INSERT INTO messages VALUES(144,310020,'parse','blocks','{"block_index":310020,"ledger_hash":"8315de64ee1051c333687ba9fae6244287b85bcc1e3a4b67f3fe7d51b931378b","messages_hash":"a03e4da1b25118ba87fc3fa5487ddb147a24be33caf30848353080392b3f8f90","transaction_count":1,"txlist_hash":"087de9b1715dfdac7372489fc615b597c9575c9520eb1ad5f7435a2641388621"}',0,'BLOCK_PARSED',NULL,'3beda015b95fe5058271139d5e1ac0a3db0599ce81dbbc435717ed0be91b64a2');
+INSERT INTO messages VALUES(145,310021,'insert','blocks','{"block_hash":"7c2460bb32c5749c856486393239bf7a0ac789587ac71f32e7237910da8097f2","block_index":310021,"block_time":310021000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25222f5a14cd27585cdb850db94e4d7d1e4eea1c55236ef84ad77f7b22d956dd');
+INSERT INTO messages VALUES(146,310021,'parse','blocks','{"block_index":310021,"ledger_hash":"c2d646bd3f54eec73cd9da6f5da4bc159d0c64e8fb9ad4095dfa58850e65c7b1","messages_hash":"ec0a35e9d334d20325c20dc0af2071cc0bd0011c9f2e9dc495764099b25f868a","transaction_count":0,"txlist_hash":"e5f36761a4755ebc133389b9bc01a085c585a24fa346c784123f3dd5a125ad27"}',0,'BLOCK_PARSED',NULL,'5d90da04cd347abca028e54f447843416bc2eeb780cf8c9ce887b9de05994c2f');
+INSERT INTO messages VALUES(147,310022,'insert','blocks','{"block_hash":"44435f9a99a0aa12a9bfabdc4cb8119f6ea6a6e1350d2d65445fb66a456db5fc","block_index":310022,"block_time":310022000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a69cc3e3a3882c7f3cdb25582e701ba0d02b4769fbc65fd37eb607193fbbb417');
+INSERT INTO messages VALUES(148,310022,'parse','blocks','{"block_index":310022,"ledger_hash":"619367fb7657e0fb4800acd385eb5593d085ce5cbfbfb098dafa98612d9fd445","messages_hash":"7d66e5032cbbfd62641467e5a15a69d28f69b1f0b7da934fcbde3209c36ff15e","transaction_count":0,"txlist_hash":"e62992a5e4f80347f92c512e1bd47df4c2f4e9fa0c38b7ca73befd39fd181d54"}',0,'BLOCK_PARSED',NULL,'9a9d254505ce537d6f373fb36d5699db441f4721b614fd4354ff6a5b560a058f');
+INSERT INTO messages VALUES(149,310023,'insert','blocks','{"block_hash":"d8cf5bec1bbcab8ca4f495352afde3b6572b7e1d61b3976872ebb8e9d30ccb08","block_index":310023,"block_time":310023000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f9835223e5de16c4609a2d854fb1ba74914329095b7f9d1e1d049a418e461d0');
+INSERT INTO messages VALUES(150,310023,'parse','blocks','{"block_index":310023,"ledger_hash":"ba865dbc8263aaf153d7264dfc6a580bebe9391ca0551f15a1c822c6cbe2b8de","messages_hash":"e57a336b82b7d62efa497619daf7dce26be0c2034f763efac3b83237078c159b","transaction_count":0,"txlist_hash":"e62acd9368da6141ddf435bd919fe0e124bd77646207d69a2544790107ab88a5"}',0,'BLOCK_PARSED',NULL,'dc5a7b729fbcdb54c9a131fe23db6032abcbe60907027e200344f3945281cb9d');
+INSERT INTO messages VALUES(151,310024,'insert','blocks','{"block_hash":"b03042b4e18a222b4c8d1e9e1970d93e6e2a2d41686d227ff8ecf0a839223dc5","block_index":310024,"block_time":310024000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6773a3d2e1a83480bc4a03a15a13081924ee8ced97ed1701055b989e96d68bb9');
+INSERT INTO messages VALUES(152,310024,'parse','blocks','{"block_index":310024,"ledger_hash":"368e948cbf42de80aca51abe75d09ec78196924453719182ccc86419df5da2db","messages_hash":"ad26d635f4b961d3a78770ff225d37876a77417cae3eb6d60a10527cd2cd3c50","transaction_count":0,"txlist_hash":"2c65dfdc0d371025c6d497e087b8548633238d6049242fa411383fcce72b096e"}',0,'BLOCK_PARSED',NULL,'eb89d6b00cde75bd51b05c5f80d0d846d97e2eaf28ea0a6dc95d444d3f170e12');
+INSERT INTO messages VALUES(153,310025,'insert','blocks','{"block_hash":"a872e560766832cc3b4f7f222228cb6db882ce3c54f6459f62c71d5cd6e90666","block_index":310025,"block_time":310025000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'435992adae41f808a24d431a0b34ddbf5ac3d9be646833202538008d75272cdb');
+INSERT INTO messages VALUES(154,310025,'parse','blocks','{"block_index":310025,"ledger_hash":"9f7132c808936f580d4fb1dc5791541a5a3d23532d1093c20d434007f8dde54c","messages_hash":"0c83d5876fc4d68ddbe960e1f2d8c8eb234cbf159af47dd8f77824955b5b99af","transaction_count":0,"txlist_hash":"ca60850f73099aabc38d1521a94d611cc02f4539620a17488d1e9a445087104f"}',0,'BLOCK_PARSED',NULL,'78b04f681576d9af5a1343a72291bba422ff069200fd81ef3ce6f600a2bdbf97');
+INSERT INTO messages VALUES(155,310026,'insert','blocks','{"block_hash":"6c96350f6f2f05810f19a689de235eff975338587194a36a70dfd0fcd490941a","block_index":310026,"block_time":310026000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e3dcd0c0735761007da3832ce7f5a9f3873c47d0d5d3e2b806b8d5136872def');
+INSERT INTO messages VALUES(156,310026,'parse','blocks','{"block_index":310026,"ledger_hash":"074ea6f10a5290cff31f7b21483f7b2248723c8d1b5bc060c31219f66f37def7","messages_hash":"4d68c2eb143296d351c03e7651844ae0a8009183e30c8a0bffd41bad2d4b9944","transaction_count":0,"txlist_hash":"21db77ad7cd241752184fa9fd61ab9cf670cd40105d7d9b887d8df62f25e5cfc"}',0,'BLOCK_PARSED',NULL,'c0e59ac5e3bc62fe19b8b1a3a811638edf6bcc21a07e00b5c75d0296823b873b');
+INSERT INTO messages VALUES(157,310027,'insert','blocks','{"block_hash":"d7acfac66df393c4482a14c189742c0571b89442eb7f817b34415a560445699e","block_index":310027,"block_time":310027000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40e02cfe09b8c1abb6e94b63cd8c125dcb3faccd6b3f547739564ad87b65047e');
+INSERT INTO messages VALUES(158,310027,'parse','blocks','{"block_index":310027,"ledger_hash":"a3ade2b2e5bc701996f511f3e85d596b60f882a3254fd975769c0f38b3b14cb3","messages_hash":"4f0797f7f8ab0b2770b7c5629123ff73c4c9830990875119f4eccae443bf77b6","transaction_count":0,"txlist_hash":"9469f4c4b4f208f2a46569234006846d18ae108ca6a98600ab70bac1ef1ad633"}',0,'BLOCK_PARSED',NULL,'ed917a92516f4bb7effa66bba8f4cfa9daf711ba0a5cad88bc072cb2ff60ef8b');
+INSERT INTO messages VALUES(159,310028,'insert','blocks','{"block_hash":"02409fcf8fa06dafcb7f11e38593181d9c42cc9d5e2ddc304d098f990bd9530b","block_index":310028,"block_time":310028000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6186ea926f1947ddc5cd8094eafecad004d0f538e6615f3629c08d26546a6d57');
+INSERT INTO messages VALUES(160,310028,'parse','blocks','{"block_index":310028,"ledger_hash":"3bf124a34825b5c487c94dd79b1ea4f25e657294966879f1c10b56b37a3d29b5","messages_hash":"227f74ee23c06c8fbaba67b1b7614338ce70e468ddc8cb8a6d884fefc9065efb","transaction_count":0,"txlist_hash":"55de4927d0ba81d336f143b08224af9fe9a862bf0ed4d39fbe242e9c5946bcf4"}',0,'BLOCK_PARSED',NULL,'2cdd0c0e4226a428e37c46b34dcb3a20ed1e53e2995e3e0727fe62dbc1d6ffba');
+INSERT INTO messages VALUES(161,310029,'insert','blocks','{"block_hash":"3c739fa8b40c118d5547ea356ee8d10ee2898871907643ec02e5db9d00f03cc6","block_index":310029,"block_time":310029000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cf4bee6e8672476cda46296b691cbe015df484beac42410c90da37e76287d09');
+INSERT INTO messages VALUES(162,310029,'parse','blocks','{"block_index":310029,"ledger_hash":"e502eb7b282e0bd4940d8f75ef51d677a641f3d55304adcb015bc249c97892bf","messages_hash":"cce012e3c11c649ed7964921096877c7362a5360fbdb27056e4ee925fe6d93c0","transaction_count":0,"txlist_hash":"3d879f96d783e70a75f71c2b44ae4c5601bc8f1192b828f1b35400b8c99aa0f2"}',0,'BLOCK_PARSED',NULL,'85fcbfbbedaf5faea4c45cbb9c1f813618be72ddd86aa22142af23dceb634edf');
+INSERT INTO messages VALUES(163,310030,'insert','blocks','{"block_hash":"d5071cddedf89765ee0fd58f209c1c7d669ba8ea66200a57587da8b189b9e4f5","block_index":310030,"block_time":310030000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e83a59431656233bb412fe2bf72e1b0ffe78fd14bcfd8724b55b7c6f0d5fa206');
+INSERT INTO messages VALUES(164,310030,'parse','blocks','{"block_index":310030,"ledger_hash":"d64b5eb04ddfb5600be40142b1fd27c308387a35942a6e8a6916407bbc1313b1","messages_hash":"4212d1bd8aaac5dc6fe4d47c8356dbc1ba1095167a37bd1fd0cc8d736fd5cb26","transaction_count":0,"txlist_hash":"c859356c985f3c051d5b01424759e66e9ec7c2eac055eb9fc2b0ad7323253a6a"}',0,'BLOCK_PARSED',NULL,'819bb619916c103459300f938afa7a7150d208d4ec04c9ace658cb6cc60a08f0');
+INSERT INTO messages VALUES(165,310031,'insert','blocks','{"block_hash":"0b02b10f41380fff27c543ea8891ecb845bf7a003ac5c87e15932aff3bfcf689","block_index":310031,"block_time":310031000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348dabbcda35b91503e0175afb219c4c765eb9092ffa011c8149b24eadf346e0');
+INSERT INTO messages VALUES(166,310031,'parse','blocks','{"block_index":310031,"ledger_hash":"e9c97dd7adb1b22d4ed0238607faeb2d14c090fbd7d685275ee802ab23b4b740","messages_hash":"c7c8e5e7340ff9c4144369ca8a56f30c3e0f9c29dfe33b2b69849bb4a3ee998d","transaction_count":0,"txlist_hash":"4cdafec839c7abdda11f10437d890c952b3416929ff6e715f44e8c57412437af"}',0,'BLOCK_PARSED',NULL,'de4827d999b9f3d4bcd643d59666f2b012fefdb8c82803c1f2f216e4b9038482');
+INSERT INTO messages VALUES(167,310032,'insert','blocks','{"block_hash":"66346be81e6ba04544f2ae643b76c2b7b1383f038fc2636e02e49dc7ec144074","block_index":310032,"block_time":310032000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ee309f06b7c0b4e7bdfbe5f5929862738c8122db545c636fffe51cc5bc2ef2a9');
+INSERT INTO messages VALUES(168,310032,'parse','blocks','{"block_index":310032,"ledger_hash":"2544ffced9af1aabd84ab51fb78c56c9beac03dcb286aebd4202938dfa0754ea","messages_hash":"b30046a31b25427b4ddb094ba78211a6e3f75ac173a45aa732f4d66741f777d9","transaction_count":0,"txlist_hash":"2fc6c250a775ac70976d371540df4a7af608ca1b106b7efb7bc5a820ff505bdb"}',0,'BLOCK_PARSED',NULL,'0ac7d43b30a3177a3d184069021ff00d660a9c1a3fba92a5515e8c0067c59012');
+INSERT INTO messages VALUES(169,310033,'insert','blocks','{"block_hash":"999c65df9661f73e8c01f1da1afda09ac16788b72834f0ff5ea3d1464afb4707","block_index":310033,"block_time":310033000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae09e73205c11ec52191b4aa043e765b37782decdfbba170c33d5c2415a43a41');
+INSERT INTO messages VALUES(170,310033,'parse','blocks','{"block_index":310033,"ledger_hash":"4355d3ebb95187fec36b1847a4c3777d8e1d5541bd1d9ff8461b8ac5b9881261","messages_hash":"749396e3c27221fa9b14646dfc76f4199c4af0eaba73d490376ca771df435311","transaction_count":0,"txlist_hash":"d99b155e06fb50de6e7e6b646c641e3862d3d6df0ab9aec3e360fba0fcb54776"}',0,'BLOCK_PARSED',NULL,'f6ec24b9bdfc23141ec4172deb37c676b3dd2e7cd0afcc12913e2d3b65d4a918');
+INSERT INTO messages VALUES(171,310034,'insert','blocks','{"block_hash":"f552edd2e0a648230f3668e72ddf0ddfb1e8ac0f4c190f91b89c1a8c2e357208","block_index":310034,"block_time":310034000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348456d38b1de61b12434665a67540b8a8756b309f36949356badacfc5376782');
+INSERT INTO messages VALUES(172,310034,'parse','blocks','{"block_index":310034,"ledger_hash":"c7fcb5134bd8131c035d65b5eeef8a3cd214348822563232a992f3f703c6b0b9","messages_hash":"b2abf73f136a990f9bd769b3d298aae8f38496d68e12697e2ba74d7aff1fd2eb","transaction_count":0,"txlist_hash":"826d7b750bb4ad8fabd67c825c81f840b7a7a264489a9263410a5cb204d3309f"}',0,'BLOCK_PARSED',NULL,'198abf823b2eafe69c27c5f8ad9d2227979febfc7e082e460152a78e3baf1fd2');
+INSERT INTO messages VALUES(173,310035,'insert','blocks','{"block_hash":"a13cbb016f3044207a46967a4ba1c87dab411f78c55c1179f2336653c2726ae2","block_index":310035,"block_time":310035000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d1b768b23242f95f4f6d5e7430dc1fcff178c26e7012bb69f449adb7e2cd10f');
+INSERT INTO messages VALUES(174,310035,'parse','blocks','{"block_index":310035,"ledger_hash":"c41c280498ce05d6073fc6e89be2684dc68c345c1c43c00b9a3f9041954fce26","messages_hash":"9639b0de61c2a6f7cf0a9e9b114d59395ff3ba20f81b4f16cf52947338324e16","transaction_count":0,"txlist_hash":"f96598e2169d42d81b91ba03e7403dbd25a61399290f358022a998e4375fe2b9"}',0,'BLOCK_PARSED',NULL,'87bd3799548aa4f91cd38b2ef6d687b90e0fdb8598308b7b207c8289cfd20f1c');
+INSERT INTO messages VALUES(175,310036,'insert','blocks','{"block_hash":"158648a98f1e1bd1875584ce8449eb15a4e91a99a923bbb24c4210135cef0c76","block_index":310036,"block_time":310036000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2475e76319ac0c000b9567471e1771dd19e409c1493bd95cc3a23e64aa0e8219');
+INSERT INTO messages VALUES(176,310036,'parse','blocks','{"block_index":310036,"ledger_hash":"86c67fd234ca9d2406080018b2677386990fac477db8008c0092d40a398203ed","messages_hash":"d92bc42b8a1d8d5bea9bd21b5c68ad9f0f89c6e7eda9b0b20b15bfba6d9eabdb","transaction_count":0,"txlist_hash":"ae7fdf3e9388811e96d470070db9ac45b5b19754bb4ad424aade40fede3c9cf9"}',0,'BLOCK_PARSED',NULL,'82fd3c6f0e6ff79d43b0d75e06f4638d5888d41b46d89d7f09ad6014908ede9d');
+INSERT INTO messages VALUES(177,310037,'insert','blocks','{"block_hash":"563acfd6d991ce256d5655de2e9429975c8dceeb221e76d5ec6e9e24a2c27c07","block_index":310037,"block_time":310037000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82e9891eb29f25402d73cfd10febf4ec5f4422db52c5528909d03709e94f864b');
+INSERT INTO messages VALUES(178,310037,'parse','blocks','{"block_index":310037,"ledger_hash":"3ae6272437eb0758a779d68785c41e119d1204dd5421c78e03b9d12eba64804b","messages_hash":"2c6c47b437bcf19e9f304a44dddda5b2f6fbc8a907975f661dfe9e6b8109c47c","transaction_count":0,"txlist_hash":"aa9600ce32fd7c1d6e963a51648eaae043685d3369413785517172d1f94d551b"}',0,'BLOCK_PARSED',NULL,'f2ece19cff6357186b058d58c485024c026ce6c7575377902cd12eb742576f77');
+INSERT INTO messages VALUES(179,310038,'insert','blocks','{"block_hash":"b44b4cad12431c32df27940e18d51f63897c7472b70950d18454edfd640490b2","block_index":310038,"block_time":310038000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ac11bdc4c21de16d968440f58a8ee3fcbc091fc71466da559416ac2272d355e');
+INSERT INTO messages VALUES(180,310038,'parse','blocks','{"block_index":310038,"ledger_hash":"18f7552567b898f6c2cfe8c829903912445de5dbf05b56a13bf9b402a24fdc11","messages_hash":"e4c2effd39fa758e00ca97939dd1f1d9a5997e95d23d2a0ac3af4ca64d8575be","transaction_count":0,"txlist_hash":"46ce886f050bf7a80355da9cb15b35f5d38809ef2ec1a25250f057b63f51cdfc"}',0,'BLOCK_PARSED',NULL,'cae21bc93b23d9d9f4bfd7855dc127044b00b15dab512b7ac1702b1f823468ca');
+INSERT INTO messages VALUES(181,310039,'insert','blocks','{"block_hash":"5fa1ae9c5e8a599247458987b006ad3a57f686df1f7cc240bf119e911b56c347","block_index":310039,"block_time":310039000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f436dbab3e5ec0617e81b3a3f7c2fda321b2bad15ba22519af6166b8e003b2a');
+INSERT INTO messages VALUES(182,310039,'parse','blocks','{"block_index":310039,"ledger_hash":"85f2255f9256a5faf59ddec1c58b1d3bc12c91bc2c62ead61b48e1f94ea2888d","messages_hash":"ae61daf40f4954d6e3a3f50771e77255727f9dd72bc7fba5a6088d6e07d67b3e","transaction_count":0,"txlist_hash":"23a26edddf0c8662b055ed992c75c706221b59ce9a7aa45b757a3d5158772e8c"}',0,'BLOCK_PARSED',NULL,'9c3787f0bd202cc4b4f88ed183c607d45034189fea2d274f816252a71218445c');
+INSERT INTO messages VALUES(183,310040,'insert','blocks','{"block_hash":"7200ded406675453eadddfbb2d14c2a4526c7dc2b5de14bd48b29243df5e1aa3","block_index":310040,"block_time":310040000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc58709b5cce0bb235093fb2b5fd4fe6518478ffd04cb9d754c446dd15e4be89');
+INSERT INTO messages VALUES(184,310040,'parse','blocks','{"block_index":310040,"ledger_hash":"b799477db184351df5503f8d15d5461a0483ea35142c003b7e640429663ad943","messages_hash":"bde4fc33ae572fcd28318e25c0d9df37d6cc42a5e4936770954bf514d9b37728","transaction_count":0,"txlist_hash":"163682e05a9a10f3e3240420c932a7f3f2172484de30dbcac0319ac23a4726f1"}',0,'BLOCK_PARSED',NULL,'e07a979644dae05c2eb17a30ab6190c369a9586dd18c09cc7a56a6417631f9ca');
+INSERT INTO messages VALUES(185,310041,'insert','blocks','{"block_hash":"5db592ff9ba5fac1e030cf22d6c13b70d330ba397f415340086ee7357143b359","block_index":310041,"block_time":310041000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d41f3657240fe8af9859e82d80a1ae5f1017d62f92ecc908588ef41305f79d9a');
+INSERT INTO messages VALUES(186,310041,'parse','blocks','{"block_index":310041,"ledger_hash":"efa9cd46741b59e74263d6d348584f1a61e8ba32163c09fc3ff2e41a5431a483","messages_hash":"5b37661a33a03123831332c92c5ae492d3c0eb8546bf809ba75c5e603329b711","transaction_count":0,"txlist_hash":"a159868ce28207aa243e7ecc50f188e8e34e5ddb5d801b645b1c16a596e060ed"}',0,'BLOCK_PARSED',NULL,'0ad95cfb31b04731f3021beba1fa2fd79473ab6cf15e14fd4d1fa06e0b13f4f6');
+INSERT INTO messages VALUES(187,310042,'insert','blocks','{"block_hash":"826fd4701ef2824e9559b069517cd3cb990aff6a4690830f78fc845ab77fa3e4","block_index":310042,"block_time":310042000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeb7ae937b45e4718a7e289cb334b87841af38e86e80a156ee92a3f7cc2a3042');
+INSERT INTO messages VALUES(188,310042,'parse','blocks','{"block_index":310042,"ledger_hash":"f3159919f381d46a3e1341703e55192a02a36519e71fc2675285a3a14c4ee04d","messages_hash":"720af2db39c50a777e24e2b00b5a6320e5fc3166afe767faf4e778ee9dd5dd8a","transaction_count":0,"txlist_hash":"52bca7ccb83bfe83d8693ebc4c5b1ce518b2ae472dfc81f2c2940dc2460eeeab"}',0,'BLOCK_PARSED',NULL,'d9dfdfccf937d50371959338d3c127d293b43952ae2c1a5142ca24c13d7533a8');
+INSERT INTO messages VALUES(189,310043,'insert','blocks','{"block_hash":"2254a12ada208f1dd57bc17547ecaf3c44720323c47bc7d4b1262477cb7f3c51","block_index":310043,"block_time":310043000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41ffc0557a723e74d5e67e4cf1113ce0be275ad597ee6f52f10e9330beb4fc5a');
+INSERT INTO messages VALUES(190,310043,'parse','blocks','{"block_index":310043,"ledger_hash":"961c79ea2b7dcc2d7489c423b568fb978631e71732d6b998bcc0657aa4d19194","messages_hash":"b5a557d94ff33e200e321f345d047a2229db60aa45f65b8065967950bf8852e2","transaction_count":0,"txlist_hash":"1fa2eb6aa4c8b5efd093c6e484dddb85eabfa0de55edc929e04487ce65e73608"}',0,'BLOCK_PARSED',NULL,'f78a267e94e24c4eb50f66c8a26c52c128634604ddae0bf232fcc2fe72359244');
+INSERT INTO messages VALUES(191,310044,'insert','blocks','{"block_hash":"3346d24118d8af0b3c6bcc42f8b85792e7a2e7036ebf6e4c25f4f6723c78e46b","block_index":310044,"block_time":310044000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6813fed25eef2ef06ffa1e318e7f7221e7f716563eda0c1f0e22bb7f76f4436');
+INSERT INTO messages VALUES(192,310044,'parse','blocks','{"block_index":310044,"ledger_hash":"d674c39010fd4554efa487d97a3d9cae278ed9b4aff0ce57db33bd881beeb3e3","messages_hash":"c4ec17550657727a9a11daa68ecb1b4d88190ce52dbc83bb18d764b6bd478723","transaction_count":0,"txlist_hash":"ddc2517e1efddbe56185e00d77333ef9f2f2ad6c59e042d65a8f4d8c2b323e5e"}',0,'BLOCK_PARSED',NULL,'1c261c338c342700efc6cf518150c387f4ce0db774dc563b7924299021123272');
+INSERT INTO messages VALUES(193,310045,'insert','blocks','{"block_hash":"7bba0ab243839e91ad1a45a762bf074011f8a9883074d68203c6d1b46fffde98","block_index":310045,"block_time":310045000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c94d4b16452778397a73514e8e3975a752844575988cb44e6ca84b7bc1488a3');
+INSERT INTO messages VALUES(194,310045,'parse','blocks','{"block_index":310045,"ledger_hash":"9ba70a032ae92672174421689c0845784f0cef7374e88b2f5258260191864bf1","messages_hash":"f8763437f47aba90ae535e1e2356cfc42f4edf240d9be69099ec911f64f407f5","transaction_count":0,"txlist_hash":"3b1d5cd9cb8e7b753233ac0dac5e697226ae372bff3813852434d96996e78fac"}',0,'BLOCK_PARSED',NULL,'1fc858caf02bb3cdd45c13147d97b425dec70f765f6be31ab1b7980aba8cc25f');
+INSERT INTO messages VALUES(195,310046,'insert','blocks','{"block_hash":"47db6788c38f2d6d712764979e41346b55e78cbb4969e0ef5c4336faf18993a6","block_index":310046,"block_time":310046000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79dbb898b7a621771dafacb09f45caef4a42d2a87bf6548392c021f4a965278');
+INSERT INTO messages VALUES(196,310046,'parse','blocks','{"block_index":310046,"ledger_hash":"114a6ab930fbdf8531431620ed219db3756a634c5b99af6ce1ee66d527d277ff","messages_hash":"646915bf01632a560b9429d393de0635b2553d8e9f83a6d92f029a79880cf170","transaction_count":0,"txlist_hash":"becb4b0241accefb95aee137e58d406e15e87c28ed3f051938b4fc02e249b21c"}',0,'BLOCK_PARSED',NULL,'7b791eb91543922edeabbd4f2e63612770b9c39d82530509576d9b54275f591b');
+INSERT INTO messages VALUES(197,310047,'insert','blocks','{"block_hash":"a9ccabcc2a098a7d25e4ab8bda7c4e66807eefa42e29890dcd88149a10de7075","block_index":310047,"block_time":310047000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22b426bfad9911e6625d52032ad137129206dabd05907261cfb3e7fcf31c0a4c');
+INSERT INTO messages VALUES(198,310047,'parse','blocks','{"block_index":310047,"ledger_hash":"5356512c94ea2c77623d874a927aae8c3dce287a34dfd27a617abfa57142c7f3","messages_hash":"0000546f68b557fce8445f8fe6a1cac6c813d7a848d5661bc112f36efa03c1e3","transaction_count":0,"txlist_hash":"6e06ce8a113de9e8b1a88516a512671aa2cdef60168a40d91742caa281417634"}',0,'BLOCK_PARSED',NULL,'9276381768e1171e9bda07b0b0a1cca2d91d96d60adcbbfe62275fa57eb80da0');
+INSERT INTO messages VALUES(199,310048,'insert','blocks','{"block_hash":"610bf3935a85b05a98556c55493c6de45bed4d7b3b6c8553a984718765796309","block_index":310048,"block_time":310048000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2045e4c49e65b4d474c12dd8db8e4faea3b5d86a7dc8f0aedd96ecb4e94b92d9');
+INSERT INTO messages VALUES(200,310048,'parse','blocks','{"block_index":310048,"ledger_hash":"0902ca0868560d05049c983bca3ab91cdd5eafc46ab0a948d702abcbc4010582","messages_hash":"a46538569450db26d72774e237e5e05e057d085455862152c45534a7b2831805","transaction_count":0,"txlist_hash":"67a2fb81ebb42dc6781746a403d81b4e7603f82f02724074541d42380d7269fe"}',0,'BLOCK_PARSED',NULL,'c63d7dd1891c4a6634dea1c779807c97a978eaf6a20f65d6e6506d1cddb20422');
+INSERT INTO messages VALUES(201,310049,'insert','blocks','{"block_hash":"4ad2761923ad49ad2b283b640f1832522a2a5d6964486b21591b71df6b33be3c","block_index":310049,"block_time":310049000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1cf498205f124eb4c7a7877ff999b082e1b9c3b4a5961380eca3c9c22bf07fa');
+INSERT INTO messages VALUES(202,310049,'parse','blocks','{"block_index":310049,"ledger_hash":"978794628fc95756032cb7fb4e9d5ed286373d84fafbcfceec9af71d18c4c0be","messages_hash":"b89e6463177226a7d916fba3c1bd0fe881c7cc8544b4882dab0fe619ea40d700","transaction_count":0,"txlist_hash":"ac68aa21454eb2a2ca973b5451523fc6d2a4df6906b9472891cf8e06087e130c"}',0,'BLOCK_PARSED',NULL,'02bf02d0605d748a2455c733f133451247a50f242b5408c929c234d423b6e939');
+INSERT INTO messages VALUES(203,310050,'insert','blocks','{"block_hash":"8cfeb60a14a4cec6e9be13d699694d49007d82a31065a17890383e262071e348","block_index":310050,"block_time":310050000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20d72a62f4c9670d517e620366a26694cd7d8e63bd3df5164abf337431e739f0');
+INSERT INTO messages VALUES(204,310050,'parse','blocks','{"block_index":310050,"ledger_hash":"ff16abeb1d35e0e422f165e206b0d69e0b9ff48b68fc6656c1af74801908b92d","messages_hash":"70fa5f396f6b6bbf5e669c9ebc50261da201c34eb2733b0bd3e9c29410d363ca","transaction_count":0,"txlist_hash":"720d553ed03860df12ab60af34cfec86b9d7ec80275f6d8815e3f61166e3af88"}',0,'BLOCK_PARSED',NULL,'e00805db7ed6ad04b86f015b9b897a413027032466e86590c1dea59ace77ca11');
+INSERT INTO messages VALUES(205,310051,'insert','blocks','{"block_hash":"b53c90385dd808306601350920c6af4beb717518493fd23b5c730eea078f33e6","block_index":310051,"block_time":310051000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fb65ed7c976b8f36e396fb215ab99431dc9237c23279627fce7c39e68632e4c');
+INSERT INTO messages VALUES(206,310051,'parse','blocks','{"block_index":310051,"ledger_hash":"556ff900993e70cabefd05ddd5dbe3e8e10bb5c9ada7913b75d84af067004ed5","messages_hash":"9a5736cc8c8944fff5f4c695a6c228e161685ebb08fa83cd696334b1352b7828","transaction_count":0,"txlist_hash":"656a21084dc8f46455fd2a42ebbdb0efd5c879ccb16e9b1532a6ab5323debdb4"}',0,'BLOCK_PARSED',NULL,'1780b59889df06463061dcd8e5df6cf0fd1f2e9b700e448e5ac6934d38c32381');
+INSERT INTO messages VALUES(207,310052,'insert','blocks','{"block_hash":"0acdacf4e4b6fca756479cb055191b367b1fa433aa558956f5f08fa5b7b394e2","block_index":310052,"block_time":310052000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5e35f6732027460ee8d8e3ce94f1ee5b549d32096c2588e7151e6230cd28744');
+INSERT INTO messages VALUES(208,310052,'parse','blocks','{"block_index":310052,"ledger_hash":"15af3a616a2974aa70b7b58f88132051f335af299473db925b619fda8be1afc7","messages_hash":"14045040d34f9f8ef2ed53c11c4a6ef882e4cbdc22dfae8709535eba1cf12011","transaction_count":0,"txlist_hash":"3f90b36b7ebc9a2daea1e498bb44100f12f35c9df04260448bd38b23375b16be"}',0,'BLOCK_PARSED',NULL,'f06914860599822f367eb6185fd6fcb5f78faa386bb915ba89d3bbc5bca99a31');
+INSERT INTO messages VALUES(209,310053,'insert','blocks','{"block_hash":"68348f01b6dc49b2cb30fe92ac43e527aa90d859093d3bf7cd695c64d2ef744f","block_index":310053,"block_time":310053000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92945cea7582bdcf0fdd4e6cb31b063ea6aac639cc47fdcc5fa8b36c4d689257');
+INSERT INTO messages VALUES(210,310053,'parse','blocks','{"block_index":310053,"ledger_hash":"ed0ed3b480b38929a425c2b61c86582495764624e020cb86b3a95fc7d59c692c","messages_hash":"88b3a77a804065f58fa8a117e79276ba2b5250c4344e604b68620affd3617690","transaction_count":0,"txlist_hash":"67427731be09b73755cd460d142686c903b819b7b8af48297d460ab91fde3609"}',0,'BLOCK_PARSED',NULL,'b12881078d64c35b8f69ee437ac2aa881d226cf7e9c6ca82bf469c8311a3248d');
+INSERT INTO messages VALUES(211,310054,'insert','blocks','{"block_hash":"a8b5f253df293037e49b998675620d5477445c51d5ec66596e023282bb9cd305","block_index":310054,"block_time":310054000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5cd478bded90018e1f0e5f264ca289f85752d3bb8e29055a520853d8e3449344');
+INSERT INTO messages VALUES(212,310054,'parse','blocks','{"block_index":310054,"ledger_hash":"f012825d2d549910910ad6b7e4ac2373d095b53869f0793709684f0ff05bb108","messages_hash":"16f838aafbd52bddbd49c4f4ad0b23dbeb9a40fa6aecd39a1d2522d7c692ad02","transaction_count":0,"txlist_hash":"c5e4ba3e2011e7fbf238285525a544de3cc0fe9360a3451392a4c03acd508690"}',0,'BLOCK_PARSED',NULL,'90754a48593997e2134e7644c3a378b59241c20375ba80c1a1bcb7855ec7d2a5');
+INSERT INTO messages VALUES(213,310055,'insert','blocks','{"block_hash":"4b069152e2dc82e96ed8a3c3547c162e8c3aceeb2a4ac07972f8321a535b9356","block_index":310055,"block_time":310055000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99e02de453879f47f57c704a2dd8656b7dfd53afb168da09239c01a500b09500');
+INSERT INTO messages VALUES(214,310055,'parse','blocks','{"block_index":310055,"ledger_hash":"90c08144277fe622573282349edaf9e59289b716b5b4e368d88ac25e67e788d1","messages_hash":"741def8beee53dd41b1c93d0b3f6fb297daad05959c8d3463c821f717c494955","transaction_count":0,"txlist_hash":"5e4a8aee5f04d75d9ffcc85e8344c445b5facfc838f39a77b6b0d5acf6cd8213"}',0,'BLOCK_PARSED',NULL,'5a997201f2ad63f19c7afd1a33aa09017215a34201054afeba1a1ef6389a0d64');
+INSERT INTO messages VALUES(215,310056,'insert','blocks','{"block_hash":"7603eaed418971b745256742f9d2ba70b2c2b2f69f61de6cc70e61ce0336f9d3","block_index":310056,"block_time":310056000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'23d9d0257c99fedd29cba0c3310b95f967b08a2d1cefe63502c4223e43cfccb6');
+INSERT INTO messages VALUES(216,310056,'parse','blocks','{"block_index":310056,"ledger_hash":"c888ae590b64fa4514ed7f94ba785b12e881052185cc4702b598cf6e48cbb3ba","messages_hash":"0a31cda894930eed849e19e9c02ef0ef1d09794686d1aaf1edc6dbcb8c0a237d","transaction_count":0,"txlist_hash":"1cb780a12bb6040055fa694822a4f39c340a18a858f0b65a8b227a6fd6fb4f31"}',0,'BLOCK_PARSED',NULL,'caab47441ef61794fce55c1e6fe013e9e3eac34790a62fe63d7ec799d2bf454e');
+INSERT INTO messages VALUES(217,310057,'insert','blocks','{"block_hash":"4a5fdc84f2d66ecb6ee3e3646aad20751ce8694e64e348d3c8aab09d33a3e411","block_index":310057,"block_time":310057000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c01f08a5ce499d8796ac3dd05f6d013fa6ddd92e3d157fd79e239a021662bcf');
+INSERT INTO messages VALUES(218,310057,'parse','blocks','{"block_index":310057,"ledger_hash":"e68c9a569fda6f1e1e59502953c9735857a0ee158a76397722436466df24708e","messages_hash":"0fb99b765219ea3a5f10fa5f81d55b5c0062acfcdcd2def532023e3afc3e5bb1","transaction_count":0,"txlist_hash":"2e175f240928edbbd5a5c6c5f3fbacd9516a36c7e99501703e9d1b19999b2029"}',0,'BLOCK_PARSED',NULL,'447e0309181021cc240ba3155ef111f9fd406e9c8d6c14179408acfbec8f5e82');
+INSERT INTO messages VALUES(219,310058,'insert','blocks','{"block_hash":"a6eef3089896f0cae0bfe9423392e45c48f4efe4310b14d8cfbdb1fea613635f","block_index":310058,"block_time":310058000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d564c153bcbed5fa6ef4176edf18b694bb6f11e48f7af3abe6da4d6fc43c6324');
+INSERT INTO messages VALUES(220,310058,'parse','blocks','{"block_index":310058,"ledger_hash":"9f6607682f4a6274c2a45895f849816aec83ff0820709ba781634b84518eb05d","messages_hash":"d55aa61c630c66fb07fab12428d118c0480838ebbbcd0fbac08e8a1499b83eac","transaction_count":0,"txlist_hash":"cca92bb672e368c0c1e5b4674a48e150a870f56a67339cbd74926d541ae2a4e4"}',0,'BLOCK_PARSED',NULL,'a306c8f20bb82e20b7ade14eefa9da2c51216425b95aee2082784c4a9212a929');
+INSERT INTO messages VALUES(221,310059,'insert','blocks','{"block_hash":"ab505de874c43f97c90be1c26a769e6c5cb140405c993b4a6cc7afc795f156a9","block_index":310059,"block_time":310059000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9229f5923c8a1fde960945d4b7c2ab329e0191e3494c6b1f8c924b9705381a63');
+INSERT INTO messages VALUES(222,310059,'parse','blocks','{"block_index":310059,"ledger_hash":"49b10a5c390f603e7be0d405bf1fcae95fd15682ef2e41a3b2fcf713d271e541","messages_hash":"940a2326385c0c4d191460c35e274353005ce1612fb42d615d3c0385a2838ffc","transaction_count":0,"txlist_hash":"12b8b50b634cb6843258f1c130df1cae60898c902d3e66ad00e1303fde4d8724"}',0,'BLOCK_PARSED',NULL,'d01380b146c7d023d0e930c2d7441b99f821f2a8cebe14d84cb3f2242cb81294');
+INSERT INTO messages VALUES(223,310060,'insert','blocks','{"block_hash":"974ad5fbef621e0a38eab811608dc9afaf10c8ecc85fed913075ba1a145e889b","block_index":310060,"block_time":310060000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9c8ce8c9255eda9cba98c8c83c2baa35243b2ee1f047769fac41f971ce2b725');
+INSERT INTO messages VALUES(224,310060,'parse','blocks','{"block_index":310060,"ledger_hash":"1d6cea34d6f7042ced3a5211da80de88fa77c900af5526f3033b715e4f68df17","messages_hash":"5fe92e88f1466fc6de163ea775fb9930f5da3d02842192e742af948a166ddf2f","transaction_count":0,"txlist_hash":"40fa40a1a2c02ca514f309fe27268e9e493374bf3edfca8de66e3d46efa32ba6"}',0,'BLOCK_PARSED',NULL,'e56a2d986c1a1a5376e2c1e647cd3d71f3866bcb138656a2f59891299b9cbe5f');
+INSERT INTO messages VALUES(225,310061,'insert','blocks','{"block_hash":"35d267d21ad386e7b7632292af1c422b0310dde7ca49a82f9577525a29c138cf","block_index":310061,"block_time":310061000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a347e43500faa203898657c03a444d3591278dab8e5c360300e042acfe662cb');
+INSERT INTO messages VALUES(226,310061,'parse','blocks','{"block_index":310061,"ledger_hash":"0c43668fdc3d6cc6ec84fee99c68f0eff21650a618db35bc20e428550eae9b0c","messages_hash":"3068a8d1ee7733af53b4995ec8ec168bc0790b4977a6ba07155a782e9409aa30","transaction_count":0,"txlist_hash":"4aa0becfc939793d7dccbb0b19881889a20c801e6c627be8ab8a2ffbd8cee8de"}',0,'BLOCK_PARSED',NULL,'0b22b8cbbf86b758b43f579cc8ba490db0dfd6ac29eec372d027f54b3611f5ce');
+INSERT INTO messages VALUES(227,310062,'insert','blocks','{"block_hash":"b31a0054145319ef9de8c1cb19df5bcf4dc8a1ece20053aa494e5d3a00a2852f","block_index":310062,"block_time":310062000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a79dec41c2e3455ff20f17cae03ce2e8a346171084386f97e552d1bd7d80b74');
+INSERT INTO messages VALUES(228,310062,'parse','blocks','{"block_index":310062,"ledger_hash":"cf03a34b29d3a8f8ea5fadb017426f2843c6ab2e785032b6dec70d7aba7bce4a","messages_hash":"ff216a1f3d27c07b519e4f0878ab90c2e5ea4774982b7d0cf59a8078cb811958","transaction_count":0,"txlist_hash":"3317013c1e6464e0296f5aa7f50208ede42ff9051e4e3ce2da92584cb80a3079"}',0,'BLOCK_PARSED',NULL,'849ffb727ba3157e4c753dbc19e9f7085e5e200c3d3bbbdcb1f7224fa0f7eca7');
+INSERT INTO messages VALUES(229,310063,'insert','blocks','{"block_hash":"0cbcbcd5b7f2dc288e3a34eab3d4212463a5a56e886804fb4f9f1cf929eadebe","block_index":310063,"block_time":310063000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a97cff25d5936cb4e11a0e397d22b66acbd36007023e2a4ecda1e7067fd8925');
+INSERT INTO messages VALUES(230,310063,'parse','blocks','{"block_index":310063,"ledger_hash":"e145dfc2c7f053a1ba4c8a41d042b40c0748eefcf9e56c5e906ad4b12f3653eb","messages_hash":"ef6eb698344ec32b9fdd1d18680accf1d52a7cb0bff5e2afc4cf7434a3d01452","transaction_count":0,"txlist_hash":"b58f95d06b31f7bb5c6f6bd5c5c4460ef4e4ce0e1d154b8557a18cb73f36d432"}',0,'BLOCK_PARSED',NULL,'5966d09f8ff1403f9c36d31876637c7ccf3e8e4871fad5d944a3f631dad6319c');
+INSERT INTO messages VALUES(231,310064,'insert','blocks','{"block_hash":"e2db8065a195e85cde9ddb868a17d39893a60fb2b1255aa5f0c88729de7cbf30","block_index":310064,"block_time":310064000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c22f6688b1f9edd08459f7943525e539b9373a222ed2c7d1855817a2589f7390');
+INSERT INTO messages VALUES(232,310064,'parse','blocks','{"block_index":310064,"ledger_hash":"ebc34184623da16251782c82098c7fcfda42f95b155eadfacab2a53e3b34333e","messages_hash":"9c2e20c4eb44ad863b815db1585d2d8af43f1069dc6285dbeb0962d7d7734fe9","transaction_count":0,"txlist_hash":"e33ac70126559506de70ca420f152dcb639fd0e841d0d7259c0136d518fd4f39"}',0,'BLOCK_PARSED',NULL,'47eb753ad698d8fe845d5c72dcfae5ced120ddf5b765d0f81a1d378474bd9a69');
+INSERT INTO messages VALUES(233,310065,'insert','blocks','{"block_hash":"8a7bc7a77c831ac4fd11b8a9d22d1b6a0661b07cef05c2e600c7fb683b861d2a","block_index":310065,"block_time":310065000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94e3da6140911dd9664f740b299b06528a50dfc31f13df9fd9179423f37485c0');
+INSERT INTO messages VALUES(234,310065,'parse','blocks','{"block_index":310065,"ledger_hash":"db746a9e0ad8f37c14ef14180dd1bc562ae757a6d4d042a517bb8953f34c6958","messages_hash":"b75f05047f221109179f51bb1692764e36a8f68293b4c4e72a9fccc0c52186e6","transaction_count":0,"txlist_hash":"9d52ca0b8859777bcbe84606017ec53961075699eff51b34b80e5a6ed33b137f"}',0,'BLOCK_PARSED',NULL,'4186959fe1c4d92d8453c61e06dd6f6a8c33c33d1dec06173691f91d3f95b10d');
+INSERT INTO messages VALUES(235,310066,'insert','blocks','{"block_hash":"b6959be51eb084747d301f7ccaf9e75f2292c9404633b1532e3692659939430d","block_index":310066,"block_time":310066000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2c8a1f764db6a540fe12dd6fa3c69df165fcb790e8aa58a2070d8da51c428e5');
+INSERT INTO messages VALUES(236,310066,'parse','blocks','{"block_index":310066,"ledger_hash":"cc71a63314b770e4e010bc7c66d8ab808451b6401e6df8558455a2bfc9bb4882","messages_hash":"191d810188a47237554db70e1196e13b81fa2309d4c0eeb573181df64f4bdb70","transaction_count":0,"txlist_hash":"5122312265a8305639f6490bc51fb025626dbcd38c5735ce85cd652348f2e86e"}',0,'BLOCK_PARSED',NULL,'37397a9152caf775213df2455212e8d2a4a2f55de9228db686389280fcbd4b5f');
+INSERT INTO messages VALUES(237,310067,'insert','blocks','{"block_hash":"8b08eae98d7193c9c01863fac6effb9162bda010daeacf9e0347112f233b8577","block_index":310067,"block_time":310067000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9eab5631b15deb0ac20ef29bc6a8a28aca7904ddf3357d8d87d9060f46959490');
+INSERT INTO messages VALUES(238,310067,'parse','blocks','{"block_index":310067,"ledger_hash":"a5812c0f3a37b04d5105bca6b0c4819a41beeedf5b0f314f476ab55d6c31235d","messages_hash":"6fb37efd1c21aac24a225c862e2b88d11286b2530e7993bd7435e831b38fe823","transaction_count":0,"txlist_hash":"764477c3a233cd407804695f42948d3017951e90b7474cfcc24ef81ee49fdad9"}',0,'BLOCK_PARSED',NULL,'540c6f6a18c9ed725a6dac13671036a82d51c0f2f597f23b46e10e52c581d33d');
+INSERT INTO messages VALUES(239,310068,'insert','blocks','{"block_hash":"9280e7297ef6313341bc81787a36acfc9af58f83a415afff5e3154f126cf52b5","block_index":310068,"block_time":310068000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff25adf577d41a352e6698e4fdb8182dad62ba416fb9e733d43533f4b9403568');
+INSERT INTO messages VALUES(240,310068,'parse','blocks','{"block_index":310068,"ledger_hash":"14f065751896a2724251b6ca6d0297b344986980075fb72ad058ad0b5bedcd3c","messages_hash":"4fa7f80fbcaf4e54ebe864cdc7fc81078d45e457842300da587e9ac70026db17","transaction_count":0,"txlist_hash":"866fceb74e8e97d663493f3546519b01f51e1a3cb25bde4b0f3c2e960d2eda85"}',0,'BLOCK_PARSED',NULL,'17dbfcdc9f91e8f575f134f1c8b66cd85e8598c46b6fd8a03f35d0a713d1d47a');
+INSERT INTO messages VALUES(241,310069,'insert','blocks','{"block_hash":"486351f0655bf594ffaab1980cff17353b640b63e9c27239109addece189a6f7","block_index":310069,"block_time":310069000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'123e5c0d1a14995a35536de7afb6dc77671dfb5c47de31db8ae0f75388ea7af8');
+INSERT INTO messages VALUES(242,310069,'parse','blocks','{"block_index":310069,"ledger_hash":"a7dd17b4760fb65ac58be1b1653f7cb0e90574c47f70c61ff9f940ad15ad3658","messages_hash":"bf949bb3796dbf2bbf30935905093ab1fee2e740e4dd3223f2d95fbb465f2943","transaction_count":0,"txlist_hash":"9e0565827fcf295ae2149bfcf5e0db29237f447760832083baf94de145bdb531"}',0,'BLOCK_PARSED',NULL,'8ec3d5c0e4cbad2a1b5f3b1062ec9df4c2005648e7f5cad7f38b99de3069a7e6');
+INSERT INTO messages VALUES(243,310070,'insert','blocks','{"block_hash":"8739e99f4dee8bebf1332f37f49a125348b40b93b74fe35579dd52bfba4fa7e5","block_index":310070,"block_time":310070000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95b1115e9572ed1a6eb879ca7e10d173ce3f5085cc6e8873b8b528713436d4e9');
+INSERT INTO messages VALUES(244,310070,'parse','blocks','{"block_index":310070,"ledger_hash":"8068a6bcc5d1fc1a78562f0f3165423b45b4674e55f21c4c09948fb65ee632c0","messages_hash":"e5f52986f6913f9ee078e81ea705e9f2f5f8002649b6fa45080a3395fe5acfec","transaction_count":0,"txlist_hash":"03f84e0f0838204a53ce54e3cfecde00b2e5741ed08aab0c0d9ed99513ab4655"}',0,'BLOCK_PARSED',NULL,'3113e6c2c2f7ca580f2bafa3140f9b7f2dd0541b1ed7a0d6fe967d5d1d93847e');
+INSERT INTO messages VALUES(245,310071,'insert','blocks','{"block_hash":"7a099aa1bba0ead577f1e44f35263a1f115ed6a868c98d4dd71609072ae7f80b","block_index":310071,"block_time":310071000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4171ca939dfca9de8b6952e736be595aa583226ed908f250041b3634cbfd8055');
+INSERT INTO messages VALUES(246,310071,'parse','blocks','{"block_index":310071,"ledger_hash":"af86ffad4b8dd68a0f18142935bbb18623cc5ce2e9e0c02f04c0e7a5dd974e17","messages_hash":"38474dcba9bc1f4452082b63a5281eb673202f6177847430e5faf3e11232132c","transaction_count":0,"txlist_hash":"9b3e1c7af0bb119e69813161c19aeac4dd5a594ece5f67f21ffb55b8edaa111f"}',0,'BLOCK_PARSED',NULL,'0a99da1e4a5708d50f6f11945573acabcc315ce041b724e6e561145c0079e057');
+INSERT INTO messages VALUES(247,310072,'insert','blocks','{"block_hash":"7b17ecedc07552551b8129e068ae67cb176ca766ea3f6df74b597a94e3a7fc8a","block_index":310072,"block_time":310072000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97285cbd8fcb068954e6ecda5f92e38b9a5bc9d66fef8a2293830a84c62307a2');
+INSERT INTO messages VALUES(248,310072,'parse','blocks','{"block_index":310072,"ledger_hash":"36de48518d1446b33f2230c5eee7d18e040db543fe03dca001174f8382c209ee","messages_hash":"a0238475bfe01e3f54e545c50dd345d0ae1768091b1126a6850a85fd481a8cfa","transaction_count":0,"txlist_hash":"33fccfbad1dd91d9102b82f11b7c97883bc5d5fdfd44584cca6c40fbd04ce2d8"}',0,'BLOCK_PARSED',NULL,'2f40e1cae6565842b0eb9689db2f3455d51986ed508e2b1ec9642133a0e2aeff');
+INSERT INTO messages VALUES(249,310073,'insert','blocks','{"block_hash":"ee0fe3cc9b3a48a2746b6090b63b442b97ea6055d48edcf4b2288396764c6943","block_index":310073,"block_time":310073000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9938a442225bdd4650c928a020a27701f3f44a15511fd7ff8bdd45ea5e416d13');
+INSERT INTO messages VALUES(250,310073,'parse','blocks','{"block_index":310073,"ledger_hash":"4374f567cbc460b73e74d6190db353c3ee86b92c3f99e392beae3caeb264eb5f","messages_hash":"f3ee3bb3ef907ebbd81baa164a4f59c023dd4bfe32a96b157d14eeaa5807a061","transaction_count":0,"txlist_hash":"7544980dbaa8029ae36d883e3079bcc82f2d140072d4dd65cb3384510692ff45"}',0,'BLOCK_PARSED',NULL,'7c7120557037aeb62580f423d6e6f9f824add54e5e1f76bc31ea712e370b7920');
+INSERT INTO messages VALUES(251,310074,'insert','blocks','{"block_hash":"ceab38dfde01f711a187601731ad575d67cfe0b7dbc61dcd4f15baaef72089fb","block_index":310074,"block_time":310074000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb4d8842efd92165c73351e2278dc743807cb7afa86caf53b18d55737ad97e8b');
+INSERT INTO messages VALUES(252,310074,'parse','blocks','{"block_index":310074,"ledger_hash":"54fd95cdf7f9374d1687590f2860276afe67a265ddd9216e5b63fb06c5bd569e","messages_hash":"88e42f2ca73ebe9930962154ad1d75e981fef255900700a906980213b173b775","transaction_count":0,"txlist_hash":"1efba9ea6a8d2e7ee6ee2070b84b497feb66e3387e05c1e4f4989f086e5e02a2"}',0,'BLOCK_PARSED',NULL,'c2bca3181e955aae35b175fb4d89e5e3afe694981e86cf2e93c784ff3b699447');
+INSERT INTO messages VALUES(253,310075,'insert','blocks','{"block_hash":"ef547198c6e36d829f117cfd7077ccde45158e3c545152225fa24dba7a26847b","block_index":310075,"block_time":310075000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3715e1c0681bda5494e31f35361edb9be46600a5109675cfec813677de252c4d');
+INSERT INTO messages VALUES(254,310075,'parse','blocks','{"block_index":310075,"ledger_hash":"2b42e23b43d30f91fe7705a01f0c8ec86d6230815b587704bcc70b91b5ae87b8","messages_hash":"0b82b2c2625852fee6d69747d1d008db2acfbe9ad39af34974bf2c2f37adf2af","transaction_count":0,"txlist_hash":"a370830ef1758c18c88e6d9fcc5803fc15f1dbdad0f2d6a0773f902d86ad7c97"}',0,'BLOCK_PARSED',NULL,'6cfdcd50dccbcc01ed55de424a3a027d68c667875dfb9039539bfc307b45f6f6');
+INSERT INTO messages VALUES(255,310076,'insert','blocks','{"block_hash":"3b0499c2e8e8f0252c7288d4ecf66efc426ca37aad3524424d14c8bc6f8b0d92","block_index":310076,"block_time":310076000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc5aa6e9da562b14a8365141cbea3176c01ac000de76193d11f1a02db3371d6c');
+INSERT INTO messages VALUES(256,310076,'parse','blocks','{"block_index":310076,"ledger_hash":"577092728a4dc81cd9a06fcf6d2b058f0e4ce8bcb395819a704d6b4144f041dc","messages_hash":"c4f86f312ef180a2ff9b49f8a3c1bfb363ca4a01ce5097eaf575a711c35312b6","transaction_count":0,"txlist_hash":"05ce95f07d03f4417a2fd15224418c8ba4ae196e9ec6f3192f5324c028363641"}',0,'BLOCK_PARSED',NULL,'4d6db5c4eb35fc31ecfe428baae84a3defb16315eb1b842f98f3b8ade63b0be3');
+INSERT INTO messages VALUES(257,310077,'insert','blocks','{"block_hash":"d2adeefa9024ab3ff2822bc36acf19b6c647cea118cf15b86c6bc00c3322e7dd","block_index":310077,"block_time":310077000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b16fbf439edb21549949b07f9eb868b09925b25a89a7542974936e75d2b1b0ff');
+INSERT INTO messages VALUES(258,310077,'parse','blocks','{"block_index":310077,"ledger_hash":"d1ba60181f3061673c64ecd0b92abbc19b1a6e69a927dfefdfd8b8c74171ecd2","messages_hash":"5c2a47f3451c0f085fd5015c8881e0b336072751beea8291527a6a7e9cb7fcb2","transaction_count":0,"txlist_hash":"6c9e35feb56fb01c37fce04a1e6dc5f7747a6d26ee2f39ac584f11e8359dce71"}',0,'BLOCK_PARSED',NULL,'61b33522a219f71830423ce925895c09cebe40c3d9d98a4ab7bd11904edde065');
+INSERT INTO messages VALUES(259,310078,'insert','blocks','{"block_hash":"f6c17115ef0efe489c562bcda4615892b4d4b39db0c9791fe193d4922bd82cd6","block_index":310078,"block_time":310078000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ffddc95a949ee7b86bf3dddb6241f69221114311238d555843e6b105d8ff1a74');
+INSERT INTO messages VALUES(260,310078,'parse','blocks','{"block_index":310078,"ledger_hash":"c0a9270d15793e68cfd1cf445315d737bed7052914da6def4f014c21f0c9e0c5","messages_hash":"1f79638ac7ba93860152e158470cb85467a5d933171b727e55c7655830442d21","transaction_count":0,"txlist_hash":"d59b48425061f0965947dd025cfa0fba8855e997f376572c585db72203b9a80a"}',0,'BLOCK_PARSED',NULL,'ab3e3ac437bcd033c50cb20b9d1019ccc41d59400c7ea4ec6e57048f315293ef');
+INSERT INTO messages VALUES(261,310079,'insert','blocks','{"block_hash":"f2fbd2074d804e631db44cb0fb2e1db3fdc367e439c21ffc40d73104c4d7069c","block_index":310079,"block_time":310079000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'885be58b4c74bc1349cfeb69326f12bd820f1a9fccab88b6a0dedb1f051c4808');
+INSERT INTO messages VALUES(262,310079,'parse','blocks','{"block_index":310079,"ledger_hash":"74eaddecbf5ab6608c1e95c1c313c13f2af2b649512cc8c7016717d21e93f815","messages_hash":"66fe063bbbad8d3b7957863f61677bcb41768aa09bd8ffa94f3b543551fde349","transaction_count":0,"txlist_hash":"d3f32df02f0e7cd7c2163b47b3ff73d175046599ed626ab343647e1a04525e3c"}',0,'BLOCK_PARSED',NULL,'a9ba1e381f114e2ca485c5f3d83f7e4fdeac731bc5b4bad571d7cf14b36631a9');
+INSERT INTO messages VALUES(263,310080,'insert','blocks','{"block_hash":"42943b914d9c367000a78b78a544cc4b84b1df838aadde33fe730964a89a3a6c","block_index":310080,"block_time":310080000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0a0ea86491f9a5daec2b29fddd534fba76a4d1d2bce05185283beb59b8617183');
+INSERT INTO messages VALUES(264,310080,'parse','blocks','{"block_index":310080,"ledger_hash":"a759e3aac1b015e28b8b524106a74b943b215faac8d5079384ec7351b2239bde","messages_hash":"307a9968bffaa2dae3e73953072a494d7dc3e2ac9538fd2cf11d2235ce810403","transaction_count":0,"txlist_hash":"f588a6cf255e710d9ee481d53f8bc0fc0e1567d58ee701f1b77f0848db881f5f"}',0,'BLOCK_PARSED',NULL,'d2a87e03bbad917787f701de77f10af796dbe7b0d755efaab23219cc0aee2761');
+INSERT INTO messages VALUES(265,310081,'insert','blocks','{"block_hash":"6554f9d307976249e7b7e260e08046b3b55d318f8b6af627fed5be3063f123c4","block_index":310081,"block_time":310081000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c0e11ff330215daefaf66c1b9532411fef08fe6bb8418d647561ddd2abb6e84');
+INSERT INTO messages VALUES(266,310081,'parse','blocks','{"block_index":310081,"ledger_hash":"71622e25e8497db6fa222e33c60ea582698e72ca5789a52c9252bf51191cadaa","messages_hash":"f98c24b0a1a28a67ef5fe5546470b70ad802a873a1ea11650da7abc97cded386","transaction_count":0,"txlist_hash":"9a2e169d5fa3721f9bb8852c93ca8ed5dfbcccef05cba99ed3f1c61c937f4366"}',0,'BLOCK_PARSED',NULL,'5dba024fce9a6baf120302e652612486104dbb23c0a159e0d7f2680bc6a0150a');
+INSERT INTO messages VALUES(267,310082,'insert','blocks','{"block_hash":"4f1ef91b1dcd575f8ac2e66a67715500cbca154bd6f3b8148bb7015a6aa6c644","block_index":310082,"block_time":310082000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ccd8ad27774c06cb0ad669887a0c6af0cc4744f14799bce4841a169e4d9492d');
+INSERT INTO messages VALUES(268,310082,'parse','blocks','{"block_index":310082,"ledger_hash":"47e9d8fbcbafcee2b4c145ce651333ce49812533d13f7f9a0e9a448f51cfbacd","messages_hash":"3d07a3575c13095678c39c78ab22439018cd5ebff95822da5a20eba2cd064c0c","transaction_count":0,"txlist_hash":"c2cd395566e0a7b16c76cc0ead2c2cc87a684d5a499c76b2370afffe4b408ad1"}',0,'BLOCK_PARSED',NULL,'74e9e4014c714ecd00a268bdff9d2d8bd54f0832f8e56d21e3b5ec425beb0ed7');
+INSERT INTO messages VALUES(269,310083,'insert','blocks','{"block_hash":"9b1f6fd6ff9b0dc4e37603cfb0625f49067c775b99e12492afd85392d3c8d850","block_index":310083,"block_time":310083000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2db3c12cb5f1866bc688fa8534fc0302ed6f73ee6675ee9091f051fecd72dd6b');
+INSERT INTO messages VALUES(270,310083,'parse','blocks','{"block_index":310083,"ledger_hash":"e61148e7a8125f7225a6b6e1d77786f8b28b0b8a74e60fef3f75fa4de8f7d882","messages_hash":"2b7647f75b93d26a0bff732e3a2df4c58dde0bd7e4e075cb89a7f11c9b4b6b32","transaction_count":0,"txlist_hash":"21fb4596655071cca486c2e6988ec980799a9827e2e5f169033a45d21b3c7a75"}',0,'BLOCK_PARSED',NULL,'afff709c837a5666f6b5fc56ebcc96e1abf23e46998b167a91016df4544393b8');
+INSERT INTO messages VALUES(271,310084,'insert','blocks','{"block_hash":"1e0972523e80306441b9f4157f171716199f1428db2e818a7f7817ccdc8859e3","block_index":310084,"block_time":310084000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00bf5f3f0834d291d95eb4e7debc986920ee994dcd37029f6f2a611c0f8a185f');
+INSERT INTO messages VALUES(272,310084,'parse','blocks','{"block_index":310084,"ledger_hash":"20fb450589ddc6c904fbb61cca8588e85e865635c12402ce7ae72995ab884c14","messages_hash":"9df8b71401e3ce380fe0a7fec1a3fe2004da522abd249dbe41ee3dc1797c4c05","transaction_count":0,"txlist_hash":"feb3992f370b8465a732bc4d90691b99db691f44e1697ad2775a6df216d93b13"}',0,'BLOCK_PARSED',NULL,'9d5b63c7682416f043c479a6b724684d03624ff5faed3fc0af6d22ad6418589e');
+INSERT INTO messages VALUES(273,310085,'insert','blocks','{"block_hash":"c5b6e9581831e3bc5848cd7630c499bca26d9ece5156d36579bdb72d54817e34","block_index":310085,"block_time":310085000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43ff44fed4e256b02dc468c991d8b2fe63e4832ed5f2bf5b07ad2307cdd4f0bf');
+INSERT INTO messages VALUES(274,310085,'parse','blocks','{"block_index":310085,"ledger_hash":"9cea37d548308505f80dc438d5183bac6c6ca424ea4dd9c85d883b05d67cdc92","messages_hash":"97e5d595611e2e43b877dc7a8f1a5b0713efb2bf09f009b7af4277380920cf43","transaction_count":0,"txlist_hash":"277205c28e54078d55ce1641fed64ff4b409b686fbe4aa3a018cead2f969c501"}',0,'BLOCK_PARSED',NULL,'893bdec2e5db3f7b4750d779eb0ee4b148f701135202ec6de7e141a2db390f92');
+INSERT INTO messages VALUES(275,310086,'insert','blocks','{"block_hash":"080c1dc55a4ecf4824cf9840602498cfc35b5f84099f50b71b45cb63834c7a78","block_index":310086,"block_time":310086000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1fe6884e8e5e4d8539745f90b17091c71ceb47091cbb292e6a09e5785b271dd6');
+INSERT INTO messages VALUES(276,310086,'parse','blocks','{"block_index":310086,"ledger_hash":"e11bab5fba2d038086c65030b90ce1cbc988314d0c9846aa7ddac4fd357bd01a","messages_hash":"e580ac2d8a2be303a110c8ab5bd5f4c686f730702f5a91edffdaeee1f0b0f945","transaction_count":0,"txlist_hash":"ef3ac1de31e29795732b362218bd244945bea4183273512ff6974ecd0c0a7aef"}',0,'BLOCK_PARSED',NULL,'25fd1823f79dc29cc12a0cd2cc5e51d2b2a729336ea990d662a66b731cbdf0e2');
+INSERT INTO messages VALUES(277,310087,'insert','blocks','{"block_hash":"4ec8cb1c38b22904e8087a034a6406b896eff4dd28e7620601c6bddf82e2738c","block_index":310087,"block_time":310087000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41ab166b31523fcc64a854d8e4b15d5a1e99c6a07c001cfe6024d390c581305');
+INSERT INTO messages VALUES(278,310087,'parse','blocks','{"block_index":310087,"ledger_hash":"777873e7ebd0ec3052be65197ec0db8bd72e46d2053badb0f37be1f6e84ae0b3","messages_hash":"f4e90d370be413c612ec975fbcd25a12a11151c054962c1f4269452c299135a3","transaction_count":0,"txlist_hash":"3bec931f7207a5b03e5a7d390787cd737e598d04025a1514c7654ef34fd1aedc"}',0,'BLOCK_PARSED',NULL,'44aee1c92eb9e81db667ff484920481a3409ed8b1da46092b578396a0cfc3025');
+INSERT INTO messages VALUES(279,310088,'insert','blocks','{"block_hash":"e945c815c433cbddd0bf8e66c5c23b51072483492acda98f5c2c201020a8c5b3","block_index":310088,"block_time":310088000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'847eaa0537c8544185583402fa4f0f694654a97114f66526737739c1fe57d78f');
+INSERT INTO messages VALUES(280,310088,'parse','blocks','{"block_index":310088,"ledger_hash":"85a5ea57af33dfddddbcbe1a1c87994efe5a21a645713aa164f19e19bfb23c64","messages_hash":"4da72822920fe3161e57cbcb6cda91eed27f39515bf0e5e367d58fc74211191d","transaction_count":0,"txlist_hash":"4030ee911aec8ebfbbeecede9cfb977088fb591b20cf52d5340e5aa13e41c7f7"}',0,'BLOCK_PARSED',NULL,'b2e8233a3ab30e09ff09e32babbe17c0e6b28235959af0e0742a78fd98557696');
+INSERT INTO messages VALUES(281,310089,'insert','blocks','{"block_hash":"0382437f895ef3e7e38bf025fd4f606fd44d4bbd6aea71dbdc4ed11a7cd46f33","block_index":310089,"block_time":310089000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'528e710fe102bdebbd3ddc8de8a522fc84256616402fdc63c4d3c4f9f101c741');
+INSERT INTO messages VALUES(282,310089,'parse','blocks','{"block_index":310089,"ledger_hash":"bdf3b6e7a14a3aa22d42a7d69f2f96b0993f1eef2952a7d74313c37e1b407523","messages_hash":"44ba1471cdb469c413e941ed34c08176c7ad50c1bba20e211b3813a80bac5ec2","transaction_count":0,"txlist_hash":"255675a022762a349d44af6315173e05c685f351f2b3b770e0ec80e128969a4b"}',0,'BLOCK_PARSED',NULL,'c4638d8a52dc0e4827c011b0c33336065039f34fba1ac19be56342703fcc59f1');
+INSERT INTO messages VALUES(283,310090,'insert','blocks','{"block_hash":"b756db71dc037b5a4582de354a3347371267d31ebda453e152f0a13bb2fae969","block_index":310090,"block_time":310090000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dadf5c5dc8b297d636ea9001c307f69654573280095f4d5389c0837f15eb9ca');
+INSERT INTO messages VALUES(284,310090,'parse','blocks','{"block_index":310090,"ledger_hash":"9b3ee688c5786ecc438ec9c843ba5f898fe1ab1a8bc3903ad7789aaf6b0c0bf0","messages_hash":"f519e2ea81399121771f7e37da3f055879b898f2d864a7631c66089b3d41f4bf","transaction_count":0,"txlist_hash":"7d658801ab6fbe73231469da5204c5e1c73d290b83449187ec5eec71b846616d"}',0,'BLOCK_PARSED',NULL,'8098931ee0309e121ec32e00dde234b276b6d7d07b056576229474112b12013c');
+INSERT INTO messages VALUES(285,310091,'insert','blocks','{"block_hash":"734a9aa485f36399d5efb74f3b9c47f8b5f6fd68c9967f134b14cfe7e2d7583c","block_index":310091,"block_time":310091000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b40fd894f9f1a8a0ae461685fd788f98aa1709178ab66c51e5a8ddd544fe939');
+INSERT INTO messages VALUES(286,310091,'parse','blocks','{"block_index":310091,"ledger_hash":"25578ac389a77dbf9589b23c5470f3199016ac66a415540ae03efac29dfe7adc","messages_hash":"a9500840cbc887bafdbf4836c04b69537486621ee914e07c4119c1624ae37b89","transaction_count":0,"txlist_hash":"1cb14bc9f998c85e670e2e291cde3a2debe9b4013840c0c060417f509c7210ea"}',0,'BLOCK_PARSED',NULL,'2df1e054b15946d7ea0263bdaf28265332da126f2af08855c796d9517b8df903');
+INSERT INTO messages VALUES(287,310092,'insert','blocks','{"block_hash":"56386beb65f9228740d4ad43a1c575645f6daf59e0dd9f22551c59215b5e8c3d","block_index":310092,"block_time":310092000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61328354d993d9d026edac24881004e2f1baffc09cb3f806f03b8291f02ff04d');
+INSERT INTO messages VALUES(288,310092,'parse','blocks','{"block_index":310092,"ledger_hash":"bb9109ba299c99cb104ebf2ef6e75141c50264d701d27119525ab5d0a54c1a40","messages_hash":"64ad964d4da1d8c1c41897a56aca436f59b6313572aef0a5acb7b39b9f0fb54c","transaction_count":0,"txlist_hash":"889afcda8b6e0848c7d43014beb0e181c78fa69d3aedec508f4bc0eb8a416029"}',0,'BLOCK_PARSED',NULL,'2fcaa2ac52139d6f72f54d2416e3cd58d2c53dc15b63468b01cc036e93bfc56d');
+INSERT INTO messages VALUES(289,310093,'insert','blocks','{"block_hash":"a74a2425f2f4be24bb5f715173e6756649e1cbf1b064aeb1ef60e0b94b418ddc","block_index":310093,"block_time":310093000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'929414d98050efcbc0719c737f3f1abc13dfa3afd19c4100ee3652a1496959b5');
+INSERT INTO messages VALUES(290,310093,'parse','blocks','{"block_index":310093,"ledger_hash":"cdb21362b3eb4fc10ba3c6bf3aba41bfc5bd0bf2475f742c1069cb4383be7b95","messages_hash":"9d5b59fc00126a4800287f92235473c774f12700df541e87de360481f37d03da","transaction_count":0,"txlist_hash":"dec762d55ba88cb2c043f627b2a8b26c920cce9d4dc2746065c0bcf2795c2d99"}',0,'BLOCK_PARSED',NULL,'d9d98325d8d1519407e8f6ddf4b24ffcdc3baec586d216628500a8b8c76397c9');
+INSERT INTO messages VALUES(291,310094,'insert','blocks','{"block_hash":"2a8f976f20c4e89ff01071915ac96ee35192d54df3a246bf61fd4a0cccfb5b23","block_index":310094,"block_time":310094000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4e9c73b8b11fd0e256a43d3112cc1e14b1ad06f9654c7c1096eb9352e3c7e99');
+INSERT INTO messages VALUES(292,310094,'parse','blocks','{"block_index":310094,"ledger_hash":"b82568de09fe4ea06f3dca053dbcbcc61dbe5e44dd300a4301c995ba180f894d","messages_hash":"51b025141bec636c636c349544b4e3c88288bdcc545ac1b3f3810210742fd443","transaction_count":0,"txlist_hash":"625beebc3c34fa3276e022a37c79137c8f09af21454e8171cce7ab7a04453047"}',0,'BLOCK_PARSED',NULL,'241c39f54aa73978c80709b80d50249b45f7ed9a0c9b2667669fc8a289dc9693');
+INSERT INTO messages VALUES(293,310095,'insert','blocks','{"block_hash":"bed0fa40c9981223fb40b3be8124ca619edc9dd34d0c907369477ea92e5d2cd2","block_index":310095,"block_time":310095000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'627abc339fb2b17df8e4e84dda27cff5cd95048a1d0d970519679f16fc1f31bc');
+INSERT INTO messages VALUES(294,310095,'parse','blocks','{"block_index":310095,"ledger_hash":"513c4a041ee80ba72d1d8428605c682e3485fa45341460bc33fae6540dffb571","messages_hash":"e4fbb9bfee5ec512c49a3672528c11ef3b18bbed9e0b2750f586a3d25cf0de31","transaction_count":0,"txlist_hash":"b7794e7c8dfe3947ab8d256b94af8bc43acb9ca11f696a81cf9ad98062372959"}',0,'BLOCK_PARSED',NULL,'2d88c79c947abc53a770d05651da0eb94a2ef9906ff26406f7658b73c45b267d');
+INSERT INTO messages VALUES(295,310096,'insert','blocks','{"block_hash":"306aeec3db435fabffdf88c2f26ee83caa4c2426375a33daa2be041dbd27ea2f","block_index":310096,"block_time":310096000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1da1bf93e8d1c0c6e9529e5e4018c350c6589f159717c73fe6102584d002088b');
+INSERT INTO messages VALUES(296,310096,'parse','blocks','{"block_index":310096,"ledger_hash":"3e8ff43c8d671159355b2d40a995fb8f6d84f6216fa8326fa80ae39aa9d15d03","messages_hash":"f7e91f99556223cc69b33032fb7d8d42e1a44cd0c078a58cb82b3990f87c8d6b","transaction_count":0,"txlist_hash":"8117c5400c1cfdb97456cf3b79e8572aecf23c29d1c336d5543979d0e81cc158"}',0,'BLOCK_PARSED',NULL,'07477477609c2e5824c75e8aa0e218c89d87118663c59d6da39e37dc7f2cffc3');
+INSERT INTO messages VALUES(297,310097,'insert','blocks','{"block_hash":"13e8e16e67c7cdcc80d477491e554b43744f90e8e1a9728439a11fab42cefadf","block_index":310097,"block_time":310097000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a60c3588e44ef19db736db2e08d6f8ad645b00407256ada587eab4fed235bad9');
+INSERT INTO messages VALUES(298,310097,'parse','blocks','{"block_index":310097,"ledger_hash":"19d91de7be12136737d3f8990e7a4a793912c952e71e017d723d750118e849c6","messages_hash":"ebc9623688b02331d81b74790f32e8994af3659b94aa6b4663e2ee926520e8a5","transaction_count":0,"txlist_hash":"1e2f99bf2c03b8c915bd23c94431002d3801a13caf40d9b42f22001c2faf305a"}',0,'BLOCK_PARSED',NULL,'afe8ec8c58ad129e55e9e9ac63133e82095f26fc27316f3d29a7313a601d4a8d');
+INSERT INTO messages VALUES(299,310098,'insert','blocks','{"block_hash":"ca5bca4b5ec4fa6183e05176abe921cff884c4e20910fab55b603cef48dc3bca","block_index":310098,"block_time":310098000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f97b0de40bc1c8ed6c79518c3acf72ac4973c3652cd786b25ecb5f6617638fdb');
+INSERT INTO messages VALUES(300,310098,'parse','blocks','{"block_index":310098,"ledger_hash":"be75df2e5aff3faaebfc0ce4ab5134790fa728f84500e6989739dddc058738de","messages_hash":"2c535698b22226e968222a9e03c263e7e8f16427786053ca41661c1757248b59","transaction_count":0,"txlist_hash":"7f692426eab57621527d12cc4a49aa85841de9856cd46ad6992a658ed5c15fb1"}',0,'BLOCK_PARSED',NULL,'f5b562eaf9dd6a74220e2ed6cdc6464debbdeeb3972291da97aac3dcaebfc004');
+INSERT INTO messages VALUES(301,310099,'insert','blocks','{"block_hash":"3c4c2279cd7de0add5ec469648a845875495a7d54ebfb5b012dcc5a197b7992a","block_index":310099,"block_time":310099000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e7644433df01a1e6ec3a0fcfae060d8e86489308252b070f194633dd5480a937');
+INSERT INTO messages VALUES(302,310099,'parse','blocks','{"block_index":310099,"ledger_hash":"9090b8a4a26ea7dff75658317ce2c6ab828b3b42684922e44debfd1bf8330b8d","messages_hash":"1bf4589d685eea753559bc8b6ab3357f6b4183ba4e6876f6df46f5d71186380d","transaction_count":0,"txlist_hash":"c3b0869da7bd7abbda54895e6de81cffd2febe007e1f7085da8cc657512278e6"}',0,'BLOCK_PARSED',NULL,'80a89f24258d3f7671af7d4544e2962367b41512b06d858df334cda2c4771640');
+INSERT INTO messages VALUES(303,310100,'insert','blocks','{"block_hash":"96925c05b3c7c80c716f5bef68d161c71d044252c766ca0e3f17f255764242cb","block_index":310100,"block_time":310100000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9725bb479b5a2e49b6fa2110378a60dd4ab5b27704ad202b82e0685bfbc870b2');
+INSERT INTO messages VALUES(304,310100,'parse','blocks','{"block_index":310100,"ledger_hash":"d48d30db433bcee44d87153fb3db17d37fbe3534f23eb16ac853b3420d86d80e","messages_hash":"bba464b87bc827b22f557d585532601d5915ef329ff62a2ef523402862c22beb","transaction_count":0,"txlist_hash":"793627f8b7de24827faca4a19ce374f39c90b74e278b83a599cb637877bd6388"}',0,'BLOCK_PARSED',NULL,'2c84bc9796e7ccdc48c04913902c5835fa14ddf7cbcd4fe77e7abbcfd2aa224a');
+INSERT INTO messages VALUES(305,310101,'insert','blocks','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63f4c932b9c7e03ebbd24c997ef3ecfe9fc8e7f93a8d484ce6439756b4463a2f');
+INSERT INTO messages VALUES(306,310101,'insert','transactions','{"block_hash":"369472409995ca1a2ebecbad6bf9dab38c378ab1e67e1bdf13d4ce1346731cd6","block_index":310101,"block_time":310101000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","fee":7650,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"utxos_info":"9a2d6e0a308c51d19210c34cd281c137feb827817292a20fd89947d9f54f0c0c:0"}',0,'NEW_TRANSACTION',NULL,'01a1ba30fdd36a6034be5f4aca4ef7896a67f6c23b413c35a881e4b52778958c');
+INSERT INTO messages VALUES(307,310101,'insert','debits','{"action":"bet","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310101,"event":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","quantity":10,"tx_index":102,"utxo":null,"utxo_address":null}',0,'DEBIT','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','1ff379f1d6904f11609bdf2b065569a866cbb1eebae6996e90322b47cfbfa160');
+INSERT INTO messages VALUES(308,310101,'insert','bets','{"bet_type":3,"block_index":310101,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311101,"fee_fraction_int":5000000.0,"feed_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","leverage":5040,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","target_value":0.0,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','b7682dcff77464b04616cd19e8be9fe52b0960804c2c78dc946f5e24255ac160');
+INSERT INTO messages VALUES(309,310101,'parse','transactions','{"supported":true,"tx_hash":"db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e","tx_index":102}',0,'TRANSACTION_PARSED','db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e','90d037cbf22896b70053813f6aa39aec9e5837ca28f7050bbf5d262b602fdc7c');
+INSERT INTO messages VALUES(310,310101,'parse','blocks','{"block_index":310101,"ledger_hash":"53c6f9247cd255c86a69c05c4463ab94f9a3277496c155398c38dc6f7121fe9b","messages_hash":"40f5829d6516e39084234f4648c84fa06ef771504f5495e85f24de09e1799775","transaction_count":1,"txlist_hash":"7388dcdfb1f5a54a0d4a4d3e50d486b24a662cef04f054a582e2d5b0bcf3ca28"}',0,'BLOCK_PARSED',NULL,'a3f8bb4992ad9f605d59ee00115d7dc543edb2f6e9635055e6d7e856cfb3d4a1');
+INSERT INTO messages VALUES(311,310102,'insert','blocks','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a9d12782ee47f64e343e7a344e81ee827781dc0f45eb91b5420e909d5884979');
+INSERT INTO messages VALUES(312,310102,'insert','transactions','{"block_hash":"11e25883fd0479b78ddb1953ef67e3c3d1ffc82bd1f9e918a75c2194f7137f99","block_index":310102,"block_time":310102000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"utxos_info":"4b317043028e713c70f522e12ab72382edf1a48d6a67bf3393ee26da8cf9fb90:0"}',0,'NEW_TRANSACTION',NULL,'450682ddb1876742492f8fa4c941dffb6e33e7548e0d842e4873bdf02a079af9');
+INSERT INTO messages VALUES(313,310102,'insert','broadcasts','{"block_index":310102,"fee_fraction_int":5000000,"locked":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103,"value":1.0}',0,'BROADCAST','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','627f7010f86cd4008f438dc66641d4abc7fe0ea856dea996051342a841fb8e92');
+INSERT INTO messages VALUES(314,310102,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','6d58c722d7cf84020ed8f2c9d999e5d7310b0615b8c259e30d602cf0ef0e62d2');
+INSERT INTO messages VALUES(315,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"bet settled","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":9,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','2bcc1b958b8b1c7d526bdfb63a373c6bd918c23cc9299b1d6bf9b9a27163d6de');
+INSERT INTO messages VALUES(316,310102,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310102,"calling_function":"feed fee","event":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","quantity":0,"tx_index":103,"utxo":null,"utxo_address":null}',0,'CREDIT','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','e8a546079fe7293007399b67b76d4df101b46f6cac8411d0fc9337d0f6f5993d');
+INSERT INTO messages VALUES(317,310102,'insert','bet_match_resolutions','{"bear_credit":9,"bet_match_id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","bet_match_type_id":1,"block_index":310102,"bull_credit":9,"escrow_less_fee":null,"fee":0,"settled":true,"winner":null}',0,'BET_MATCH_RESOLUTON','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','431cba41fcbd718919e41d02834269f77c0302195ab7d8832ff5d205fc62f852');
+INSERT INTO messages VALUES(318,310102,'update','bet_matches','{"id":"2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93","status":"settled"}',0,'BET_MATCH_UPDATE','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','6c7113c490377ff180c4379066aac05cacf9a1027547fe5127549594e8c83bbe');
+INSERT INTO messages VALUES(319,310102,'parse','transactions','{"supported":true,"tx_hash":"16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae","tx_index":103}',0,'TRANSACTION_PARSED','16462eac6c795cea6e5985ee063867d8c61ae24373df02048186d28118d25bae','1e3e2ba653ac8873192b453ee1bbd0bbd223d76e4beb16dfb75c0663a232f2dd');
+INSERT INTO messages VALUES(320,310102,'parse','blocks','{"block_index":310102,"ledger_hash":"b225c48fb4c40b2e0695991251f6d69217df6e00c01613e0a20f6a3e34f50d5b","messages_hash":"b94df045d11f891d822e72da08f1567961fb0243df0f4ef334025702131cd40a","transaction_count":1,"txlist_hash":"7d553f87ef9f2beea74631e2e6ec107522b9f4756f041e2ee40fa3946909b3dd"}',0,'BLOCK_PARSED',NULL,'e1fffbf910a13503320d6bb0007929655ca2afb0dc239b21a82ee99e3ddea12a');
+INSERT INTO messages VALUES(321,310103,'insert','blocks','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'583d3ec73d62d07a22bed44b403cc6a1e830f990f3f2315c9a548819e2305e1e');
+INSERT INTO messages VALUES(322,310103,'insert','transactions','{"block_hash":"559a208afea6dd27b8bfeb031f1bd8f57182dcab6cf55c4089a6c49fb4744f17","block_index":310103,"block_time":310103000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104,"utxos_info":"821f962302723b1a4ab64c65e524c29632f30a012bf18665c0855fbb0f78ed53:0"}',0,'NEW_TRANSACTION',NULL,'131f66b475c9a47b24f991bede0973be7ed15a4203248e59da86a560833d2990');
+INSERT INTO messages VALUES(323,310103,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310103,"calling_function":"burn","event":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","quantity":92999138821,"tx_index":104,"utxo":null,"utxo_address":null}',0,'CREDIT','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','f36116971f1e069cb18daacd0563f8eb519998dfe827714ab75b6b506530c98b');
+INSERT INTO messages VALUES(324,310103,'insert','burns','{"block_index":310103,"burned":62000000,"earned":92999138821,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","tx_hash":"65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b","tx_index":104}',0,'BURN','65d4048700fb8ae03f321be93c6669b8497f506a1f43920f96d994f43358c35b','438502bfbf6bb4968a3d643fadb42a1d5171f46a0c63f3a7417b344b0987c3c6');
+INSERT INTO messages VALUES(325,310103,'parse','blocks','{"block_index":310103,"ledger_hash":"fc2a8ce8efc122e5cbd631998e611dc8707cfe0b8d3f6a531fe5bcc21c17feae","messages_hash":"5c1d9b70ef3f17c6bc39d8c871c36d82e9639e5eec4836090e7e52ddad3034e5","transaction_count":1,"txlist_hash":"ece7991721b8e94950e2a9f41b9285b34be716340a7621b1c1528f8065e9ac28"}',0,'BLOCK_PARSED',NULL,'af587cae4896351c03fc7eace26482e9a8b0c2a700c6f57924fc321c14dec4bc');
+INSERT INTO messages VALUES(326,310104,'insert','blocks','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bcbf15fecc175538338c9cc68721a16150f724ed65aa7065a12e7ecbb6a106ba');
+INSERT INTO messages VALUES(327,310104,'insert','transactions','{"block_hash":"55b82e631b61d22a8524981ff3b5e3ab4ad7b732b7d1a06191064334b8f2dfd2","block_index":310104,"block_time":310104000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105,"utxos_info":"9efe94426d6e49d4e7b67bcd286ce37ceffd47a3f0bdaa46b80c01c6889f1193:0"}',0,'NEW_TRANSACTION',NULL,'3f88ac4c0115a5c09a2c19c1e2f4815bccb690d10750602306528fe710af7a0f');
+INSERT INTO messages VALUES(328,310104,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310104,"calling_function":"burn","event":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","quantity":92999130460,"tx_index":105,"utxo":null,"utxo_address":null}',0,'CREDIT','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','516bf0802f83df4a9b1e4d826f6dff4c68dca585b362645ee916c4058f1dd3fd');
+INSERT INTO messages VALUES(329,310104,'insert','burns','{"block_index":310104,"burned":62000000,"earned":92999130460,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","tx_hash":"95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff","tx_index":105}',0,'BURN','95332a7e3e2b04f2c10e3027327bfc31b686947fb05381e28903e3ff569bd4ff','4947b3e5808a998778d75a6b7c21ecb5d2b4d8c0f8f74b7912262d465bdaa2e9');
+INSERT INTO messages VALUES(330,310104,'parse','blocks','{"block_index":310104,"ledger_hash":"b1a7115902d371d13889008320e52473cd5b34591bd657e372c0048df020012e","messages_hash":"05cf59ff88094509b01f55638055e78ba53f86813af6fce19888cb9bc45ac61f","transaction_count":1,"txlist_hash":"66dacde33bddb633552c94d9107669297fe26ccdcf482f9098f1e6c05f3d01e6"}',0,'BLOCK_PARSED',NULL,'492a16e533d66f7698a8e06dfc4b905ba4b4cc33d82ae7917f461b06ce842ba5');
+INSERT INTO messages VALUES(331,310105,'insert','blocks','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2595ad3ba4db0164431e2d2e5393396df79d026d247ca0fd0321bbad93150d9');
+INSERT INTO messages VALUES(332,310105,'insert','transactions','{"block_hash":"1d72cdf6c4a02a5f973e6eaa53c28e9e13014b4f5bb13f91621a911b27fe936a","block_index":310105,"block_time":310105000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":-99994375,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106,"utxos_info":"3a91865c4a517ee738f5c8902090a114154d58d803b37bef42807865bf48459f:0"}',0,'NEW_TRANSACTION',NULL,'6eb42bedde8cb14217d4c673099c53dd01d06d019fa8df58c9254749c2a14194');
+INSERT INTO messages VALUES(333,310105,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310105,"calling_function":"burn","event":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","quantity":92999122099,"tx_index":106,"utxo":null,"utxo_address":null}',0,'CREDIT','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','7c62c358051aa20521ff496b06aad13d92935f5fe6b7aa29b11a0b38542616bf');
+INSERT INTO messages VALUES(334,310105,'insert','burns','{"block_index":310105,"burned":62000000,"earned":92999122099,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","tx_hash":"e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa","tx_index":106}',0,'BURN','e062d1ebf4cb71bd22d80c949b956f5286080838a7607ccf87945b2b3abfcafa','214f2c8eb83257a4794adee096a3813edcf09303ae80b9e122d1daa873ed755b');
+INSERT INTO messages VALUES(335,310105,'parse','blocks','{"block_index":310105,"ledger_hash":"b5fcda12415e713fc81278b95515fe86ecc6beb5810e4f80eb9645f09870dab0","messages_hash":"45f70031485c596e497a39605f5e0c5d44ffb8e28016c8f41856970d19b4f731","transaction_count":1,"txlist_hash":"656d27bdbf841c33dd3c11253159dc5d8a6d7885db3174f4f9c6a8382d6a7209"}',0,'BLOCK_PARSED',NULL,'4a76838888aeac92d2285c99e2e31ee23b5633550fd4a58b09d3431c2f450b01');
+INSERT INTO messages VALUES(336,310106,'insert','blocks','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc804bba6ca0003db62afef344d0d70a9d3b4575016271376315b407b360ff21');
+INSERT INTO messages VALUES(337,310106,'insert','transactions','{"block_hash":"9d39cbe8c8a5357fc56e5c2f95bf132382ddad14cbc8abd54e549d58248140ff","block_index":310106,"block_time":310106000,"btc_amount":10000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","supported":true,"tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107,"utxos_info":"fe2449e23978b80baee7633ef2ab704a37529d403266f9b693f3f1aa07249fad:0"}',0,'NEW_TRANSACTION',NULL,'32e8ab7aba01200d24abb13eba1f18c042a09622440884661c6ec981e051e8a8');
+INSERT INTO messages VALUES(338,310106,'insert','credits','{"address":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","asset":"XCP","block_index":310106,"calling_function":"burn","event":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","quantity":14999857,"tx_index":107,"utxo":null,"utxo_address":null}',0,'CREDIT','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','b5e7c396c55f35b9f531a4c90624de86f99ae58374dff4fa4b56e7bb9557eb12');
+INSERT INTO messages VALUES(339,310106,'insert','burns','{"block_index":310106,"burned":10000,"earned":14999857,"source":"mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK","status":"valid","tx_hash":"bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3","tx_index":107}',0,'BURN','bbf0b9f6992755a3e371fb0c0b72f6828831e81c6f7ada6f95ba1104fb901ac3','3e1ef5a3b13f34571d9d21a26e3e798b356d1d2eefca6c2d0f9d02e837f97029');
+INSERT INTO messages VALUES(340,310106,'parse','blocks','{"block_index":310106,"ledger_hash":"f3c98c954cf939951d8b24a257bc6b1bc152a6a0bcf6b580ac281c26bbf16499","messages_hash":"d37b622ca0ea82a62aac2916bc72364257a746d8f70a302ea13934a6cb464360","transaction_count":1,"txlist_hash":"6138a4e92289d72dab6e43906e545dcc3d1475102b7f33195118de74a53fe576"}',0,'BLOCK_PARSED',NULL,'b2edf76f00e895bd39143ed7a5fa96a81f97843d855684e6cd9aadb49ee2a471');
+INSERT INTO messages VALUES(341,310107,'insert','blocks','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e866e81cc4f2043caf895f73ab16f7dd05cb0eabb673e8def8ae8ef06441af5a');
+INSERT INTO messages VALUES(342,310107,'insert','transactions','{"block_hash":"51cc04005e49fa49e661946a0e147240b0e5aac174252c96481ab7ddd5487435","block_index":310107,"block_time":310107000,"btc_amount":0,"data":"0000000c000000000000000100000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108,"utxos_info":"0d0a81d2d4d968ef22210e6798d3b734533e622c737710424461d4f27a147787:1"}',0,'NEW_TRANSACTION',NULL,'1e0390753c49814e3a30bbc7d6a9060a7c55a4ea4d8614cd16ec46d21fa107a4');
+INSERT INTO messages VALUES(343,310107,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310107,"event":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","quantity":100,"tx_index":108,"utxo":null,"utxo_address":null}',0,'DEBIT','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','3d1f47ef21fdfa5d5649c6dae56d257a115002977841f32a38c281042fdf8358');
+INSERT INTO messages VALUES(344,310107,'insert','dispensers','{"asset":"XCP","block_index":310107,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'OPEN_DISPENSER','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','cf7845688c2e18c6225255ec68cad53dcaa419cea6dd232eba6c5e25495cbfda');
+INSERT INTO messages VALUES(345,310107,'parse','transactions','{"supported":true,"tx_hash":"9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec","tx_index":108}',0,'TRANSACTION_PARSED','9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec','d59217330c5eeb330855586fa9498c927e22cfe76bb93691c508fe0175806f3a');
+INSERT INTO messages VALUES(346,310107,'parse','blocks','{"block_index":310107,"ledger_hash":"a550df26b8dee075bee82fc59c44ce5cbf65fe9df10c60f3f3009faa2791c783","messages_hash":"930ba28dee6b3cc8ce77fcab02237230c0adae11b7958ee6912b2a5b9cad0505","transaction_count":1,"txlist_hash":"b30d22c6d7e8bf574e3b3e11d08bcb73c5853ba348e8688a25670a861d3f4e3a"}',0,'BLOCK_PARSED',NULL,'c15d999b12e9471608bebcf25d290ff1c295b6d220b4174277d71f53bc50df90');
+INSERT INTO messages VALUES(347,310108,'insert','blocks','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ebf68454af504969dc2b1632dcd70bdfd0e89c14710e0bb03f3f633c3f6f8051');
+INSERT INTO messages VALUES(348,310108,'insert','transactions','{"block_hash":"8f2d3861aa42f8e75dc14a23d6046bd89feef0d81996b6e1adc2a2828fbc8b34","block_index":310108,"block_time":310108000,"btc_amount":31000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109,"utxos_info":"698f4b5636478cf8f4ac24271541ff18b31286c24d5ff42854f9d34403ff538b:0"}',0,'NEW_TRANSACTION',NULL,'d075c191ddf66cc9997d2fc03ad34ceba04fcbd0f1e942c5139c2dbe8a3da42d');
+INSERT INTO messages VALUES(349,310108,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310108,"calling_function":"burn","event":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","quantity":46499548508,"tx_index":109,"utxo":null,"utxo_address":null}',0,'CREDIT','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','a4f824d84cfed8ca84d22c8f7d3dfb646601b92c18dff7c7a4146e7a4490e87a');
+INSERT INTO messages VALUES(350,310108,'insert','burns','{"block_index":310108,"burned":31000000,"earned":46499548508,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","tx_hash":"93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73","tx_index":109}',0,'BURN','93c6d2499a0536c31c77a3db3fc9fc8456fbd0726c45b8f716af16f938727a73','829d3b0d7fe9ef0f4c9a318d8a24eb36e3faa8f5e1a7740a9194c4584af21901');
+INSERT INTO messages VALUES(351,310108,'parse','blocks','{"block_index":310108,"ledger_hash":"e1d8c345c74760010223a823895471d3ad6a2db5c6a70b13850d5cd977414518","messages_hash":"61d47596577859f94b9405538f6dfa58779faad355d12ca180ab36ab34cc6db7","transaction_count":1,"txlist_hash":"d03bdcdbb4980ea415ab73c8e91a7fca7099c8c176d6bb4c2fdf72b6873175ae"}',0,'BLOCK_PARSED',NULL,'19cefe5c314463ac898f157386ff9ee024cf66ffe68908e467cf0d092f2db97b');
+INSERT INTO messages VALUES(352,310109,'insert','blocks','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7272a403c8b4330e2da4c9d8f2d21447c50b3117ba7226a510bbd15230d58741');
+INSERT INTO messages VALUES(353,310109,'insert','transactions','{"block_hash":"d23aaaae55e6a912eaaa8d20fe2a9ad4819fe9dc1ed58977265af58fad89d8f9","block_index":310109,"block_time":310109000,"btc_amount":0,"data":"0000001400078a8fe2e5e44100000000000003e8000000000000000000001050534820697373756564206173736574","destination":"","fee":6800,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110,"utxos_info":"c66679493b0d66dbb6c65f17748c442797b769673fc2ca89496287401aa851f8:0"}',0,'NEW_TRANSACTION',NULL,'f4d24bc52b7f03b806dcaad8c3b793c657521cafafd06ae3527c899180947f1d');
+INSERT INTO messages VALUES(354,310109,'insert','debits','{"action":"issuance fee","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310109,"event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":50000000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'DEBIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','405168d6abebce2e05bc15a7642648be9da307d30a7a4558455eef04a61fd058');
+INSERT INTO messages VALUES(355,310109,'insert','assets','{"asset_id":"2122675428648001","asset_longname":null,"asset_name":"PAYTOSCRIPT","block_index":310109}',0,'ASSET_CREATION','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','96391a49c5d67b007508337475fd1d83edf8aa7fe71c446c15c22187a785951e');
+INSERT INTO messages VALUES(356,310109,'insert','issuances','{"asset":"PAYTOSCRIPT","asset_events":"creation","asset_longname":null,"block_index":310109,"call_date":0,"call_price":0.0,"callable":false,"description":"PSH issued asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","locked":false,"quantity":1000,"reset":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","transfer":false,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'ASSET_ISSUANCE','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','ce57dbec180ab5c9b188fb7658699ae4e0db7c49fc3d4825ab5cd163db4be839');
+INSERT INTO messages VALUES(357,310109,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"PAYTOSCRIPT","block_index":310109,"calling_function":"issuance","event":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","quantity":1000,"tx_index":110,"utxo":null,"utxo_address":null}',0,'CREDIT','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','12e42d0bb6836c2cb8c5eb3c23d8c3ce92baca0017868c0c0f45ba2d256e6d96');
+INSERT INTO messages VALUES(358,310109,'parse','transactions','{"supported":true,"tx_hash":"e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e","tx_index":110}',0,'TRANSACTION_PARSED','e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e','0408e349e3c989f694efbe598cc98cb43ff09b8588ba3d2e94901106aadf9ced');
+INSERT INTO messages VALUES(359,310109,'parse','blocks','{"block_index":310109,"ledger_hash":"8fb63d8460a222163d15eab76a61e383ffa251a175c16f209648d6782c304059","messages_hash":"52dae041d3620204b2e5251d2aff81c3c532d7563a802b1efb75341b039c43e6","transaction_count":1,"txlist_hash":"cff81539539169771000a550581dbdf4d4d1fdabecfb9032342269ff5f100b61"}',0,'BLOCK_PARSED',NULL,'9d1398cbaa769f67aed63e5fcc3aafd20d11f5f5829c872ca777b9e04b705983');
+INSERT INTO messages VALUES(360,310110,'insert','blocks','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7d9c21f08fb481668ac6e268bd43dd4283b5a1a5442f06968d3af5f99fad680');
+INSERT INTO messages VALUES(361,310110,'insert','transactions','{"block_hash":"cecc8e4791bd3081995bd9fd67acb6b97415facfd2b68f926a70b22d9a258382","block_index":310110,"block_time":310110000,"btc_amount":5430,"data":"00000000000000a25be34b660000000005f5e100","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7650,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111,"utxos_info":"fe9dc5e0401532d0c1a8399c2769c94b0ea5970138d17183c2b4a8bc2291657b:0"}',0,'NEW_TRANSACTION',NULL,'6a7a94a0bbd18c692afcd732a18f9bcf15d303eaf0b1115edae9622d4d9e5c90');
+INSERT INTO messages VALUES(362,310110,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310110,"event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'DEBIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','afdb38c9a81e321c221746d0b2754688ac27f97bb0d9fc7039e16cdc5a46813d');
+INSERT INTO messages VALUES(363,310110,'insert','credits','{"address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"DIVISIBLE","block_index":310110,"calling_function":"send","event":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","quantity":100000000,"tx_index":111,"utxo":null,"utxo_address":null}',0,'CREDIT','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','a8a5e6df1606eb727f399395a18f9d831409a3d58d67e2bd306ab9f016de4462');
+INSERT INTO messages VALUES(364,310110,'insert','sends','{"asset":"DIVISIBLE","block_index":310110,"destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'SEND','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','f234a2876fd3dc0282eac2cf3d54f7d32e89aed0216e6354376e83b7a190ef0e');
+INSERT INTO messages VALUES(365,310110,'parse','transactions','{"supported":true,"tx_hash":"f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7","tx_index":111}',0,'TRANSACTION_PARSED','f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7','136bb6e15fcaf16e7c3c05d77ee3d610a2f26b501ffd7b73e31cba2f6d59fa82');
+INSERT INTO messages VALUES(366,310110,'parse','blocks','{"block_index":310110,"ledger_hash":"250f7b5c6f00bf06c9cd4de8dea0b8166e2decf093910ea32eabd615b910e7e6","messages_hash":"d22bf6bb8a648289a71bbc0af4a262c43073bdb9cfed6cdcffc13798cff15182","transaction_count":1,"txlist_hash":"d6853c803a38efdd5190401e94244333cb4f46752a2868d4a03e6d7d6c8c2bad"}',0,'BLOCK_PARSED',NULL,'c3b2dd906cc5f1ecc04d7f69dfee20e8b6900e11de0ca8af333f445b3df8dd82');
+INSERT INTO messages VALUES(367,310111,'insert','blocks','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e17b9c58f5868d90c800ae7243d25e771dda947abb3658e49c3febafd208cdbe');
+INSERT INTO messages VALUES(368,310111,'insert','transactions','{"block_hash":"fde71b9756d5ba0b6d8b230ee885af01f9c4461a55dbde8678279166a21b20ae","block_index":310111,"block_time":310111000,"btc_amount":0,"data":"0000001e52bb33023ff0000000000000004c4b4009556e69742054657374","destination":"","fee":5975,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"utxos_info":"3e05914816765cb9e05efd1b4a8507bd91f137ea53972ed574c2f3516d60e693:1"}',0,'NEW_TRANSACTION',NULL,'fcc9a59c71aff9dbe60a57fdf523d3ca945a5874a2dee8619ad12bb9e06ae8b9');
+INSERT INTO messages VALUES(369,310111,'insert','broadcasts','{"block_index":310111,"fee_fraction_int":5000000,"locked":false,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"valid","text":"Unit Test","timestamp":1388000002,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112,"value":1.0}',0,'BROADCAST','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','8258455a1248258d5bd341a37527bac1d8e170877a27c2fec65fb48d90183f59');
+INSERT INTO messages VALUES(370,310111,'parse','transactions','{"supported":true,"tx_hash":"510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186","tx_index":112}',0,'TRANSACTION_PARSED','510f6feb902159622d83f64eae590a4fec88989869a20caf5804c313aa5e0186','13c56e9ec3043324cb9428099982f3a4c64fe516dcfa82237da4a5104136ec9a');
+INSERT INTO messages VALUES(371,310111,'parse','blocks','{"block_index":310111,"ledger_hash":"0c3c3d099bf08803f67c2a77d0d67779674d1063cc72d8794b8fe62a55049d75","messages_hash":"6fc454b12684651e8825bb6ee751f550a0535e508aa6efd9e8da0337360cdd04","transaction_count":1,"txlist_hash":"9cab90baa72446a36a7c176e82eed32ce968f96b0f29067b240a10a71ed95808"}',0,'BLOCK_PARSED',NULL,'8055761a9c949eec9016263d9dbf013f3cdd2babd8b82ce972f3a33459470396');
+INSERT INTO messages VALUES(372,310112,'insert','blocks','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8844d09628ccf63d9bee5436dfb5ab63e242b71fe06bb6b5792910896fc3f9e3');
+INSERT INTO messages VALUES(373,310112,'insert','transactions','{"block_hash":"5b06f69bfdde1083785cf68ebc2211b464839033c30a099d3227b490bf3ab251","block_index":310112,"block_time":310112000,"btc_amount":5430,"data":"00000028000352bb33c8000000000000000a000000000000000a0000000000000000000013b0000003e8","destination":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","fee":7124,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"utxos_info":"2b8ff8acc005180c18db9b7cfaff02dad8b718ad57cf07765b4f487c590115e4:0"}',0,'NEW_TRANSACTION',NULL,'5bf43d752f41806df4e82d95fa7b611f6f230e59846d029f442744f782282349');
+INSERT INTO messages VALUES(374,310112,'insert','debits','{"action":"bet","address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","asset":"XCP","block_index":310112,"event":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","quantity":10,"tx_index":113,"utxo":null,"utxo_address":null}',0,'DEBIT','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','746554024b7dd941acb856be68dc84813329b83521242bc00852d2dbd337aa30');
+INSERT INTO messages VALUES(375,310112,'insert','bets','{"bet_type":3,"block_index":310112,"counterwager_quantity":10,"counterwager_remaining":10,"deadline":1388000200,"expiration":1000,"expire_index":311112,"fee_fraction_int":5000000.0,"feed_address":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","leverage":5040,"source":"2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy","status":"open","target_value":0.0,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113,"wager_quantity":10,"wager_remaining":10}',0,'OPEN_BET','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','9b6e1741192f315814ef21e9d4ff73376d876bed54d57d0714022da56858307f');
+INSERT INTO messages VALUES(376,310112,'parse','transactions','{"supported":true,"tx_hash":"d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048","tx_index":113}',0,'TRANSACTION_PARSED','d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048','edd35d7cb65bb33179d6c0e7664aeb8a5abdc31be33086d0400b4a2df1b1e6c5');
+INSERT INTO messages VALUES(377,310112,'parse','blocks','{"block_index":310112,"ledger_hash":"557fdd1240793f8607a2b4c638ce800d5260c2adb294aac95d6c5eab7e98c3a9","messages_hash":"624934c6eec1af21cd764405d67271ab9ef74d140a030dbbbe3500db1ea961e6","transaction_count":1,"txlist_hash":"4fc0df4832258d430e645f1950407e19e72ea27d28b8ae1851333e8e8718086b"}',0,'BLOCK_PARSED',NULL,'35870c687c8b876929ac8a23ae0cd9cd487dc301395537b93171c38c5ecd7a36');
+INSERT INTO messages VALUES(378,310113,'insert','blocks','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e59a2cd240787c2f7bd7a690dcaa2c8850adadbbbfcca205661f5c29dd61241e');
+INSERT INTO messages VALUES(379,310113,'insert','transactions','{"block_hash":"63914cf376d3076b697b9234810dfc084ed5a885d5cd188dd5462560da25d5e7","block_index":310113,"block_time":310113000,"btc_amount":0,"data":"00000014000038fedf6d2c6900000000000003e8010000000000000000000c4c6f636b6564206173736574","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114,"utxos_info":"7a0db8ce3cc72919ce5a881e236bbe2d17ec93656fd143f35dcf266f6e7927df:0"}',0,'NEW_TRANSACTION',NULL,'e8affaedc1ed349aa6829cefd8a93c2357621dce830481435d183d2187bd591d');
+INSERT INTO messages VALUES(380,310113,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310113,"event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":50000000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'DEBIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','c9dc9e6ed526963258b45bbbfe57dfef05e91c36bc0d04046887ff10346e1bfa');
+INSERT INTO messages VALUES(381,310113,'insert','assets','{"asset_id":"62667321322601","asset_longname":null,"asset_name":"LOCKEDPREV","block_index":310113}',0,'ASSET_CREATION','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','e54fa716a9cc83a3531f5a4d30f47b85dea1e481b6c1b1175af6b75c36a0fcd6');
+INSERT INTO messages VALUES(382,310113,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"creation","asset_longname":null,"block_index":310113,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":1000,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'ASSET_ISSUANCE','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','4c454a5feeab6df1f6e67303a6e20fa0ac6a8cb8a13bb1e9a52be5073b50ca20');
+INSERT INTO messages VALUES(383,310113,'insert','credits','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"LOCKEDPREV","block_index":310113,"calling_function":"issuance","event":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","quantity":1000,"tx_index":114,"utxo":null,"utxo_address":null}',0,'CREDIT','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','6131befc2361891b9420e13205427db9aef3dc48fb30c2ef6c5ae7224e8e5ade');
+INSERT INTO messages VALUES(384,310113,'parse','transactions','{"supported":true,"tx_hash":"34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63","tx_index":114}',0,'TRANSACTION_PARSED','34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63','ddee72c08806af739f4b6877e54868bf5d86dbea90f852d26436b4e9d65b8c15');
+INSERT INTO messages VALUES(385,310113,'parse','blocks','{"block_index":310113,"ledger_hash":"4ecad4a5c8e9b54101c4a037d6c86a7eb36d3cf0503e60a1bf13c5a4196c5989","messages_hash":"6a160b25500904a8e2fc0ecc0f61725c5253b352212c04c9c3bdf6a2f51fc58e","transaction_count":1,"txlist_hash":"baf1f86b3145fd8dc33aa2fcb2e882cf69ffadee81e8412ed2092c634934709c"}',0,'BLOCK_PARSED',NULL,'c32254bebf202160900fc8574ab12510e7ee0ff954e2b3a9f2e052a89b04ded6');
+INSERT INTO messages VALUES(386,310114,'insert','blocks','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9d4f7f61ed587ee435be92e44c60984974e601b070df1c179f94a48ea67e9a5');
+INSERT INTO messages VALUES(387,310114,'insert','transactions','{"block_hash":"24fc2dded4f811eff58b32cda85d90fb5773e81b9267e9a03c359bc730d82283","block_index":310114,"block_time":310114000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000044c4f434b","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115,"utxos_info":"a644ff7ee03e6bcb1e65ed12dad81f81aea732a816cba067c1ccc46e6f33208a:0"}',0,'NEW_TRANSACTION',NULL,'208f595725afa57c17bf0df2d5f5457350912d616cbf4c860a63595c0fcd1685');
+INSERT INTO messages VALUES(388,310114,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310114,"event":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","quantity":0,"tx_index":115,"utxo":null,"utxo_address":null}',0,'DEBIT','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','2f9e9963338d8de7d98ff66ec0cb3053b239916f907c04e3a43d2f92bcf63b43');
+INSERT INTO messages VALUES(389,310114,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"lock_quantity reissuance","asset_longname":null,"block_index":310114,"call_date":0,"call_price":0.0,"callable":false,"description":"Locked asset","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":true,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'ASSET_ISSUANCE','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','e186911f2b06a8fd1c42865fbdbc4f825e7a287938c05e48d0c1b47be279fe67');
+INSERT INTO messages VALUES(390,310114,'parse','transactions','{"supported":true,"tx_hash":"025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2","tx_index":115}',0,'TRANSACTION_PARSED','025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2','f58b5bf76ba7ead42c6c8b63759cc3a61aee954eda32f411a2beddfe13136d49');
+INSERT INTO messages VALUES(391,310114,'parse','blocks','{"block_index":310114,"ledger_hash":"00380ec3118a5e8f9cab403d10870dd5bc339421297fcb6196a3112d70541ecd","messages_hash":"086d1f7a591a18bbfc77dc239eaebdbae88d4b1b3feeaaa73ae4160b6affcc02","transaction_count":1,"txlist_hash":"22e3851c91f780c0152549b24228d0dab3542c2632b633995c0d8dcfd8e26601"}',0,'BLOCK_PARSED',NULL,'db9207d0d585851b63df46961303c99104634a28b1f5cdeffaf3e7efc7ac54fe');
+INSERT INTO messages VALUES(392,310115,'insert','blocks','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f778f31620def8a3df1bd8318d69698e50c62adbcdd3393eabbccf76a19213d7');
+INSERT INTO messages VALUES(393,310115,'insert','transactions','{"block_hash":"a632d67ff5f832fe9c3c675f855f08a4969c6d78c0211e71b2a24fe04be5656a","block_index":310115,"block_time":310115000,"btc_amount":0,"data":"00000014000038fedf6d2c69000000000000000001000000000000000000076368616e676564","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116,"utxos_info":"61a5ae9a2fb6cd6fceaa407a654714fccd5a9b676bbf03c5844fe8e39a86b55b:0"}',0,'NEW_TRANSACTION',NULL,'29e62c8de67d2d763a191e9db5c3a4d19d2c128a302855e1863242d9a116f66e');
+INSERT INTO messages VALUES(394,310115,'insert','debits','{"action":"issuance fee","address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","asset":"XCP","block_index":310115,"event":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","quantity":0,"tx_index":116,"utxo":null,"utxo_address":null}',0,'DEBIT','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','2aea10b2a6177cc620647c61cbbe265555a2ec8cb7a9edb8f24c67f4d6875e59');
+INSERT INTO messages VALUES(395,310115,'insert','issuances','{"asset":"LOCKEDPREV","asset_events":"reissuance","asset_longname":null,"block_index":310115,"call_date":0,"call_price":0.0,"callable":false,"description":"changed","description_locked":false,"divisible":true,"fee_paid":0,"issuer":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","locked":false,"quantity":0,"reset":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","transfer":false,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'ASSET_ISSUANCE','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','47e2002c4852586b1f677d5e34c75ce546e9bf11e9ec8973b60dc2ae0ba7dab3');
+INSERT INTO messages VALUES(396,310115,'parse','transactions','{"supported":true,"tx_hash":"4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb","tx_index":116}',0,'TRANSACTION_PARSED','4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb','041fbf86f57ca9c3212b41a530c9e8389f32d98cd4263487a6def85493122561');
+INSERT INTO messages VALUES(397,310115,'parse','blocks','{"block_index":310115,"ledger_hash":"0acd3a07c5df54e883ff9871852c961b00771d3f4afccb3b1941d0b1c7b300cc","messages_hash":"1b67e80c2ed78bff0402e73625a62941d060bc4f27ddaf8fe7154f74fb52d915","transaction_count":1,"txlist_hash":"cf921f50b98df4ec37f2a9803315a798198507adcbfd8fd54e6a9bc539cc8f41"}',0,'BLOCK_PARSED',NULL,'7a65227a8bcaef553daaf8a4478eb9bd54d01987acbd397ff7c152d2f166c8d4');
+INSERT INTO messages VALUES(398,310116,'insert','blocks','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'98c3b0ce5a298fcb97624a054c0534b11d31d6ad6ef453346a92e94049ebe2bd');
+INSERT INTO messages VALUES(399,310116,'insert','transactions','{"block_hash":"8495ba36b331473c4f3529681a118a4cc4fa4d51cd9b8dccb1f13e5ef841dd84","block_index":310116,"block_time":310116000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","supported":true,"tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117,"utxos_info":"44d8f4bdcbb68b5ab982ef086162b2bd8d82136ef56e8536c75a835cd9fc5450:0"}',0,'NEW_TRANSACTION',NULL,'854b08d75b4c9c4f060a82db64a36b50aae4c25253a49a4249b868ffa298a5c3');
+INSERT INTO messages VALUES(400,310116,'insert','credits','{"address":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","asset":"XCP","block_index":310116,"calling_function":"burn","event":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","quantity":92999030129,"tx_index":117,"utxo":null,"utxo_address":null}',0,'CREDIT','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','ba5555f33a7f1003abe93302ce2e8550ec9673f08d8d5020515012544c6cf93d');
+INSERT INTO messages VALUES(401,310116,'insert','burns','{"block_index":310116,"burned":62000000,"earned":92999030129,"source":"tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx","status":"valid","tx_hash":"27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9","tx_index":117}',0,'BURN','27929c4fcad307a76ea7da34dd2691084f678a22ee43ce7f3842b78730ee08f9','d8460ec04c121c12a01832f4bc0e2919533d9d52b8e47fa49c1761520e393d2e');
+INSERT INTO messages VALUES(402,310116,'parse','blocks','{"block_index":310116,"ledger_hash":"6c6845d3be70cbe9a71c33227983f695c96877aac6d3a8d6a6839760b4691d25","messages_hash":"6e84c64caa16d362b020f0a840ee5fa183a559c15b70b5caff610d8daad52749","transaction_count":1,"txlist_hash":"a7e01a910cc919588be3b0c19c4bb7c36499b0a9b0347834d40fbb54fdf05fb6"}',0,'BLOCK_PARSED',NULL,'715f4659ad23a91993e2692f7d41584cc3e595b60a2e63199548d26831835ecf');
+INSERT INTO messages VALUES(403,310117,'insert','blocks','{"block_hash":"978a3eac44917b82d009332797e2b6fe64c7ce313c0f15bfd9b7bb68e4f35a71","block_index":310117,"block_time":310117000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e96f740973d3e748ad3c127b37106c685d4c66f2c65f70c0ed38fc142a2c6bc6');
+INSERT INTO messages VALUES(404,310117,'parse','blocks','{"block_index":310117,"ledger_hash":"0465a90ff545d58e69c07c204160360bcc6fba5cc60fb81d7e6e389d9ff8133e","messages_hash":"a3b51846c0b35f957176678cae6a7edcd009b9b36e2596e2fa26b3f6d9b51392","transaction_count":0,"txlist_hash":"1100b7084683079d36f9ec6e4cb1ec457ae4c45941cdbaa0f4d53bc458e2fa9f"}',0,'BLOCK_PARSED',NULL,'28fed8f71a5072303ac53a5759d8f8867b7db9167ea9ee181b0d977a1650ce77');
+INSERT INTO messages VALUES(405,310118,'insert','blocks','{"block_hash":"02487d8bd4dadabd06a44fdeb67616e6830c3556ec10faad40a42416039f4723","block_index":310118,"block_time":310118000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a87870dcd7ecce84fe417cd5fb6edcfa99182ba59e9d5686eff2db6ddb361c2a');
+INSERT INTO messages VALUES(406,310118,'parse','blocks','{"block_index":310118,"ledger_hash":"011ed3df8ae72a02b686e98aa8db07c973e1e12c2ac09891ba90d783ae63161f","messages_hash":"b0351f3992fa660d7e32c30f900379e620082f39f059f1adecb204afcf02bbca","transaction_count":0,"txlist_hash":"7ed056a59c2b15a2d082f75c8728ee1e7f9b0eea6cb56b37f41319b115e39771"}',0,'BLOCK_PARSED',NULL,'f5bc2847afc752f6fa72154d3b52b4c804d0d138714c57a50528aa612f5bfcfc');
+INSERT INTO messages VALUES(407,310119,'insert','blocks','{"block_hash":"6d6be3478c874c27f5d354c9375884089511b1aaaa3cc3421759d8e3aaeb5481","block_index":310119,"block_time":310119000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a54b64347f6ef8dacb5f0341b5781b17ea02d4d421920ab600219a67d3d7d87');
+INSERT INTO messages VALUES(408,310119,'parse','blocks','{"block_index":310119,"ledger_hash":"a6620b1b6a5b1f54fe6a8076fc35f0f3ce15315e9f549f5ff3fa0f5b6094919f","messages_hash":"b05a87dda8ffe8ec3eabf14e352c9bfcf7a41d059802f8bbb5a6e1df651de722","transaction_count":0,"txlist_hash":"1312871691c685ced39676d4d4bd8825d2109587d1ec36f2dadc50f68b4d9cca"}',0,'BLOCK_PARSED',NULL,'7147f73f77a14f3c83d5d163781d5e2714b4fd5e59f57f1d8277e7c1bc4496fc');
+INSERT INTO messages VALUES(409,310120,'insert','blocks','{"block_hash":"2bba7fd459ea76fe54d6d7faf437c31af8253438d5685e803c71484c53887deb","block_index":310120,"block_time":310120000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cd0821b2d8351b6c793122b6a603a9768ea028af1554a1501314d164b78d4e2f');
+INSERT INTO messages VALUES(410,310120,'parse','blocks','{"block_index":310120,"ledger_hash":"e38e2aa0bf8831b90e69b40c78d4b7d41bc564527451b5f9b332bb0beb54c923","messages_hash":"b3341f00f5fd0b73dfd94077420635517d58688c5e641b1c33ad43fedf837248","transaction_count":0,"txlist_hash":"1901f4d80a526969a544b68b1a695f07aa078ad719b8803c0b7543fcb4a974d6"}',0,'BLOCK_PARSED',NULL,'3ef9152d9964275a5a19948bf6355c8cd1d01beb92811f2ea3fad89d011995da');
+INSERT INTO messages VALUES(411,310121,'insert','blocks','{"block_hash":"9b3ea991d6c2fe58906bdc75ba6a2095dcb7f00cfdd6108ac75c938f93c94ee7","block_index":310121,"block_time":310121000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a1c48594d907deb05210c47ad4030eb5c3a0defd2da4ca67ba8c8e85ffe6580');
+INSERT INTO messages VALUES(412,310121,'parse','blocks','{"block_index":310121,"ledger_hash":"5b988c8ad133bb5ff5ac1ee4ad0a6a4fd431247db373e43c9be2a020520f438b","messages_hash":"579d901dcca6e7d2399219e7b852ab5ddd8043c9337d8ace4c701c212344f4a8","transaction_count":0,"txlist_hash":"9921b651b8ca004602b16f95d76b2ea76f03456d9a978abb02bb340f360df7a7"}',0,'BLOCK_PARSED',NULL,'1ad52aa4f5ddae7ed72bcb020d5531d016e593949540fc7c3ab81efb87187b17');
+INSERT INTO messages VALUES(413,310122,'insert','blocks','{"block_hash":"d31b927c46e8f9ba2ccfb02f11a72179e08474bdd1b60dd3dcfd2e91a9ea2932","block_index":310122,"block_time":310122000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1d10e0554a90d309cd70b926cb2e5052981103e2823ff005a83845499b22c68b');
+INSERT INTO messages VALUES(414,310122,'parse','blocks','{"block_index":310122,"ledger_hash":"70ddab8f1d6283ce5a054650dbcd02d7ad4ca9c35de7bed920c2f266bc092070","messages_hash":"0fe6b56f84cda6614f46ba676bb47010aab75e0b5d2f3e5b5da23803f361238f","transaction_count":0,"txlist_hash":"a45cd1eea6626efa3af3dcd3c89782c50cc3b683c1b22249dc67d288e56aeb17"}',0,'BLOCK_PARSED',NULL,'d9f3c32f5d99e491e8d31b4d82c6a14a3dc48b12c383c6b195272c14c4d4353b');
+INSERT INTO messages VALUES(415,310123,'insert','blocks','{"block_hash":"be6d35019a923fcef1125a27387d27237755c136f4926c5eddbf150402ea2bbd","block_index":310123,"block_time":310123000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c3a60d31769b5c3c39896420e7e4368f13312e7b4be5f82b7d0b7667aaaa341');
+INSERT INTO messages VALUES(416,310123,'parse','blocks','{"block_index":310123,"ledger_hash":"3670feebcf979edce175ad5b296a4c88fd7fc6bdc251dda84d487b1b092e41dd","messages_hash":"19e3f582ad9ad6250e8057ec95e180bc0b7b02255ee1729935f4f77449e01a2c","transaction_count":0,"txlist_hash":"78c648296fcc7856757b990a92cf9512c61d180b08d451b63ed4e796d051d338"}',0,'BLOCK_PARSED',NULL,'708f351b97db723fbcbe1280da620b706286e6e8a9ceb5f23f81895cd407b282');
+INSERT INTO messages VALUES(417,310124,'insert','blocks','{"block_hash":"0984b4a908f1a7dac9dcd94da1ee451e367cc6f3216ee8cdee15eae5d0700810","block_index":310124,"block_time":310124000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f37dbf7bec424ad442d15ec02839c94a8c8a83ccb7c3ebdeaf703b078702839');
+INSERT INTO messages VALUES(418,310124,'parse','blocks','{"block_index":310124,"ledger_hash":"9883fff318e7cf9021fb4cc39261840f682e8adabb934549dbae2a10d2a71de3","messages_hash":"aabc1930e9c381224cf7b7da9b0bde42e4419ea03cbdde623ea2da37cf1656ff","transaction_count":0,"txlist_hash":"c58aaf910fe01fd9ba6a892ea421c0933f4cebec80c6d2d556accc81102428d3"}',0,'BLOCK_PARSED',NULL,'86bdd7dc7a2af4c51c19004598204e02e39e55af1d4f08322dadbdcd301e3040');
+INSERT INTO messages VALUES(419,310125,'insert','blocks','{"block_hash":"cc28d39365904b2f91276d09fae040adb1bbbfd4d37d8c329fced276dc52c6a6","block_index":310125,"block_time":310125000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06ea463137553a9a66dc04e8eb8079c2aeeca5bbaacb1ca5448aaa731f9bdef9');
+INSERT INTO messages VALUES(420,310125,'parse','blocks','{"block_index":310125,"ledger_hash":"1840685242f9090297d4b432e305e4a093f90faa0b673953b648fbed948f31b6","messages_hash":"b3897b1dd915774c95bdd265c8fbb1a1e658be0e702f4a8ce50f49d7da133297","transaction_count":0,"txlist_hash":"3d1e4c3a02456d7f79402a89f6a39dcb235fde15b275a762197b70e643d29e25"}',0,'BLOCK_PARSED',NULL,'d10b4b960cce2507177241a2d1bc5c7aa2a24bc32ef0c6905c5434216b98ff6a');
+INSERT INTO messages VALUES(421,310126,'insert','blocks','{"block_hash":"c9d6c2bd3eeb87f3f1033a13de8255a56445341c920a6a0ee2fb030877106797","block_index":310126,"block_time":310126000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'242d01b4e8767243cef3e57964f1a6f4b62d73f64eb6cdee3b1b92a4abc66fd1');
+INSERT INTO messages VALUES(422,310126,'parse','blocks','{"block_index":310126,"ledger_hash":"1a83f417c18439cd3c6269626c44b480317290f0c27a9b9f883a01653de69272","messages_hash":"aa83ef41420cc7843cde9408ef559a19f994482601a3e5fe45c43f08898c4f54","transaction_count":0,"txlist_hash":"7cde633cf5f7bc1176a3faa6ad03a449d3fb0d21dcce5885d2a37b81448a2ca5"}',0,'BLOCK_PARSED',NULL,'308adcbac8c4eef777742c4d5ef927da2b7511257ca4e62aaf31b833917803ff');
+INSERT INTO messages VALUES(423,310127,'insert','blocks','{"block_hash":"c952f369e2b3317725b4b73ba1922b84af881bd59054be94406a5d9bbb106904","block_index":310127,"block_time":310127000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07e685d25896483b96715994cc1a31b1b91d089e774f65b4d50ec774d3e7d945');
+INSERT INTO messages VALUES(424,310127,'parse','blocks','{"block_index":310127,"ledger_hash":"094c53dfd00b5004d074987dba90a6c9c47841d01041d0aeb61923c48315d1bb","messages_hash":"b55631834f923612a73b659cb27ae27ac880e2fd26bb79f706200023c5bc4e9a","transaction_count":0,"txlist_hash":"0ac0ddcc5c45d4d709d9070814832bfa2339eaf5edbed98232cda4b1731e5478"}',0,'BLOCK_PARSED',NULL,'6ad4fe5ce17aa3a4016b8a7be853e5dbdbd4ceb842c597379f15fb692ccb8538');
+INSERT INTO messages VALUES(425,310128,'insert','blocks','{"block_hash":"990b0d3575caf5909286b9701ece586338067fbd35357fec7d6a54c6a6120079","block_index":310128,"block_time":310128000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ed8405ac2f510db716c619fddabb73660cb0353205a296e55638e69d0118dfb5');
+INSERT INTO messages VALUES(426,310128,'parse','blocks','{"block_index":310128,"ledger_hash":"28ad1365daaadc866e79b6b1a555fa31bd804a85827d958cebb9d29511f78e19","messages_hash":"c132bebc107e3136ea8cc78a45a644239f989c7617ed2bdeb5eb300858fc6538","transaction_count":0,"txlist_hash":"aa9a25819899fc8948c4906673cfc8128c0a98417db8fe659098d28ca12e3786"}',0,'BLOCK_PARSED',NULL,'18e1ee42d7c4a90048a150e4947893e0c821500c2a309823b8e39b64cdd814f0');
+INSERT INTO messages VALUES(427,310129,'insert','blocks','{"block_hash":"fa8a7d674a9a3e4b40053cf3b819385a71831eec2f119a0f0640c6870ca1dddc","block_index":310129,"block_time":310129000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18aaeff443bf81a9524a0ce0809479fc00d05861026cf5c116c54dc6f238d35b');
+INSERT INTO messages VALUES(428,310129,'parse','blocks','{"block_index":310129,"ledger_hash":"61587f9b5d05f8f553f0a4f580f38a140edcf7d9facb13c542865f5ec586a32c","messages_hash":"85e11a92c5fc48513ae7e83710849b08180eadbe29ad984faca23ce667fbaedd","transaction_count":0,"txlist_hash":"ca3752868d963f0c165166928139cb078aefd0ebcbd9ab8f182c631ff941a56b"}',0,'BLOCK_PARSED',NULL,'57d8a68b3fdde71c6baef60903fee4ea4c6dd701555b254000b6756ff7a42d5e');
+INSERT INTO messages VALUES(429,310130,'insert','blocks','{"block_hash":"d3046e8e8ab77a67bf0629a3bab0bea4975631d52099d2ddc9c9fa0860522721","block_index":310130,"block_time":310130000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3756622a8614083e6ec615fbd852fc533935cb6c65aad9a679ab7338e024ab0');
+INSERT INTO messages VALUES(430,310130,'parse','blocks','{"block_index":310130,"ledger_hash":"1ee8c39657890ac946e2aac5409147cdbf1b0004db1f00d997cf45452596f781","messages_hash":"f793793de86957ef58013a06b6ed779c4c8c330cdd984894693d3ca268c80496","transaction_count":0,"txlist_hash":"bb38c9be1ef6ce22f1f14319cb3e1385d70fc63f7d0b2d80789c9af018baaa71"}',0,'BLOCK_PARSED',NULL,'b46300d27f470bbae9bb1fb436d2029291220a5dda4b6f8538b40cb5c44109a9');
+INSERT INTO messages VALUES(431,310131,'insert','blocks','{"block_hash":"d6b4357496bc2c42b58a7d1260a3615bfdb86e2ce68cd20914ef3dd3c0cdd34d","block_index":310131,"block_time":310131000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ffd054dd1ac0df2acd70cc015bee11264bf38a1acd08403fa963a187b1599a8');
+INSERT INTO messages VALUES(432,310131,'parse','blocks','{"block_index":310131,"ledger_hash":"aee45272e68725a2746582f1847582eb9808289d3deca144f8c6cb43bc4f42e6","messages_hash":"5edfd69343be580e6f03a9c9e91a9f7927c91c7cd21553fe1249ff516cedccd0","transaction_count":0,"txlist_hash":"69fba2b86abed1e740d45d33ec1bed7d2bf7de0f3bd9633959bfe77a21dd7aeb"}',0,'BLOCK_PARSED',NULL,'d6871b6fbb3f3d422b14d0dc12c02216f1e1d63e964a201291e6f31fa3cde575');
+INSERT INTO messages VALUES(433,310132,'insert','blocks','{"block_hash":"1b95a691bf4abf92f0dde901e1152cc5bd87a792d4b42613655e4046a57ab818","block_index":310132,"block_time":310132000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10e21b23fe251cc8bf98862c7c41b96bdde1be270b88c0861b8cb64cff3f6f5e');
+INSERT INTO messages VALUES(434,310132,'parse','blocks','{"block_index":310132,"ledger_hash":"a3fe51c1d168ed726a78b72db61175f2abb07ea6c614b2886f3054cdd1a858fe","messages_hash":"27476a9cb53db260e8909ec5922e944a87edbde6d374408e7ddd093a51c9e070","transaction_count":0,"txlist_hash":"352b00e4db389d411377c2302ecf272f97268e953c30d0976a5d12bffc5a17f7"}',0,'BLOCK_PARSED',NULL,'08e5f76cf56c81392b2ad46cadc0b8347acbfaa9612ea5dfc63bb4d9a7377cf1');
+INSERT INTO messages VALUES(435,310133,'insert','blocks','{"block_hash":"1029c14051faabf90641371a82f9e2352eaa3d6b1da66737fcf447568ca4ec51","block_index":310133,"block_time":310133000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'763819001fb13976a676bdbbaeb7b39a280aa05c3dde599cf7397bbe8fbd4516');
+INSERT INTO messages VALUES(436,310133,'parse','blocks','{"block_index":310133,"ledger_hash":"626743e51b462163f23f22079d672379def21382fd88f9155ddd453ca3d633ef","messages_hash":"07725c61f535cdcc7c1ca6b0da84db507c5769ea9e318cba17c128ce1befc5fa","transaction_count":0,"txlist_hash":"1a7a1af397c6619b629eba7fdef0f0ea2d737e673d182fe985421dee61d0c63a"}',0,'BLOCK_PARSED',NULL,'59c09f216d4f59586803b842fb9713afc16752c41e0949568f983df0e2a02c14');
+INSERT INTO messages VALUES(437,310134,'insert','blocks','{"block_hash":"1748478069b32162affa59105257d81ef9d78aee27c626e7b24d11beb2831398","block_index":310134,"block_time":310134000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d937292f720ec3d7788a33b485706d152bd1e2eedf79595e4ebb07198db5857b');
+INSERT INTO messages VALUES(438,310134,'parse','blocks','{"block_index":310134,"ledger_hash":"4b6e3202cae46fa80222e3ddec001213062ab76b8848eaaf4ab73f44bd84ac55","messages_hash":"3d5cfbaac42499e555831c587865e356612e3c6e46d94b5ff532ed2035f0dbc6","transaction_count":0,"txlist_hash":"855a47de54b979a3d958a921c2679825084193b9f1eb0fa56393e0186fb1b440"}',0,'BLOCK_PARSED',NULL,'684c6466781cc44b03dd298eac7b8d93900d4d8cb74806962ab4c19affa69c97');
+INSERT INTO messages VALUES(439,310135,'insert','blocks','{"block_hash":"d128d3469b1a5f8fb43e64b40f8a394945d1eb2f19ccbac2603f7044a4097e4f","block_index":310135,"block_time":310135000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2936aadc952dbbeb9752ba38d5b0064fe1aa2c934b99df077ed4293dd83b58e5');
+INSERT INTO messages VALUES(440,310135,'parse','blocks','{"block_index":310135,"ledger_hash":"e32784cedeadac39bb292da2c5eaffc983f416e0bf387978691e4c0fa5b1715a","messages_hash":"4841d7271edd65089af68a93d50e3f86933bf4d05548541db6ccdbf71d736e54","transaction_count":0,"txlist_hash":"80e68a8a303975543781e760be8d8b151206fb0335d3e0f5c2821d3e482b0ef0"}',0,'BLOCK_PARSED',NULL,'c30a700b01bb746e96aad7de29eb6a45aeeb109f535ab1e0068def82b51c917e');
+INSERT INTO messages VALUES(441,310136,'insert','blocks','{"block_hash":"6ec490aaffe2c222a9d6876a18d1c3d385c742ff4c12d1334613a54042a543a5","block_index":310136,"block_time":310136000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82dd339120e9c4ccdb8096efe84bba39a4ebd91e64e7d4bf43741ba1abbc734e');
+INSERT INTO messages VALUES(442,310136,'parse','blocks','{"block_index":310136,"ledger_hash":"93c67fdabd991708d1e35dabbdf7acb4e928763eeb817b32a79cd0bdb414fd2a","messages_hash":"2637a61c95e25b3ec2cb739d236bb8030c57f29036adb7bf981f323cc39cf06d","transaction_count":0,"txlist_hash":"5fd1f9311646bed047ec4ac1d5aa5c74d68d26ddf6bdec14f2f53f4cb9c1f6b1"}',0,'BLOCK_PARSED',NULL,'8a49f9f59554ee9dc1fa57b32c2308699185c59fd9d1c4ac64dfa5d6dff5e77d');
+INSERT INTO messages VALUES(443,310137,'insert','blocks','{"block_hash":"7b44f07e233498303a57e5350f366b767809f1a3426d57b1b754dc16aba76900","block_index":310137,"block_time":310137000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'69aee8a174893bcce44f02e3acd72f7b833f161760a4cf68abec96a2131a5bb2');
+INSERT INTO messages VALUES(444,310137,'parse','blocks','{"block_index":310137,"ledger_hash":"8a43d01155ba47b8b1311c41d5a57112198857701c2970d0fd373da04ef4e585","messages_hash":"c09f0175cc685bf77e9ca37ce6a069530c3a4277aba629628f7e70fda8d86549","transaction_count":0,"txlist_hash":"d1f1a4a5fb78621aa1be58d32795feef8ac82572c34a694bf6b0b8c3c73ba7d6"}',0,'BLOCK_PARSED',NULL,'b7cb06ed6f7b9128b6325bf86bc70178c38f6afe53425f40b2bdaecff80992e9');
+INSERT INTO messages VALUES(445,310138,'insert','blocks','{"block_hash":"d2d658ccbf9baa89c32659e8b6c25b640af4b9b2f28f9d40baae840206402ab5","block_index":310138,"block_time":310138000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a5eed8868e99690c035da3839e0526ec0b5ebaa0ab93037bd8608ad976e411c');
+INSERT INTO messages VALUES(446,310138,'parse','blocks','{"block_index":310138,"ledger_hash":"4acf0244f3188f60152acc8ca30dcaeadf12e6669b15377c81b7e6dc3c8892b6","messages_hash":"c7a23246c5a4bd1a227775cd80e66548b7f1e4678d5bdd55959de1740f51268b","transaction_count":0,"txlist_hash":"645be1bed53d63c268cd21d99a914aa4268b5a357dafa57f706075a66e42f948"}',0,'BLOCK_PARSED',NULL,'358096aabea7cf6037c4946a2b575b4e75e2afa04d32edde3bafb1122fb80981');
+INSERT INTO messages VALUES(447,310139,'insert','blocks','{"block_hash":"b2c6fb61f2ae0b9d75d18fce4c52a53b1d24772b1ad66c51ca51090210527d46","block_index":310139,"block_time":310139000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5dd7200c50f6550f131c877c79317ef03b9d4f0eaa0dba17666078eeefa0cec');
+INSERT INTO messages VALUES(448,310139,'parse','blocks','{"block_index":310139,"ledger_hash":"2d77bdd47ed1b3be1c2edf41473bd5eb707d06dab33717b01c4a227f9855d73d","messages_hash":"3b78c856d3143016af3bea464ccf64b4695596f7a03594a6b53a918f67de7085","transaction_count":0,"txlist_hash":"c1e0ab9fe21f807be3431a5d28c048b7f5c49ee5cfba7b9a0a837d1fa5c90f4c"}',0,'BLOCK_PARSED',NULL,'d256040b0552c6939302f08321acd459dbe258acd39cb5d07269a831ad94ced2');
+INSERT INTO messages VALUES(449,310140,'insert','blocks','{"block_hash":"edddddea90e07a466298219fd7f5a88975f1213289f7c434ed47152af6b68ebb","block_index":310140,"block_time":310140000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be5b0ceeee892c79fec5b7b88424ced87e82e03b16d322a8a4d34f5807ce1147');
+INSERT INTO messages VALUES(450,310140,'parse','blocks','{"block_index":310140,"ledger_hash":"277c0c6dd1c505dc6f9a222c737296396569d8e007c4b9a42582f108e90fa624","messages_hash":"acdb179c5a74ce2b918cef5e10e93bb6402e182e461761806483e0b2baf3f2c0","transaction_count":0,"txlist_hash":"ab9a8224e0e3f8f728b56fd3ff40d960d9d336b2743932053b2419423223f2ac"}',0,'BLOCK_PARSED',NULL,'135bc3df6e267d5f80429f47020e283c916be2c5eac5573a6403961732ff67b2');
+INSERT INTO messages VALUES(451,310141,'insert','blocks','{"block_hash":"b5b71d2a271bd638561c56f4ffbe94d6086debaaa86bfeb02ef0d71339310709","block_index":310141,"block_time":310141000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e3aba8486a360aa6ffa1bca87adff726ad13cce9bbc943c2acca99065cb9c3');
+INSERT INTO messages VALUES(452,310141,'parse','blocks','{"block_index":310141,"ledger_hash":"f5d0edff3f22b2e025c884b7c738abe641bca9110a6b9a7b90de179fd6e5d2dc","messages_hash":"c47d6be26962bca640d2ee4fe08a9c5ce88d850fcd1a9c3d24e696620b583e9b","transaction_count":0,"txlist_hash":"d272db9ecd97edb037736fe46ab9585397f38a6d1c1d9455e64b8439811ebe4f"}',0,'BLOCK_PARSED',NULL,'8769d1ba3b073230c406596c158d275fae50dff2c32a9edc2733980d4dc90e9c');
+INSERT INTO messages VALUES(453,310142,'insert','blocks','{"block_hash":"a98ae174c41ab8fc575d9c8d53d8e02d8e446b8c6c0d98a20ff234eba082b143","block_index":310142,"block_time":310142000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb1a96d4dede4e039333400b8be56f624d0e7f00c79e460474f97eb39491a9cc');
+INSERT INTO messages VALUES(454,310142,'parse','blocks','{"block_index":310142,"ledger_hash":"a9f00ec826a30e66820ab2920cf9573244a24dacd63d48c080b9e80b1c5e05b7","messages_hash":"85dc1497834c1b15c6af18bf2b4c481409f89ed98caffec52221d181d1e59897","transaction_count":0,"txlist_hash":"0c2ddacd61856ee0743eca9125326981ab9f5711982f53874a0f8153089a8d97"}',0,'BLOCK_PARSED',NULL,'5323d38622c59ef197995a756374d2ad550fe68d668ae9442e4cbece599da7c8');
+INSERT INTO messages VALUES(455,310143,'insert','blocks','{"block_hash":"8ba2f7feb302a5f9ec3e8c7fc718b02379df4698f6387d00858005b8f01e062f","block_index":310143,"block_time":310143000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92d903475daf69e8e595743ebdcd470f4995509865b88735963453042fd25054');
+INSERT INTO messages VALUES(456,310143,'parse','blocks','{"block_index":310143,"ledger_hash":"b5765899f770fdb6cf1120535d85826c6b0ae44b16b8d5a619c5cd12c98783ea","messages_hash":"996968a15427d4f9b35b08d9b1b02a56c8428dc360092e4efab1c3fc2fa82842","transaction_count":0,"txlist_hash":"39ef998b6c6130f79df8dcb5abff84c18a485915f1088b36a10de30da8c6f9c6"}',0,'BLOCK_PARSED',NULL,'fe6fc52f3fc92e05f662626d0de69498bdc895fea6f942855b85af69b2b78819');
+INSERT INTO messages VALUES(457,310144,'insert','blocks','{"block_hash":"879ffa05ae6b24b236591c1f1537909179ed1245a27c5fdadd2218ab2193cdb9","block_index":310144,"block_time":310144000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e6d45b5f688704aa1813a2f5f2413c7ae65afed21aa95cf971a5ec5e024d5ec');
+INSERT INTO messages VALUES(458,310144,'parse','blocks','{"block_index":310144,"ledger_hash":"1a80f48136e5938b33f817a7cc1cb60aaf6d628b7811abd43e38cc807a18072a","messages_hash":"b3ed6fdd31f986960976fd3d1812a9a97c6908ac4771a5470a64df9547418e7e","transaction_count":0,"txlist_hash":"0b547c8db7446cd3f26dd0d8b88d533c1361fa5dfae6127b85e87095b42ab66b"}',0,'BLOCK_PARSED',NULL,'d06f36557b62524a27e1c806722deceb3157208bade3e063565a5dd56694efa1');
+INSERT INTO messages VALUES(459,310145,'insert','blocks','{"block_hash":"175449ef0aa4580593ad4a7d0c5a9b117e1549ea772af00caa4ccdc9b1bf7a6e","block_index":310145,"block_time":310145000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'613a320a3b75ff5d3018d88bd16caed4ae305f4617441ddc7d55192e649847e2');
+INSERT INTO messages VALUES(460,310145,'parse','blocks','{"block_index":310145,"ledger_hash":"fce2f084c1776fcb36b3ae3e0c952893934e24672ffa0d3dac72bb1278af8264","messages_hash":"72621b5af8bc398e97c0b2cd3c6b44071eee2613d41abdf85c9eaff10b6b8bad","transaction_count":0,"txlist_hash":"bcef3d9f5eb82fb2198d268e442edfca029d5aa3ccff5e5306f0a1a8cf43b30c"}',0,'BLOCK_PARSED',NULL,'619221a43e37adc0bc750a2bfb5e983c5a53bb238d277cc0389f504d30237dcc');
+INSERT INTO messages VALUES(461,310146,'insert','blocks','{"block_hash":"e954ab6a110455d745503f7cc8df9d92c1a800fafdd151e7b1912830a9cb7184","block_index":310146,"block_time":310146000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'016460262138d698d91e6d577dfadb444e40d9590ce26bd042073a939327a704');
+INSERT INTO messages VALUES(462,310146,'parse','blocks','{"block_index":310146,"ledger_hash":"9a98eb971580a0a69fceafc5fd41f398f1908b626c47df57965d1863e9a24b84","messages_hash":"eb2f714de272f1ce572c182db7c969f22f84995e4b2f0d186faf010812f2bd7c","transaction_count":0,"txlist_hash":"036b1784841e65e5905b012f2b74c70e1d9c33b769603c01387d13e693343411"}',0,'BLOCK_PARSED',NULL,'08bcc0341ab3d9f674553dd5f42d9f3cdf0200f3abbcbf288deed67a2759acae');
+INSERT INTO messages VALUES(463,310147,'insert','blocks','{"block_hash":"7650c95eba7bf1cad81575ed12f32a8cc36281a6f41bef13afe1dfc1b03a7e83","block_index":310147,"block_time":310147000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c8cfa6a13624db82357d11bab8d06d08e82d49f34b67f4a3a7e78f7cafaba4');
+INSERT INTO messages VALUES(464,310147,'parse','blocks','{"block_index":310147,"ledger_hash":"336a89d3d137810d3220d2de432f72e3b3ccd2ada2b746da3859c77dbb89d6a3","messages_hash":"3f60c7681688bf8bb1e08f457dc677cec77cb3fc79c555d50daff1d7ab15c503","transaction_count":0,"txlist_hash":"184e1861a82afa97634e0ad72cff532220a37d75f8eb5e1265039188124f6ad6"}',0,'BLOCK_PARSED',NULL,'ec9145d2ff24aaeadb2317c577cbd716588e28405fa556c5eb81537fba459121');
+INSERT INTO messages VALUES(465,310148,'insert','blocks','{"block_hash":"77c29785877724be924f965215eb50ffe916e3b6b3a2beaea3e3ae4796545a7e","block_index":310148,"block_time":310148000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d4e5bdb82ae4ebb175786192f2275bfdec5188af42ab77c9e8b4b4f7719f607');
+INSERT INTO messages VALUES(466,310148,'parse','blocks','{"block_index":310148,"ledger_hash":"f904794337dd67d356981d2623b8c3d1d78ba584cd98a8c1db939951d3102612","messages_hash":"647c2a25eeea0f27d3334e58f9e0a7563b2ab8cca81bd9880d7f0f85bbe745ef","transaction_count":0,"txlist_hash":"c75b4218153bfdf3baf44f22f99523f7c54d957994ee838c05c08dd52d98c06f"}',0,'BLOCK_PARSED',NULL,'de31939f7f92e716a36ec45ba1c6898bfe6d0bd1d83a25854a53447ba66d714f');
+INSERT INTO messages VALUES(467,310149,'insert','blocks','{"block_hash":"526b3c4a74c2663fc04ed5234c86974bffddb7235c8736d76860778c30207b3c","block_index":310149,"block_time":310149000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a200db17f16754d0b62b79b8940e232d15ea83161a73aaa2d37b9f41e113e3f');
+INSERT INTO messages VALUES(468,310149,'parse','blocks','{"block_index":310149,"ledger_hash":"c2972fbd048790f54d9ecef4e18aedec8ae7aa28227d1d43bd19cd71b4feff85","messages_hash":"8644014a3cfb577341f9010e93cdb4f3da7bc04d214715e11b9b7170e6d805b2","transaction_count":0,"txlist_hash":"8dac7e6494cc67fc5c186e74b08d9fc8bc92cf71af9b0e1d919c48e9fecf7660"}',0,'BLOCK_PARSED',NULL,'445cdf9a52e897b550ed96161620903c3a5a0692006b4eb2361bdd0b601c395e');
+INSERT INTO messages VALUES(469,310150,'insert','blocks','{"block_hash":"cdd141f7463967dbeb78bf69dc1cd8e12489f58c4ea0a5dc9c5c01ec4fcea333","block_index":310150,"block_time":310150000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b8e2f791f40efe9337f2acefb4f2af83007a1d5c8b3b000e208306a5562331');
+INSERT INTO messages VALUES(470,310150,'parse','blocks','{"block_index":310150,"ledger_hash":"88b999e4ae34386b826b0f3b315953b5eeda8d9ef496af051498bfce6d8737fc","messages_hash":"f9d7ab71830b2129ff8cb527692755d60a9b44fd51dd3304142f0833652f43a2","transaction_count":0,"txlist_hash":"db25206ba3a052c622c6a5063359308d04fc2a031d6509447d838cf96a0632d1"}',0,'BLOCK_PARSED',NULL,'b94d154841efbffac35314806f5f0a0e499efc76c1d41f548f566eae626be0e3');
+INSERT INTO messages VALUES(471,310151,'insert','blocks','{"block_hash":"a0f31cc6e12ec86e65e999e806ab3bfa18f4f1084e4aeb4fbd699b4fe284b330","block_index":310151,"block_time":310151000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d80b668e6d41d074b51dae49bd60576ffe06676d4c46ed1c47544f88ba8889a');
+INSERT INTO messages VALUES(472,310151,'parse','blocks','{"block_index":310151,"ledger_hash":"b7c176a2eff86655f8b0b71cc8bd3bab3a92ba203d4ccd911d63f3d2ce7fdc25","messages_hash":"9102ee9621eddc59389844575d3276e577caee437a74bdf6d5ddb7f30c978753","transaction_count":0,"txlist_hash":"c6868100e51f390d57b2da8324915c9751aa3882b6e102055fcfe229d1abfc85"}',0,'BLOCK_PARSED',NULL,'d042734ebf17984cddafb2c5cd54e203757de15abd2c4dc9ad057f58e67f7952');
+INSERT INTO messages VALUES(473,310152,'insert','blocks','{"block_hash":"89c8cc3a0938c63a35e89d039aa84318a0fc4e13afac6beb849ac37140132c67","block_index":310152,"block_time":310152000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9041188d1161e4d6e327c41f2b8989b5de854c59fb1a19542535f0fd24f1391b');
+INSERT INTO messages VALUES(474,310152,'parse','blocks','{"block_index":310152,"ledger_hash":"3f9471c393bc2bf144b17a5febea88c42982ae746fd700a5903c0e6e541e2b09","messages_hash":"b422d3aba369d1ff718bab0d5e8718448ad9f6f56d88857afbc9edc90dda5a1e","transaction_count":0,"txlist_hash":"ff691488593add72ffd8fb9c8eab2b2c6f92dc2082615b3829f4b84fc8a81f88"}',0,'BLOCK_PARSED',NULL,'7ecf2b475369f8b6c8f723d8f9b885889cbbe4655b8c5986561143fd43aac9f8');
+INSERT INTO messages VALUES(475,310153,'insert','blocks','{"block_hash":"d1121dfa68f4a1de4f97c123d2d2a41a102971a44b34927a78cd539ad8dca482","block_index":310153,"block_time":310153000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b68066cfee2ba381aa56f0e7ab076fcc04c8696d72bc79a40f27e787019c890c');
+INSERT INTO messages VALUES(476,310153,'parse','blocks','{"block_index":310153,"ledger_hash":"c6bc81e7b7e6758bbbfe10fa0e688b09e679fb74a18134639e172c18c6e017a7","messages_hash":"187598a6a8055647c1efdad1bbbd82f96e11188374a121f14bf23ba0e51f5f1e","transaction_count":0,"txlist_hash":"6c303c21dd9de15f2a265d88e04a2c110f32718da29a06294ebafe9ed91d4441"}',0,'BLOCK_PARSED',NULL,'cc022e2523f9a9d367d6add761080f0d4d65bbcd74dac31e5ce0ac9c53627bc1');
+INSERT INTO messages VALUES(477,310154,'insert','blocks','{"block_hash":"ba982ea2e99d3bc5f574897c85485f89430ae38cf4ab49b7716ed466afa506d6","block_index":310154,"block_time":310154000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d6700f83543a2952fa818fa6aa9738efdc30fae01290cf7ec7e0e0c18d02ec1');
+INSERT INTO messages VALUES(478,310154,'parse','blocks','{"block_index":310154,"ledger_hash":"b3e07f9de85ab67e88042b1bb52302c6eb16b7ff45d5be6a49700f115ed396d4","messages_hash":"051f58d9692cc8eb3bb0f85ec07846684670f4ec8d697e8bd8cbc4ad65b5ea11","transaction_count":0,"txlist_hash":"b21fe34642b2c9ff09e65be86103f1c3390a01eb51b4d8b98456558639ef6e1f"}',0,'BLOCK_PARSED',NULL,'0bb8dfd483085c759442da3ed25d5d1fe05792083404e2df77e8e4d532bf0e55');
+INSERT INTO messages VALUES(479,310155,'insert','blocks','{"block_hash":"cefb3b87c7b75a0eb8f062a0cde8e1073774ae035d176e9769fc87071c12d137","block_index":310155,"block_time":310155000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12b204290e66a2a4cb7f7499a66a4674c946109feee5e1ead0de53a842e4a268');
+INSERT INTO messages VALUES(480,310155,'parse','blocks','{"block_index":310155,"ledger_hash":"27014841a468e23bcb70c718919745eadcded4310031a7be90a4732c96509404","messages_hash":"014066182ef2deb918d333d51858db41257802d247501c3df7cf38cd06ea295f","transaction_count":0,"txlist_hash":"0e5f0bfae3a6ced9c6498cbe95b8bcb56c76530830baa61345b8072aa6e28ff3"}',0,'BLOCK_PARSED',NULL,'98d1b07e82d51de991574eab69bb9114a41ff832f96782e411ff4fd471cbee9d');
+INSERT INTO messages VALUES(481,310156,'insert','blocks','{"block_hash":"6e3811e65cb02434f9fde0445a7a2b03fe796041458737d0afcc52208f988a83","block_index":310156,"block_time":310156000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'653ccd5700c1cd62fde0fa104efbd1f3d316c310e57ff302574e576a009c6e2f');
+INSERT INTO messages VALUES(482,310156,'parse','blocks','{"block_index":310156,"ledger_hash":"5597aaadb8cc75848219f9fde3f5d76bb5592689c72068db59922732e89eef9d","messages_hash":"eb63655fdba3bafd8b2db80a5890e9192722636140738cee397360541a8a5fc1","transaction_count":0,"txlist_hash":"ff3319c50ddd9bbd558542bdde3d612a475b543d6a34ea76738d929b5e05a380"}',0,'BLOCK_PARSED',NULL,'3221dc3a664aed35d7be87e11a0483262f1929b81a9e55717effc38008bec150');
+INSERT INTO messages VALUES(483,310157,'insert','blocks','{"block_hash":"51dd192502fe797c55287b04c403cc63c087020a01c974a565dd4038db82f94a","block_index":310157,"block_time":310157000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'792d507b53499df2975449cf49b5160385ef5be3671f8f47b960755028b07135');
+INSERT INTO messages VALUES(484,310157,'parse','blocks','{"block_index":310157,"ledger_hash":"cc1ae27fef286424e40204f6b575e9e079e1f7a5ccf6cc356729a7c4a7f83eb8","messages_hash":"bec1523e67d65b982aefb200ce1da4a644716c0e5877cb9ec54e1d86c9983a54","transaction_count":0,"txlist_hash":"9b4884eaca300843017c2732aa8d09815eee4701cff996cc8b6ca6d62af4055d"}',0,'BLOCK_PARSED',NULL,'d2e22f42ee6fcbc4e5af270a7d0dea8e583068b9b133b191f36f118060348d3f');
+INSERT INTO messages VALUES(485,310158,'insert','blocks','{"block_hash":"749395af0c3221b8652d31b4c4410c19b10404d941c7e78d765b865f853559d2","block_index":310158,"block_time":310158000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b9a38ab646d8919eab0b3e4036533299010bfc8f6e2b8d407f578d31f60421c');
+INSERT INTO messages VALUES(486,310158,'parse','blocks','{"block_index":310158,"ledger_hash":"6d80d98e778b30c124b0255b3e72620f432245d0f841f6bd62a0fcff44843bf0","messages_hash":"514956ec19bea6979b4ffcf31b74b233152baeae385c1362a4e0ec8682e129c7","transaction_count":0,"txlist_hash":"03a33d54ece86ab81f4f6e1cb337b07b6fc105a580a4ff82496885c7671939a4"}',0,'BLOCK_PARSED',NULL,'781f42293a72302589515872050d58242006cd65b2d094ed6f0a0443c5dfd3f0');
+INSERT INTO messages VALUES(487,310159,'insert','blocks','{"block_hash":"fc0e9f7b6ae99080bc41625588cef73b59c8a9f7a21d7f9f1bf96192ba631c12","block_index":310159,"block_time":310159000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fbf0c41eff2eae0f88e57042533ffd23c85d9cc40836f7f9cdf76289ecfa5f8');
+INSERT INTO messages VALUES(488,310159,'parse','blocks','{"block_index":310159,"ledger_hash":"d8ab8bb14092afea6cc675d2f50891318e3169bf9dbe2d07e80c4db95f0f2033","messages_hash":"44af8239abc53571c2155a17d75e5a9d143bf0d20f681cbc81504ccf88727c04","transaction_count":0,"txlist_hash":"c292a08eda8cb807f0c11947fc08c748353bf545596d8c6c03a4a734d25461a6"}',0,'BLOCK_PARSED',NULL,'9c9f93d7a6fd0b2499755dac6e6ae0ce9999d20db6cc9635f3a976c1ad4a9e0f');
+INSERT INTO messages VALUES(489,310160,'insert','blocks','{"block_hash":"163a82beeba44b4cb83a31764047880455a94a03e859dc050da782ed89c5fa8b","block_index":310160,"block_time":310160000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6cef891a7f882e8a6950f4f36d8d650d59df543286ee33021988013c6d4d3cec');
+INSERT INTO messages VALUES(490,310160,'parse','blocks','{"block_index":310160,"ledger_hash":"2d76a042d062b73b7dd956d5cff0ee397f068c04eae6cf5b9522d3d55e88cee9","messages_hash":"148803f5671b6c6e8acb48f38bfa937107378fb496acd68d1f0e5571be8c123a","transaction_count":0,"txlist_hash":"df1e1e18b65c4322284ab36204d9f4397c0dade89bf25486c8b84f6358e0f18e"}',0,'BLOCK_PARSED',NULL,'8c8eab9ad9ff82fc98a1236e7378686bdc2349829e916c8d60b41cceb10d1d3b');
+INSERT INTO messages VALUES(491,310161,'insert','blocks','{"block_hash":"609c983d412a23c693e666abdea3f672e256674bf9ee55df89b5d9777c9264d8","block_index":310161,"block_time":310161000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'395dfff81f645aca410e26726fb9111d92b39fdb30977dd3cfdf7e05ed678c42');
+INSERT INTO messages VALUES(492,310161,'parse','blocks','{"block_index":310161,"ledger_hash":"beb3496742415027bcc0d59f3385809523c8783cd91a5670f2fb6fec3230e980","messages_hash":"fd7f4e92adef34699dd0f6acd232e616d1657e13ea5ab9809cb1128522b1f07f","transaction_count":0,"txlist_hash":"e61374e297180716eee972376d16b85266342dfcee4f383ba9061360f7c0a425"}',0,'BLOCK_PARSED',NULL,'727a0e856b50adc0e26f84349a475ca9ad67f196bf242854c83180ffe6b9c1e4');
+INSERT INTO messages VALUES(493,310162,'insert','blocks','{"block_hash":"043e9645e019f0b6a019d54c5fef5eebee8ce2da1273a21283c517da126fc804","block_index":310162,"block_time":310162000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72b2d48a9c633257ba67ab96da0e43135d7b37945187529be5927697e08dad82');
+INSERT INTO messages VALUES(494,310162,'parse','blocks','{"block_index":310162,"ledger_hash":"066a2b93df863300741145cd6a4f1a9ea616bc787861cb8ab809f59d47a6fa1f","messages_hash":"8ea4e1f130055e805bb996dd15189034d29a892d14a980db3e4dd0fbdda79ec8","transaction_count":0,"txlist_hash":"bc115f6ddeebabd3e0ea592604ff679267b755376e509c4760cfa394e86498df"}',0,'BLOCK_PARSED',NULL,'0b729d83a9f5e2afc83c3b93d31fc6877070c7a28c8d65257d38b124509a5525');
+INSERT INTO messages VALUES(495,310163,'insert','blocks','{"block_hash":"959e0a858a81922d2edf84d1fbb49d7c7e897a8f49f70bd5b066744b77836353","block_index":310163,"block_time":310163000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f474620955a8cf137dc867f104f0e8c9a6afc0f7f8b812a64668cf2be9d12a0');
+INSERT INTO messages VALUES(496,310163,'parse','blocks','{"block_index":310163,"ledger_hash":"460c271269ccdd8775925b511705207baed8fc212caa7e74fc08a80be600a38a","messages_hash":"87366186f53ca7a8eeca7ce436faec867a7d2d9bbc78d9ee1981b1121eadce92","transaction_count":0,"txlist_hash":"d16b6243e4c0718a2adca941956564325985750a9a0833aaa35635335cb504ea"}',0,'BLOCK_PARSED',NULL,'17c045874a8cc835722805d77948a49393cb4f9c23598dcadaeb3aa591dd3fac');
+INSERT INTO messages VALUES(497,310164,'insert','blocks','{"block_hash":"781b7188be61c98d864d75954cf412b2a181364cc1046de45266ccc8cdb730e2","block_index":310164,"block_time":310164000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6238f8d91ae81807b7c7d19be5d575df691fa9ff6c496131a39fce678d228195');
+INSERT INTO messages VALUES(498,310164,'parse','blocks','{"block_index":310164,"ledger_hash":"19a7948cd1bc4a89a427d48bb01330dadff848e2b32ec8b8abe342872850b268","messages_hash":"297ac32dd5d160c4f996cc3304d4200b748960aa3db1b8ad6eac83a9d005659b","transaction_count":0,"txlist_hash":"54068fbe0e385c8ae2df5cb2c601397e15c019c732e37ed484573f07106741e3"}',0,'BLOCK_PARSED',NULL,'4dc98ba9c52209dd92920dcf00d6a690b5b8f2111f94c9748be40e29d3affc54');
+INSERT INTO messages VALUES(499,310165,'insert','blocks','{"block_hash":"a75081e4143fa95d4aa29618fea17fc3fabd85e84059cc45c96a73473fc32599","block_index":310165,"block_time":310165000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fcca45ca8631e3ac9b2fa2105df18b4324ded13dd132700cdb095033edbe7f1');
+INSERT INTO messages VALUES(500,310165,'parse','blocks','{"block_index":310165,"ledger_hash":"97f0a48a26daf011a8c7b22bb772228a0c8a920eccd011e713956100c9fbdf33","messages_hash":"53cef4f572c1881f2cfc889b735f73b7f2f30b4cd8da5ffa4a97e6837ab9c0e5","transaction_count":0,"txlist_hash":"0783c9e3d99f4f95b64b38b92c4e8b7d257f325d10cd83bc86d684378b9ebbd6"}',0,'BLOCK_PARSED',NULL,'1458bbddc58eeb4a65bd3cd6b80670e253e05b8c4f18c27865c1d1cc46111a39');
+INSERT INTO messages VALUES(501,310166,'insert','blocks','{"block_hash":"a440d426adaa83fa9bb7e3d4a04b4fa06e896fc2813f5966941f1ad1f28cfb41","block_index":310166,"block_time":310166000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'510d49b4ac2d15c1941840cce305682f0ea92f88ab87aa856cbbccd1de8a402c');
+INSERT INTO messages VALUES(502,310166,'parse','blocks','{"block_index":310166,"ledger_hash":"edbd00e1229c673f4f15b3ac7bbe020f54b5f3a61b1d158658471076a55c77b0","messages_hash":"0a7e9c4108dae596aa7efe98f41ddd7bac323e16068180e14127801a6d769e91","transaction_count":0,"txlist_hash":"683f4ab00ee1ff495bf452c511c1582100191ef7b575139b9d2f102c852018c8"}',0,'BLOCK_PARSED',NULL,'141487de1a3425e8d5b139103acfebd4584bd2864d052f9627c8f3646e2941e0');
+INSERT INTO messages VALUES(503,310167,'insert','blocks','{"block_hash":"ab4293dbea81fedacca1a0d5230fe85a230afc9490d895aa6963acc216125f66","block_index":310167,"block_time":310167000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'826f88d2f361c0213e6f97491c33862b8016db058125de0342e416f0dd472619');
+INSERT INTO messages VALUES(504,310167,'parse','blocks','{"block_index":310167,"ledger_hash":"e118e0f3aad5be73080f4d1892517e8fd2c4575589ccdfadf980edebb9a66a14","messages_hash":"a959dd943ffe80982909fefffa27b474b822a8d82ab34f24bc5f56af86b7781e","transaction_count":0,"txlist_hash":"d2be4356643047c7bd04eede767d4f6853885f408827f3bec8c54ceb2b7fd71b"}',0,'BLOCK_PARSED',NULL,'b94b1653caa2db2cfaf26e040f3001b6e8b79c518a433d1137f9dd0ae9c2c2ea');
+INSERT INTO messages VALUES(505,310168,'insert','blocks','{"block_hash":"a12b36a88c2b0ed41f1419a29cc118fae4ecd2f70003de77848bf4a9b2b72dc9","block_index":310168,"block_time":310168000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c0fcb1fef51e1b0db23f041842637dca48cb59a0ac85b22063d0849d15b8a4e');
+INSERT INTO messages VALUES(506,310168,'parse','blocks','{"block_index":310168,"ledger_hash":"267f48eb4e3b0925f4f472d8ce6ec57ec5039911b13a14ff2884a41a9cafd7b1","messages_hash":"8be097ee641bccb50eb7498f0366ef07981b01e64b5b1979a4cde7495e85ebc0","transaction_count":0,"txlist_hash":"ad748b661aad47fa8963b43999846ef9bd00ea2595747f835710360afed16797"}',0,'BLOCK_PARSED',NULL,'352d0f35c808c235bf8c58188a46771125ed51bc6d2379b138ed9cd7bc94c0fb');
+INSERT INTO messages VALUES(507,310169,'insert','blocks','{"block_hash":"204809a85ead8ba63f981fc1db8ae95afe92015f003eaebbec166021867421f3","block_index":310169,"block_time":310169000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a48b4978d847a86e69fa9e55b899779d6e9fe78ac1ebf091bb6d5846e2ec74be');
+INSERT INTO messages VALUES(508,310169,'parse','blocks','{"block_index":310169,"ledger_hash":"df394a6f3b2a9b9dded6019dce9f3d3214db1f30019faffbdc2ce614f629b25a","messages_hash":"d4df5ba45e26cbd17af5e5796e7f22681161cc7af5a0570cd8d25cb71685f059","transaction_count":0,"txlist_hash":"3a92e2c7808a00a0ff2b2fb4695b225acf6262c57753023334bcf3de8e1c7ace"}',0,'BLOCK_PARSED',NULL,'b369c177aa790d3d6ef4ae9678c892de188a8e75a646f56caa9a04be042dd568');
+INSERT INTO messages VALUES(509,310170,'insert','blocks','{"block_hash":"b38b0345a20a367dfe854e455e5752f63ac2d9be8de33eab264a29e87f94d119","block_index":310170,"block_time":310170000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8daed5848e3b5e9d392874c045496f011d5f40f9dfee7f2c4a9f58f2f608fba9');
+INSERT INTO messages VALUES(510,310170,'parse','blocks','{"block_index":310170,"ledger_hash":"3081081c2ab6d8280ef721c5836d0fb7e89eb3d747a4e4522d2e22f5a6b153a2","messages_hash":"78f1036d3d2063f358bf0a27fc8b0dddb4e44f0cbd083697e439d5307dbaa7c7","transaction_count":0,"txlist_hash":"f4ada9df3e82d94ba52292e829c4c814b3f0d04f0e3f8606a90fed651634fafd"}',0,'BLOCK_PARSED',NULL,'306fd441b11e6a2df7d1781cbf4d4b719099e5eccb37e6ff0529ac8379eacb90');
+INSERT INTO messages VALUES(511,310171,'insert','blocks','{"block_hash":"b8ba5ae8d97900ce37dd451e8c6d8b3a0e2664bb1c103bf697355bf3b1de2d2d","block_index":310171,"block_time":310171000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68308f27da86c687d2cbaaaec0033be9ecb92870fe23bf11683e8bdbee814ce7');
+INSERT INTO messages VALUES(512,310171,'parse','blocks','{"block_index":310171,"ledger_hash":"e6a4017e4f7d9da50bb3817990c3e115d5035443de8824dc01b5380a5b4c52a9","messages_hash":"af3d8ca73a122e4851105356df23498df5f2fc1ff3398ac078fc27962aac622f","transaction_count":0,"txlist_hash":"e335e773387256c016b82649c44647ce0355aa108249413f02117fe14f39c56d"}',0,'BLOCK_PARSED',NULL,'a97b6b754f2fc68a331a780027001b963925cef455b4086cc58c5c1a95724717');
+INSERT INTO messages VALUES(513,310172,'insert','blocks','{"block_hash":"b17fda199c609ab4cc2d85194dd53fa51ba960212f3964a9d2fe2cfe0bb57055","block_index":310172,"block_time":310172000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf924eb04fe2e5ab9ec83ccd1b2b5358bba4215a02f0c4fc620090e82c54755b');
+INSERT INTO messages VALUES(514,310172,'parse','blocks','{"block_index":310172,"ledger_hash":"89e90622bf8363bcee5cd7ab6d48b6d06ce4cbd067f9985e35e67fc683f4c103","messages_hash":"e2a7881775aef920b3066b9f6ecce7041085b945de142875562bb65e2f40269f","transaction_count":0,"txlist_hash":"d03bfc2a16d240505e3413ce267b263a0ddde5b3f8a04acb6a67d33a89434996"}',0,'BLOCK_PARSED',NULL,'554c7ae5ff869f45198b2f8d7687382e75bd81c085c106090a552135eeb59eda');
+INSERT INTO messages VALUES(515,310173,'insert','blocks','{"block_hash":"f2dcdc5ffc0aca2e71e6e0466391b388870229398a1f3c57dec646b806a65016","block_index":310173,"block_time":310173000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'736ba236aacd8c7abfb260336d5353ddb54fa3f135372f07f30ac6bb25d1a229');
+INSERT INTO messages VALUES(516,310173,'parse','blocks','{"block_index":310173,"ledger_hash":"35ceee6a23757fa49e7f5c34ccf0fd034731e95d564257b443ebfdee7cd294d3","messages_hash":"817325fa148dd39b8e4449274055a1c7bf46fb948413064c2f5a10bf99b6373a","transaction_count":0,"txlist_hash":"73c9dd3d2f5390d0d4379cc8f5e195ba4a0b4d280d3fe663db3940d4a42108ef"}',0,'BLOCK_PARSED',NULL,'34f4ca32ee765f4f62ab197a024b13b7e6a1386908245e6b80fcf99b013c782e');
+INSERT INTO messages VALUES(517,310174,'insert','blocks','{"block_hash":"fa6f46af9e3664353a473f6fffce56fa295e07985018bface8141b4bf7924679","block_index":310174,"block_time":310174000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9435e820dcb6f4de6d4f14830e3f5b43280625e572c35659efcc8faf395995c9');
+INSERT INTO messages VALUES(518,310174,'parse','blocks','{"block_index":310174,"ledger_hash":"101dedf34bc0788c0589c8e2b1d7da4ec65f6eab2e3c5523c0903db685cab017","messages_hash":"b8a6db792a4f373fb53b6a376554646253c138753a48f0005a1219bcf0764128","transaction_count":0,"txlist_hash":"71d9279604a4ac7dbd49f6672ec6cd19ba59b62302eb1b1bd78ecd3b6d4a5263"}',0,'BLOCK_PARSED',NULL,'3b40e3f1c84960529571a2c49d69ad13543ee039a465e7520097429ce02fe2a3');
+INSERT INTO messages VALUES(519,310175,'insert','blocks','{"block_hash":"f71e79fe5f03c3bc7f1360febc5d8f79fc2768ce0ff1872cf27a829b49017333","block_index":310175,"block_time":310175000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ecce1034c6728d3160be21e2abdd866869f43ed961d92bdb66812330d76116d');
+INSERT INTO messages VALUES(520,310175,'parse','blocks','{"block_index":310175,"ledger_hash":"67de4a0a9e52d9ae06caf62b3412d0bf2c10a6b24716210b21212d75be75ad6c","messages_hash":"9a5355a93495d86366d29e5274ad2d7abf970c09f134c778851f735ff0f8c387","transaction_count":0,"txlist_hash":"90b52df6f0427a7dc695fa0e17a7bf3e59d788cf4016bb65c451a151c38f121b"}',0,'BLOCK_PARSED',NULL,'7dce79e46b7afc49539f6b727758fe904ae580ff97f8de3da1ae18ab18bededf');
+INSERT INTO messages VALUES(521,310176,'insert','blocks','{"block_hash":"67cd1d81f2998f615602346065e37f9ceb8916abb74b5762ead317d5e26453c6","block_index":310176,"block_time":310176000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4c63a4dffaaf11cd58abee9d3ea96ab6aa891148fe0077c9f91425d4d23d4d5');
+INSERT INTO messages VALUES(522,310176,'parse','blocks','{"block_index":310176,"ledger_hash":"a90bd400e15727fada1a27be4a6e228bd91a15f0dbd0fb7de3b6779a8bf89e4c","messages_hash":"c850e09446f0a52ec6404ced1544e54c9de294c7bafa6e6957e25ac056bbd4f9","transaction_count":0,"txlist_hash":"b870ef1dabda015a561f74122039890b1c9c98e2c4c547dea34ed296fc99e8e1"}',0,'BLOCK_PARSED',NULL,'eb32802c06a4543e478fab0ba7f143a2e18d153b29bbdf8bb7e9e488d7a8618f');
+INSERT INTO messages VALUES(523,310177,'insert','blocks','{"block_hash":"6856b1971121b91c907aaf7aed286648a6074f0bd1f66bd55da2b03116192a52","block_index":310177,"block_time":310177000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbebfb36b5f69d7fbcc0c8909ee4608e8e465961cb70a80e389f5a009cecd478');
+INSERT INTO messages VALUES(524,310177,'parse','blocks','{"block_index":310177,"ledger_hash":"bac315d07dee18e27336a46ff3ffeed58aaf8eb1eb702e98a93c06303c937716","messages_hash":"4c7cd1688e4736625d5ae8bd877af13f0c77f2ee8b6a02506108792b42804a38","transaction_count":0,"txlist_hash":"80b0eed7b842a9779b358c5293771470290876f3acb617d85e1a97e786a73092"}',0,'BLOCK_PARSED',NULL,'8f17cff8c2d8295057d35d767ad48089830507d7e90449d8f8a6828489eba2f2');
+INSERT INTO messages VALUES(525,310178,'insert','blocks','{"block_hash":"8094fdc6e549c4fab18c62e4a9be5583990c4167721a7e72f46eaf1e4e04d816","block_index":310178,"block_time":310178000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2102880fc2da1a4c53bd48a44650d9c13b202584d3e297b95f35e2555a897ec1');
+INSERT INTO messages VALUES(526,310178,'parse','blocks','{"block_index":310178,"ledger_hash":"186ea0ece84d21ee21889ff13c98959dfc1842063a970e0c095552f0ca86515e","messages_hash":"9f424a07865ff4bb8d7431b8a3139b46fadef1844da81374666993d7ed66f922","transaction_count":0,"txlist_hash":"79d67c9aecc8676b0743ebc9af6b78c6f40d264b54bcb510b0028715fc1ca4bd"}',0,'BLOCK_PARSED',NULL,'993d959f1a881c30e89a03d19fc1bd7398b18535d7c2e1dd20a9ce27a45edbe8');
+INSERT INTO messages VALUES(527,310179,'insert','blocks','{"block_hash":"d1528027cd25a1530cdc32c4eaff3751a851c947ddc748d99a7d3026a5e581a7","block_index":310179,"block_time":310179000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f7069303a3b45c06aabe4c5160e5da8fade83dd16eb02959848eb8c946d4f2b');
+INSERT INTO messages VALUES(528,310179,'parse','blocks','{"block_index":310179,"ledger_hash":"0200402ef08256efa0adc85b2b4b15fb7448b5107b65fafbcc7985d809e84bc8","messages_hash":"aa920d97a7205fe9cea1c1f6acd1655d454408355eda0c11367715ac4818a56d","transaction_count":0,"txlist_hash":"3bbcd82428f094a7089c7c9a5c74be0e400e4a03181ea95faea8681323851d43"}',0,'BLOCK_PARSED',NULL,'5173761e01329bae866ccf481398babb5aec28cbabf8e9147ce150dbceea69c5');
+INSERT INTO messages VALUES(529,310180,'insert','blocks','{"block_hash":"f2f401a5e3141a8387aaf9799e8fef92eb0fc68370dae1e27622893406d685c1","block_index":310180,"block_time":310180000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'488b6efae80a850025bd9fd0f898ade04cfe3b13ae28b4a51b8b9555f4b4967b');
+INSERT INTO messages VALUES(530,310180,'parse','blocks','{"block_index":310180,"ledger_hash":"13829eeaf9bdc54f87366e35616c5a57cd836c63db8a9ba7d117d02377ef43e1","messages_hash":"fd195f7ba187d845d0b094cc88e0db9f65b00c98aec1106a857ef405d482bc1d","transaction_count":0,"txlist_hash":"2398e91ec31dc2810a4648946a85f5af7df71cae0b678f99aaa17e97d215785b"}',0,'BLOCK_PARSED',NULL,'badbcef2c3aac0a32d928fdb8c5e986b8585627ae19bf79a8ede3bda38427f13');
+INSERT INTO messages VALUES(531,310181,'insert','blocks','{"block_hash":"bd59318cdba0e511487d1e4e093b146b0f362c875d35ab5251592b3d9fed7145","block_index":310181,"block_time":310181000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da05392c60839d9193709b2335638a44b97a817fa25138c434ff7b8e4d1ea5f0');
+INSERT INTO messages VALUES(532,310181,'parse','blocks','{"block_index":310181,"ledger_hash":"81b4d83a623a55019ad720c1bd3ecef100d8ca49deda91b8ba6ffe9802764df7","messages_hash":"a972f87acd57c8bbefb7bc372e021216008cc4ad482ceaffe9cdda885e03dfdc","transaction_count":0,"txlist_hash":"82cb247f5dfeeb31342861a77bceb74957ceb62932de536d837988a2f471f599"}',0,'BLOCK_PARSED',NULL,'5477566c887715cea87a2c06830a3f03ecf33fb844944e71792f53f00d531751');
+INSERT INTO messages VALUES(533,310182,'insert','blocks','{"block_hash":"a7e66b4671a11af2743889a10b19d4af09ec873e2b8eb36949d710d22e1d768f","block_index":310182,"block_time":310182000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d0e42cb3e020368299b379773d6a7e662a101225e8dbed879a9b3de9d9df664');
+INSERT INTO messages VALUES(534,310182,'parse','blocks','{"block_index":310182,"ledger_hash":"935e40f93195d450b292481aac481f445d2de8786d04d26263f4adc5a348704c","messages_hash":"151b050b1997cb9d24fc2bfc4c649433d2be4068fab9203f01ad75a4b74b339b","transaction_count":0,"txlist_hash":"1a48f71be7c5f3baa68d68c393a6c68d63596c561005ac7c6df457584fc18c6a"}',0,'BLOCK_PARSED',NULL,'3d727444a65ef9db590a9a0ae7d9a65db12e53546117aac19935c11dd1ec543a');
+INSERT INTO messages VALUES(535,310183,'insert','blocks','{"block_hash":"85318afb50dc77cf9edfef4d6192f7203415e93be43f19b15ca53e170b0477bb","block_index":310183,"block_time":310183000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e22abaf2376ad7b6af9277e7fbadad0c82ca06a8d4f2db78f10e0c0072e23b8');
+INSERT INTO messages VALUES(536,310183,'parse','blocks','{"block_index":310183,"ledger_hash":"268bf841be40615472bf4c60b5306d0763ed50510fbb55c47a6a0ac726e8701f","messages_hash":"140a5d6a6e2ff7c655c8a001fecb2984ef92b88c7f38f85678188dfb0960b170","transaction_count":0,"txlist_hash":"82d2641b1ab0cdf057e8e68b0cd7824ff8c60222f8d4e23125d68beacf2b3293"}',0,'BLOCK_PARSED',NULL,'cd15d7d8f657bc7df5cedf83efc2ecc4a1fcd563524080fc729ed04640ac7b46');
+INSERT INTO messages VALUES(537,310184,'insert','blocks','{"block_hash":"042a898e29c2ebf0fdbb4156d29d9ba1a5935e7ed707928cb21824c76dd53bfc","block_index":310184,"block_time":310184000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d8a42fa700c2aadec64230ada86201e182cba09a9bf20e5f97a51641a909eb0e');
+INSERT INTO messages VALUES(538,310184,'parse','blocks','{"block_index":310184,"ledger_hash":"64323488ca4d32a1f548842db4ac772b750599ce6222020ef6149b4a0e54a935","messages_hash":"35b1d8731911e0736da008b74e2c12fe980be036e1db49770bf655871cb259fb","transaction_count":0,"txlist_hash":"9a7f77be4828adcfee8ea1f106ecbcb55ae758d5098a6fa1aa3a494af957f7cb"}',0,'BLOCK_PARSED',NULL,'a8502b6effb16162fe990562ad97b145b78d7b26635825f22f7f5fa9ec7218c2');
+INSERT INTO messages VALUES(539,310185,'insert','blocks','{"block_hash":"bd78c092ae353c78798482830c007aac1be07e9bc8e52855f620a3d48f46811f","block_index":310185,"block_time":310185000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de8b7e7ea0ce965e9b5d9e1cfae8dc02cd95f1245228dafbeba114f338000a8d');
+INSERT INTO messages VALUES(540,310185,'parse','blocks','{"block_index":310185,"ledger_hash":"8946baadef2e19c5e4e4b2d771b36982a217486dcb0f95097b41ce633e61da94","messages_hash":"7428246a3a61bf832ef19399079941cdca0f63d803402ffc2f545a3818c6dee1","transaction_count":0,"txlist_hash":"8956f030f917aa87d9b309bd845b59cb37ba2265184ff1f67bfa4b61e32d43c3"}',0,'BLOCK_PARSED',NULL,'f7f0937bd5fe5364cdae9dc9db4c9bc12eb65b645f597a8485df3c1100c47a51');
+INSERT INTO messages VALUES(541,310186,'insert','blocks','{"block_hash":"e30a3a92cc2e5ad0133e5cee1f789a1a28bea620974f9ab8fa663da53e5bf707","block_index":310186,"block_time":310186000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cfa251b23a3060d36fc58e0ff2dcedb1e38dd076aae6c443122a9bfcd275ba4');
+INSERT INTO messages VALUES(542,310186,'parse','blocks','{"block_index":310186,"ledger_hash":"e68b5525927cfee15fefee02a16fd700abf6b6e7b4e32e57df7d324fae7ae090","messages_hash":"b79d05b5c0be3a83925d8c966b40bafd0cf6d2c8281db588dbf0b8ba543d233c","transaction_count":0,"txlist_hash":"137a7a7a1ae71a317f7c3c48f7f84e4a782a515fa2096c2abe2c1adeab4e8256"}',0,'BLOCK_PARSED',NULL,'848473bb97fc5207005ff0b264b311515ab025dca7fb07f2e8443ab974c6e749');
+INSERT INTO messages VALUES(543,310187,'insert','blocks','{"block_hash":"fc6402c86b66b6e953d23ed33d149faa0988fa90aa9f7434e2863e33da2f3414","block_index":310187,"block_time":310187000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f00c131bd6bc4600a0a42fb5e56e0dfe0e8f88bbcec7a4cc427910988105850');
+INSERT INTO messages VALUES(544,310187,'parse','blocks','{"block_index":310187,"ledger_hash":"c42efa24d48339fc341908a30c6679beeadc9f5918d8d3e62d5c4b06fec845d5","messages_hash":"1172f0a9041795ff450522332f728ab624d8622c69ae9380222a2d081dc0c009","transaction_count":0,"txlist_hash":"cc587cfca94dbe30e6670dbfc4a5e3ec46732731f5c66aab9c7ef9028b05c22a"}',0,'BLOCK_PARSED',NULL,'6ac8a1b3d9f2f47b817f64bd17f27ff5a640288672a113b96e91cc97a1cad740');
+INSERT INTO messages VALUES(545,310188,'insert','blocks','{"block_hash":"85694a80e534a53d921b5d2c6b789b747aa73bf5556b91eeed2df148e2ada917","block_index":310188,"block_time":310188000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'72164de9117d8a204a8d07c0777d5035d02d4862d211d3a3ede158a13b164ff3');
+INSERT INTO messages VALUES(546,310188,'parse','blocks','{"block_index":310188,"ledger_hash":"13de1d9b569d5d2525ecfa39b1eda69f9fd474683b6e34554b1a755125e96e5d","messages_hash":"13c68f42ff0cee68be1d5f4e3f4a20eab37bf861727baae26bed7dac4a5b3b2e","transaction_count":0,"txlist_hash":"2fcc160068a4eb52ac410937237ec3813bfee52750bd8cef939738b81c8ac30b"}',0,'BLOCK_PARSED',NULL,'75a489f3b8aff324ff743717d0067ad97ea56ede26f1e8c1eeb10dee96fb5be1');
+INSERT INTO messages VALUES(547,310189,'insert','blocks','{"block_hash":"7c036dadf19348348edbe0abe84861f03370415ed2fec991b9374dbb0ca19a06","block_index":310189,"block_time":310189000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71384f6883d317c84088e357a0704b408b9e167dbf6311ff014d2cb88cb3922c');
+INSERT INTO messages VALUES(548,310189,'parse','blocks','{"block_index":310189,"ledger_hash":"582b8b3d3a226d3f6df497cb933ed5f42e1e992c0c25372ec15de424c0a33368","messages_hash":"6da4d2e4e687a0dd00fb6771c3373e860d1869fe211991730ce8767a3924930a","transaction_count":0,"txlist_hash":"ae81616b5fd77e3672318a0a5ef1b20106afc3ce7d730c8beef848d73ba53a0f"}',0,'BLOCK_PARSED',NULL,'706181eab08d095ca15aaaf372e36109bdaf21afd4645d09235c764805b5891d');
+INSERT INTO messages VALUES(549,310190,'insert','blocks','{"block_hash":"d6ef65299fb9dfc165284015ff2b23804ffef0b5c8baf6e5fa631211a2edbd8d","block_index":310190,"block_time":310190000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4ee3af67ab3e048dcf075739f06ab0fd3e80059474df037611428deee99f591');
+INSERT INTO messages VALUES(550,310190,'parse','blocks','{"block_index":310190,"ledger_hash":"d4c49d5e3aaf21e6fe1c30663d0ba93f7dc9ddb03611e3751fba9aac8d382ac4","messages_hash":"87c4cb256b7e744bf4bb9c028ada9f03cb3fb33f7a346569270ced535a140acc","transaction_count":0,"txlist_hash":"48c70376450aa80a2a920e4b871d27d1efe703b377ba446a262e06c9a6677611"}',0,'BLOCK_PARSED',NULL,'4148f313edc6be17ffa9afee76445dc1d75fe1c03f667c911d557a950c054b08');
+INSERT INTO messages VALUES(551,310191,'insert','blocks','{"block_hash":"5987ffecb8d4a70887a7ce2b7acb9a326f176cca3ccf270f6040219590329139","block_index":310191,"block_time":310191000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a40403569ce8538df8e74184be2bd6d5dd887c6a414e3dff157a9b1170fb4d9b');
+INSERT INTO messages VALUES(552,310191,'parse','blocks','{"block_index":310191,"ledger_hash":"23d340ff3f1979a43bd1336c9c882b5ee01c646cd104060feacdb5db78025cca","messages_hash":"e6d9afc16c470f029d83bc5688b74fef372ce3ce9729502c4c4bb66029718d52","transaction_count":0,"txlist_hash":"704b02ead8ed3e4e6505225fc620073993e9c3b13209bff9b5f638d5f21ce23b"}',0,'BLOCK_PARSED',NULL,'f396574ee59237c2c6e3a3f08836a3bb5657b85d780700c9e42017adc238fd97');
+INSERT INTO messages VALUES(553,310192,'insert','blocks','{"block_hash":"31b7be43784f8cc2ce7bc982d29a48ff93ef95ba18f82380881c901c50cd0caa","block_index":310192,"block_time":310192000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c77b9405a5e309a0f14265135513c4dbf8edf9d76cb652043d458f14743642d4');
+INSERT INTO messages VALUES(554,310192,'parse','blocks','{"block_index":310192,"ledger_hash":"cd18860851bceba4a0174480ccdc0f6ddc47b31ce71af8ec8500cb07f75d9da9","messages_hash":"39ca55962499e7a312b65dc560e59af1fd7ed815324ba4871245bee81f27142f","transaction_count":0,"txlist_hash":"17018479e73908fd235313691ed8464b93a0a5db774d3608294e23fba918c672"}',0,'BLOCK_PARSED',NULL,'b3fc6d1fdd5384ebd161a2443c7e222e0234862b52a84f66dfb9a2ad472ac4a5');
+INSERT INTO messages VALUES(555,310193,'insert','blocks','{"block_hash":"ff3bb9c107f3a6e138440dee2d60c65e342dfbf216e1872c7cdb45f2a4d8852a","block_index":310193,"block_time":310193000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29cbf9173e96453ae2358b8b530402e91a015ee5b7de31c4d0492ed7c0f4ca22');
+INSERT INTO messages VALUES(556,310193,'parse','blocks','{"block_index":310193,"ledger_hash":"391e97ae7ccf5bc38ac72e7ad1256f24c28297c625bd9a789cba8231a5ade046","messages_hash":"2d7b4bc4a272129ea2c9d6b5ffabba1f9401980b42b47bad08461532576ac640","transaction_count":0,"txlist_hash":"d08696a916e09e242fd20a9f8314cd4fb6305e991b506c53e3ef3f77e2d1d6dd"}',0,'BLOCK_PARSED',NULL,'abc656c4bd1d6019aa58a7b4b1c2a3d3ac1a2b56909436857bfa9c326575141d');
+INSERT INTO messages VALUES(557,310194,'insert','blocks','{"block_hash":"d1d8f8c242a06005f59d3c4f85983f1fa5d5edcc65eb48e7b75ed7165558434a","block_index":310194,"block_time":310194000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09ee44af64e7aa4d84351634c2b9a9aaa99d1a6864bdd5d2915cf5198741b260');
+INSERT INTO messages VALUES(558,310194,'parse','blocks','{"block_index":310194,"ledger_hash":"9141c9b38087c7cf2b8c11ffd55c2eabcb3bb09f132ac0baf9c3779f628dd42b","messages_hash":"c37025b4cb18e69f8996e322f0540d9fb2524db4ae38859ecb56119a77d9dd90","transaction_count":0,"txlist_hash":"d5f418ef4569bb977ff73ab64235b3697d0f7f326f95696e6f63c56cdd180d6d"}',0,'BLOCK_PARSED',NULL,'4393eed2ffe3de9388cae5a032009233d705757c37436f30c5d808661ea8afac');
+INSERT INTO messages VALUES(559,310195,'insert','blocks','{"block_hash":"0b2f1f57c9a7546faac835cbe43243473fa6533b6e4d8bf8d13b8e3c710faf53","block_index":310195,"block_time":310195000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55b743c1eca79883925cd881c63ce4fca8918478842d77aadee2791fba8c14c2');
+INSERT INTO messages VALUES(560,310195,'parse','blocks','{"block_index":310195,"ledger_hash":"705918f002db29e7b3dfbfd6378f79d53e33c6ffa3948b2e3b5c85f85009bbde","messages_hash":"44333c1fbc3cce8955d3332e12464c5d7dd930aafe1484b2eae3a5f8d7a9365d","transaction_count":0,"txlist_hash":"d0165e09e04c2049de1d8582291e623c80477499203b702e46fb829390ed64c0"}',0,'BLOCK_PARSED',NULL,'be61a589d154b878199a26a51c69a9d6ce0812c4bc621f5561018884a5324cb7');
+INSERT INTO messages VALUES(561,310196,'insert','blocks','{"block_hash":"280e7f4c9d1457e116b27f6fc2b806d3787002fe285826e468e07f4a0e3bd2e6","block_index":310196,"block_time":310196000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0f66cac63275f6f014868bd45afc36f691f3bc71ed048abb2daea3ef2922828');
+INSERT INTO messages VALUES(562,310196,'parse','blocks','{"block_index":310196,"ledger_hash":"59e12df19e3c0e3e23a5d1e9783c75e236a000774a038553312919a0f46b8227","messages_hash":"16ac28193eec0393435c18d24fad2edf984750bbc25aba58946e6e718f8bd338","transaction_count":0,"txlist_hash":"57dc6e1a18ce4910ba32e109820e8e0630070251ec745e63557c98ce71dedd80"}',0,'BLOCK_PARSED',NULL,'1ab94bfc846a3bc35b73a739cc60e5f91e78d871854588a20800ded751f34c7e');
+INSERT INTO messages VALUES(563,310197,'insert','blocks','{"block_hash":"68de4c7fd020395a407ef59ea267412bbd2f19b0a654f09c0dafbc7c9ada4467","block_index":310197,"block_time":310197000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8528ec5eea032edd09405ddc2126e14508a0c728f5973fe8f013f9060ca5ce8');
+INSERT INTO messages VALUES(564,310197,'parse','blocks','{"block_index":310197,"ledger_hash":"a0e1817dfc258180fa1629710ff3b6026181a9042fecd2c8b0b5e38118199e07","messages_hash":"3f5b9f1efe7ef5c80a968126dfbb01f52b462087a0109a26545dc80d13790e04","transaction_count":0,"txlist_hash":"58d18f5f2362b4bfbf155b16fc4e8868b311286b25365f3b4b1a9bf73fab69b4"}',0,'BLOCK_PARSED',NULL,'92b0f81cb78a93d4a232f7cdbce66e6ab6bd7ebad3aff640e0e87436f4772b37');
+INSERT INTO messages VALUES(565,310198,'insert','blocks','{"block_hash":"30340d4b655879e82543773117d72017a546630ceac29f591d514f37dd5b1cc2","block_index":310198,"block_time":310198000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7799e7341034052555ea067514e76938a9fea755ab32d30b78c0aaebe5f03d3c');
+INSERT INTO messages VALUES(566,310198,'parse','blocks','{"block_index":310198,"ledger_hash":"ff51bfc670b1387bfce53781750e35a3bf69d907167cf9cf57e15613cc0ff3b2","messages_hash":"5e5cf3715a123e73f08baf1bd2a3471f0b2af521da005cbc953663678d733e6a","transaction_count":0,"txlist_hash":"1443d1c76f64272d6ea00fb8f78913e72c617c515a162c9f1c213be02d48008a"}',0,'BLOCK_PARSED',NULL,'98e598eb7a8751e717f69a2be53a8b2f89778b9e15dbf697309fbaf38c4b30fd');
+INSERT INTO messages VALUES(567,310199,'insert','blocks','{"block_hash":"494ebe4ce57d53dc0f51e1281f7e335c7315a6a064e982c3852b7179052a4613","block_index":310199,"block_time":310199000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56b99f531f3c99934edad7654eec39946a0e9f61114f097d9a9a3d1242d72edb');
+INSERT INTO messages VALUES(568,310199,'parse','blocks','{"block_index":310199,"ledger_hash":"e5f8f8f00de32f0d8d2b62eba27218edcee77563960fe074da5ae86bf5b553f1","messages_hash":"152b66aa4612046bf3f69f278f7e650bce71216556952dbdfedd2417aadab7ed","transaction_count":0,"txlist_hash":"87fca2825c48b9ec9db31e2d6e8e8354a0ceff7fa3df299dc2868c7d616a9599"}',0,'BLOCK_PARSED',NULL,'8a90a7b407fe09eab06236ff5d9b07707c1c0c396d48c213c40d05c5a1f8e225');
+INSERT INTO messages VALUES(569,310200,'insert','blocks','{"block_hash":"d5169d7b23c44e02a5322e91039ccc7959b558608cf164328cd63dbaf9c81a03","block_index":310200,"block_time":310200000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d344b52162287a2724bb68953ecf9e25ee5048ac5f1c4c798f11c2ed0e3860');
+INSERT INTO messages VALUES(570,310200,'parse','blocks','{"block_index":310200,"ledger_hash":"fd8fb664576868d4f1c843b28efc7ee028417034a33d6f5635238bd13c701b2a","messages_hash":"5755372731f19b400c2457ff201c911c724e8a28e6957cee53452000c7f8dde7","transaction_count":0,"txlist_hash":"a88ca1fa9d0dfccf2e49323a500ebdfab7ba13b60dc9011c6b510741148dbf54"}',0,'BLOCK_PARSED',NULL,'4f4ebc1f61e882150afc5ef16ad9da987be9c6d37abe81944df92f60ffe52436');
+INSERT INTO messages VALUES(571,310201,'insert','blocks','{"block_hash":"8842bf23ded504bb28765128c0097e1de47d135f01c5cf47680b3bcf5720ad95","block_index":310201,"block_time":310201000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae4304cfde0da5c1f0988cf063b79cd0f3e3de461ff103be9b0ab9f6af40313e');
+INSERT INTO messages VALUES(572,310201,'parse','blocks','{"block_index":310201,"ledger_hash":"7e2dbbf14c0620ac0fd4e0e676857e2d055fff80cadfe2d9d0dfe07d36738722","messages_hash":"5e9645b8acfc57e5637842893c6ba66daa306bb2141d351a509b6f176db61e54","transaction_count":0,"txlist_hash":"f20074cd00170edae909606eb1bd3937afaa3711590eb7d788c564ddbdc6600f"}',0,'BLOCK_PARSED',NULL,'ab236df3946b4ee6fc4b6a3a67323f2a378a7ee0114107c6885cfd4238a2b594');
+INSERT INTO messages VALUES(573,310202,'insert','blocks','{"block_hash":"95fa18eecbc0905377a70b3ccd48636528d5131ccfa0126ed4639bc60d0003d8","block_index":310202,"block_time":310202000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0d72b3a3bfffadde39dfaa7d4a69a838c2aa8172a221f17c18e2364abe693bc');
+INSERT INTO messages VALUES(574,310202,'parse','blocks','{"block_index":310202,"ledger_hash":"084c24e81842ec8edc4144ad64df9f12377318fe4dc491b307b7d377f3f81b2b","messages_hash":"7a5c5aa34df30375a10c02e40122d512dfe7c27ec690fbb597dd000db891a021","transaction_count":0,"txlist_hash":"76c57648e216c5f191f04b79d2a1149d273b2a58a6b4956eb1d077abd2cfc113"}',0,'BLOCK_PARSED',NULL,'d8366fc338b8dc61c3a5f6564ac7fdc52e6ddee7d995ee5451505452813e49c6');
+INSERT INTO messages VALUES(575,310203,'insert','blocks','{"block_hash":"ab15c43e5ac0b9d4bd7da5a14b8030b55b83d5d1855d9174364adbebf42432f8","block_index":310203,"block_time":310203000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e36e828ce5d26dec0eddc41b982cde60d567c2a6226a1c1dc5d8d3c2b06f6f1c');
+INSERT INTO messages VALUES(576,310203,'parse','blocks','{"block_index":310203,"ledger_hash":"4b0b8d82a5a2c8600a09b1050eed4440d9e0f2d817498f3e32ba27ebcfbaf6d5","messages_hash":"78b6c7393349880c72ffd6fbed6bcf04c7c028bd9ba95714c5c549e5d62129bd","transaction_count":0,"txlist_hash":"3e49b55d1309646ffce3b91d3cc3c53c488377518fe30cf6397c0d3c2aec45f4"}',0,'BLOCK_PARSED',NULL,'476415fe9265d2f042892203e368f5f3c31096763052551c59e58b8be4529242');
+INSERT INTO messages VALUES(577,310204,'insert','blocks','{"block_hash":"18996fb47d68e7f4ae140dc1eb80df3e5aba513a344a949fd7c3b4f7cd4d64cb","block_index":310204,"block_time":310204000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ce8e2f97776255b3c8f21e4d378e74cf8fa57433063341327919df072366061a');
+INSERT INTO messages VALUES(578,310204,'parse','blocks','{"block_index":310204,"ledger_hash":"9f81657142f7523c01595bef4e9008d8525c2337f6d90140e05abad619d94416","messages_hash":"35b8bfa4ff2dfaea86dac467cbf8bc2746ea25ec23bb63a185999e852216f155","transaction_count":0,"txlist_hash":"89015233602aeb77d2097a328f2a5a065245131ac88ec6ac2d2b9b056e7764b6"}',0,'BLOCK_PARSED',NULL,'39be333f7dfcdce95c229942a888dcb23bed70e782aa1f6873b38df3a67ad422');
+INSERT INTO messages VALUES(579,310205,'insert','blocks','{"block_hash":"5363526ff34a35e018d1a18544ad865352a9abf4c801c50aa55742e71630c13a","block_index":310205,"block_time":310205000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fd27705d444769231661fe4086b541205e21f435589fcef3b6a2c5cfff55f56');
+INSERT INTO messages VALUES(580,310205,'parse','blocks','{"block_index":310205,"ledger_hash":"fd1cdea0193ed914cc408968efa42377d7c69453aa9bdf8bdf0731d4b1501b01","messages_hash":"a9dccc9708940608179b8524499d8c07bb34ff3a1e938431c1d77a5c20fc1249","transaction_count":0,"txlist_hash":"1ea101d94c29967a141d71d3b8b15b278f3530c4c16c7e0219b892072d89f8f6"}',0,'BLOCK_PARSED',NULL,'72305ff08476ac296d2513f0fbe1b366478cc403397188351b80882d6b700e36');
+INSERT INTO messages VALUES(581,310206,'insert','blocks','{"block_hash":"0615d9fca5bdf694dca2b255fb9e9256f316aa6b8a9fc700aa63e769189b0518","block_index":310206,"block_time":310206000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91f7f3eeca55330757db7b862807489080abcca95386741dfc5f013a6232efff');
+INSERT INTO messages VALUES(582,310206,'parse','blocks','{"block_index":310206,"ledger_hash":"5845d6bedf81fba710999bf2954b3c1f3f9ca007a09d812ccae8e2a6d3b9bb07","messages_hash":"35cfac507aa4fdf624ab85dc72d7154f46f183596a34bed1a60014a27c6285ae","transaction_count":0,"txlist_hash":"e26d49ceb523c99c2583e7bec1b4bbe1f8686c2bd009626fa4c8966c642a1bb8"}',0,'BLOCK_PARSED',NULL,'a26efbfc24fcfda46184a28a4d8c6ceccd109dc2cde393e63f299ee784b7e401');
+INSERT INTO messages VALUES(583,310207,'insert','blocks','{"block_hash":"533b4ece95c58d080f958b3982cbd4d964e95f789d0beffe4dd3c67c50f62585","block_index":310207,"block_time":310207000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'427ab14fe74f4a8fbce2c528c4b686b1fea8ba488fdf7e033b2a824ed67d64ff');
+INSERT INTO messages VALUES(584,310207,'parse','blocks','{"block_index":310207,"ledger_hash":"b65cf7069a0eb909357cd5d45129b70c576eeabc0cb13404029d088e24a2be34","messages_hash":"b2602edfb952cc3e4e9539bc38a9ee49e933971fd47237c42778a39a4d8efd44","transaction_count":0,"txlist_hash":"596206790b52de9f791b99f7e71e3543cec87d4c3b9439ded8b7cbcd182b08e6"}',0,'BLOCK_PARSED',NULL,'3b9b5985d9bbbdceff0854876f8444680fead4d86c3c99ee8ff270e8b10aaa21');
+INSERT INTO messages VALUES(585,310208,'insert','blocks','{"block_hash":"26c1535b00852aec245bac47ad0167b3fa76f6e661fc96534b1c5e7fdc752f44","block_index":310208,"block_time":310208000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5297e3a69c45da7f65c66392c9ea6a1c7c01c9ad9b6fbb891142b69a5b20abe');
+INSERT INTO messages VALUES(586,310208,'parse','blocks','{"block_index":310208,"ledger_hash":"aa54dc010fec8a0ef3871c91667c45e88ffac08ee2fc93274d7ad1b2b5b28102","messages_hash":"fa2249ac9d2db16f2071d109328ff02df2aebdec916bee679b89b5100c0f7e9f","transaction_count":0,"txlist_hash":"3414e0af132ec9df1da5a4304a3c94529bd915631443d34b759a017ad166863a"}',0,'BLOCK_PARSED',NULL,'a9a1f0eebd94b2b54b8cac12cb6946d0ff8fd84a30df09c4c557e9a2b0739bb6');
+INSERT INTO messages VALUES(587,310209,'insert','blocks','{"block_hash":"23827b94762c64225d218fa3070a3ea1efce392e3a47a1663d894b8ff8a429bf","block_index":310209,"block_time":310209000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'689375c87459c2942f7b2d301f3f43b9740611872fe83f10204c84acb48cd4a3');
+INSERT INTO messages VALUES(588,310209,'parse','blocks','{"block_index":310209,"ledger_hash":"c7866cb2098c87c1333da5b3dce4c84bdeb620c9f1898456b7cceb23e4027df0","messages_hash":"70bef389a3fa6e1ec5a6e3a6d8d5c2afc9f7af76c929ba6f48b46f24359d7b6a","transaction_count":0,"txlist_hash":"56dce3d0e9dfa62c44e422f41ecc1517bc98302341496db287adf309f666d3bb"}',0,'BLOCK_PARSED',NULL,'293854c5bd1d6fd214eab6fddfbb37c65b5f38c510722dd8e008d1152c2e25e8');
+INSERT INTO messages VALUES(589,310210,'insert','blocks','{"block_hash":"70b24078df58ecc8f7370b73229d39e52bbadcf539814deccb98948ebd86ccc0","block_index":310210,"block_time":310210000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ee20d4df3c72e29bca5d418cf37c1ff2660f9e51b984c06f90180b1e1b9b83b');
+INSERT INTO messages VALUES(590,310210,'parse','blocks','{"block_index":310210,"ledger_hash":"207a1c90d1658d55fa0fc2e1507fce98521647ab5c4d11099c2742279cc92b3f","messages_hash":"53957a0ac723e36951f1c4423e09ab7c5259a88654ecad878260c082792bbc12","transaction_count":0,"txlist_hash":"ecd4bb45bef1d8b395add25118bbeedc8d96f818a471bd7606554946a023b151"}',0,'BLOCK_PARSED',NULL,'b3f2a777d5cc3570818bfe65ede9d2069a7b9100b5c60a5efeb0b3baa2e5d268');
+INSERT INTO messages VALUES(591,310211,'insert','blocks','{"block_hash":"4acb44225e022e23c7fdea483db5b1f2e04069431a29c682604fe97d270c926d","block_index":310211,"block_time":310211000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5174fed35fa6d334aff5ebdcf08f24c3a43680f13d66f959306f23ef0c0b2512');
+INSERT INTO messages VALUES(592,310211,'parse','blocks','{"block_index":310211,"ledger_hash":"dfc7fe172f9bc77148a1bfad5d441a3688f718b4985406d0cefd4c4dcd926208","messages_hash":"2d5af408810e4075f3d957c69999abb481dc3e950cd616b92c9df0e32261781e","transaction_count":0,"txlist_hash":"f999268e3400907f85a0448d124df4d139b228327721fad7ad29ef595b0d16c9"}',0,'BLOCK_PARSED',NULL,'d288c6f347ed72e391b0b8e228bbaf5bedbca3bc546cebb4b0e5f65a3bb25328');
+INSERT INTO messages VALUES(593,310212,'insert','blocks','{"block_hash":"6ef5229ec6ea926e99bf4467b0ed49d444eedb652cc792d2b8968b1e9f3b0547","block_index":310212,"block_time":310212000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a061b68703209c664c0872ac1e0a1ad4956759fd038af7b95837099e4860a507');
+INSERT INTO messages VALUES(594,310212,'parse','blocks','{"block_index":310212,"ledger_hash":"32a39bff0606ec93454a2cb144c0bbd1939bf2be6a2ae369b885afc0b5ef33c9","messages_hash":"0d662eabb735aa267564ecbdbfc3a244574284de980c67494d8285a7380e6116","transaction_count":0,"txlist_hash":"2e46422b38cddef2d8a10b343115c5e587b5456480fb1a019f0a5d541e90afb8"}',0,'BLOCK_PARSED',NULL,'8c678fb3967e3bbd8563bcd4475bdd2a28762c86abd812503669a14a554f493e');
+INSERT INTO messages VALUES(595,310213,'insert','blocks','{"block_hash":"17673a8aeff01a8cdc80528df2bd87cdd4a748fcb36d44f3a6d221a6cbddcbe7","block_index":310213,"block_time":310213000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'350b6ebe36e8f1f1076945bd75ea160f6f8415fa8b980d0003614e80c148ad8b');
+INSERT INTO messages VALUES(596,310213,'parse','blocks','{"block_index":310213,"ledger_hash":"15968873880e97e849e59971d4ef19881b1c11c3148dba966f51d986c59ccf36","messages_hash":"7ff8320d35d5cb301432d711ec4988360ac3c2a81e7751fbdc78a2f1119e8fed","transaction_count":0,"txlist_hash":"fa1e7562a89ee572607e6cdbf26c80d4ee1aac2bcd45374d166e2e993f8672cb"}',0,'BLOCK_PARSED',NULL,'9562e7b66ecb28bb446cf2984738563c17694b072876d5ccca346119764fddef');
+INSERT INTO messages VALUES(597,310214,'insert','blocks','{"block_hash":"4393b639990f6f7cd47b56da62c3470dcbb31ef37094b76f53829fc12d313454","block_index":310214,"block_time":310214000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'96d1831b5938392577bbb50ccfe6321b3d626632f57bc182a39f8ae5a55003b7');
+INSERT INTO messages VALUES(598,310214,'parse','blocks','{"block_index":310214,"ledger_hash":"dcbdc463154fe49a7f22611fcb53e5ca78501424ba741040d89cac9db0a03ac4","messages_hash":"a012b5b4352afd51fd4b1bd5709e385f3bf5cdb212bbe99e2cca68de491c4db0","transaction_count":0,"txlist_hash":"5928d3221dd0bd142368585dc56f9f8a68885be95b7ad46c35bc37fbc61f651f"}',0,'BLOCK_PARSED',NULL,'d492bda371bf51bf84040fcdc5f6d3f9cacea199c68df71eb6683788e12981f4');
+INSERT INTO messages VALUES(599,310215,'insert','blocks','{"block_hash":"c26253deaf7e8df5d62b158ea4290fc9e92a4a689dadc36915650679743a74c7","block_index":310215,"block_time":310215000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'af5dec24ba8aa549acd8813b075fef8a8d5c95a4b1b353f8ba26cdadfa845c21');
+INSERT INTO messages VALUES(600,310215,'parse','blocks','{"block_index":310215,"ledger_hash":"6047855f1c691f27ade1cc4c587f1c11ff68f5f5bd7959a23f801e5da7773eed","messages_hash":"f2918e64a3525ff790be88f04d060c7fe24144818d340cfa90361e4ee688ddf6","transaction_count":0,"txlist_hash":"b6410b25a5d6f17a5431f621d6226491bcb2ed97dac543c06e832cdaa8853d5a"}',0,'BLOCK_PARSED',NULL,'a5a84976a7cac04454dc122b845ec648f492b60c0e94410de766677e0643e94e');
+INSERT INTO messages VALUES(601,310216,'insert','blocks','{"block_hash":"6b77673d16911635a36fe55575d26d58cda818916ef008415fa58076eb15b524","block_index":310216,"block_time":310216000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'551c6d4cb4fcafa5fecfcee78983907daad2a6b86b2e58d0e3bccd5ffd79111b');
+INSERT INTO messages VALUES(602,310216,'parse','blocks','{"block_index":310216,"ledger_hash":"a12fbb09858868de79095c8e3222f6fa179f2f00bc3c97c8205fd9367ae05aef","messages_hash":"2945a07d5e95f38bac8f3c506d481f03288a461050c31a933d1abefae694aac4","transaction_count":0,"txlist_hash":"f8b3b6d36fcb97071d826e68d2e6e5bc60f982c470e68644d94a6ec1342d0148"}',0,'BLOCK_PARSED',NULL,'db93d47f69c0953824671082d2614e3d21b0ed0e7ee8ba84d57043fac532e896');
+INSERT INTO messages VALUES(603,310217,'insert','blocks','{"block_hash":"0e09244f49225d1115a2a0382365b5728adbf04f997067ea17df89e84f9c13a8","block_index":310217,"block_time":310217000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45f12047d12a530fee3cc228d0f762328ec8ed680a0b75465b052a64e568251a');
+INSERT INTO messages VALUES(604,310217,'parse','blocks','{"block_index":310217,"ledger_hash":"419d8dc096dd58523cd4822748754158f0c11945bbb62100cb5268cd802580a8","messages_hash":"0e0c36dbe732237319afed9cea84d711b9eff7643f6d6a39031df4c2779a8161","transaction_count":0,"txlist_hash":"a61fb813a69ed40eae923918a73a8dfe51dd6fa14f5426ada1a5a543ab7bb0ce"}',0,'BLOCK_PARSED',NULL,'d1141c24a13d9f78be46bc360fc18ed199ee5ab6b2eb8ff6cf324c3ceda327b9');
+INSERT INTO messages VALUES(605,310218,'insert','blocks','{"block_hash":"3eb26381d8c93399926bb83c146847bfe0b69024220cb145fe6601f6dda957d9","block_index":310218,"block_time":310218000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9279afb46eb4bc1e4df564ec6c18d072c492977fcf9fad206a58570f8ba72ff');
+INSERT INTO messages VALUES(606,310218,'parse','blocks','{"block_index":310218,"ledger_hash":"a36c07f7fdfaf7878d73baf14aee58b42220b2b2411fd1864450ec6ce1fbd173","messages_hash":"37046f25c853793d3b67aeff55d55b88ec468be97297d6415212751a77e1e699","transaction_count":0,"txlist_hash":"dc1d785fe75a506a691f0eccaf752017fbaf5ce2b7225bdde3fb538281698e4e"}',0,'BLOCK_PARSED',NULL,'6b6512e7f58e8fa014f2bf1dd3c75acd48ffce0c5a03d9cf4e81eab7ac8260ef');
+INSERT INTO messages VALUES(607,310219,'insert','blocks','{"block_hash":"60da40e38967aadf08696641d44ee5372586b884929974e1cbd5c347dc5befbf","block_index":310219,"block_time":310219000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c381256f8960525bacf55e946fbb14cd4502554640c556470aad4b29b5532b4');
+INSERT INTO messages VALUES(608,310219,'parse','blocks','{"block_index":310219,"ledger_hash":"7958aa94088ecf0384a9a6b0569e9507d208e009e9ce139c823960e40996a47e","messages_hash":"1d6813a55c87558ff4f76f83ae1031c8a3256294592f7f3245009634ffef4bba","transaction_count":0,"txlist_hash":"c9aa622e3b372ba0c76efe97c1443cb89f2dfbcf8ff5e28dedf9b3abab3d6384"}',0,'BLOCK_PARSED',NULL,'34f5d47a220fbf43ff29b0c04cfeeccf06dfcade8495d45d457096282c9dfd2d');
+INSERT INTO messages VALUES(609,310220,'insert','blocks','{"block_hash":"d78c428ac4d622ab4b4554aa87aeee013d58f428422b35b0ba0f736d491392ef","block_index":310220,"block_time":310220000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9083a7a81ca1de84abea3bfdedd700cc88bc5dad62c2b52ecc246817b9f736a5');
+INSERT INTO messages VALUES(610,310220,'parse','blocks','{"block_index":310220,"ledger_hash":"00907c4368c2dc76d1ef98a0ba3c86bc4746ed2734b0c10f3797e0af70714240","messages_hash":"8f37c582e65141859105bcbe6b7829719b536e1bc10a49cb1bd858885551d5b0","transaction_count":0,"txlist_hash":"d0c3959f899232cdb5fed61bac2c09e45254959e8bc1a076acb3ba5e3ee63e65"}',0,'BLOCK_PARSED',NULL,'4304b4c14cf36584efcf841947eda164a86b6f2100b9d28ceb79575a2d6225eb');
+INSERT INTO messages VALUES(611,310221,'insert','blocks','{"block_hash":"cf5263e382afd268e6059b28dc5862285632efe8d36ba218930765e633d48f2d","block_index":310221,"block_time":310221000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f36a749d8d72db6450d814e070b727cfd8632f68a8291c14852490324bf2d740');
+INSERT INTO messages VALUES(612,310221,'parse','blocks','{"block_index":310221,"ledger_hash":"2e42f882087dc2158036592298321113f1b34e15b414efa6d43364c06d368540","messages_hash":"c6c60d14f2a1632c741d9c7ade5c5d3b809ef46212288fcc2577031b688d7a4a","transaction_count":0,"txlist_hash":"cf40107f8d11aa8ba96b03912967f88c44e69e20d7105f497d5418fc08aa5800"}',0,'BLOCK_PARSED',NULL,'91bcd49b4a04608c294f87dd59f8dde27df657fa96ee4c8f1b264ade75941c24');
+INSERT INTO messages VALUES(613,310222,'insert','blocks','{"block_hash":"1519f6ec801bf490282065f5299d631be6553af4b0883df344e7f7e5f49c4993","block_index":310222,"block_time":310222000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4248abfca49196d55f2c45726545766151f6861fbf6da26131b4c25243671951');
+INSERT INTO messages VALUES(614,310222,'parse','blocks','{"block_index":310222,"ledger_hash":"00c4a5d41dd629bd0973c03152e4519214dce68498999c8dddc1f7a1cad28a82","messages_hash":"759e6c1e020dd941ca2b330f09b13ace383e8372390b94fe47dc1374bf512a4b","transaction_count":0,"txlist_hash":"6a012ee8e82d8d24b0a24d4bbab74cbe226afea1a9c1e129aceccd1d7591a107"}',0,'BLOCK_PARSED',NULL,'8ac49c8517475e490f416057bad81367f6727dbc8b51ff76cc087ff36456db76');
+INSERT INTO messages VALUES(615,310223,'insert','blocks','{"block_hash":"af208e2029fa49c19aa4770e582e32e0802d0baac463b00393a7a668fa2ea047","block_index":310223,"block_time":310223000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc54b3a4355c3c284b53dfb1f44ce838b047c604f9f2ebc559c13cac943f5706');
+INSERT INTO messages VALUES(616,310223,'parse','blocks','{"block_index":310223,"ledger_hash":"41c7a0fa22ebee9d55f2a3b118314293d155c349ba01069a23ddff76dc842955","messages_hash":"0deae5db369a00014094253ea4c2e18b8d47c39be5ee174fc9d3d651e462f6b0","transaction_count":0,"txlist_hash":"1080406ec3ccb84490487860bdd507637fa8fbdc68fc886d082bfcdf9ac835e7"}',0,'BLOCK_PARSED',NULL,'faaa1ec56349a14d22a27a6bf84b7eec83d6378457ada7c42de455c33cee37d6');
+INSERT INTO messages VALUES(617,310224,'insert','blocks','{"block_hash":"5b57815583a5333b14beb50b4a35aeb108375492ee452feeeeb7c4a96cfd6e4c","block_index":310224,"block_time":310224000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'078d20c0ed31448fb13bdd7a4dc7b6eda6261cdefbb2367c77935af478d8e189');
+INSERT INTO messages VALUES(618,310224,'parse','blocks','{"block_index":310224,"ledger_hash":"66c268462442b69efb56b29e08aae1a404d3543e0a20711e8998a31af45ee929","messages_hash":"24532ddb646f9c8b137a341c8a96c698c4bc68f7b729b6476953e60ebc76b19d","transaction_count":0,"txlist_hash":"1d5188bf347d72bc66239f3b4c709ecca24141c5474755c567f4176293f275af"}',0,'BLOCK_PARSED',NULL,'48adc22b662635cddc370d69a5ee354b93224eaf3801f5937812ddf2c127f95d');
+INSERT INTO messages VALUES(619,310225,'insert','blocks','{"block_hash":"0c2992fc10b2ce8d6d08e018397d366c94231d3a05953e79f2db00605c82e41c","block_index":310225,"block_time":310225000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bf260f19a43edf7f84ee4cef8fa5560687f8805a117a097487f61f86f5635cb0');
+INSERT INTO messages VALUES(620,310225,'parse','blocks','{"block_index":310225,"ledger_hash":"cf39fb28a7e4d4db7657bb11a30d592a15c049000d7ac86d4fb3d942bf879b95","messages_hash":"c8dbae5e6ad6bbb74dcd774787e221721f8f10896a536a45f4ba581232449aea","transaction_count":0,"txlist_hash":"61dccc2a6cdf50b56700c893611fac0dd6cccadcd672cd438452ebd30852ccf7"}',0,'BLOCK_PARSED',NULL,'18d26862f3c92073795c79c77727523ddeb2110317633665b7af436028f17f1d');
+INSERT INTO messages VALUES(621,310226,'insert','blocks','{"block_hash":"b3f6cd212aee8c17ae964536852e7a53c69433bef01e212425a5e99ec0b7e1cb","block_index":310226,"block_time":310226000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e187e5ba49dee6f348907d68ddd53fd318fc33639eb7dca88550d03226941bc4');
+INSERT INTO messages VALUES(622,310226,'parse','blocks','{"block_index":310226,"ledger_hash":"cb622a4d04645ad96d3e0006f2b7632e8b82e44206d6c1cb75212b059fe18de5","messages_hash":"41adb84f61b21dbcf0d72e8700aa686a3b0480a6b790aef7dd298232cb5427bb","transaction_count":0,"txlist_hash":"2c131ef357cdc433dce05cf915be1b2c243e51208c877852a19c67968caddca4"}',0,'BLOCK_PARSED',NULL,'622019f0be32e0ecdc566a8f0895b464b459bba4e36521caadb3e93495862843');
+INSERT INTO messages VALUES(623,310227,'insert','blocks','{"block_hash":"ea8386e130dd4e84669dc8b2ef5f4818e2f5f35403f2dc1696dba072af2bc552","block_index":310227,"block_time":310227000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c74eb7a4940aa84116098977dd790bc8bc2c256c68949c72a7600f5e27b3817c');
+INSERT INTO messages VALUES(624,310227,'parse','blocks','{"block_index":310227,"ledger_hash":"60ae4209347248a3f7ad39b6436627f06e45433f6b6dd89cfd3383d68974a41c","messages_hash":"fb5501d2647743f35d76c930765a5df2b226b798d1c1e39995d9698f8975dbe0","transaction_count":0,"txlist_hash":"200ccbec2ba0927612c50a1ce2a58f856ecbda876943bfc2d3404724fff1927a"}',0,'BLOCK_PARSED',NULL,'dce1cde78169fbd24ebfd87f7dcad64042be1205f40ebfe5023cf3fc691e1bc6');
+INSERT INTO messages VALUES(625,310228,'insert','blocks','{"block_hash":"8ab465399d5feb5b7933f3e55539a2f53495277dd0780b7bf15f9338560efc7b","block_index":310228,"block_time":310228000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b5fd0aebf343d4605e10305ee3d15b43777d897ca00f74a5448892b97c2c337');
+INSERT INTO messages VALUES(626,310228,'parse','blocks','{"block_index":310228,"ledger_hash":"798206ee77c9e2fc8fe943f9bf2074c9c2560f534e3304b944e2ed3c89ce8bcb","messages_hash":"dadd596ae77bd1f94fc5da78525ca52a70898b9c94f8c90ee16d21dbce71e2ab","transaction_count":0,"txlist_hash":"c8c9a18e8420e274c98c528e0d0636aba20f5a6c983135a61e9cd47d60123185"}',0,'BLOCK_PARSED',NULL,'8c60c863d776846db9802c44a3dbac4180a7b04d2320e3cbe1e50f0c364c295a');
+INSERT INTO messages VALUES(627,310229,'insert','blocks','{"block_hash":"d0ccca58f131c8a12ef375dc70951c3aa79c638b4c4d371c7f720c9c784f3297","block_index":310229,"block_time":310229000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02d565e9789f0c5b8ed9927b01ba62dd243d9837686c6fc6472dbbf34e3ed785');
+INSERT INTO messages VALUES(628,310229,'parse','blocks','{"block_index":310229,"ledger_hash":"becad39a4d1bc8d73a856fa1d2bfa251f29b23fec9448a91932dc610243fd8df","messages_hash":"36d03440afd4f38ef6a77601dc0f78b9627b883b700cfae60c8d72a9e9134c24","transaction_count":0,"txlist_hash":"1d817cb41854bebc85173e6c6c0a8e6ae5a1bdbbd1077a64265ec4c96d60ca45"}',0,'BLOCK_PARSED',NULL,'27a7c2e23715316670f30af3a16619720c4de41b87cccaf12d723ce3df9a2477');
+INSERT INTO messages VALUES(629,310230,'insert','blocks','{"block_hash":"f126b9318ad8e2d5812d3703ce083a43e179775615b03bd379dae5db46362f35","block_index":310230,"block_time":310230000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1e05a0f9e2be8cc035fcedef7f6b2eecb87a5c478df89c1184b44777c131b42');
+INSERT INTO messages VALUES(630,310230,'parse','blocks','{"block_index":310230,"ledger_hash":"e08eac4daa7d7bc70f2f47a835bb80993d6d6db06d8d8986101b717db1c62ed6","messages_hash":"c2516be4dc99763c3c9729e4500750c3c6bc282751fa840bba50261b55d78d1d","transaction_count":0,"txlist_hash":"d37fa640132bf2595891bfaa5d1d562495c780569e2a5d4f8863fd60d6396d95"}',0,'BLOCK_PARSED',NULL,'8140d34d63f1fe8f0f6f924fdaa7ac0fe632595003bb155b22e86849f3097f33');
+INSERT INTO messages VALUES(631,310231,'insert','blocks','{"block_hash":"8667a5b933b6a43dab53858e76e4b9f24c3ac83d3f10b97bb20fde902abd4ceb","block_index":310231,"block_time":310231000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f2e10f84c448880e8ee5fbd7363b0d4b99452ef1d87cd9621cfe8c5e1bdd4512');
+INSERT INTO messages VALUES(632,310231,'parse','blocks','{"block_index":310231,"ledger_hash":"a761c29e76c9d5090cd1d6424beb91d0a9fd9546c67ecaa6d4879177b6745b59","messages_hash":"d28b0def6c30f405a4772b0c79d951b65cdfdf2ab1974c332eed0ae90bc6cbb4","transaction_count":0,"txlist_hash":"7bdcbdcc058e4c3d39751316b39bc65594624dc79fc8556e2847c94fb5986200"}',0,'BLOCK_PARSED',NULL,'7525b7fa2fa22d0113e15d82da190f0929a9ab7ab6b8f0535f429b4bdcec45a5');
+INSERT INTO messages VALUES(633,310232,'insert','blocks','{"block_hash":"813813cec50fd01b6d28277785f9e0ae81f3f0ca4cdee9c4a4415d3719c294e8","block_index":310232,"block_time":310232000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dc74f8a916acf825ed73f909553fe48c0566ab893bf5740ad1e255def0c8f5a');
+INSERT INTO messages VALUES(634,310232,'parse','blocks','{"block_index":310232,"ledger_hash":"5da469b7e21ad8ec4fe7cc2f426dcaeb18a3a4a3c44385d529a8b252c77a9e43","messages_hash":"d459913eef43573187e8ad1c6eb5b0b568c6ad8f81c9ff8bcef33e8f90d1da3d","transaction_count":0,"txlist_hash":"721ab1fecac8b537de1c90225f23a62d02a6e8b392f5211a8e020d9169dc75f6"}',0,'BLOCK_PARSED',NULL,'60c4309678b370b6c361aa62b48a52becb93ff259fb7a17d803ebbe4c9ee63d1');
+INSERT INTO messages VALUES(635,310233,'insert','blocks','{"block_hash":"79a443f726c2a7464817deb2c737a264c10488cac02c001fd1a4d1a76de411d6","block_index":310233,"block_time":310233000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73631abdd3be8303bc526c5944399594d9f05ee5d1b299ec37ef11db67d67ba2');
+INSERT INTO messages VALUES(636,310233,'parse','blocks','{"block_index":310233,"ledger_hash":"d8531834d572acc01591997cac000185facc033e1ab72f8218a70d0ae3898914","messages_hash":"e60149bad1d1707535622f581a174706ec02007bc9cf745201bfcd1de425f23d","transaction_count":0,"txlist_hash":"a0b57a1491335a2fde88223b77d7c8a248101187be0b71894b6c56c426603867"}',0,'BLOCK_PARSED',NULL,'b9ef4f22af8bb57b7b7dfe44d97a3dfdc1ccb1b0967b98372e0d92695f9d7dda');
+INSERT INTO messages VALUES(637,310234,'insert','blocks','{"block_hash":"662e70a85ddc71d3feae92864315e63c2e1be0db715bb5d8432c21a0c14a63cd","block_index":310234,"block_time":310234000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'621485c3603de77f3d99d5aa88f53d57ca691eb51e61293bae20f7e60dc2d145');
+INSERT INTO messages VALUES(638,310234,'parse','blocks','{"block_index":310234,"ledger_hash":"0ac6803ab61e14bb08fd8051424565086ab11b4d33faef077f5a0732eec6f766","messages_hash":"516e650d9d411a8da1e7fd3a4fc2d9586c0bf4888080c8a777bcf7a7d9ed959c","transaction_count":0,"txlist_hash":"b719ec81bc5245492809b946a86c76c121148d506292a4ae125b368f1a24b72a"}',0,'BLOCK_PARSED',NULL,'eddd09d4e476703a97b20a559c65c617f3c29d8871cdf9be5c6dd7367251cca4');
+INSERT INTO messages VALUES(639,310235,'insert','blocks','{"block_hash":"66915fa9ef2878c38eaf21c50df95d87669f63b40da7bdf30e3c72c6b1fba38e","block_index":310235,"block_time":310235000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dcb5bfd010384e956034e58cfc0122f16a2cd8cf396dfdf6200ce112206109aa');
+INSERT INTO messages VALUES(640,310235,'parse','blocks','{"block_index":310235,"ledger_hash":"5f7de1c7fe45858dcc844604a77051d55de3b9dbb5f5d9910ead8bd0f3af48d8","messages_hash":"2b7bf49e73705d8f3087cf6e9105af6ca437f4500ed459ae8578963c4b2b7497","transaction_count":0,"txlist_hash":"8d81c116619e760608161facac457bb00d4e816c049afbe42f6e0f7d7f1d09cd"}',0,'BLOCK_PARSED',NULL,'4df2982dd39d8b7f969cf625becc7b715e62a7ac9ec2e486a442a43e528796b8');
+INSERT INTO messages VALUES(641,310236,'insert','blocks','{"block_hash":"d47fadd733c145ad1a3f4b00e03016697ad6e83b15bd6a781589a3a574de23e4","block_index":310236,"block_time":310236000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73a541a41c9f5cb2456edf839af605a6bcd1fceed1afc85b23ce6ec0afed8536');
+INSERT INTO messages VALUES(642,310236,'parse','blocks','{"block_index":310236,"ledger_hash":"c0437ca60921bb73516c31a74f78d2fb48d2c628b629c8f55c8fbb0060718d76","messages_hash":"34eae453b89d76bcd5396946c248050a29ef931a2df0f28b1cf2b0e95b8c6d4c","transaction_count":0,"txlist_hash":"1c50aa16f8543f1eee5c2585aa8f7ee373bdb58648b430189ef4d8c9b0b767db"}',0,'BLOCK_PARSED',NULL,'50994ac6cb05c05b501c5a72ba5a2808ae3e5e41b8a48b10986668af88cbf2e1');
+INSERT INTO messages VALUES(643,310237,'insert','blocks','{"block_hash":"2561400b16b93cfbb1eaba0f10dfaa1b06d70d9a4d560639d1bcc7759e012095","block_index":310237,"block_time":310237000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'512e80dbe76af10981413eaf3552c3ac218b173efee02d4bd9196e3e95625958');
+INSERT INTO messages VALUES(644,310237,'parse','blocks','{"block_index":310237,"ledger_hash":"4340ab34a083b38dbca477b6cc2479e6d70ffd6d6b9b75772068674297abadff","messages_hash":"8949c7e35cf5582b600bf0cdfc6fab59b8dc4aa5bd428a690ea7722d20e47759","transaction_count":0,"txlist_hash":"2f23795147dfb09a113607e442cdc926222a2b9c3dc173b9e92ab8560de20c9f"}',0,'BLOCK_PARSED',NULL,'5bab70976656c8c8a734a35298939281ef1f6ee71be6c6996f21574f034c4bc1');
+INSERT INTO messages VALUES(645,310238,'insert','blocks','{"block_hash":"43420903497d2735dc3077f4d4a2227c29e6fc2fa1c8fd5d55e7ba88782d3d55","block_index":310238,"block_time":310238000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cab56e3f5ec8ff3a772b00adff2910f6c87a570f33bc0b3ceb73e1dccfb2982f');
+INSERT INTO messages VALUES(646,310238,'parse','blocks','{"block_index":310238,"ledger_hash":"6a76891c10ff0f9416ae1a024b985d621154918bd8ab545980b57fd2d18c4af7","messages_hash":"9f0b86012f8bf36c17f7c3dd1ad2fcdf6d7f8bdd307f75f1c44c31a31ee80da9","transaction_count":0,"txlist_hash":"31d5717812d8f7e54ac8b7a000c7b599e2123a1de205cef6559b3930c466b961"}',0,'BLOCK_PARSED',NULL,'6d7ec69bcca39c0b6bc643f01de6e4bf560d7e6f1b21fa37c753e84dfb18a965');
+INSERT INTO messages VALUES(647,310239,'insert','blocks','{"block_hash":"065efefe89eadd92ef1d12b092fd891690da79eec79f96b969fbaa9166cd6ef1","block_index":310239,"block_time":310239000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1b91dbbf570a0ea987588447071b06aefe05b3fbefb7dc382a00799d77c478f');
+INSERT INTO messages VALUES(648,310239,'parse','blocks','{"block_index":310239,"ledger_hash":"1128bb89562fc3b112da425a3dee67adaf741a8021ee378bdfeb44af3b1b1fac","messages_hash":"7d301d9e81f060ea649f888ea9f86a71a4fa1c81803d7097b11c02819f37e860","transaction_count":0,"txlist_hash":"82b7482bdf98200b43d483dc7725ea9069ab96d897fa88dfafd73334132d362e"}',0,'BLOCK_PARSED',NULL,'8db095f42cdd4efd67eac99b6b0717a0bf6b2a13e50d7699c1cf3f4108220c8d');
+INSERT INTO messages VALUES(649,310240,'insert','blocks','{"block_hash":"50aac88bb1fa76530134b6826a6cc0d056b0f4c784f86744aae3cfc487eeeb26","block_index":310240,"block_time":310240000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8b262b06658472c1b2eddda1f781c13a818529380faf3acd8edf285dcdd780b');
+INSERT INTO messages VALUES(650,310240,'parse','blocks','{"block_index":310240,"ledger_hash":"be05624b84b2e76794f065f36b4e98d6c6c120f1d8a5db91957bbe7008ce3240","messages_hash":"916a66f7a82dc37f61cd55ba904767f3470aa0a01c8efc64676f56e9471337ee","transaction_count":0,"txlist_hash":"bfd037773e4ad5fedd072183d19e824c36cf21549c374f7d7dab3ac313a1542b"}',0,'BLOCK_PARSED',NULL,'5371ea4b8495114f37b5753c0eb52f6483e71fbdc821db5f22df8dffae740041');
+INSERT INTO messages VALUES(651,310241,'insert','blocks','{"block_hash":"792d50a3f8c22ddafe63fa3ba9a0a39dd0e358ba4e2ebcd853ca12941e85bee4","block_index":310241,"block_time":310241000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9b43e3dd23dd9aa084ba769ad5e9027edb5d18c676155a3f04c37fe3e01ca0f');
+INSERT INTO messages VALUES(652,310241,'parse','blocks','{"block_index":310241,"ledger_hash":"5abfdfb1aa42fb80ca4538062d152d965b6a7a56bd1e170a7a109409a4606b7a","messages_hash":"795e9868fc7b21c7c3b93882423c46776e928ef3bb589ad3a7563e71aca294da","transaction_count":0,"txlist_hash":"e0bccb8ee5ac848700b228d8d21970f33fcc7a2c091e4b1d1f7f71c09404ecbe"}',0,'BLOCK_PARSED',NULL,'0dd1e8cc2fb814475ecf018a9e8d7f61288f11c5f00cb9a9f331a5b6a36996a0');
+INSERT INTO messages VALUES(653,310242,'insert','blocks','{"block_hash":"85dda4f2d80069b72728c9e6af187e79f486254666604137533cbfe216c5ea93","block_index":310242,"block_time":310242000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92c74b2121a5772142b0c5a721bb7f7a48e995bdf49bce960d2999ccfdab446f');
+INSERT INTO messages VALUES(654,310242,'parse','blocks','{"block_index":310242,"ledger_hash":"5f354f767df3256aa6a23544a7164160b9fabe481c85d1891f5250b3026dd7b8","messages_hash":"6e3a1fac8679a6ec025227a845f469f006034af44c34e6552d66888177ed77b4","transaction_count":0,"txlist_hash":"a9b87a1cd3146663579bf192b97136602806865bb60ca2d464e3111872b61b7f"}',0,'BLOCK_PARSED',NULL,'e68ff7d1d8014a660225f813b7eb837037ef2bc506f7216d87d79e3da9d7cb42');
+INSERT INTO messages VALUES(655,310243,'insert','blocks','{"block_hash":"a1f51c9370b0c1171b5be282b5b4892000d8e932d5d41963e28e5d55436ba1bd","block_index":310243,"block_time":310243000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59753dc821b94764f4a6fe7d922a5c6b97704d98f88371ba1c276b8fdf469cbc');
+INSERT INTO messages VALUES(656,310243,'parse','blocks','{"block_index":310243,"ledger_hash":"ea3acc31b3c298237fa11ca4400c65ee46732c96e0b7fac5a183dd49d938e730","messages_hash":"cab4716514e366e297d68dea26c6115e37533800e7cf5efc9d77f6118c26a9b2","transaction_count":0,"txlist_hash":"b7226a87411a48bc0b25e014f2929d63979a297600f51723a0c9bb89fef120b0"}',0,'BLOCK_PARSED',NULL,'e712affa0e095e94a46f110732bb7059afc3db3f77f9c4b026b59d150d1445ea');
+INSERT INTO messages VALUES(657,310244,'insert','blocks','{"block_hash":"46e98809a8af5158ede4dfaa5949f5be35578712d59a9f4f1de995a6342c58df","block_index":310244,"block_time":310244000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dbeadae09020881ac4f81b77797b7896856246dbec72a5d7aac97c6e15ab2b84');
+INSERT INTO messages VALUES(658,310244,'parse','blocks','{"block_index":310244,"ledger_hash":"07ad792741a48d5a7b657e6c4dc83e3534c79bd1e7da7044139516124adc8f80","messages_hash":"216db55f165298733175aaed6a0af3cad65d6a756b32ab61bd08b2527ca2c125","transaction_count":0,"txlist_hash":"baab169058840f62c00af1dc51ee0a77fb964dd27c6241463650fdb6c77d3b6a"}',0,'BLOCK_PARSED',NULL,'b439a973e2b973f78024cf4951b6bed113a76b1d06d54feccf209c75d9abe35d');
+INSERT INTO messages VALUES(659,310245,'insert','blocks','{"block_hash":"59f634832088aced78462dd164efd7081148062a63fd5b669af422f4fb55b7ae","block_index":310245,"block_time":310245000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ccdfe9b604b8df8a0e19f6f748ae3fbcc09fb053bd4906d51bd6ed70657e906f');
+INSERT INTO messages VALUES(660,310245,'parse','blocks','{"block_index":310245,"ledger_hash":"d36a618af8e92da03b373ab0137ded666db6cef906a6b2c0cb8c71057a1a5903","messages_hash":"6f86f4bc7d8a4e3d2a957c50ac7ab53ac24778ea98518e31a9c1c0c503a54cf6","transaction_count":0,"txlist_hash":"18cf40a1489af6f99dc454630c35dddf20acacbf979d47acb30a5831e55f920e"}',0,'BLOCK_PARSED',NULL,'a8c8c84bb73627ca1ae28ee20a263507a87fbd13104549494e0d23b7a1f7316a');
+INSERT INTO messages VALUES(661,310246,'insert','blocks','{"block_hash":"6f3d690448b1bd04aaf01cd2a8e7016d0618a61088f2b226b442360d02b2e4cd","block_index":310246,"block_time":310246000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3abb1bb12a636b0019953c9238e08eb02ee6dc34297639f8dd66ecc57631e2c8');
+INSERT INTO messages VALUES(662,310246,'parse','blocks','{"block_index":310246,"ledger_hash":"a34e154571ee585a839053a851a007d6d433d3efd2b3e923a9c4ec4bb0dc9d98","messages_hash":"7b162fe8efcfd71be3956bda007ee2ac3f19c6e2717167c6ad4c65374a3ba19e","transaction_count":0,"txlist_hash":"a2103af3fa84dc4015979f3a629c46e2234f534f86d7c5a403275a8eae144ba7"}',0,'BLOCK_PARSED',NULL,'51dd43794b8b6c5594c7ba00ac248dc34abf067d7c7a538a34bd385f45576779');
+INSERT INTO messages VALUES(663,310247,'insert','blocks','{"block_hash":"fce808e867645071dc8c198bc9a3757536948b972292f743b1e14d2d8283ed66","block_index":310247,"block_time":310247000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68f7f2925a7bed280535db1006f089903a596c70d857a842698ccca5ca62e140');
+INSERT INTO messages VALUES(664,310247,'parse','blocks','{"block_index":310247,"ledger_hash":"ee94fcb9210718095ccdf63f30ab081f45dff765a9ca4f5c86b1b0d98973ef90","messages_hash":"02263467d6c228054852ca87fb5837f613c03c97f195c6bd0241c88ddaa4a972","transaction_count":0,"txlist_hash":"39cff977657fdbe649c601531383548a3922cde40dd998c355c201cb6deee9f6"}',0,'BLOCK_PARSED',NULL,'090f7e559d7390d0329ddab8a2526cd36af0e723e3f332fc6b789441163c6b02');
+INSERT INTO messages VALUES(665,310248,'insert','blocks','{"block_hash":"26c05bbcfef8bcd00d0967e804903d340c337b9d9f3a3e3e5a9773363c3e9275","block_index":310248,"block_time":310248000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a06b84cec2aa2fa69ab63e1572728aff0b021bf8df5872c8a3ce6c04b13c578d');
+INSERT INTO messages VALUES(666,310248,'parse','blocks','{"block_index":310248,"ledger_hash":"029884a5273466fa45cdfbd91ae3aaca50af0771d22f6b55af6367348c2802e2","messages_hash":"dd1a1c3549588e7bf19c0b8922be68eedbcead52701e7e9e28adee8f4bc06b40","transaction_count":0,"txlist_hash":"6951bec53cc30ad6d9dd3f38f5fa8e4b876cdb1637595d38614ff3e42b53edce"}',0,'BLOCK_PARSED',NULL,'2fdbb84405ec1088cbcd673f87a9f0ee3644e6eb9881a9113c7a8cedaf6e786d');
+INSERT INTO messages VALUES(667,310249,'insert','blocks','{"block_hash":"93f5a32167b07030d75400af321ca5009a2cf9fce0e97ea763b92593b8133617","block_index":310249,"block_time":310249000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f2bd58b2aa1488da470ac54408399395a1490dd2128aeafc71310f59a80d102');
+INSERT INTO messages VALUES(668,310249,'parse','blocks','{"block_index":310249,"ledger_hash":"dc10674812c5249c693ab7b148d048439a0d77266014f3afc1810a6260838f02","messages_hash":"43c6887a6c72ec8782218a5127c54d2d9f832ea21e7b3c75bae7a08c60388bd6","transaction_count":0,"txlist_hash":"2f53ae50e27194404c5b85dab55335582b2961c6997393a9c48e6708bab8f1dc"}',0,'BLOCK_PARSED',NULL,'3fc0cdf18a760a2b4029738f5595caa8f86a7ded113133289683f096a008e2a4');
+INSERT INTO messages VALUES(669,310250,'insert','blocks','{"block_hash":"4364d780ef6a5e11c1bf2e36374e848dbbd8d041cde763f9a2f3b85f5bb017a2","block_index":310250,"block_time":310250000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'34dacdc6c09fff7f8c8b639fd316698b5f9e895442c18ad136650721dd819895');
+INSERT INTO messages VALUES(670,310250,'parse','blocks','{"block_index":310250,"ledger_hash":"a0fd49b46ff0000e83d4c56281dfe2be1bbfc924c75969726754b05bf7107641","messages_hash":"1571d520ab94cee90a1f23480807b9c117936fd17fc2a7dbdbc4626fb7345d11","transaction_count":0,"txlist_hash":"5148416db7a3e45edd128f1b9b5c61b916ce94f25638cc90a8d73f60afe64176"}',0,'BLOCK_PARSED',NULL,'9cd6cd9516e3a742e8d56613871489f461256bffeab1d4beb98568cf7c160eab');
+INSERT INTO messages VALUES(671,310251,'insert','blocks','{"block_hash":"63a3897d988330d59b8876ff13aa9eac968de3807f1800b343bd246571f0dca7","block_index":310251,"block_time":310251000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'576f5045f6ab92f4e76bc38c1798979efc30e406f8faa81fd5cb7db13095a6f4');
+INSERT INTO messages VALUES(672,310251,'parse','blocks','{"block_index":310251,"ledger_hash":"bdef6a6203d28d314dc087e539a9cdad19d123b605824f0a66f13bf5f72de9b8","messages_hash":"43df61debec53dff5f035e4e38c885fb03d3d49eadf67f86161b63e8de14159e","transaction_count":0,"txlist_hash":"6742a15406482537d29722db3302d492647e4c7487d840fc8e7d74d0806c3bee"}',0,'BLOCK_PARSED',NULL,'6ba3cc4222dd6c2c3bc22153a2874ced32c402317a371c2e1c57061acbe55172');
+INSERT INTO messages VALUES(673,310252,'insert','blocks','{"block_hash":"768d65dfb67d6b976279cbfcf5927bb082fad08037bc0c72127fab0ebab7bc43","block_index":310252,"block_time":310252000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5e747a87829077a81cedca079aa518c2106a7d37014af9ce0231e6e9b017dae');
+INSERT INTO messages VALUES(674,310252,'parse','blocks','{"block_index":310252,"ledger_hash":"8da11bec0d58b196ddb073d3aba0def98f01f83da654765fcae21cae6046214e","messages_hash":"1e547dcd71029e46e5216ab77cea02471424278cc5ee9413c0a193dce2742838","transaction_count":0,"txlist_hash":"2c11848ca51ba429a094ef40b1aa019c132cd9fd6f954139dab5324d77eb7125"}',0,'BLOCK_PARSED',NULL,'dae4909989df69f982390b5c27f5c96ea369b3690cb2db07425d1f2b555c84c7');
+INSERT INTO messages VALUES(675,310253,'insert','blocks','{"block_hash":"bc167428ff6b39acf39fa56f5ca83db24493d8dd2ada59b02b45f59a176dbe9e","block_index":310253,"block_time":310253000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9098100132d69de6695bf175a12247a487197c357c7acb04f09da7e25b1033f9');
+INSERT INTO messages VALUES(676,310253,'parse','blocks','{"block_index":310253,"ledger_hash":"2efa2c5781899d213741e795ca62fbee9d3ddf53792ce002db7484adc66bfbd4","messages_hash":"a9742221f4847c4243dc10c5b16136ca3afe384dc15c168faf38e7f874f594d3","transaction_count":0,"txlist_hash":"1036976d6406322c4c0afb2c6be13d6b89cfb2feb30306c9df8a499330d5489f"}',0,'BLOCK_PARSED',NULL,'76e2d2965a83501f4ec42260abd6e83d698330b9bd7b999a43683221dd2ac17f');
+INSERT INTO messages VALUES(677,310254,'insert','blocks','{"block_hash":"ebda5a4932d24f6cf250ffbb9232913ae47af84d0f0317c12ae6506c05db26e0","block_index":310254,"block_time":310254000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'555c6e65af4121832aff50e6448d0e313e332112c628456c74fa8067889abdd7');
+INSERT INTO messages VALUES(678,310254,'parse','blocks','{"block_index":310254,"ledger_hash":"d062ec468e76421d3769a99eb3c8b2cbf4bf393d109ba13b3bce128613fff547","messages_hash":"efbfe186ba093ed52f0721acb4eb35cf5cbbab136743ad41cbe4680ea9f47074","transaction_count":0,"txlist_hash":"098200d06ee21c916a203065eae3cffe8e2c80e32bce890f96e6bee400cf16ee"}',0,'BLOCK_PARSED',NULL,'5de5337bb4c18fde2423afbd32d32672730be8fe43c4c5961041c08a9b70eed1');
+INSERT INTO messages VALUES(679,310255,'insert','blocks','{"block_hash":"cf36803c1789a98e8524f7bcaff084101d4bc98593ef3c9b9ad1a75d2961f8f4","block_index":310255,"block_time":310255000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d305a7c6ec2d3b3315dd00f78c52af29f11bdd92760bce6317f5fcc375a4ff3e');
+INSERT INTO messages VALUES(680,310255,'parse','blocks','{"block_index":310255,"ledger_hash":"5c531dc8a7461e9e7a2ead654509d76c9be3427b1d2b75c0ac7ae0e03126c49a","messages_hash":"e8b10d57552433f463f1e0ffb4125c404fed0edd4006e9392a32c53dc80df0cb","transaction_count":0,"txlist_hash":"b9c0f364e8694264c33b7d993ed45f645410820dd0ff39704b79f6aaa64a46c4"}',0,'BLOCK_PARSED',NULL,'fd240a12051a656d3d77da30759af5804ea9eb6293d07f4d6d13b9d6573526f3');
+INSERT INTO messages VALUES(681,310256,'insert','blocks','{"block_hash":"d0b4cf4e77cbbaee784767f3c75675ab1bf50e733db73fa337aa20edefdd5619","block_index":310256,"block_time":310256000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'575da0403fffa3a70557ca9d05fc34a7a424d6562107bfd4422ffa60d2951ecc');
+INSERT INTO messages VALUES(682,310256,'parse','blocks','{"block_index":310256,"ledger_hash":"8da9f0162e15e33e14e5e1e22c2fd847055a65b99eec519dd069a83bb9006b51","messages_hash":"6adf1deb27a1ba5dbae17302608916408f89a535342d35b580dcfa5c63cdbfe1","transaction_count":0,"txlist_hash":"fbb34ac53fa4a19bb467c92b87291aeafd8bf8c43be49c7d487f962df5c50d21"}',0,'BLOCK_PARSED',NULL,'50ddf3b6fac9e651f5926282cf3d17e2f037e9fb8bc1dbcd687925e29ace2e1b');
+INSERT INTO messages VALUES(683,310257,'insert','blocks','{"block_hash":"0f42e304acaa582130b496647aa41dcb6b76b5700f7c43dd74b8275c35565f34","block_index":310257,"block_time":310257000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f2a834027f08d94711109d2c59810ac536adb7ab9c71ee56f781a75a1c1e398');
+INSERT INTO messages VALUES(684,310257,'parse','blocks','{"block_index":310257,"ledger_hash":"0cf6657db5f3145587a466c05f237289b639668d844abfd8d46430c090b54913","messages_hash":"55784f483ad47a1d2d770ef328316cc95135efca272ec7a29cea3fe529e94dac","transaction_count":0,"txlist_hash":"71c115bc32aefb584d499c054cd09d0ea58ea0cc11d187bd5add8f261f43f055"}',0,'BLOCK_PARSED',NULL,'6a0bb8db52ba56d0e912b5ff674401a3426c642a0c54bbd2847967693533d5c6');
+INSERT INTO messages VALUES(685,310258,'insert','blocks','{"block_hash":"3a0156dd7512738a0a7adba8eeac1815fac224f49312f75b19a36afb744c579f","block_index":310258,"block_time":310258000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f853575a4a2240d42850064d6e9ea20045ee3dac22054b2a71527bc36902d64');
+INSERT INTO messages VALUES(686,310258,'parse','blocks','{"block_index":310258,"ledger_hash":"e340defe4bd84e788f9c5b083849e6aa1d5c7f33123ebe62d7abe04b8a9e312e","messages_hash":"173a591f47e20f22c45645842070f1aaf26bd4fe34482df1961ed91514f503ed","transaction_count":0,"txlist_hash":"0725d989aaa9e8f1a5604f1807ec8f5aa2db518ec2397479e7e6c48c4d2b04ca"}',0,'BLOCK_PARSED',NULL,'fcf9d8d51c4c7b451e978b8a21850c2dc8c5f05d79f48c4d681b308aa7fe2510');
+INSERT INTO messages VALUES(687,310259,'insert','blocks','{"block_hash":"e5ed3cdaaf637dd7aa2a7db134253afe716ffdf153e05672df3159b71f8538a9","block_index":310259,"block_time":310259000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ccb3858177e24a22a9ea8de78519ed6d82b9ed986736e2325130daa51e9bb82');
+INSERT INTO messages VALUES(688,310259,'parse','blocks','{"block_index":310259,"ledger_hash":"03ca0cbce5a5b50988c19c0d4e754240f50821695dca767d1169f8c7f5c1fdcc","messages_hash":"1f59fa2d5d68bb98a56da510f17227bb54ae7fc1be83759f412bfa9139fb2028","transaction_count":0,"txlist_hash":"19e343fb3645b7ae94a299eb13691ea02d054e8acef0484a95a4079e42e487b1"}',0,'BLOCK_PARSED',NULL,'d35da3bd3a0b801e7742444db16883c215a8e99f04952aaba2b2c5b416478b8a');
+INSERT INTO messages VALUES(689,310260,'insert','blocks','{"block_hash":"8717ddcc837032ad1dc0bb148ddc0f6a561ed0d483b81abb0c493c5c82ec33cd","block_index":310260,"block_time":310260000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c13bf3fd61b8081acc9947162180280df320b1c08c9d1f247936719e5538a65');
+INSERT INTO messages VALUES(690,310260,'parse','blocks','{"block_index":310260,"ledger_hash":"83a3b43e01f4f25ba05b527415baa3e8b8adba319628c245988136bd8fcdfcfe","messages_hash":"6b4966d50541c79683bcc898431b375b29ff04550e6121c6b05be1860075a35c","transaction_count":0,"txlist_hash":"de3dee5cacbf5af3aaf1dac7cae860b06af7a2ba227f2bd81840d149354a05db"}',0,'BLOCK_PARSED',NULL,'ff6de6acad8ec08c2fb0f05275d132979fa6008ec9bbe904d707bb2b04ce7fec');
+INSERT INTO messages VALUES(691,310261,'insert','blocks','{"block_hash":"a2a9d8c28ea41df606e81bf99cddb84b593bf5ed1e68743d38d63a7b49a50232","block_index":310261,"block_time":310261000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e51b0f94589ccd65813c8c34de5fa42d25e0536b8ecd246b800243e01ee32fdf');
+INSERT INTO messages VALUES(692,310261,'parse','blocks','{"block_index":310261,"ledger_hash":"e61c12005d60870fee947fff469631ee540b1a0d6b8aa67614cfacc0a9f65ec0","messages_hash":"7dbc8b54a7067f72247eb37047895d28609a7c6f99d3345ea62ec6476e51025f","transaction_count":0,"txlist_hash":"58b8a751b3daa23993a773073b44d4bb2715075dbe3cc1738f3138383646504e"}',0,'BLOCK_PARSED',NULL,'76047f0a0c5ee77d395df5e1a1947f3b18692cd952892797eec074dd551358fb');
+INSERT INTO messages VALUES(693,310262,'insert','blocks','{"block_hash":"e8ebcee80fbf5afb735db18419a68d61a5ffdde1b3f189e51967155c559ee4ce","block_index":310262,"block_time":310262000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99380d25df39f6f1d86a4dcfce37eab416e3ee07cb6b9da309e7774da89ef967');
+INSERT INTO messages VALUES(694,310262,'parse','blocks','{"block_index":310262,"ledger_hash":"c21ac4906d435af5b9ef5576da6bce454f65ef16099b7ee03219a4ae1851bb91","messages_hash":"d00bb65c3d296ad74ae8b847fd54ffb0d39e2c6a4424713a8c3d8524065fa971","transaction_count":0,"txlist_hash":"a1e30e203c037b242cb1a41e5fd948828da8192a5db70453602961183a00d36d"}',0,'BLOCK_PARSED',NULL,'be1ac8fb61e9347abb60d086554c82fc10535c98750382619915dd85726a846b');
+INSERT INTO messages VALUES(695,310263,'insert','blocks','{"block_hash":"f5a2d8d77ac9aac8f0c9218eecbb814e4dd0032ec764f15c11407072e037b3c2","block_index":310263,"block_time":310263000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f0a96483d93e15e55f8b58174153b258527e1ec90fbac6cdc5aa7115be26e77');
+INSERT INTO messages VALUES(696,310263,'parse','blocks','{"block_index":310263,"ledger_hash":"676f6c532ff23839fef228a9fac7719e77a3c20efdc17f3cb2d13035c78820e8","messages_hash":"5fba7ea49972341cffcf73a94e4e79822a9912d37bb9479529d8d04a9f58f9c9","transaction_count":0,"txlist_hash":"ca47834be7a15554ab2dd401462d7d5c14f3f5f9ef9ba715488b1b3704de15ab"}',0,'BLOCK_PARSED',NULL,'f5a9ef78cd1c5b6fcdedbaffb3d84e614c152b66650de0066e0beef973ce0061');
+INSERT INTO messages VALUES(697,310264,'insert','blocks','{"block_hash":"ae968fb818cd631d3e3774d176c24ae6a035de4510b133f0a0dd135dc0ae7416","block_index":310264,"block_time":310264000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4114c70fe28e13e97c6fdefd219125790171b6ab153f5076ab648b82e192c67');
+INSERT INTO messages VALUES(698,310264,'parse','blocks','{"block_index":310264,"ledger_hash":"258854505b1d3067bf360f3d0dcb369ed7a90fec8744578d3dde51a79db72c25","messages_hash":"ee5d2f2c7a52c515c2b732c16951a5a4bc28f192a485fac34786280c79e995dd","transaction_count":0,"txlist_hash":"21f8b38aa107a9c6fbd6439244ce85a8a6abd12fde211c4569d28353cad5b8bd"}',0,'BLOCK_PARSED',NULL,'eb5fb28e6fc598ba042e742708759890d31f2e9042ea17cd83231c4a71579cee');
+INSERT INTO messages VALUES(699,310265,'insert','blocks','{"block_hash":"41b50a1dfd10119afd4f288c89aad1257b22471a7d2177facb328157ed6346a1","block_index":310265,"block_time":310265000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'093531c3850e8bfaa8a4e3de98f53c96cfe91d8c25be161809565938d27e1e34');
+INSERT INTO messages VALUES(700,310265,'parse','blocks','{"block_index":310265,"ledger_hash":"72ab32c420a7dcac0e7c36c4d9ca81e237955b4d8bc57c87078ba292923ce98d","messages_hash":"7c75707088e96538a3bb9054dcfbfd084d7aadf4a600e2e4fb1c9f190539f36d","transaction_count":0,"txlist_hash":"9685f9791c085e79a3c298dfe4f49fd1dbf8b4bdacf45e1d25e7d18382ca0e7c"}',0,'BLOCK_PARSED',NULL,'8b467546460d24ef616b0ac386eb2f4bf2ea01b1b0133a3a1b98d514eb0fe613');
+INSERT INTO messages VALUES(701,310266,'insert','blocks','{"block_hash":"1c7c8fa2dc51e8f3cecd776435e68c10d0da238032ebba29cbd4e18b6c299431","block_index":310266,"block_time":310266000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'902334e86d446a2993755062b91439e0fd6903ba16f21eed140d0621541564fb');
+INSERT INTO messages VALUES(702,310266,'parse','blocks','{"block_index":310266,"ledger_hash":"b81386d19aac285fee4e39a818cb0442e378372f7d55f92e6028b37f974e4a61","messages_hash":"4196f21aa3f1a7dae2df161c60f946f164fee7f571dd33343bb898b98e708323","transaction_count":0,"txlist_hash":"578600253e06f32b4ee4a312df8213ea7cf12f841858bdf6123b0169cb4bd42e"}',0,'BLOCK_PARSED',NULL,'3553f5177d8e6a4fa83f7037038c5ec6fe9b5d45dd598b0d8c4e0d68748cbc84');
+INSERT INTO messages VALUES(703,310267,'insert','blocks','{"block_hash":"c0aa0f7d4b7bb6842bf9f86f1ff7f028831ee7e7e2d7e495cc85623e5ad39199","block_index":310267,"block_time":310267000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35d5ffa8ce903d9114cffa23d75b202899fcff4e85c71f374efae95bce4322f0');
+INSERT INTO messages VALUES(704,310267,'parse','blocks','{"block_index":310267,"ledger_hash":"ea8fef9e82e451d9650777b051f19fe5e34b8976f1bcc1880b6eebe5feda34d5","messages_hash":"9353fb7552f2f62bf2bed57c132ff8db34b02e45d35d8bac59c4b8af942e7aea","transaction_count":0,"txlist_hash":"face84fc0aa45f7b072d73d4930b32e223cc4c22a620c39334fc836e16b2fb5c"}',0,'BLOCK_PARSED',NULL,'87ec42ea93436fc9cbb9f2d8d6e94743ee54dc1e9de4ab63953c2f6457b1dd04');
+INSERT INTO messages VALUES(705,310268,'insert','blocks','{"block_hash":"b476840cc1ce090f6cf61d31a01807864e0a18dc117d60793d34df4f748189af","block_index":310268,"block_time":310268000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff967096805d49deeb5f80db2e5a81fa8fd4f123667597b9a3bc8dd0426ef038');
+INSERT INTO messages VALUES(706,310268,'parse','blocks','{"block_index":310268,"ledger_hash":"1545d381812f0f0caa827a237f145838276fe058b05af4808615738ca9910bf1","messages_hash":"a80a2513e09b9b94fa7d8d63f75adfe5bfc1b63d01b47a64f9b675f880fa0e0c","transaction_count":0,"txlist_hash":"ee67f9fcd6ce50ee98da722352a917a46d3c71d2e5ea50294a55c613817e77dd"}',0,'BLOCK_PARSED',NULL,'c414f5d749acdc03048a0966668c3b707c85fa6f2ae3b7ad0690ac8c8c1fc88a');
+INSERT INTO messages VALUES(707,310269,'insert','blocks','{"block_hash":"37460a2ed5ecbad3303fd73e0d9a0b7ba1ab91b552a022d5f300b4da1b14e21e","block_index":310269,"block_time":310269000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7efd9a1c18a6e9c583cece0715ca6b2f6058b8f7bc5e961870b93e73f118aaf5');
+INSERT INTO messages VALUES(708,310269,'parse','blocks','{"block_index":310269,"ledger_hash":"fd9cf61ac6e1fba409e4220a141ed6c89c18c893c7a752af53d5f7608bc04a67","messages_hash":"4e827684d9b5da8930adae84c99977f6b7a2cec6606bbaac6900f1330b34d627","transaction_count":0,"txlist_hash":"6d1424cf68a5b1dfddbbafb260989c5b27c060a40026e829476d979cbd8f4412"}',0,'BLOCK_PARSED',NULL,'fdfd86ff38427436390491de4fb32ead8b5ec51534133aa11f92afe750d6c0d3');
+INSERT INTO messages VALUES(709,310270,'insert','blocks','{"block_hash":"a534f448972c42450ad7b7a7b91a084cf1e9ad08863107ef5abc2b2b4997395d","block_index":310270,"block_time":310270000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86bf931b9d4ec6cde901f5a899b683ae5384f9b045b72c473af9e8ecd0ee5004');
+INSERT INTO messages VALUES(710,310270,'parse','blocks','{"block_index":310270,"ledger_hash":"1d34c8c0dfdb4733a7b589647abb0e6a08f8de93a5c86fbab786f6d9d1500785","messages_hash":"3023d5b620df212957a759c348d88041dabee74948ae060bf337c2b4b90384ed","transaction_count":0,"txlist_hash":"fc2696c78afd3051d10ea3ecc56280d2633b732a7c755b9057aa30fb11f58f53"}',0,'BLOCK_PARSED',NULL,'e798dfb6e138b48ee76e446216cd00caa89da4908a279201ea7f4a1aea8e1f9e');
+INSERT INTO messages VALUES(711,310271,'insert','blocks','{"block_hash":"67e6efb2226a2489d4c1d7fd5dd4c38531aca8e3d687062d2274aa5348363b0b","block_index":310271,"block_time":310271000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b70e7b5a221e00da45657233e7d117897e3f329618607ba10dd0d6fb1c86506');
+INSERT INTO messages VALUES(712,310271,'parse','blocks','{"block_index":310271,"ledger_hash":"cf38baabc6e8a082eba1bd8ca2f72af5eb01cb76bd3c9eb101b27080a3a70d17","messages_hash":"6f5f434a19a426d95162078c1826ceb7e48d49a59c4aff96191ca67f22fc0bb5","transaction_count":0,"txlist_hash":"b28638da352abf83f2250bbc2da0f75b14483d7d4c69c93636484e9e3aaa326a"}',0,'BLOCK_PARSED',NULL,'fae23941284d738af1f708fdb0040e16d4594da46839686009bd25e732c61bc0');
+INSERT INTO messages VALUES(713,310272,'insert','blocks','{"block_hash":"6015ede3e28e642cbcf60bc8d397d066316935adbce5d27673ea95e8c7b78eea","block_index":310272,"block_time":310272000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a346aa34a9b50f15ab3ab3b36c70b245d88ae9098684d084ebee98786c114881');
+INSERT INTO messages VALUES(714,310272,'parse','blocks','{"block_index":310272,"ledger_hash":"2b2763fa5ab2962582c303062da8b8da7280274e615b3e37f93a32e44793ccc8","messages_hash":"17618e31edf25d02d7d9a73fb7b3b5e027c403826427547fd9950b6774df0e3a","transaction_count":0,"txlist_hash":"329d5096486b8dc452e2a1ee0a36d9a17ddd5bbb3149ddeee2bdb4989a7a3a35"}',0,'BLOCK_PARSED',NULL,'1b4543d909b6893ed0601e1b74eeee4267d26e7369f3a945c426648c0d499b0d');
+INSERT INTO messages VALUES(715,310273,'insert','blocks','{"block_hash":"625dad04c47f3f1d7f0794fe98d80122c7621284d0c3cf4a110a2e4f2153c96a","block_index":310273,"block_time":310273000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a331daa969b46a93216cd9fb5f469ccd7d41bd8f5e1322015d287c2b9c1b5e33');
+INSERT INTO messages VALUES(716,310273,'parse','blocks','{"block_index":310273,"ledger_hash":"ff9df73d4f92b7557c36f20d8f622923dda225a1ae2871e60f16ee2dfdf5b9d8","messages_hash":"31245f12d3eadd04ae9ac9b8408a032f62645c40c240fc92547d6eb5ae2dce6b","transaction_count":0,"txlist_hash":"f79f73097410b602df3a98901e26ed37d07f1da95249cf0e3a62c811d4f7de3a"}',0,'BLOCK_PARSED',NULL,'50c908324ffd72d154f5a69fc79258a9cdf7a6783d9a7ceb7ba8752efc1fce07');
+INSERT INTO messages VALUES(717,310274,'insert','blocks','{"block_hash":"925266253df52bed8dc44148f22bbd85648840f83baee19a9c1ab0a4ce8003b6","block_index":310274,"block_time":310274000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'121a7da454521c8a8a55b439c9343e4f60be43c803af6204b8daa10c53fcc1fa');
+INSERT INTO messages VALUES(718,310274,'parse','blocks','{"block_index":310274,"ledger_hash":"ece29ec2cd160d7634009f41cc2d0f13330d53ec6971c019d69dfa4367f86646","messages_hash":"1806d9d4c6ae0e5fb500bebe257e679df3d452f457b925aef003e43c2232b3ad","transaction_count":0,"txlist_hash":"bf01b445bc208b9efcb314f1cfa1ea4300fc152ad46a973044abf56dc74e9c62"}',0,'BLOCK_PARSED',NULL,'e73592a8bf88e34941f16ce4a02e82cb0c834969a020ca76fa4263878196b0ad');
+INSERT INTO messages VALUES(719,310275,'insert','blocks','{"block_hash":"85adc228e31fb99c910e291e36e3c6eafdfd7dcaebf5609a6e017269a6c705c9","block_index":310275,"block_time":310275000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79ba679088f8b760942be290ece94b639c0dc9ff6a9141eb8f81b72e415cd1f2');
+INSERT INTO messages VALUES(720,310275,'parse','blocks','{"block_index":310275,"ledger_hash":"23738d6d8dbf8b44b481f6c0eade991987c84e8025fe1f484c7acd3ead7f4163","messages_hash":"b11dc2a9eb66c3eb29a0a3b8881839132adc4e607709e26320c9c14111825857","transaction_count":0,"txlist_hash":"c0f70c46688ecb9eccaa94bdcbb3fc54eaf3af76cc450b62dfd7a9513bbbd50f"}',0,'BLOCK_PARSED',NULL,'1b957736dd151acc75bb701fd9ae487c5ddbe081b5beb8d921854f94ac589188');
+INSERT INTO messages VALUES(721,310276,'insert','blocks','{"block_hash":"ba172f268e6d1a966075623814c8403796b4eab22ef9885345c7b59ab973cc77","block_index":310276,"block_time":310276000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbabe7aebe08a1b183d5d0b4d2c188c09e7f15a056cd0031f2bbafc545d66596');
+INSERT INTO messages VALUES(722,310276,'parse','blocks','{"block_index":310276,"ledger_hash":"a241e1cb19bfbebb3bbb09c6471760b8379ddc73a67d69b4d84fd1d21dfb7034","messages_hash":"1f55d47cce2676642fd81bd18ac461c9e8d862dd48548117f0d61125aa9f8e03","transaction_count":0,"txlist_hash":"99d32cb4d9b52ec0726c907330b2a60d7cf8380c8012f804cf8838bee1b0ecec"}',0,'BLOCK_PARSED',NULL,'54ba96ebd74865909cdbbda88baac924a548d3fb737c2e583bbc13d01a2dfa41');
+INSERT INTO messages VALUES(723,310277,'insert','blocks','{"block_hash":"c74bd3d505a05204eb020119b72a291a2684f5a849682632e4f24b73e9524f93","block_index":310277,"block_time":310277000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0766a7a7fb533288a8e96fd4a0d251c5516f290e31dca443f344d1906ef0893e');
+INSERT INTO messages VALUES(724,310277,'parse','blocks','{"block_index":310277,"ledger_hash":"0efa57fd462031a87831832a789ed7751aac5f6c19a23767555b3f7145d87532","messages_hash":"3ebe0207f41a5c9dd7e268db3311cc89456886f11d257b432e905e6c2d1ab2a5","transaction_count":0,"txlist_hash":"08e71c5246f1225a02a00c8b52bb7a92c6937da9c9659129a5dcd2981069bbb3"}',0,'BLOCK_PARSED',NULL,'cdfdb5652914575a1d4d01d52b5d1e2a8d3878e9050f4602534d784ade3e5983');
+INSERT INTO messages VALUES(725,310278,'insert','blocks','{"block_hash":"7945512bca68961325e5e1054df4d02ee87a0bc60ac4e1306be3d95479bada05","block_index":310278,"block_time":310278000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02dc1fee928c1d1752246238eb9d19a22e834ae782be55ef57838da5a5632eba');
+INSERT INTO messages VALUES(726,310278,'parse','blocks','{"block_index":310278,"ledger_hash":"0045189a4da126b22e91e4bc2a7ac37dc90ec0869b7fcbc927919fca4cce5259","messages_hash":"cf92577378f8b09c4103667a88f04fc28b046d62615d02bc2f9dab69057c5e17","transaction_count":0,"txlist_hash":"6e3580c7af675e8fdd1c5366a7af2e387f8d8d9192589794883a28ad2ce6a499"}',0,'BLOCK_PARSED',NULL,'309145a957d21f20a02dad95225bf6d94762f92f6f7872c8b274722371ba6e7c');
+INSERT INTO messages VALUES(727,310279,'insert','blocks','{"block_hash":"1a9417f9adc7551b82a8c9e1e79c0639476ed9329e0233e7f0d6499618d04b4f","block_index":310279,"block_time":310279000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84c2fec811042b1a39f270bc077d1dbeba02687d93bf6ef12df7f3361ed5329d');
+INSERT INTO messages VALUES(728,310279,'parse','blocks','{"block_index":310279,"ledger_hash":"442b7d4dee025b81c298ca0f6a5b9dbdf17ed0087fc36eab7f0671d5a19c9a2c","messages_hash":"f37d3670aba3a7688d5eb86096a8d5fd3afb9069fa5acc6f2c4479fcd60fd4a3","transaction_count":0,"txlist_hash":"04f51f4c3de467be5cfb32cccba5cd482eb14657d7f67a60820204fa22afaa41"}',0,'BLOCK_PARSED',NULL,'cb95b878b91b4bf2b1ecd9fbc09944cf71763c2b86943965f8a1ac25c45471d4');
+INSERT INTO messages VALUES(729,310280,'insert','blocks','{"block_hash":"bf2195835108e32903e4b57c8dd7e25b4d15dd96b4b000d3dbb62f609f800142","block_index":310280,"block_time":310280000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f6e6113b82f8e545b416fd0875a730f69a39ebb78272ce41f19bd6fe929c700');
+INSERT INTO messages VALUES(730,310280,'parse','blocks','{"block_index":310280,"ledger_hash":"38d7f98ae9cfb8e3938032dc33899e2e3e5a88e9037571cdddf8ed4709fc8225","messages_hash":"8494f375494e3c9404aed3ddd3aaaf01b52ba5c8003f4607cab4ce2827590a1a","transaction_count":0,"txlist_hash":"d25ed55e962a45fbade2012c35ef507dd76fa0c67553343bb6568569bf1c08ca"}',0,'BLOCK_PARSED',NULL,'9fb26ac2f54c27752979a5f77fee0f56240ac962f0946c35b020163ae22f801c');
+INSERT INTO messages VALUES(731,310281,'insert','blocks','{"block_hash":"4499b9f7e17fc1ecc7dc54c0c77e57f3dc2c9ea55593361acbea0e456be8830f","block_index":310281,"block_time":310281000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9fdec67b582644800d2a7aff3b119583878fd0c7e9d8bc4dee45514c6d8a7f8');
+INSERT INTO messages VALUES(732,310281,'parse','blocks','{"block_index":310281,"ledger_hash":"51237cee3b85f1636e336259b115fad87acc830c71e13ca79e344efb7c308ecc","messages_hash":"0831ce5de96f826a12fb7a871164308afdd4e1e9f3dd75d2de5a22350d093353","transaction_count":0,"txlist_hash":"77eb5540b9f1e2f80cd3cb8572ee80bc112391e0236b560749aaf9952fb6705b"}',0,'BLOCK_PARSED',NULL,'167f5db57b45ce42f3ccb1a8d1f5b37125aae8b9bb3dd6d383d473d05ed1cc48');
+INSERT INTO messages VALUES(733,310282,'insert','blocks','{"block_hash":"51a29336aa32e5b121b40d4eba0beb0fd337c9f622dacb50372990e5f5134e6f","block_index":310282,"block_time":310282000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87f844efe59a301d0eee7d2998b0597bca9cc0a25e08ef77845fc994462d1c4a');
+INSERT INTO messages VALUES(734,310282,'parse','blocks','{"block_index":310282,"ledger_hash":"73adccef91b5c738e8810d4781a38edf98d2aa0a8cb619d575e9bdeda979f1fb","messages_hash":"cf78638ffd89b36786753e30256a6b8d0144d028b361e38ff77c69737fde0f43","transaction_count":0,"txlist_hash":"889f3e1047c8ca362c1ce4749d1c7ad167dab1e5f85e509d114b1ba1bac8f240"}',0,'BLOCK_PARSED',NULL,'017b1439bfd84965162dbcf47b14fc48e972b2addaa59d681485b5a147210d0d');
+INSERT INTO messages VALUES(735,310283,'insert','blocks','{"block_hash":"df8565428e67e93a62147b440477386758da778364deb9fd0c81496e0321cf49","block_index":310283,"block_time":310283000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02fee0c70be3a4314039cae1dfd16b1517cf6798e841b019cc71d7f63d751136');
+INSERT INTO messages VALUES(736,310283,'parse','blocks','{"block_index":310283,"ledger_hash":"5853e60a1b79d4f154cc1f3dc8b0a4d6130ac07784bac16f257f92b9ef294144","messages_hash":"b525a86c2037d3b867bbc8d0cd7639bc696a49eea97b99895a775c87c65583d8","transaction_count":0,"txlist_hash":"1ce62f0a42cb7ecd8c35436253e8234b83e81ba5abc757965b5041400139eee2"}',0,'BLOCK_PARSED',NULL,'12796496c9373b6fb66f7fb452ac257ae8774bac73cd4d6ebaaa9fdb135c2b00');
+INSERT INTO messages VALUES(737,310284,'insert','blocks','{"block_hash":"f9d05d83d3fa7bb3f3c79b8c554301d20f12fbb953f82616ac4aad6e6cc0abe7","block_index":310284,"block_time":310284000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a44b53e637964f550c6124ddf181ed46d575c2296e97247c57af5d7814817c6');
+INSERT INTO messages VALUES(738,310284,'parse','blocks','{"block_index":310284,"ledger_hash":"ce33194cb67aa0a5facd788cc24706ef249bcecc95a9965f91065146b33e464b","messages_hash":"0f24250de541f26fbb74fb1955a8bdabd8000cdba48ccb3a4ed769a8a3e3a3ff","transaction_count":0,"txlist_hash":"c354cfcb046ca331ae57c00f64b56defd034278e5616ef7d1f3e559dc538bf0a"}',0,'BLOCK_PARSED',NULL,'d541b1ddf78a947155f21c1fdb9d9f879a573999cbbd60de6d1e70ca9a6950cf');
+INSERT INTO messages VALUES(739,310285,'insert','blocks','{"block_hash":"8cef48dbc69cd0a07a5acd4f4190aa199ebce996c47e24ecc44f17de5e3c285a","block_index":310285,"block_time":310285000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f6bdf20894e6bbe5e379e14bc0fe6ded6b8b023ad6317f8f32a73ea1fe86bd4');
+INSERT INTO messages VALUES(740,310285,'parse','blocks','{"block_index":310285,"ledger_hash":"3af35e85e98aebe1a9c778570c730bf80e085a08ca707c1a5d44b50f2579e71c","messages_hash":"d8fcb18316694e727a14588803bdd46f88b9e3dc274a9ce76696a7665944a94a","transaction_count":0,"txlist_hash":"35e84bd8780b8efbdc3207b9fef22e12ff71798477971a50088b9c8def3c77ed"}',0,'BLOCK_PARSED',NULL,'216c8fa98e193536628b6fd2addc3e81b2c5bc7d095934a66a104d83e47b338b');
+INSERT INTO messages VALUES(741,310286,'insert','blocks','{"block_hash":"d4e01fb028cc6f37497f2231ebf6c00125b12e5353e65bdbf5b2ce40691d47d0","block_index":310286,"block_time":310286000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd7582ab929f5202142bb13c0e523fda1761112483e6d4a4734a0f69feb2682e');
+INSERT INTO messages VALUES(742,310286,'parse','blocks','{"block_index":310286,"ledger_hash":"4b09b627adda46ee7cf7116102a330ba2aa1ce714b2fa133f7952af34a52ede9","messages_hash":"afbd710e177c6d2444cbb77c57c8b7cce0587d9f08d93c77a6d77202129463c0","transaction_count":0,"txlist_hash":"5a868b89444476076be22e42526c4462c5b865012d9970b917376c5342750311"}',0,'BLOCK_PARSED',NULL,'50fc350e9dd7d7b439d806bc64f02765c88fae832a59339559acf0091471e44e');
+INSERT INTO messages VALUES(743,310287,'insert','blocks','{"block_hash":"a78514aa15a5096e4d4af3755e090390727cfa628168f1d35e8ac1d179fb51f4","block_index":310287,"block_time":310287000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a01535213dd5fee7e704b380406ccb2d3edf5e7a3e0e3cecb03c4830eeefd3e3');
+INSERT INTO messages VALUES(744,310287,'parse','blocks','{"block_index":310287,"ledger_hash":"67786e4ffab15cb78c7bb44ef160d1e5d99b599eecb5ff4f906a6599d744d410","messages_hash":"81891111fc43ca92daab85026153966955f2580b74f963fcf47d7442a1198713","transaction_count":0,"txlist_hash":"791a49e50583660824bb3ec141a54951c2fd737ed963b1e65b653c22a4fc4a84"}',0,'BLOCK_PARSED',NULL,'1bc163f0eaca493a251df232d8bdedf00bd164e534d113554ad69ead65918914');
+INSERT INTO messages VALUES(745,310288,'insert','blocks','{"block_hash":"2a5c5b3406a944a9ae2615f97064de9af5da07b0258d58c1d6949e95501249e7","block_index":310288,"block_time":310288000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'448c1c2344e4c38a2a7d959c68835c3d1a80979bb283360702b8191a032edb08');
+INSERT INTO messages VALUES(746,310288,'parse','blocks','{"block_index":310288,"ledger_hash":"600716d2696160b3ba290636180f2afa24bf8d24435022b4539a4cc965c18dfc","messages_hash":"8039c2a4fb969f7e1d9d8e164d7a75224a5db25113d064da0b5511e264a93532","transaction_count":0,"txlist_hash":"3a1e3da301643f22a9b2719922a4621879b2c2d8b790e646f135bc3b5d165e65"}',0,'BLOCK_PARSED',NULL,'62b9100ff91aec6fde5f42b396da2be17864d9360eabeb7ef33ca085ba84cf5a');
+INSERT INTO messages VALUES(747,310289,'insert','blocks','{"block_hash":"dda3dc28762969f5b068768d52ddf73f04674ffeddb1cc4f6a684961ecca8f75","block_index":310289,"block_time":310289000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7d8e5df0eead063ab0861e1dff34103d05b03eccd7f86107b290a4f48eab900');
+INSERT INTO messages VALUES(748,310289,'parse','blocks','{"block_index":310289,"ledger_hash":"cd6d4b17759152edbf25fd72dce9b9126ea31a2bb1a5435636801e0ee4be1158","messages_hash":"201f06ba8bcb29ad2f74b5ee77f3d9e6a58d0c8db65b51a33cdc238f0ff2b296","transaction_count":0,"txlist_hash":"26aeba5ab63445ebd419a02915a835d8d6a0bc25bac49dd799e356325687c8f8"}',0,'BLOCK_PARSED',NULL,'2240818e18e9c676a0884b19df3a8e6f5ca46d9e2c31eb38814d805228c09d22');
+INSERT INTO messages VALUES(749,310290,'insert','blocks','{"block_hash":"fe962fe98ce9f3ee1ed1e71dbffce93735d8004e7a9b95804fb456f18501a370","block_index":310290,"block_time":310290000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f4adede1760e36c1806b2d6b7ba2feea55deefc27ebaf29ea0a0ee13b80848a');
+INSERT INTO messages VALUES(750,310290,'parse','blocks','{"block_index":310290,"ledger_hash":"04a9135f416dc041d3c1c0216a84fd780d133213c3369691fbf5e8848af9d14f","messages_hash":"ae165351292f3bffe75b08022cde38db94762e96a98d5a5119a5c38676b98654","transaction_count":0,"txlist_hash":"74c57c7e7db040f0974be44dae944c978ed2ddb01390d616c9bfaa6816ed198e"}',0,'BLOCK_PARSED',NULL,'29bc9ddb00267692b914cda4026cbcc9b3a9a1ce5994940efaea14fc62105df3');
+INSERT INTO messages VALUES(751,310291,'insert','blocks','{"block_hash":"1eeb72097fd0bce4c2377160926b25bf8166dfd6e99402570bf506e153e25aa2","block_index":310291,"block_time":310291000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f207ee308143c6bf8f7349b156d5ba48ebf6f5dfa93ee2b525e4a224953b776');
+INSERT INTO messages VALUES(752,310291,'parse','blocks','{"block_index":310291,"ledger_hash":"50f556e01b9e8c135b20187bf863839e651a0d0bf4cfd1008b446531776f7917","messages_hash":"70e10c1d7bdab6f045c84d998d86112f4b66c18d34ac9bfa28482d5fb2b3acbb","transaction_count":0,"txlist_hash":"13ede25257044f3bd98c6905c216bed45b0d054951d2c5e86a3cf4707699a279"}',0,'BLOCK_PARSED',NULL,'bb9b803a75ee50cc5491f98f9e7e43b65cb939973ba2aae6bf80d6fc3078db5d');
+INSERT INTO messages VALUES(753,310292,'insert','blocks','{"block_hash":"9c87d12effe7e07dcaf3f71074c0a4f9f8a23c2ed49bf2634dc83e286ba3131d","block_index":310292,"block_time":310292000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a924a96eae6ba4aaf6f2e0979ec69e5ca0431d27685ceeb6f3444ace0ffcc49');
+INSERT INTO messages VALUES(754,310292,'parse','blocks','{"block_index":310292,"ledger_hash":"9d4bf4b1c5dba1132a9cbfd78c1d94cbaf15d7648da80c8bc1a8dce12a79eac0","messages_hash":"eee9a2dc2372c2160aae86e38d4d3de693e7608c518f2f415a9b995873c852af","transaction_count":0,"txlist_hash":"1b761ed985b1e55c95598c5c0f37df4a1e06dfd26c17792b1020cf0d28fa9a56"}',0,'BLOCK_PARSED',NULL,'ffa8725ad762bfb4e04825d883ae773db61e48dfc2bb35327082232411b3f61e');
+INSERT INTO messages VALUES(755,310293,'insert','blocks','{"block_hash":"bc18127444c7aebf0cdc5d9d30a3108b25dd3f29bf28d904176c986fa5433712","block_index":310293,"block_time":310293000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3197c9e11896092658dba5bd22983faa3a949102bee27426925292adf0210802');
+INSERT INTO messages VALUES(756,310293,'parse','blocks','{"block_index":310293,"ledger_hash":"a51a3f9af39175cc9d142eff67811307ad8f51cdd8161aaf0d98af9e2be28efa","messages_hash":"c5167949c03fa8cddee58c868c2e8d2ba26120e4c006036a6594eac04928adcb","transaction_count":0,"txlist_hash":"2fd7a38fbb17d7b0eec35f2f03a28c4aee7f579d7f42e3ab124cf5eca07869eb"}',0,'BLOCK_PARSED',NULL,'968efb656f55ffc1be13b733ff19b0221e1f55b42d9fc48718e94bcba83fbff7');
+INSERT INTO messages VALUES(757,310294,'insert','blocks','{"block_hash":"4d6ee08b06c8a11b88877b941282dc679e83712880591213fb51c2bf1838cd4d","block_index":310294,"block_time":310294000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4dbc370409ebe10171c8d5b291a048a66a5df2fa026814a08cc7d0bd8ec94d2');
+INSERT INTO messages VALUES(758,310294,'parse','blocks','{"block_index":310294,"ledger_hash":"3e9858caa8e835295aa7e78505ea34ce0726e3f5f6cf9fbc6dc4393a28724a25","messages_hash":"113cde1c0fed76b41d3290402cbb78053621578d0ba3fc65bfa53ce42098d746","transaction_count":0,"txlist_hash":"36566c7c396ecf454c6fa6d3b27dd7ad2c138a85edd74672f2e7d9791e77f0b6"}',0,'BLOCK_PARSED',NULL,'1f92cfb025bbc7b450304e4f4bbe4b5c665496cadf7b08b7e67a7e789b074793');
+INSERT INTO messages VALUES(759,310295,'insert','blocks','{"block_hash":"66b8b169b98858de4ceefcb4cbf3a89383e72180a86aeb2694d4f3467a654a53","block_index":310295,"block_time":310295000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e5269073c8159ef261a23dfa29b19e5e7d18aa4071208b7e13fea251d29f3019');
+INSERT INTO messages VALUES(760,310295,'parse','blocks','{"block_index":310295,"ledger_hash":"bf48715799c46d629641ba5b72405f6e6cf0500886da94fcc6fddd306a86b02a","messages_hash":"8679be965882c71cd14321d7adace95cfcc872d03b4eb3c24352b7ce6806a31a","transaction_count":0,"txlist_hash":"2d6b79733125c81413a3e70acf597a11e986893264588da74e9b8a0d5d46e1da"}',0,'BLOCK_PARSED',NULL,'2d8360e24e1184f0c941cd7e94d604f65233e5f754c84ef23a87048ab11a1808');
+INSERT INTO messages VALUES(761,310296,'insert','blocks','{"block_hash":"75ceb8b7377c650147612384601cf512e27db7b70503d816b392b941531b5916","block_index":310296,"block_time":310296000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'20bac5b3b10cf1c7c81d5b3d04cf0a6e92a3a170acad33464acb1ba4e189b2ee');
+INSERT INTO messages VALUES(762,310296,'parse','blocks','{"block_index":310296,"ledger_hash":"08e2361ae4b98387ee43fd7230ea8b296dee677b337f0e211527e3cf29a64e9b","messages_hash":"541c9d8613f122854c989b9edc899208e4d84d72267067ddce4df927e3865dd1","transaction_count":0,"txlist_hash":"517c81a10cc4219c38e3f947dd862f6983a4a2eb22459dba31f1a656bdf4eeff"}',0,'BLOCK_PARSED',NULL,'73728b4df321a17940bb513302c158cba7edf616e02126b9b8fa72704b90eb05');
+INSERT INTO messages VALUES(763,310297,'insert','blocks','{"block_hash":"d8ccb0c27b1ee885d882ab6314a294b2fb13068b877e35539a51caa46171b650","block_index":310297,"block_time":310297000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c0354edb817b0a57403ee87d98e9dbe83dc9537d46fd8835b1c9190e2fe8f319');
+INSERT INTO messages VALUES(764,310297,'parse','blocks','{"block_index":310297,"ledger_hash":"cfefc3138983a33686dd1fc37f06fa1d7e01d9b218f7242cdd59005633c0ded8","messages_hash":"1b977693de35f2c9c48a5af2fc529eff0b71730b1241d493e278ab2970943a24","transaction_count":0,"txlist_hash":"85ae0c384a76e7c93b29204df759293f7a488fc71edf6b4abaea1944fa3a85d7"}',0,'BLOCK_PARSED',NULL,'0fcc3a9a1b306e62d955e9610a2cef7f2107351049f57b845d91e56b28f95b19');
+INSERT INTO messages VALUES(765,310298,'insert','blocks','{"block_hash":"8ca08f7c45e9de5dfc053183c3ee5fadfb1a85c9e5ca2570e2480ef05175547a","block_index":310298,"block_time":310298000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8c467bfde59edf95bab9e68a68c2d5b26034c3d501948b4dbae7a7f043b49991');
+INSERT INTO messages VALUES(766,310298,'parse','blocks','{"block_index":310298,"ledger_hash":"25254257d6f6724161b2b73f94d28d3fd40594b4846699b8a2d5f45d205b1fec","messages_hash":"c0b67d556e4a533654a24b3ccdfd4ecef5072118195dee65c7740bf63423ae65","transaction_count":0,"txlist_hash":"0633d67a69ae2c0ea1e7d3c349cfe1f3b753e387446787987c50782ee4601b68"}',0,'BLOCK_PARSED',NULL,'19c0889aaaaf195db4d7f3851089173f00c07bc591486e34d81da94d1fe8f1a4');
+INSERT INTO messages VALUES(767,310299,'insert','blocks','{"block_hash":"a1cdac6a49a5b71bf5802df800a97310bbf964d53e6464563e5490a0b6fef5e9","block_index":310299,"block_time":310299000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74e7f7f739f4fb681c032bb9840b09dbd0a892f18c24c15e66064408a91ce77b');
+INSERT INTO messages VALUES(768,310299,'parse','blocks','{"block_index":310299,"ledger_hash":"756acb1055ec75df8fa70f80e23d75f2b47e75035bfd68802e68308785a2ee14","messages_hash":"bdf9020708eff06a99f9d0091820eb80868d784faf336e0e7eed6e2246e7f46a","transaction_count":0,"txlist_hash":"299d47f0c18c1629003069df0afd0bb877b45f06b5609ec171c7b87ae65a0be0"}',0,'BLOCK_PARSED',NULL,'ec38783912e232d5e8e2c41604ec24eb09efc033419f21aa5bb9548037a66be6');
+INSERT INTO messages VALUES(769,310300,'insert','blocks','{"block_hash":"395b0b4d289c02416af743d28fb7516486dea87844309ebef2663dc21b76dcb2","block_index":310300,"block_time":310300000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d0b7570ed9e1be1164e5df2b0fd5b2d65c35c064c37e0d76286044f9334a9f8b');
+INSERT INTO messages VALUES(770,310300,'parse','blocks','{"block_index":310300,"ledger_hash":"e30027ca81176dc1e79a0ab3a5afbb839a3338dbe9ea6057aebcd383ed884c1d","messages_hash":"e9dec9062e926e1394ce7810dce4e9a0fcdda4e5ee401e67e547113d092b690c","transaction_count":0,"txlist_hash":"8338432f3d159dd15129a269d1cf3866cc7cda8c3845ab349ee6cc240ecd7020"}',0,'BLOCK_PARSED',NULL,'1e6049b45568ccef9096a51bc6c02c477fe7b6ed8683223bbe68b5fef0d48845');
+INSERT INTO messages VALUES(771,310301,'insert','blocks','{"block_hash":"52f13163068f40428b55ccb8496653d0e63e3217ce1dbea8deda8407b7810e8a","block_index":310301,"block_time":310301000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd6535d3c7747f7a9edb5f200d35ba74cd7bc90a7e69c99849852ad0a37537e7');
+INSERT INTO messages VALUES(772,310301,'parse','blocks','{"block_index":310301,"ledger_hash":"4c2bcffc796af76a2607a978289942241e63a6387e0a2ae8fc3d02c6b5519fb0","messages_hash":"a96c2989033f189cef59c58e81c9ead54f13782fb93cf5bca337e8bf8b38b265","transaction_count":0,"txlist_hash":"676af2de3d30fc26112e65d493b9c2401f93822c8e414cc5e7231e60b728e6e0"}',0,'BLOCK_PARSED',NULL,'0a5a8e62cd873154d67b83561715ea5fa901b4e8ecc6b0ef0c8fc89813f975d2');
+INSERT INTO messages VALUES(773,310302,'insert','blocks','{"block_hash":"ca03ebc1453dbb1b52c8cc1bc6b343d76ef4c1eaac321a0837c6028384b8d5aa","block_index":310302,"block_time":310302000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca06523dd7a27d4ba9feaf0cc658d3746b26b4d1fa3909e84f57dde36ef028ab');
+INSERT INTO messages VALUES(774,310302,'parse','blocks','{"block_index":310302,"ledger_hash":"a39fdd7f84d2f6e29b613a8a724bc0902d9abd2d6b4d2f46c3b0512928d69b3f","messages_hash":"cfa3b4ecc1ec97e185573a9cf950f1cd3d0eea0b34fede1201a40555daf18752","transaction_count":0,"txlist_hash":"ef3dfc32bc5b72ec279a0229af8bf6548bfb5bf4ed717e3e81ccb7710f802021"}',0,'BLOCK_PARSED',NULL,'0007f8417aa737cf81bef3502984381645e1571da37320e4bad8f309ed5660c7');
+INSERT INTO messages VALUES(775,310303,'insert','blocks','{"block_hash":"d4e6600c553f0f1e3c3af36dd9573352a25033920d7b1e9912e7daae3058dcca","block_index":310303,"block_time":310303000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea3283b4201d0089c28f8336832469067f13c7f264d9dcf34ac1084c1667d2bd');
+INSERT INTO messages VALUES(776,310303,'parse','blocks','{"block_index":310303,"ledger_hash":"23f307ef560a02210f4aae5fe605c6d8af9317ab17f1e1ef0944038a3515da49","messages_hash":"1fb525686cfc2d2c62e869f435c83b05fc8e3342069de7072fd99a468f0fa636","transaction_count":0,"txlist_hash":"d1c0461baeac24d356af8ba5283753c778f8ab0fa222c51b753758268f1e7fa4"}',0,'BLOCK_PARSED',NULL,'3c64d40821e3b36e91db4dcbc2177e8bc5f44e10ee85268f1790192cef89eb4a');
+INSERT INTO messages VALUES(777,310304,'insert','blocks','{"block_hash":"b698b0c6cb64ca397b3616ce0c4297ca94b20a5332dcc2e2b85d43f5b69a4f1c","block_index":310304,"block_time":310304000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6a0c8adb6c7e696610bddcd876a792b1ed0c8e3fdd458d4f4b245ca0e3b4c2e');
+INSERT INTO messages VALUES(778,310304,'parse','blocks','{"block_index":310304,"ledger_hash":"6baa2ac646d3725fa01111959753844d22181cbbd1801cb12c4208be3709a3a3","messages_hash":"dc0607a7d44dff313eaf827411dd9ea22b093d2cb8998e376fed1973c75f5f33","transaction_count":0,"txlist_hash":"96ea912eae3265566ab229e5d5a25354c0713471d73d866b9a09c9b2954d53e5"}',0,'BLOCK_PARSED',NULL,'6f036bc42b829f1f4cb35a314891db5d65a01b7b270182956730ee6b4568e3f0');
+INSERT INTO messages VALUES(779,310305,'insert','blocks','{"block_hash":"cfba0521675f1e08aef4ecdbc2848fe031e47f8b41014bcd4b5934c1aa483c5b","block_index":310305,"block_time":310305000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d182db549d4a250dc6dfef955c9a48a298bf976d556fd2eb7ed03f00f962e8d');
+INSERT INTO messages VALUES(780,310305,'parse','blocks','{"block_index":310305,"ledger_hash":"c366fd009860a090c632131eae9380820e512009bbbaa6f7bc5529afab7a88c1","messages_hash":"8411a1ecf5d9b7a48f53e5b5b5f746ffbf1ee4818fbad5b76e01ee9184b9cf6c","transaction_count":0,"txlist_hash":"35584be5484303aa263d746735209b04d92a6baa6045e2d684496ff5dabe59ef"}',0,'BLOCK_PARSED',NULL,'7af675eda7f9b51986a8a34e2737ceb8634bdf85097719aad548e165bf631faf');
+INSERT INTO messages VALUES(781,310306,'insert','blocks','{"block_hash":"a88a07c577a6f2f137f686036411a866cae27ff8af4e1dfb8290606780ec722a","block_index":310306,"block_time":310306000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f84acc72c89041172191f57c48a965bfc2e40ab645f9a78c9becb794a4d37291');
+INSERT INTO messages VALUES(782,310306,'parse','blocks','{"block_index":310306,"ledger_hash":"fd12969b828d689063b4885a0356fc17e5207794d1f5b6a17bdeb8d584815a79","messages_hash":"062bf7721c34786a19dcdbfbb61d0e73ee06a5d97473c9ef12e454ec3328ed05","transaction_count":0,"txlist_hash":"df65a3a9f318fd30166869a3d5d6eabb9c84399f15a7a50f39422a05ff851997"}',0,'BLOCK_PARSED',NULL,'fb4e0b4ef1cc74bcaa9afb408c21cf1a51916eaa63203bdcc7c3e1d619e6f5a1');
+INSERT INTO messages VALUES(783,310307,'insert','blocks','{"block_hash":"bc5ccf771903eb94e336daf54b134459e1f9dd4465dec9eaa66a8ee0e76d426c","block_index":310307,"block_time":310307000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d27481a91f20e68dc384ccef0328b791f5dec92ab5249fc5f72d214ca3aec05e');
+INSERT INTO messages VALUES(784,310307,'parse','blocks','{"block_index":310307,"ledger_hash":"e168094d31f56d36e4c3863fe719e6064b08ccc6f3c2adb490b1359360026aee","messages_hash":"8a0ac9a3373402279cf87eabf6c1a2920fbb1fba6377b4559a95ecbe7817a533","transaction_count":0,"txlist_hash":"272ae60ff5120848055f08303e13a982fc66959f3e3b72f7d7461c7f91252944"}',0,'BLOCK_PARSED',NULL,'2886c310bf1ca6cab13aae07662b29d64d5d37e87642eea64bb421dbabf6fa32');
+INSERT INTO messages VALUES(785,310308,'insert','blocks','{"block_hash":"2291ffd9650760ff861660a70403252d078c677bb037a38e9d4a506b10ee2a30","block_index":310308,"block_time":310308000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71768465e7b4c20adb865425c144b85754f5ed86db6f5dd97343ce4b4cc29468');
+INSERT INTO messages VALUES(786,310308,'parse','blocks','{"block_index":310308,"ledger_hash":"523b3bba7b02e2c4e588f21ed14b7b4f6630f887cc89f9361487b581d7e633b5","messages_hash":"464607010e49cfa74b86496dc251e9d622efe7e24c2575435706b9e4a6e05ecd","transaction_count":0,"txlist_hash":"30df282ad2859208c35204fe5e2d395734e041bd9644b8b8626678fdd64058c1"}',0,'BLOCK_PARSED',NULL,'33924ac157d0fc043ef78153ece0000d3510fe878e1f367e85f005ca2a77a7c3');
+INSERT INTO messages VALUES(787,310309,'insert','blocks','{"block_hash":"ca3ca8819aa3e5fc4238d80e5f06f74ca0c0980adbbf5e2be0076243e7731737","block_index":310309,"block_time":310309000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e47d3aeee59888158c6e98509ee91bcbc22eafc377cf6c76d156b2d2d984244c');
+INSERT INTO messages VALUES(788,310309,'parse','blocks','{"block_index":310309,"ledger_hash":"effe1a68917014086da3bf8696f6c13f3cf2cb5cbd6c18b80ed622e476cff017","messages_hash":"644bbcaf78d2dd3bebabb66550ce8a31a4f145748e0eb7c3a551a86675cf3010","transaction_count":0,"txlist_hash":"197a65735f9d06d433abdd01f29f44ec697ba537ead9107ebe9cd889393a053c"}',0,'BLOCK_PARSED',NULL,'b33de726b1a4d2741d6b4258b2f9d6cee9f9fa835c22b7822bc0be0ba8f87b6e');
+INSERT INTO messages VALUES(789,310310,'insert','blocks','{"block_hash":"07cd7252e3e172168e33a1265b396c3708ae43b761d02448add81e476b1bcb2c","block_index":310310,"block_time":310310000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'52fb386ea73ff91692591a0eff3da818cc2526ffb3b58aada1176812dc3ab7da');
+INSERT INTO messages VALUES(790,310310,'parse','blocks','{"block_index":310310,"ledger_hash":"968fb8a7409531a27ffb52af484e7c1076f05b58f9a51bf9cf3d5a7d83b12002","messages_hash":"7ae602e7d077e6cb45c2cf958f1978e1ee08a124edbcb7309176ab324376c907","transaction_count":0,"txlist_hash":"b9b9eef5f4c1720522286ce5f6375613c267684ac330210ab664e29219065cc0"}',0,'BLOCK_PARSED',NULL,'2c2098fe0c57f750c1ac227c97d629485c770446836fecc112fe97191628bbfb');
+INSERT INTO messages VALUES(791,310311,'insert','blocks','{"block_hash":"2842937eabfdd890e3f233d11c030bed6144b884d3a9029cd2252126221caf36","block_index":310311,"block_time":310311000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dde7a796484a71cbfd1ef0947a98c8f5c3c882a0cf77a0e6083cd5e22e9acf7');
+INSERT INTO messages VALUES(792,310311,'parse','blocks','{"block_index":310311,"ledger_hash":"8c69639a757d0195594fa1da3f6b35a0e8c62b8df7f95db81e26d496b8c9dd72","messages_hash":"73d961aa283a92fe02b50057b135d3d027ac1bd35496353976e2508b26a33343","transaction_count":0,"txlist_hash":"86b9b4356e26ab703e29060a4ff1be0c5cad328b2490d983eae10c24369a1649"}',0,'BLOCK_PARSED',NULL,'564f55528574505432691cb272d9cc662eb3d596261adbfa7bdac679e99c7457');
+INSERT INTO messages VALUES(793,310312,'insert','blocks','{"block_hash":"8168511cdfdc0018672bf22f3c6808af709430dd0757609abe10fcd0c3aabfd7","block_index":310312,"block_time":310312000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff52a17864f065dbe66a26423ef5020b33ed50ecb865bc3e4d3d24c155d6c3a7');
+INSERT INTO messages VALUES(794,310312,'parse','blocks','{"block_index":310312,"ledger_hash":"8d839bac01b9aae5e554f691ae0ee42cee072f9367fcc2811d4b3f65640cfcad","messages_hash":"acd8aac46e499a58b59f622ed57f738f780b8031204b712499975d9a347e07f1","transaction_count":0,"txlist_hash":"802b3d153e101c2772b1c96c851efab754f77fd3fd7eb59848d510f8994a9d86"}',0,'BLOCK_PARSED',NULL,'3342a0f546302100750e7a10ad22356cf45f79d580d8ab8583ac4cc911c72728');
+INSERT INTO messages VALUES(795,310313,'insert','blocks','{"block_hash":"7c1b734c019c4f3e27e8d5cbee28e64aa6c66bb041d2a450e03537e3fac8e7e5","block_index":310313,"block_time":310313000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61ed8e825e14d9fd72134d60829e8a37b58a88a2698d5e19d28f074dc010b684');
+INSERT INTO messages VALUES(796,310313,'parse','blocks','{"block_index":310313,"ledger_hash":"1377f4255bfd7ff6638734733a4b8faec97fd62aeb954e42b477c875ccc50b73","messages_hash":"a707d7df87cf26dd21ee9cef6b143fb5876f8f680f5a3dd5f7c20712ad245e60","transaction_count":0,"txlist_hash":"e96392425727ab5eb4e16a61aef7d28cd0826ad7bc1d8266b3c187bb22bb5d51"}',0,'BLOCK_PARSED',NULL,'4c73cbc39ed9a949c6b8eb155ad3a7847aeaea81d7d5054e64aba57e8e4bfb66');
+INSERT INTO messages VALUES(797,310314,'insert','blocks','{"block_hash":"1ce78314eee22e87ccae74ff129b1803115a953426a5b807f2c55fb10fb63dc8","block_index":310314,"block_time":310314000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e08c34f61e6299bb268d57d05096eee8d8dd2c0ec235a5455147e16b2b452842');
+INSERT INTO messages VALUES(798,310314,'parse','blocks','{"block_index":310314,"ledger_hash":"8ed80d44f0d6ad01a30611d94b91f735ef3a166cf0dfa7531492a3e4ac7c29f1","messages_hash":"75bee8dd3f5b11ee602c473057d847752fc2ca398945facc181b255d662aedfe","transaction_count":0,"txlist_hash":"17d9134674657a9958c43efaea302df438762233e7e5d57811b71378e3d62695"}',0,'BLOCK_PARSED',NULL,'c4c1fc57d5d10623b10d324eb37cd9bb19447dab8d63fff52aeb30f0cf0bf0b6');
+INSERT INTO messages VALUES(799,310315,'insert','blocks','{"block_hash":"bd356b1bce263f7933fb4b64cf8298d2f085ca1480975d6346a8f5dab0db72cb","block_index":310315,"block_time":310315000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10ac8d126a168e1f91fcfb9b748ad96045d09ef6043f815c5340fb4d798d535e');
+INSERT INTO messages VALUES(800,310315,'parse','blocks','{"block_index":310315,"ledger_hash":"24b5905cf0d5349b7031870af9677916892e3292fa61455a75e84c1605a398ba","messages_hash":"d574d1728571509fb854307b8fa5501a08ef8f464298e3c462237d61028e5667","transaction_count":0,"txlist_hash":"d8bad5e8a6ab63c8e0394c200e6b90cb2a1feabe3f58dc0faaaab59bb0b82654"}',0,'BLOCK_PARSED',NULL,'bf0b4b3a78e9db34e69a3e55337ea0e30ab367684de83f51384f3707b784b9ec');
+INSERT INTO messages VALUES(801,310316,'insert','blocks','{"block_hash":"ea9e5e747996c8d8741877afdcf296413126e2b45c693f3abdb602a5dae3fa44","block_index":310316,"block_time":310316000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a65e34d7abc65481a7f30f9a8f6e194397ee90e6a3858ec657e25352a963de6');
+INSERT INTO messages VALUES(802,310316,'parse','blocks','{"block_index":310316,"ledger_hash":"a191657253ca159739403f35417ef74637b053db49c7db62465fde4c54e69239","messages_hash":"ceb97ebdeb9b5f88fbf632151ac15c82c51289e32a69284d198a67882555f8aa","transaction_count":0,"txlist_hash":"daf2edaf9fb8e7f718f56cff9e570869297ce6bd350794501b05e02a541e1c84"}',0,'BLOCK_PARSED',NULL,'e47d595562589aca955caf11959aacb0ae50b14795a45be314a258cb0f618cde');
+INSERT INTO messages VALUES(803,310317,'insert','blocks','{"block_hash":"aa8a533edd243f1484917951e45f0b7681446747cebcc54d43c78eda68134d63","block_index":310317,"block_time":310317000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cc9751544daaf717c48ca5becaad4c4f1380cc3678ec530d7719b718483093ee');
+INSERT INTO messages VALUES(804,310317,'parse','blocks','{"block_index":310317,"ledger_hash":"bf6d880b9fa42b0e38523c00c92a898093afd068450be504a0a56bafd69ed647","messages_hash":"139fd14dae8c47ab2328d67ed59fcde87f6c23782337466c5b4f9fa8f70ada77","transaction_count":0,"txlist_hash":"740737c2cd6ffb9a5e89e2ae0d34afe5f0bb48d120ae482802b76d07100b6153"}',0,'BLOCK_PARSED',NULL,'1f57d7b47e85afd9922f2e17d47da432c73da28864c37f879c20ad85352fdb0a');
+INSERT INTO messages VALUES(805,310318,'insert','blocks','{"block_hash":"c1be6c211fbad07a10b96ac7e6850a90c43ba2a38e05d53225d913cc2cf60b03","block_index":310318,"block_time":310318000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86bc5de71ce156071da96d0b42e363f605084a6cb4b32129898059a6faacd0b2');
+INSERT INTO messages VALUES(806,310318,'parse','blocks','{"block_index":310318,"ledger_hash":"6422eb2cab5937adb9ca2194c025d0dce63cd62e18d7ebd63220207957c942ee","messages_hash":"2e9e820523416f34de2ba2cea26b7c5159b1c50a2a1b7e6613d2d68ed58632ca","transaction_count":0,"txlist_hash":"3cb46a2e5b1a3ef3dd37dbe0cc429962982812eb9c7f87b5282a77a4a7f6185c"}',0,'BLOCK_PARSED',NULL,'b43079986b2d9309e4361a047835bf0081cf003bbb696e0b9ffeb9e7b4eea416');
+INSERT INTO messages VALUES(807,310319,'insert','blocks','{"block_hash":"f7fc6204a576c37295d0c65aac3d8202db94b6a4fa879fff63510d470dcefa71","block_index":310319,"block_time":310319000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74c9da397f3a9bf448a3f675b2ed39cc40a479001d2b3e899ec464aa3df29759');
+INSERT INTO messages VALUES(808,310319,'parse','blocks','{"block_index":310319,"ledger_hash":"efb625496aa4365f5ac198a82833c880a60cd5f86d04689463216619cd7d96b8","messages_hash":"b8f734e3855b7c0f738249f3f0817b5f87076d03dcd21af9052c1b264b7d37f7","transaction_count":0,"txlist_hash":"ed69cef0ba9e4a9371deca76209629cc988257493a69006504b96a99b3da4222"}',0,'BLOCK_PARSED',NULL,'01ae050819f530bed727f03676658da719dd30afb98f28746d96a696fb0dfa34');
+INSERT INTO messages VALUES(809,310320,'insert','blocks','{"block_hash":"fd34ebe6ba298ba423d860a62c566c05372521438150e8341c430116824e7e0b","block_index":310320,"block_time":310320000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'830f3e487c47ea218b0b64f6399b55d553e22bf170e14519789ddc96a8faa4b5');
+INSERT INTO messages VALUES(810,310320,'parse','blocks','{"block_index":310320,"ledger_hash":"8c3938d7b3c0a822ebee67f1ecf21b1db6496e19471cf1f2cd00f30325d0c88a","messages_hash":"65c972e34bb57ba13ed04604f8fb4c01b41b9d43605a08c830b6695ba3367718","transaction_count":0,"txlist_hash":"b87169ed018fdc8251d14b58f8d0e09001e45ab5dd76eb2408ab625d34ec584b"}',0,'BLOCK_PARSED',NULL,'62d538adb623fa7a9569ac67e53d2784861be3fd645e2a1ad604d46797594137');
+INSERT INTO messages VALUES(811,310321,'insert','blocks','{"block_hash":"f74be89e9ceb0779f3c7f97c34fb97cd7c51942244cbc2018d17a3f423dd3ae5","block_index":310321,"block_time":310321000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28d53ff671209c564ae1fa1f0e607887e618954b024fc02262fb208bf56cb9ec');
+INSERT INTO messages VALUES(812,310321,'parse','blocks','{"block_index":310321,"ledger_hash":"21e4c3a7afd02f183cbb69709fc6c006ab3d38fef3466de1a1870232d1c891bd","messages_hash":"917f18cb9a40e855401434a018ae02446714c9677e4855a5c4a7b3256475a785","transaction_count":0,"txlist_hash":"77ef24833ac345e51eeb48fa9adbb111e31ffa3739298ce12a18d2f581c9a79a"}',0,'BLOCK_PARSED',NULL,'29983fb3b3b23142f7665356cb94642779664944035a6a77d62e040f242f247d');
+INSERT INTO messages VALUES(813,310322,'insert','blocks','{"block_hash":"ce0b1afb355e6fd897e74b556a9441f202e3f2b524d1d88bc54e18f860b57668","block_index":310322,"block_time":310322000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f0ca846e4186e0048533d3450abb68bfdff0072e9e68f00630550b8e8b72fe2');
+INSERT INTO messages VALUES(814,310322,'parse','blocks','{"block_index":310322,"ledger_hash":"01b3b28c4d8eb796827267c06e6362206884e44f40c3f72d9b5c9d1e6cdfb29a","messages_hash":"991dc50ad5614911258f82d15a340f76959b2604d69f3bd853ab58675d3cc0d4","transaction_count":0,"txlist_hash":"3833d915749baf7aa33484d7a6b6b28e4acf0d78ee0f1b4e8ab44b22d756a3e3"}',0,'BLOCK_PARSED',NULL,'7cc9a8db39694af45772fbf7bf5e26942fe72530668a2837e951f1cf8f54fa6a');
+INSERT INTO messages VALUES(815,310323,'insert','blocks','{"block_hash":"df82040c0cbd905e7991a88786090b93606168a7248c8b099d6b9c166c7e80fd","block_index":310323,"block_time":310323000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50309da11a781e46f4aab3544b50781e8768796c9e2c96d85d780136bae913ab');
+INSERT INTO messages VALUES(816,310323,'parse','blocks','{"block_index":310323,"ledger_hash":"a362da58df0d31eeaa93a25c91c17bec62f9cad6ff0c31420584ce293ecafdbc","messages_hash":"64fb69a92910d9101a56a7c423d2078da6f2cc382dd5d4a3afa162353ca6946c","transaction_count":0,"txlist_hash":"2d41c7286053cb2256526ce42c03ab1288dfa066720e9ae5e5dac4532d512de4"}',0,'BLOCK_PARSED',NULL,'b2cfff093f0704df3fab792ca0afb1d295fb42a42d317dac9ff4432b1a3d3a84');
+INSERT INTO messages VALUES(817,310324,'insert','blocks','{"block_hash":"367d0ac107cbc7f93857d79e6fa96d47b1c98f88b3fdda97c51f9163e2366826","block_index":310324,"block_time":310324000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'81f7ae1a1d6179629a68cf2d8532fceed3122eb940fbf35b9c7c86f1574e1082');
+INSERT INTO messages VALUES(818,310324,'parse','blocks','{"block_index":310324,"ledger_hash":"d1b353ac97e000471c66df8ee04d7b0c25f7eead2414e5648cd2ef334881bad6","messages_hash":"fae0e171a6ee94889779ffb5945df3e2e9629b14d0e8300e118afb4fbbfa1ba7","transaction_count":0,"txlist_hash":"051b158e05c22a326dd8becd27d142b52477b9209f369599db5c5e25484af157"}',0,'BLOCK_PARSED',NULL,'df88c966cbeeb234b0db3a708cc03cdbda98e6eed74a65332994ca14e1771827');
+INSERT INTO messages VALUES(819,310325,'insert','blocks','{"block_hash":"60d50997f57a876b2f9291e1ae19c776df95b2e46c14fe6574fb0e4ce8021eac","block_index":310325,"block_time":310325000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6b9ee5c28649400931a99211724a3332eef4614f8d317e69ad561b8381874ff');
+INSERT INTO messages VALUES(820,310325,'parse','blocks','{"block_index":310325,"ledger_hash":"7734300dc764c67fde935dd4432396de4a31cedc2901f3fc70bf1576797cf7b0","messages_hash":"384359eb9ca6bce64aac5d7ec11b53d8fe0a690a60d4abf52dc82fff95936bab","transaction_count":0,"txlist_hash":"7671d8cfff3601fc44132a6d274c1ab1fb0b4fb712041d86eb28157667682251"}',0,'BLOCK_PARSED',NULL,'768adf7ad9af17d0c326388cde42d4ff276b26d25226c016c45b59dc89932427');
+INSERT INTO messages VALUES(821,310326,'insert','blocks','{"block_hash":"d6f210a1617e1a8eb819fc0e9ef06bd135e15ae65af407e7413f0901f5996573","block_index":310326,"block_time":310326000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a23b8c27f40c19a775681b179f25dbc018e26550fe1c757ef9e97a0f6c860631');
+INSERT INTO messages VALUES(822,310326,'parse','blocks','{"block_index":310326,"ledger_hash":"ebe859a722587fd456695c6a46af7f0bf54c03e940bdbb5424520a8c1fe70617","messages_hash":"ec570ffb8a7d710374026f84a5ab4324d1c826134e1a70ed7a2f5eaa5e179719","transaction_count":0,"txlist_hash":"72884e56565b442c37cbbc572fa762c7b7b3c549c396037393463be7afb089fa"}',0,'BLOCK_PARSED',NULL,'67505cf985f541bc647bc2e8b838f1091bc85c2e4a68630379dbe45c8dfe1a3b');
+INSERT INTO messages VALUES(823,310327,'insert','blocks','{"block_hash":"9fa4076881b482d234c2085a93526b057ead3c73a6e73c1ed1cdee1a59af8adc","block_index":310327,"block_time":310327000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60455b0922d3c7836d3bf47e3824c54dd763aac9ea1a1f8fc896558398d180e5');
+INSERT INTO messages VALUES(824,310327,'parse','blocks','{"block_index":310327,"ledger_hash":"8ced7a546ee2c746d4dc3f0ecd2fb4eaa62c65c4e98be74545d8de22c03526e6","messages_hash":"c343404a071b294e7055538c070f1b0cef476f68eaa46fa57736572f2d12cc47","transaction_count":0,"txlist_hash":"ccbabd4fc70b15ebb6f28afa6f96e4a1f0af08e6a3cdfb518ae008432b908739"}',0,'BLOCK_PARSED',NULL,'3e006039b2b349413a44da03541fc2bf154d07ec0c193a618449e49b0fe3a051');
+INSERT INTO messages VALUES(825,310328,'insert','blocks','{"block_hash":"c7ffd388714d8d0fc77e92d05145e6845c72e6bfd32aeb61845515eca2fa2daf","block_index":310328,"block_time":310328000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c51e3cffaa8ce40001e940d7f4792ef15cf7475297cb259d9e7983773e6b69f2');
+INSERT INTO messages VALUES(826,310328,'parse','blocks','{"block_index":310328,"ledger_hash":"bb5d3479e492f52a0b3b69d29852faefdff645f9b113eae82594f57e8aa40b5d","messages_hash":"6f99c11b1778951d24facf26097eb6eac16227dd30c851960464d57f22fd3b58","transaction_count":0,"txlist_hash":"42fa2df2e053f97e86881395e5d66de912e59bf73eb5be322ab170b06fabd344"}',0,'BLOCK_PARSED',NULL,'19f45165f446c9b9891940e71985ed58c2c296111cd1a84d901236a9c7101917');
+INSERT INTO messages VALUES(827,310329,'insert','blocks','{"block_hash":"67fb2e77f8d77924c877a58c1af13e1e16b9df425340ed30e9816a9553fd5a30","block_index":310329,"block_time":310329000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1f1d4966b8cfadfd083b5f3fd2fcba1f8eda4821d653c7974e33f009c7463cb');
+INSERT INTO messages VALUES(828,310329,'parse','blocks','{"block_index":310329,"ledger_hash":"4ad2c9d802db762537be19143ef5eca474cd9f749bbbc661cb95bcf1dcb0b02b","messages_hash":"c0aca83a6f7fc4a960b9ab476a95aaeedf45b6f76157f63f7299b09d4d1d9de1","transaction_count":0,"txlist_hash":"a5336a1818452ca9888d582bb5ad8182e00ec37723d42e6769b001069f96232a"}',0,'BLOCK_PARSED',NULL,'56661f0957a80223072392490825b805f5ada09eef55290bebd70da78911e177');
+INSERT INTO messages VALUES(829,310330,'insert','blocks','{"block_hash":"b62c222ad5a41084eb4d779e36f635c922ff8fe275df41a9259f9a54b9adcc0c","block_index":310330,"block_time":310330000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9439c3dc8ccb46d5ef55d633f1f231a48f576bd350c2e5bd339e467ae64008a4');
+INSERT INTO messages VALUES(830,310330,'parse','blocks','{"block_index":310330,"ledger_hash":"4a9a6b59d56f6b7cf867095d939f9bddbf779141177feda470df3759b7d48be3","messages_hash":"3d372c158d70bc842b32b7f3e2ffd95ef9cde05628f534cb678de6e798fe622c","transaction_count":0,"txlist_hash":"263932b9bd949d4b0557a7fcd5597a0c607c722b34e644f9795e4f08713a4436"}',0,'BLOCK_PARSED',NULL,'48494abc55262902bdafacd28936844db06e6a14b3a6cf9545f57b4138a525c1');
+INSERT INTO messages VALUES(831,310331,'insert','blocks','{"block_hash":"52fb4d803a141f02b12a603244801e2e555a2dffb13a76c93f9ce13f9cf9b21e","block_index":310331,"block_time":310331000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dba7053384e90d269cfd3505e5a12bde22dcfa2c91704cf243517a696f8fe2c7');
+INSERT INTO messages VALUES(832,310331,'parse','blocks','{"block_index":310331,"ledger_hash":"c676b9c31e0e3d74d005ad0a52a18ba34688b6002da5d269bcea0f789a4f8e91","messages_hash":"c94247d2b698ff3c3d3f83c3b22e7db7f0ffde8a014edaa9e5e2c87921d3f02c","transaction_count":0,"txlist_hash":"646197318fca63f2c8068c0a119f122d02cfea4a5c95201d6cc2eada9ba276a6"}',0,'BLOCK_PARSED',NULL,'bea5c431b2cbb2d45f2eba6fadb6829545eb6c077e7c2be7dcbdc3b788525c91');
+INSERT INTO messages VALUES(833,310332,'insert','blocks','{"block_hash":"201086b0aab856c8b9c7b57d40762e907746fea722dbed8efb518f4bfd0dfdf2","block_index":310332,"block_time":310332000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd94a722c458711df5e3a20d96fb52fbfa4eb1dc51a899cc26f0edd3d00e2b26');
+INSERT INTO messages VALUES(834,310332,'parse','blocks','{"block_index":310332,"ledger_hash":"cf0b702c03ecff4bda1254dd5e96ca580b69d5d02d1f233725fccbe1f5f32000","messages_hash":"08905851c02d9a073f8f2fcecd03e843828641bdcb10ad2968380fc186a3f1b4","transaction_count":0,"txlist_hash":"8197afee90f808a95bd5a3dbc9c41618e3a07a3039dc2e2539a94cb023e54a0b"}',0,'BLOCK_PARSED',NULL,'3b05c18229eb624cc389b9f0c4c6e17879025341838a9e029c65cf0f910c86f9');
+INSERT INTO messages VALUES(835,310333,'insert','blocks','{"block_hash":"b7476114e72d4a38d0bebb0b388444619c6f1b62f97b598fed2e1ec7cd08ee82","block_index":310333,"block_time":310333000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'098583efbb2bf92d5647610b52429ba84bc68875364fb823124fa46c5e11c51e');
+INSERT INTO messages VALUES(836,310333,'parse','blocks','{"block_index":310333,"ledger_hash":"b40359eb197db65549946d93a39b2a732e0694d21b8d0138b9bfce4f5a87ae5b","messages_hash":"007702e6e29eb293977921f36c104e0f4a0151e5641d0db38e2e4510748bbfe8","transaction_count":0,"txlist_hash":"c8b269f3fb117e7ea3a9592a023787d886ffc388f91fd651618f807c017c9a67"}',0,'BLOCK_PARSED',NULL,'f1131a6f8c59e1dd7d4f949dcedcb53f2b120acc4a54104189ae12fa0a6322e8');
+INSERT INTO messages VALUES(837,310334,'insert','blocks','{"block_hash":"a39eb839c62b127287ea01dd087b2fc3ad59107ef012decae298e40c1dec52cd","block_index":310334,"block_time":310334000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90f757c97395fd62ea1a0fcad41ebc76be0a25ea0ac7baa66c59b0c712dfc632');
+INSERT INTO messages VALUES(838,310334,'parse','blocks','{"block_index":310334,"ledger_hash":"7cb471ec146f9ec1e4d1b93184ea641f7b8088807dedcd1c0be4ca5ba99e80e1","messages_hash":"dd2d4d64d57ed022b46659c5345bd760406f71a79002023e27a1da13a27fd57d","transaction_count":0,"txlist_hash":"24eb770852273754585985a5fed612de801663408db3703bb9771d5bcf518cb9"}',0,'BLOCK_PARSED',NULL,'42bc48810b5223456564cc2947b41005754c56f96b7fdf0d1072927d65c135ed');
+INSERT INTO messages VALUES(839,310335,'insert','blocks','{"block_hash":"23bd6092da66032357b13b95206e6527a8d22e6637a097d696d7a96c8858cc89","block_index":310335,"block_time":310335000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2ba55e06ede0ded2cc7b3eff0c96c63ad0c439d8e0030ae5fbd35e8eded62d3a');
+INSERT INTO messages VALUES(840,310335,'parse','blocks','{"block_index":310335,"ledger_hash":"47de747ec20cbec96a6bc4b71f67ea827c7a5a1ab0d3541fd539efac7442d644","messages_hash":"142c384f5bf9eac3a7fa5cba70f841941584d621abf435f9a8ca4b9b1ec864ee","transaction_count":0,"txlist_hash":"ba840a499b9de3ae457db93220ebb7bf61560f33660b8e7b980178325d114cec"}',0,'BLOCK_PARSED',NULL,'575903f2a6994ee5bfdaeb5442510bf655ccb57aa1a5ef69dfacd54129f562ff');
+INSERT INTO messages VALUES(841,310336,'insert','blocks','{"block_hash":"ec4b8d0968dbae28789be96ffa5a7e27c3846064683acd7c3eb86f1f0cc58199","block_index":310336,"block_time":310336000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92055e673e2e378f6d403fc32ecf20753bf314696df2f4ee3047ef68942c4bde');
+INSERT INTO messages VALUES(842,310336,'parse','blocks','{"block_index":310336,"ledger_hash":"c216588e623d2b3d03499c7e9f817106b20a8c98765979987633f1e4e50d9594","messages_hash":"4668de14fcad314bf08e3a241b8c6da054c49ee9c7c7399990421b1899240602","transaction_count":0,"txlist_hash":"a6c20cca4d22fa5b8357fae640f1a90e3e656f9015eb5db289ef6da17b597f1c"}',0,'BLOCK_PARSED',NULL,'0d0f6c0a7c5c5c2fab6406e03c2ba921a167b4e226dea5bbe4f335789a084e41');
+INSERT INTO messages VALUES(843,310337,'insert','blocks','{"block_hash":"055247d24ba9860eb2eadf9ec7ea966b86794a0e3727e6ffbcba0af38f2bc34a","block_index":310337,"block_time":310337000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0527dd638164fc299b649b3223965c24cfbc19ebb1e8458e37172b2ea63110dd');
+INSERT INTO messages VALUES(844,310337,'parse','blocks','{"block_index":310337,"ledger_hash":"a558b47328f54b79a5ad9f7737af0e4df07e13e20f150296370e111879c09c2e","messages_hash":"ad2290997dd9a9ad9020a642bedda1c5a0efc9329496fb5f9053247868c9fd3a","transaction_count":0,"txlist_hash":"15c9f81424d97e28fc5d40b9f74edee6bed3f68f8c81dcf572cbd786626ff353"}',0,'BLOCK_PARSED',NULL,'35e64ac39a408d269ddeca899fc238be69a02962dc2d6fbb653aaaa061082f2b');
+INSERT INTO messages VALUES(845,310338,'insert','blocks','{"block_hash":"97944272a7e86b716c6587d0da0d2094b6f7e29714daa00fec8677205a049bcd","block_index":310338,"block_time":310338000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'482c9d394ddd34bbd5ec1886a44300469a33c789e9a1ff150358caedf442f835');
+INSERT INTO messages VALUES(846,310338,'parse','blocks','{"block_index":310338,"ledger_hash":"31bea50c6481fa982eace70df5fc13d2981f1af13962809e3492b493a0dd4905","messages_hash":"205d060f3443635d719233d90051a36842a58541b94d0243920b5be732ce375c","transaction_count":0,"txlist_hash":"ee8efb364c79aae62d48d0198d7ca348d71f312eaef01daf906fec89d2fe9166"}',0,'BLOCK_PARSED',NULL,'8ab8676ac6f0514fd1de57af3679afe5cae3d36e240c41912d44f37f96a550da');
+INSERT INTO messages VALUES(847,310339,'insert','blocks','{"block_hash":"99d59ea38842e00c8ba156276582ff67c5fc8c3d3c6929246623d8f51239a052","block_index":310339,"block_time":310339000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da4190b12aab68787510c08783d34990cce3069d4f04b984fb1aa83cd8857949');
+INSERT INTO messages VALUES(848,310339,'parse','blocks','{"block_index":310339,"ledger_hash":"6605ca3db3c509fbc8574f2e10a3f981e2ff17b2812946ec8f2b1e49ba44f220","messages_hash":"edc87e0d6f923dfd82f66871ae016eaf7f64a891a32d55e64e917e952ff6659c","transaction_count":0,"txlist_hash":"af5e50fc6a529fb06423c8ad7beed13c6e1de1c3f746f53dcedb7af76e0d95ff"}',0,'BLOCK_PARSED',NULL,'d8049633c510080e5d3c2ffaa35213bbb5e0211ef103ceac693e103c7f873202');
+INSERT INTO messages VALUES(849,310340,'insert','blocks','{"block_hash":"f7a193f14949aaae1167aebf7a6814c44712d2b19f6bf802e72be5f97dd7f5a0","block_index":310340,"block_time":310340000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61c9b2cfa3715da3be5979dec49993d07f77b8a7c512b6ba13ab20b7581d1cc0');
+INSERT INTO messages VALUES(850,310340,'parse','blocks','{"block_index":310340,"ledger_hash":"7db1ad1952cac2dda86fff6e5f939010bb30a1da26af438d354e17f423d5bf1f","messages_hash":"f92c7d9d0de8cf9858f3a0eae157af19ff857638d8538b1742f609d6d8b3a7cf","transaction_count":0,"txlist_hash":"f42c5c43148a61dace7d50127d905f236ad738774c20d4f874fc3b824b58cf92"}',0,'BLOCK_PARSED',NULL,'edbf11a7ffb7a77dbfc134839c2d638637ea81f197045296e4c764453baa8c4c');
+INSERT INTO messages VALUES(851,310341,'insert','blocks','{"block_hash":"6c468431e0169b7df175afd661bc21a66f6b4353160f7a6c9df513a6b1788a7f","block_index":310341,"block_time":310341000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c2a886dc1759747298db9b294f4094c8acfbc80a12e2a8f62b539613a9e6cc06');
+INSERT INTO messages VALUES(852,310341,'parse','blocks','{"block_index":310341,"ledger_hash":"1a1eef01250d2c53a1b34a8ee5b1e8fce984c3d47d28c544c6e162493b51225b","messages_hash":"4fa796b5f24a97c4a005d57a2208afa15c640c97353025a2107cf72cc9db22f1","transaction_count":0,"txlist_hash":"5fcdf7ababadc89a26c3833bc8b819642466504b58323cded8cdb8a904239ce6"}',0,'BLOCK_PARSED',NULL,'3a5d6244c0f78c7720c6125c5da227fa42b7532f1174335eb5764ea401bed65b');
+INSERT INTO messages VALUES(853,310342,'insert','blocks','{"block_hash":"48669c2cb8e6bf2ca7f8e4846816d35396cbc88c349a8d1318ded0598a30edf7","block_index":310342,"block_time":310342000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f8bfc1ec3ab3e8a22c7422dc3e775ae0b5df32a6dac99cbc6fc8dd20b0e7f477');
+INSERT INTO messages VALUES(854,310342,'parse','blocks','{"block_index":310342,"ledger_hash":"3c85c0b825985b04b42137da7e59fb3daaaf9e65b871b79390a4d8b31be5da92","messages_hash":"b6c559dd500838db20c2aed3e148fa89c309263658a878eb2a84c6091997c93b","transaction_count":0,"txlist_hash":"b165c708026f386ddc7206518e594fcef7b5782fa0db77db6ce5b02e3b563145"}',0,'BLOCK_PARSED',NULL,'a665607b2cc03905c3213f3e299d379ae549315c7f1923801738c0639ff4eb0e');
+INSERT INTO messages VALUES(855,310343,'insert','blocks','{"block_hash":"41a1030c13ae11f5565e0045c73d15edc583a1ff6f3a8f5eac94ffcfaf759e11","block_index":310343,"block_time":310343000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e280edc41f9956fb0a9d1a853d85af8fe92dbb4c2ab8221701ab9efed2d5be44');
+INSERT INTO messages VALUES(856,310343,'parse','blocks','{"block_index":310343,"ledger_hash":"26f4ea323dd31b715c7a7f4ab8f1feabb199333a8494449ed538ff13215bb3b2","messages_hash":"c187583b8a55d536d5e6eca2f9cc06f02c8b2efd94db3c912c3df09996b4a26a","transaction_count":0,"txlist_hash":"37808f9fb4ad766c671be7e9703aa7c7ea53991fa838400536d25f304ebe8090"}',0,'BLOCK_PARSED',NULL,'c8e20ebfa9624a5edf9b1acf156304d77fafca0cf15f077116232a24492c256a');
+INSERT INTO messages VALUES(857,310344,'insert','blocks','{"block_hash":"97b74842207c7cd27160b23d74d7deb603882e4e5e61e2899c96a39b079b3977","block_index":310344,"block_time":310344000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cb995b6a06f6dab27fc312f0c725a129771df400f46a73eca94c9362ca2a71d');
+INSERT INTO messages VALUES(858,310344,'parse','blocks','{"block_index":310344,"ledger_hash":"444314748cb1fa1c836b3b4de65c3920c7fe446741193e5f77843affe3bee908","messages_hash":"decd1a4f3f0b69849d4f1fdbac5a1598060202b1550bc219fc3e15ba2c2a5cbb","transaction_count":0,"txlist_hash":"52dd50744ce4773a3db8dcf016a392a133ff7ebbeaf293d4ecb4a32fcc575a19"}',0,'BLOCK_PARSED',NULL,'dde2e1543dd480cf7a9fcdc5cd984977de9c549cb6f1bc6a7a814c4f8889415f');
+INSERT INTO messages VALUES(859,310345,'insert','blocks','{"block_hash":"0bda7b13d1bc2ba4c3c72e0f27157067677595264d6430038f0b227118de8c65","block_index":310345,"block_time":310345000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd1144d3dedd994e8f7c37856708d536474ed26a31869c220cbbcc9a96f90e24');
+INSERT INTO messages VALUES(860,310345,'parse','blocks','{"block_index":310345,"ledger_hash":"d1775816bb104187076be74e78e87fc6d367c3cb31d372329aec2b635002ca2e","messages_hash":"a731b3051144292529c7d6b902985492bd424768dc635cc7e031c5802624f1a8","transaction_count":0,"txlist_hash":"15f4f9eb55ff5d2b8efb40a57193f253470889b1fb2f532f02b66d236bc902bf"}',0,'BLOCK_PARSED',NULL,'fa1ef6cfded3afa1a7de416690d80b46dda80c54e7a1c481786421855aeffa94');
+INSERT INTO messages VALUES(861,310346,'insert','blocks','{"block_hash":"0635503844de474dd694ecbcfb93e578268f77a80230a29986dfa7eeade15b16","block_index":310346,"block_time":310346000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cccf13c313151a5fbf14bc8be2773e39f31074194049e8b2b03f8f7e0135e436');
+INSERT INTO messages VALUES(862,310346,'parse','blocks','{"block_index":310346,"ledger_hash":"3244eed1df8ec4ae0ddb04f9f6e59e54244ca3df10dc21fc89c99c74ba734781","messages_hash":"1e5e3139095ea2ae9758a112e20db4c16fea90ea959b772eef8e330ff37768ef","transaction_count":0,"txlist_hash":"58faa47bcd277d0d52d39a46473882adc797797cf2c30967418fb4ae832dc21d"}',0,'BLOCK_PARSED',NULL,'f12804498a0390bf1c90e2f564765e402d65ec8824132a03add3ba50ed2ad4da');
+INSERT INTO messages VALUES(863,310347,'insert','blocks','{"block_hash":"f3f6b7e7a27c8da4318f9f2f694f37aaa9255bbdad260cb46f319a4755a1a84d","block_index":310347,"block_time":310347000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f25a24e5ed0727b34e2f0ab7c83f1bb50185799325a4d5dd6b230d3130302db9');
+INSERT INTO messages VALUES(864,310347,'parse','blocks','{"block_index":310347,"ledger_hash":"6fd1802c269750b69ec04df457d47cd6b44c261340ebd5b4da61f06ede6aa166","messages_hash":"4eebf2b9735a33c0e18fd4d27ca8c8b55d872a6389bb0ada35e09f27c1bcb8ba","transaction_count":0,"txlist_hash":"716162f3fea6641e6ac697eb11880c5b39903de4ab30fa24e899e363d5c1d9cd"}',0,'BLOCK_PARSED',NULL,'95ce2f4343003290b00e1d847d68a77419b41b5352f5674073f0c95434789c35');
+INSERT INTO messages VALUES(865,310348,'insert','blocks','{"block_hash":"c912af0d57982701bcda4293ad1ff3456299fd9e4a1da939d8d94bcb86634412","block_index":310348,"block_time":310348000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c33eebb7caa1fc83b68f4c2eb80d1d52794d85449ecfd75b112496d649ba6221');
+INSERT INTO messages VALUES(866,310348,'parse','blocks','{"block_index":310348,"ledger_hash":"668330e80a23f499c0e91b01c4c51aab393813b840f81b6b672611e391699faf","messages_hash":"12dd2bbd984925a5dc916a224558e66cbac276542ee3a21d147288296ac6571d","transaction_count":0,"txlist_hash":"8c169d593d4c922ef7d3f530f6de4da37c01716f19ea19b48b122a6135f3e293"}',0,'BLOCK_PARSED',NULL,'79d84af98adc03020aa88dd61f7e581fd167c5d040fafbc10243931dfadfcbcd');
+INSERT INTO messages VALUES(867,310349,'insert','blocks','{"block_hash":"ca911c788add2e16726f4e194137f595823092482e48ff8dd3bdbe56c203523c","block_index":310349,"block_time":310349000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'80f2ee499ea85bd1a2cd58d81fffadbe926a5138092734a726841551c978add7');
+INSERT INTO messages VALUES(868,310349,'parse','blocks','{"block_index":310349,"ledger_hash":"32b36035ac1684e93126657ecd9711feb689672f64cceb03d220a8089dfacf12","messages_hash":"41e4b81a51c4ba0ad543970a1410209b3be1a0d3ec684025fac166c8db52ca50","transaction_count":0,"txlist_hash":"8d54849ce08f65fd3dd06baf845e5a3132b84c960e6f316c4bbbbe5a3d2b7b01"}',0,'BLOCK_PARSED',NULL,'44ea9d34e3e068999ef80128c8ad71dbcd88b50489d4107fd0aa87312cee9278');
+INSERT INTO messages VALUES(869,310350,'insert','blocks','{"block_hash":"c20d54368c4e558c44e2fbaa0765d3aecc8c9f01d456e3ff219508b5d06bd69d","block_index":310350,"block_time":310350000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca038ded8e200ef491a2c97ae486eec395e13223f49a5c312d30d113bccea626');
+INSERT INTO messages VALUES(870,310350,'parse','blocks','{"block_index":310350,"ledger_hash":"dbe70bf3b8e4b74ac25c1b6737b6a760e6a06a4f96ee83a5ca728c8501d4af05","messages_hash":"ea35f102808bf8a26d5e7c768cf165490601ef4969b4682c047128c4d6f97f3a","transaction_count":0,"txlist_hash":"1e46f66542896fa2ff6048472d49feed3065a6fffaad639da03027b00ce377bf"}',0,'BLOCK_PARSED',NULL,'3e16697f02d9a6c40dd870d67bc3fc714cb08b855174300f67847b837750d91a');
+INSERT INTO messages VALUES(871,310351,'insert','blocks','{"block_hash":"656bd69a59329dbea94b8b22cfdaaec8de9ab50204868f006494d78e7f88e26f","block_index":310351,"block_time":310351000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0684a35344739a2cb14b5b32223d1dcac54b3862b5c7f539bfc2a280c2b2998e');
+INSERT INTO messages VALUES(872,310351,'parse','blocks','{"block_index":310351,"ledger_hash":"89bb7ea865a221a3646f78ea774a7cf1e15e8d65b85ddcfbdf87773145904151","messages_hash":"244987449406364973d306dbe62598139c0929b88023589a365812a5e71eb49e","transaction_count":0,"txlist_hash":"f99c452388cd3d8aa59f7c75fa06770a116b5f69263dddbb7b5fdcffc7ffc524"}',0,'BLOCK_PARSED',NULL,'451c27ece0961dd8a6e32e61019954db80472bd38f09ee4ce33518b47c56f5b3');
+INSERT INTO messages VALUES(873,310352,'insert','blocks','{"block_hash":"fb97d2f766a23acb9644fef833e0257fdb74546e50d9e2303cf88d2e82b71a50","block_index":310352,"block_time":310352000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f26b0dca198ee769543d544270f2d97b271a7a1b35b7f585afbf306dbe0b88e');
+INSERT INTO messages VALUES(874,310352,'parse','blocks','{"block_index":310352,"ledger_hash":"fdbf27d576a72b046776be0e5c0a91d060619778aadef3df1d30f1a7785a0fdb","messages_hash":"031d4dff64916ac3c9258d70572f74a1d6ea472e35c1ccfefaa23ebb8d79d633","transaction_count":0,"txlist_hash":"1d2f391bb7990954e14c69c9429b54b9f5a88791ec4b2fba2facb464152417f4"}',0,'BLOCK_PARSED',NULL,'6cac46a5c96f5b7e277917bee5a3fc924abd5fb8cf30f2b7b3cb639e02e902cb');
+INSERT INTO messages VALUES(875,310353,'insert','blocks','{"block_hash":"2d3e451f189fc2f29704b1b09820278dd1eeb347fef11352d7a680c9aecc13b8","block_index":310353,"block_time":310353000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17a1fb7bf613a347b05161645a93dcc80bc9fcc6a56c27a8927e992a0a6dbd42');
+INSERT INTO messages VALUES(876,310353,'parse','blocks','{"block_index":310353,"ledger_hash":"73429d323376209447edc6d2ddbfd51f0bcde21736ea6dad61dc96b6984a1fa1","messages_hash":"cad4178e8f93daea91aed22c2be78b57b41e0ecd881ba3bc07b895fff727b3df","transaction_count":0,"txlist_hash":"8ad1adee999dd851e81025b31920d1f0f66c1e56433e7b2b110d03cfccd7a141"}',0,'BLOCK_PARSED',NULL,'4212ca32b91684a51d900d5228dbf7ed31eb672bf6e7a68d13ed570e80062374');
+INSERT INTO messages VALUES(877,310354,'insert','blocks','{"block_hash":"437d9635e1702247e0d9330347cc6e339e3678be89a760ba9bf79dd2cd8803e0","block_index":310354,"block_time":310354000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cee3fc4b22cd85ce7caac211cb53b5b3fed823f0f75ca0cdfbf3fe66dd3223c');
+INSERT INTO messages VALUES(878,310354,'parse','blocks','{"block_index":310354,"ledger_hash":"b2bbcbb6a7db94b2a5681c6e380ac13480bb49c29a3fbb3c7c1eb740f70f8324","messages_hash":"77573354a998f422c5069e51f912f1d9e18c810b8f3bffc78047130069aef993","transaction_count":0,"txlist_hash":"8d6870632f2336908828a72e7445c9d8ecbec3d420b234dad2b17ae06c0a709c"}',0,'BLOCK_PARSED',NULL,'3d8444e782c2c1c26166ba23f58a700cfe076263ca34dd77d82dceeb35c1c0f6');
+INSERT INTO messages VALUES(879,310355,'insert','blocks','{"block_hash":"ea80897a4f9167bfc775e4e43840d9ea6f839f3571c7ab4433f1e082f4bbe37d","block_index":310355,"block_time":310355000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e8f4124037c1bfaa5253e889bfd0b7d61ac6886d374f9aaac579c9470f7a8d0');
+INSERT INTO messages VALUES(880,310355,'parse','blocks','{"block_index":310355,"ledger_hash":"ccbd3ea41587c3c1d92f355979b49c5340a0a90060f07c228c22d6ff76b25579","messages_hash":"38204d3168af99baf64d6f5d1adf616ba0d836b15c0f12f8c5b86867a4f2f913","transaction_count":0,"txlist_hash":"8dfb02eb42bf84a085d150a0dc3fb2effa201594da47639e8f77fea0a7084eea"}',0,'BLOCK_PARSED',NULL,'619dd2849f67adf39f61b15e6a0d80412d91a63ce1f9b0cb20e1fc9583855449');
+INSERT INTO messages VALUES(881,310356,'insert','blocks','{"block_hash":"68088305f7eba74c1d50458e5e5ca5a849f0b4a4e9935709d8ee56877b1b55c4","block_index":310356,"block_time":310356000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'185e853290b52dc77e22c4ede2545a64a8fb080ec70ddaa3f3693c6a3d555590');
+INSERT INTO messages VALUES(882,310356,'parse','blocks','{"block_index":310356,"ledger_hash":"06a95d39e110e40ba318320d50984096cbec88c680f426f721154555efc2561f","messages_hash":"2acad89b01a594cc31f992a3d44effbafc348fc378c58ae1dec71ce8eff51437","transaction_count":0,"txlist_hash":"3516c2e9b180883b3526ee0a028c6d22b2a8a028b896423eb71db31cc284d566"}',0,'BLOCK_PARSED',NULL,'81719ee67d3883a55edc217e9fbdbdcd796b256521fc4be43ae150bc30093436');
+INSERT INTO messages VALUES(883,310357,'insert','blocks','{"block_hash":"4572f7f4ad467ef78212e9e08fa2ce3f01f2acc28c0b8ca9d1479380726bab1f","block_index":310357,"block_time":310357000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28e3282abb87e16db1ea238e61aa6707199ed2a683e2e5483147b0d7f305e636');
+INSERT INTO messages VALUES(884,310357,'parse','blocks','{"block_index":310357,"ledger_hash":"443f947352e853367d1c10d25771c7d78eec22fac19c5bace6f96b8f949e264b","messages_hash":"826d24f8aae326da58576b14bb24b92f4be288b8313cd0b38ba1cb7ebad45d25","transaction_count":0,"txlist_hash":"af4dd2cd8426ceb8c7dacc24b30d4d48e1152340a5a81f32b745878558969f4a"}',0,'BLOCK_PARSED',NULL,'33b6c45bda771527c503d045e5eccfacfb7337b2bef3428d0b7420e83def4a1b');
+INSERT INTO messages VALUES(885,310358,'insert','blocks','{"block_hash":"d5eae5513f1264d00d8c83fe9271e984774526d89b03ecd78d62d4d95ec1dea6","block_index":310358,"block_time":310358000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3d9a8dfa46199e4ed6acead3018a96be85763e8b1e2f5fd9bbafc7e30b8af75');
+INSERT INTO messages VALUES(886,310358,'parse','blocks','{"block_index":310358,"ledger_hash":"c2cd71dc9e7d5ccb5d5e9d6b55c47010c9db6a573d01820da1c8960970fd571f","messages_hash":"64d584d86ace25a27fcc630c93bf0ec1598ff84d36c7a00a9fa49135412ccf9d","transaction_count":0,"txlist_hash":"635f90dc6b705e3e5928101d6ffc32a247088fd8965e0e372358b35ba822df31"}',0,'BLOCK_PARSED',NULL,'233a33d7a1e6359ad7400690f5dc175b4f8b62fd8ead081a3bc37020de828ed5');
+INSERT INTO messages VALUES(887,310359,'insert','blocks','{"block_hash":"4fa301160e7e0be18a33065475b1511e859475f390133857a803de0692a9b74f","block_index":310359,"block_time":310359000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d82ebb958ef8a50a094c13c0f1570222429c1d19158921d242d02111eeb4ff66');
+INSERT INTO messages VALUES(888,310359,'parse','blocks','{"block_index":310359,"ledger_hash":"5b7646bafc6b11eb1554ea1e02221883043b435ae973c3678505fa2128aadfb7","messages_hash":"7e6df1662019e3b9e2101670d0b73381e2690e512c97b7a3366c04d349cb1b5a","transaction_count":0,"txlist_hash":"eeec8a86b03a3973bdf5215e1789277ab7aa4c47f4e9f05a44a312c01e0ccf0d"}',0,'BLOCK_PARSED',NULL,'38db52a2a3e8fee6f3a745dc39151c9a1e1a557e094960ddaa2e03cb5674bab6');
+INSERT INTO messages VALUES(889,310360,'insert','blocks','{"block_hash":"cc852c3c20dbb58466f9a3c9f6df59ef1c3584f849272e100823a95b7a3c79f0","block_index":310360,"block_time":310360000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5025485ef694326793133a939370cc76fe2571ee74214961fc5ba91be3047158');
+INSERT INTO messages VALUES(890,310360,'parse','blocks','{"block_index":310360,"ledger_hash":"b0e937568a47c244e3b29cfb3a5e7196c171acc1565c44020345c715b7774658","messages_hash":"58e90cca3333c6d949a32184e857631b1b37b190ec954c49f20772e70af704f7","transaction_count":0,"txlist_hash":"32f4991609b3d8cbddbee2fe5e7aff49e7d4f5334ba0d283893733f19d3f448b"}',0,'BLOCK_PARSED',NULL,'2e3e30ee3f0b2dd0fb310e3baae61186f2d5c99ad6a02f4916a6e42d4ed39685');
+INSERT INTO messages VALUES(891,310361,'insert','blocks','{"block_hash":"636110c0af5c76ada1a19fa5cd012e3ee796723f8a7b3a5457d8cb81d6c57019","block_index":310361,"block_time":310361000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'acbc46fd8bd7d35f29c3d892d01b0d836700148b26fac9790559cbbaa2ccfa8f');
+INSERT INTO messages VALUES(892,310361,'parse','blocks','{"block_index":310361,"ledger_hash":"fd5b67bb571f4e9c0c37c6a5c9e1181133c301e05f4f97a41bd827eda7a6db3c","messages_hash":"bd5e3e0d1b88381f062d92dd3ed978aa48187c81c403cbde5832ffdb85bb2311","transaction_count":0,"txlist_hash":"4ad763ba9a9de4e6fd2f48d1342b9c2b4f87224fe591cddcf0ea3aab19187ab3"}',0,'BLOCK_PARSED',NULL,'88a548cb2a66dd3f61f2aa8849cf9e418221f3cd75bdb078416680f060b805e0');
+INSERT INTO messages VALUES(893,310362,'insert','blocks','{"block_hash":"6199591a598e9b2159adb828ab26d48c37c26b784f8467a6bb55d51d7b6390f2","block_index":310362,"block_time":310362000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84f4472532cfd216b00585d6d159ec5a683b079ea507fc386c5c43538b856859');
+INSERT INTO messages VALUES(894,310362,'parse','blocks','{"block_index":310362,"ledger_hash":"38382cc090b349809c4798c3c83b485f8ff682fd5b5b2568357d62ef30f7c046","messages_hash":"0fcf86dd42300375ea880171e8b2fe8b4b5e32e49a99cf47f44f683e6599d447","transaction_count":0,"txlist_hash":"2eed1cb542570837b9e34c5ef140428d09c132369e5073061d9b1580338fad97"}',0,'BLOCK_PARSED',NULL,'53122dfbd251837add96d76a548668adb95672451b4d6ed17e8923d109a9008c');
+INSERT INTO messages VALUES(895,310363,'insert','blocks','{"block_hash":"a31967b730f72da6ad20f563df18c081c13e3537ba7ea5ab5d01db40e02647e6","block_index":310363,"block_time":310363000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e41163cb02d0e620c17903487fa6f996866a34b2df05edfb804992bd0e1674c0');
+INSERT INTO messages VALUES(896,310363,'parse','blocks','{"block_index":310363,"ledger_hash":"82911a691937d87629bc14e5294f68a25ff2fc6512370db032834b85a623d5c3","messages_hash":"7858f1f096a07367403f604be1423cc72c7e4ef081c0d4772801fcc5b0198e38","transaction_count":0,"txlist_hash":"baa8c23f6f8bbed9640382166a4fa59eba156a3c94b645334124a57ad886136d"}',0,'BLOCK_PARSED',NULL,'f580a022e093d7e80698b6abb686b683adf8c53f4380ca521d8f3cbf5a0246e2');
+INSERT INTO messages VALUES(897,310364,'insert','blocks','{"block_hash":"67025b6f69e33546f3309b229ea1ae22ed12b0544b48e202f5387e08d13be0c9","block_index":310364,"block_time":310364000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8694faeafefe76118898a1eb72b826ce82016761ecb2e0021f0e12f6ff5b182c');
+INSERT INTO messages VALUES(898,310364,'parse','blocks','{"block_index":310364,"ledger_hash":"cc362ce4c2142e539057430e2dd6402b985c62fefa4e4ad33afe1305f53af8a4","messages_hash":"9124a7e2148fa8d962e232e568710593fb3861dd53b6288cf904693bfb714bfa","transaction_count":0,"txlist_hash":"973037f8124687eaeba2e9f3e301cb20b9370bef4acd3f2c86eedf595b792b73"}',0,'BLOCK_PARSED',NULL,'4e75f161e93dfce6d979c4d1520437fdb283e27534d78be7171d540d098b1bca');
+INSERT INTO messages VALUES(899,310365,'insert','blocks','{"block_hash":"b65b578ed93a85ea5f5005ec957765e2d41e741480adde6968315fe09784c409","block_index":310365,"block_time":310365000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5abfe9049647154a2d5a2b0e82c3873690cc9a834b3043559225e6fdfc47fbfd');
+INSERT INTO messages VALUES(900,310365,'parse','blocks','{"block_index":310365,"ledger_hash":"49e41f95f081b70e3f540fa22864cc4f229ceabfdfd54f2da112f1fd35466617","messages_hash":"318a1e2865a422b38ca84c5791a5c58b36e521ec1ff8a4df6f0a860411817733","transaction_count":0,"txlist_hash":"aa3e39acb1dc1a955f579a9a40961a80319c5dd484ddf322ca6edc6b67cec932"}',0,'BLOCK_PARSED',NULL,'7206be8b48e7dd299ff5c86b88c53b16c861f6f8d6f4d02f0c53d9b3fa6483fe');
+INSERT INTO messages VALUES(901,310366,'insert','blocks','{"block_hash":"a7843440b110ab26327672e3d65125a1b9efd838671422b6ede6c85890352440","block_index":310366,"block_time":310366000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab97114c7a6c0c8fcd072d8331fb9a0030c089367701ffcb54e13a31958d10c6');
+INSERT INTO messages VALUES(902,310366,'parse','blocks','{"block_index":310366,"ledger_hash":"687c5f3e381d164499126ff90785e3635c825db3808267d4de2ec0e37cc7c597","messages_hash":"e61cf39628b1d43a48443e294f0bce4a9be814381abc1628835664530fe8d41a","transaction_count":0,"txlist_hash":"610fbd2d8f4dad57d7efca0772534da791785cb2c45de1906a9b282792faa9f8"}',0,'BLOCK_PARSED',NULL,'2b290ed7430462dd2335a8e2f2526a1f4cd88ae787638069bd8c1085c4c8da4e');
+INSERT INTO messages VALUES(903,310367,'insert','blocks','{"block_hash":"326c7e51165800a892b48909d105ff5ea572ff408d56d1623ad66d3dfeeb4f47","block_index":310367,"block_time":310367000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bafc0ab11047ba67df3f81fac3fc83878833eaf22f8620d4fe9812c8d9fd55a');
+INSERT INTO messages VALUES(904,310367,'parse','blocks','{"block_index":310367,"ledger_hash":"d7fe976a4b2cca2e23d082a703ef4f4739e110ce1e0a373e76064f6186856ff7","messages_hash":"3e868d60c3153c31ba83298c1d4aae099da68a21e9b9a4092524c1ac1f7de9aa","transaction_count":0,"txlist_hash":"531453a70483611396ce5bacc17e22125b1b61f61d56c110fb72a929b95deb9a"}',0,'BLOCK_PARSED',NULL,'59ce4b4c278974b90b6ec5147845a0ab65c25954144e9de07b5057c8b69274f9');
+INSERT INTO messages VALUES(905,310368,'insert','blocks','{"block_hash":"f7bfee2feb32c2bfd998dc0f6bff5e5994a3131808b912d692c3089528b4e006","block_index":310368,"block_time":310368000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e573616a0e8672b463780c1c4e46aa912dbd1fc5368002b089e4d1c894e94fb2');
+INSERT INTO messages VALUES(906,310368,'parse','blocks','{"block_index":310368,"ledger_hash":"97f0a0f9e6f355dd179aa2941412decc1b0a06de0dc14dce8538aed6e35d41ba","messages_hash":"6169c9dca78bfaea926977e069d40c841ba291fedbf0317372889d6e677ba2ea","transaction_count":0,"txlist_hash":"289eb338000f45b4d7e143a08a490fbee8d307eb0975f5a2ed62586c2f625e0e"}',0,'BLOCK_PARSED',NULL,'6acdc4511196a67834d69fb3ea794b13329ed48fae84ebd4a546ddab3a16c38b');
+INSERT INTO messages VALUES(907,310369,'insert','blocks','{"block_hash":"0f836b76eb06019a6bb01776e80bc10dac9fb77002262c80d6683fd42dbfc8da","block_index":310369,"block_time":310369000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6ced60643c0a3237dbf8bc845ce73930700ac4917ea0da85e71a8ada72930d98');
+INSERT INTO messages VALUES(908,310369,'parse','blocks','{"block_index":310369,"ledger_hash":"1b5d9ec9bd918c84a5f9b6882c94a739cc1ad1362dedfbdf7b2009fd42251d66","messages_hash":"8003f8dad350e74b3c92a05fd97fcfd40df87c238ff0ef1e970367d2fbdd67c6","transaction_count":0,"txlist_hash":"a9122294ce4ccd606d3fa1787fb9c44f25811fb2fe486c9d58b407b5da50dd8b"}',0,'BLOCK_PARSED',NULL,'fca9eb6bc2d294cc4dec78a8223ddaec58275fd5214bad9dfa40b647c72ad979');
+INSERT INTO messages VALUES(909,310370,'insert','blocks','{"block_hash":"9eb8f1f6cc0ed3d2a77c5b2c66965150c8ceb26d357b9844e19674d8221fef67","block_index":310370,"block_time":310370000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7975e054555e89431e7a24ed4e59f4eebf527e5229796bc964ed12a1a32e2a4d');
+INSERT INTO messages VALUES(910,310370,'parse','blocks','{"block_index":310370,"ledger_hash":"578b039ed2b9a25e1c75ad9a5242c5962d6645616dc53fb08386602e40f14486","messages_hash":"0b32539753507a56ef0903e510f8702e6c46dbad1c711088663d0ac177bc18c3","transaction_count":0,"txlist_hash":"d61d958644caab04dc236d04d3654abeb1fd625dd7b9cdc01ca5caeae9b41f58"}',0,'BLOCK_PARSED',NULL,'a71e9b27b3c618d5b9723277fb68048771d077a93aeebdf441cda8d968c2cccc');
+INSERT INTO messages VALUES(911,310371,'insert','blocks','{"block_hash":"7404cb31a39887a9841c2c27309d8c50b88748ed5fa8a3e5ba4cc3fc18310154","block_index":310371,"block_time":310371000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d26909a410a9b4933c75be63660f68fdb9e50362bbf4d225c141ba38a1ae1b2b');
+INSERT INTO messages VALUES(912,310371,'parse','blocks','{"block_index":310371,"ledger_hash":"473d21b8218a2b02f7fa0d5daf114fa988e4a3d97c33aebe97e51a8d22252492","messages_hash":"1831fd632b07925c3c872734e5a6c8477f5c9627cd4fcaf84ceb0f1c672f8d57","transaction_count":0,"txlist_hash":"8abb7bf5c66895fd9e9de804ed8e35b3b1d12054a4e45ab3df6cd41194d836e6"}',0,'BLOCK_PARSED',NULL,'8cfbf4e5c7c34bbbbf3d783a9151034498951849de3587669872f45ee9743638');
+INSERT INTO messages VALUES(913,310372,'insert','blocks','{"block_hash":"d3a790f6f5f85e2662a9d5fcd94a38bfe9f318ffd695f4770b6ea0770e1ae18d","block_index":310372,"block_time":310372000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9df75dd16c6f4440f8e827e3965a38bdb231f4bcaee92078c83e598526a28fd9');
+INSERT INTO messages VALUES(914,310372,'parse','blocks','{"block_index":310372,"ledger_hash":"0c306eb25702d190ce32cac521b1fac9b8a7cbcf441fd74be8de2e002b4ce14c","messages_hash":"dd4b574811986e7ee1339e3e93d1729c86df7bf083c46f3d1a312bd5055bdb96","transaction_count":0,"txlist_hash":"ad3d52b024093fcc5b88b7a3176c4117468f0f675fd9e908c727ebedc5e2eff3"}',0,'BLOCK_PARSED',NULL,'676b04a6084411dd69c77a5660f2d8358f656b3669ded8b0d5a9e8e943875431');
+INSERT INTO messages VALUES(915,310373,'insert','blocks','{"block_hash":"c192bec419937220c2705ce8a260ba0922940af116e10a2bc9db94f7497cf9c0","block_index":310373,"block_time":310373000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1556bdd2e78c42441e1e32baf388ec41ac88f7625f513327a9a7b103e6f9863f');
+INSERT INTO messages VALUES(916,310373,'parse','blocks','{"block_index":310373,"ledger_hash":"48d14b17f9074ce1f75ab32581e8f6fe7d518ebd669af6508e5d986d97c92b3d","messages_hash":"e2d559b62d0d4058a4ddd55f79be891cd8d021019238489d050c7d3eed81f931","transaction_count":0,"txlist_hash":"b60270d322c86c6452289e0968be64c2217ebeec34944e43aef908e119f838ea"}',0,'BLOCK_PARSED',NULL,'db2f6a3c2d9c99cfbd900642d08b974382269c5dc61163e705f5a2f2443cbf5c');
+INSERT INTO messages VALUES(917,310374,'insert','blocks','{"block_hash":"f541273d293a084509916c10aec0de40092c7695888ec7510f23e0c7bb405f8e","block_index":310374,"block_time":310374000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bb3ccad4cce5cd9a2a0feca8783878cf5a989dc4d632fe56f8f1e037d93a873');
+INSERT INTO messages VALUES(918,310374,'parse','blocks','{"block_index":310374,"ledger_hash":"aee93917f6fe0046069aaff48d5d1875a9c4451acec6562a377428bfb1184cd4","messages_hash":"1ee78026540d87a193c602de925e52b645eef726dad5fda2fc759eec5d6257ed","transaction_count":0,"txlist_hash":"46decb141683d0bf4c52e4f756b955c923bfb3995025d0f19a8ef7cac1dd2b60"}',0,'BLOCK_PARSED',NULL,'cc5f8bffceb5afdea883995f3087460d15ac7fdb156512bcd2a90feb793a9d01');
+INSERT INTO messages VALUES(919,310375,'insert','blocks','{"block_hash":"da666e1886212e20c154aba9d6b617e471106ddc9b8c8a28e9860baf82a17458","block_index":310375,"block_time":310375000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ca3cd4179a5b1fb49e66db1d49d7abcc61685701861c7011c149182c2679bc72');
+INSERT INTO messages VALUES(920,310375,'parse','blocks','{"block_index":310375,"ledger_hash":"2b0d74911bba5c9530b69c04fec512fe4c5df25458e5237db884586a221fa30b","messages_hash":"00d006b3b5d64246407d6de8ad00f7b7d79c0d3a7912e41d4b7959d542865438","transaction_count":0,"txlist_hash":"9349961eeb706cf083d6ef1fff69cc871def662dd23fd7854135c1b0dc1a78fb"}',0,'BLOCK_PARSED',NULL,'febb7acc6d3e5dd5bd2ebf560f74b456d2d240480dd24ac7f3539939609b80d8');
+INSERT INTO messages VALUES(921,310376,'insert','blocks','{"block_hash":"5dc483d7d1697eb823cba64bb8d6c0aded59d00ea37067de0caeebf3ea4ea7dc","block_index":310376,"block_time":310376000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8a3f9598ac9b44d511fc54bf47af6217a305fdad1d43e68207c274d721898d5');
+INSERT INTO messages VALUES(922,310376,'parse','blocks','{"block_index":310376,"ledger_hash":"a6f84afe2845ba2fa4e5e7377b1d4474dbde6dfc9c4bed050e6d10cc80025e82","messages_hash":"71f7f745bfe6891be3de7c1c9cb73347b4a8dc627b6c861703f227c4ffd134ab","transaction_count":0,"txlist_hash":"a5f607569f31beb9ba2a0496a9eb2eb40a6926df4b174161b73f53719ad04767"}',0,'BLOCK_PARSED',NULL,'24be5ac1d676f6822d173f0ad337d56adff28cc4de445271b41efb416f2749e3');
+INSERT INTO messages VALUES(923,310377,'insert','blocks','{"block_hash":"f8d1cac1fef3fa6e7ad1c44ff6ae2c6920985bad74e77a6868612ee81f16b0b3","block_index":310377,"block_time":310377000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57e8a900c5e0625cbbad450834ffb8160d0fcec153273da1064702f4cd0e544b');
+INSERT INTO messages VALUES(924,310377,'parse','blocks','{"block_index":310377,"ledger_hash":"e006e13691719e4fce65e72c692d3affeae8ae465de2a3b285a1bed4eb518a70","messages_hash":"92bd7c3cfec934d773594b68e1f913273cd994e94aa4292b753783e8fb0d5f59","transaction_count":0,"txlist_hash":"4dd3a5ae07e934557005871e7c72351077b1092580eadda11fcd3501bb000579"}',0,'BLOCK_PARSED',NULL,'1c41926ec4f2277afb46f7d5a063fc822dbcee789412de290831e91aa8b8c23d');
+INSERT INTO messages VALUES(925,310378,'insert','blocks','{"block_hash":"fec994dd24e213aa78f166ca315c90cb74ee871295a252723dd269c13fc614ce","block_index":310378,"block_time":310378000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3fd9bf3bc24a83d3ebf0ce962ad16c449b0d64c364cb7280cf42f1ee3e74fc7');
+INSERT INTO messages VALUES(926,310378,'parse','blocks','{"block_index":310378,"ledger_hash":"607ffa4928577b82f275750353fcecc2e50098d227f18bb8ea95ac2bbb10eea6","messages_hash":"ea83e7971e82ef366ec96fd9141737579bb3ebc10e9f4469afd9540a830b9d41","transaction_count":0,"txlist_hash":"49533405fa36a389e0d8cac965389e23eb421da5833d625d160f75fa9defdeab"}',0,'BLOCK_PARSED',NULL,'5691bca473d9d2b81ee9659c9305cc4c39224263b6faf99bc555373a47497d2f');
+INSERT INTO messages VALUES(927,310379,'insert','blocks','{"block_hash":"d86cdb36616976eafb054477058de5670a02194f3ee27911df1822ff1c26f19c","block_index":310379,"block_time":310379000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9927cfad33f3b79911ab135b895087b40aa2dfc9e7fcaebcd9b4826cdb34ac84');
+INSERT INTO messages VALUES(928,310379,'parse','blocks','{"block_index":310379,"ledger_hash":"9f17e8d662dbbfc12a56dc36172b3154bc9b05a87885d1411826481e1ca4f6ea","messages_hash":"c0c7c05ededa44c7e65c0908679eb34d7cad986375e15ebd0d0f683c83729a58","transaction_count":0,"txlist_hash":"4514a78a69d0987ff60976334f70d0533a1c5726099ae73d93be187a57f25f44"}',0,'BLOCK_PARSED',NULL,'9622e1c6f62b21f058be4d5728b59ff234ba32ba227ae3448eb674a58ec33067');
+INSERT INTO messages VALUES(929,310380,'insert','blocks','{"block_hash":"292dba1b887326f0719fe00caf9863afc613fc1643e041ba7678a325cf2b6aae","block_index":310380,"block_time":310380000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'64c1817c9205023016ae9433a52d5e49fb630128409fe18664de8388443c407d');
+INSERT INTO messages VALUES(930,310380,'parse','blocks','{"block_index":310380,"ledger_hash":"d617e30e1a32ed1cf269a190fd4c843755413492827546a0b3ed14278f817532","messages_hash":"ed4a29c3387961059f43795861d929aa20a337a664fd984331f2276b35d2b526","transaction_count":0,"txlist_hash":"77038e6b75820a64c9fc9530b3d2c8411cc4da649fc69a3d235424c2dd5500c5"}',0,'BLOCK_PARSED',NULL,'b0b73cb21f59756bb0ec32472be3f56328217648ac2e340e5667fc52a04eeaa4');
+INSERT INTO messages VALUES(931,310381,'insert','blocks','{"block_hash":"6726e0171d41e8b03e8c7a245ef69477b44506b651efe999e892e1e6d9d4cf38","block_index":310381,"block_time":310381000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'950f2c08fc5811ae2e736cedbf31a0dfb66e15f61d614bcd90bb1f209894f4c1');
+INSERT INTO messages VALUES(932,310381,'parse','blocks','{"block_index":310381,"ledger_hash":"8af8d819f02927de4a74d3d37dcecf6e5124d53be37603764b1b1adad13b0d7a","messages_hash":"ed39c524ec141484d36b2d000b552aba4ddffc254462198954d1c365498b344d","transaction_count":0,"txlist_hash":"48b66540bea91d2c2d216d5c13e88dfd9c1f1a36cae2ec721253034041e63af6"}',0,'BLOCK_PARSED',NULL,'8e6d3b6a53d1b91115b3cdc96884c37716ace480d66a9ef5e03a756cde2c575b');
+INSERT INTO messages VALUES(933,310382,'insert','blocks','{"block_hash":"0be33004c34938cedd0901b03c95e55d91590aa2fec6c5f6e44aec5366a0e7d8","block_index":310382,"block_time":310382000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0dc9c3883de16aa0deddb072c29b7357a92b31ff07da6672a9f34dff05377367');
+INSERT INTO messages VALUES(934,310382,'parse','blocks','{"block_index":310382,"ledger_hash":"809d5c20335bbefe8e4f3552e24b24d96f6ee4ab12f3bfc9e74898371cf69797","messages_hash":"68c3c0a0602440173dd56bde3c36da766981ddcee65346a6ac0b563e3b7a348e","transaction_count":0,"txlist_hash":"159e8434abde33d3a97a4e7701cafec884a6d0d7ad78852ee7db449a18c5e23f"}',0,'BLOCK_PARSED',NULL,'0cb3ff674bd9a55994df6db8a3d2be9dd981d7f6fe8f43795d286fb2ee07c506');
+INSERT INTO messages VALUES(935,310383,'insert','blocks','{"block_hash":"992ff9a3b2f4e303854514d4cad554ff333c1f3f84961aa5a6b570af44a74508","block_index":310383,"block_time":310383000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460da74890e66a488f29603427e9904a342e1927fe64c396fc3bc468bb05ce30');
+INSERT INTO messages VALUES(936,310383,'parse','blocks','{"block_index":310383,"ledger_hash":"d8ec301994a5333f8efe7cc547a833d26c6766deb0b39c4fc18d1bdb470ee903","messages_hash":"1ae61f57d27ee48f6ce52e9b7db2aa123f51b13c535112fed565e50f3356d5a3","transaction_count":0,"txlist_hash":"aecbe5619daf47a60ab2765502725a284224c0985e91993b212c50c3449d197a"}',0,'BLOCK_PARSED',NULL,'9e4575c0c534981e81b84cb6545e162a715d365df52015aa32ac431d94ab49da');
+INSERT INTO messages VALUES(937,310384,'insert','blocks','{"block_hash":"d518c696796401d77956d878cbdc247e207f03198eabc2749d61ebeadee87e5e","block_index":310384,"block_time":310384000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f9cfa38120e4780cb184062d57c8283c4856850e62c708f3b45dce5f34de36c');
+INSERT INTO messages VALUES(938,310384,'parse','blocks','{"block_index":310384,"ledger_hash":"fe47a03993cb9079a6e72810552d631fe838bcfaba3b34c73c9948af77266df2","messages_hash":"0d00edc4ac46ff2e00ad11b61ced839ebfa03a9e33e7596bee093e404c0cf55a","transaction_count":0,"txlist_hash":"e69bc390fb0a624f6d33512a55e9732857afee1b114df97761186ac648f63111"}',0,'BLOCK_PARSED',NULL,'9bae16cf986f176fa96865060a522b402f64e11528de037e9dd048abcd19d5b0');
+INSERT INTO messages VALUES(939,310385,'insert','blocks','{"block_hash":"2aa6a491a03a1a16adbc5f5e795c97ec338345cfdf10ff711ffb7ac3a0e26e28","block_index":310385,"block_time":310385000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'796e7742737fd71ebab4207f43ce839050c51b9a2f2386b321e1ef919049d69b');
+INSERT INTO messages VALUES(940,310385,'parse','blocks','{"block_index":310385,"ledger_hash":"6114e98e0004cf0f9472fce6bfa6bb99ae38e57214c8b134f30da1d62399f6ef","messages_hash":"552784daedd82dd951f7c620821a5dd0fa63eb6e2116af6ca470c260e47248ea","transaction_count":0,"txlist_hash":"d3e6a4df9ff34518f8fe243dc87c981aef0cc7b89ff9ca466269a19493aeaecb"}',0,'BLOCK_PARSED',NULL,'f9af01e0d60e892b506cbfcaeee771ed000c5629b94d14d95998381535099b6a');
+INSERT INTO messages VALUES(941,310386,'insert','blocks','{"block_hash":"9d19a754b48a180fd5ebb0ae63e96fa9f4a67e475aeefa41f8f4f8420e677eda","block_index":310386,"block_time":310386000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b39dba48fbf56080451f2371a19a15fa3e60e876632c6ca19234e46ee393fef7');
+INSERT INTO messages VALUES(942,310386,'parse','blocks','{"block_index":310386,"ledger_hash":"4c52d59ade1bd2068e3b75b8b3cd1d23c6a94b6437f7966d10f5a07bf8f630ff","messages_hash":"d72a4beea7dae0c972feafcb1542de04eb1f407c2446964a77b4b15f2d489bb2","transaction_count":0,"txlist_hash":"1c250ef18892c191c535562bb35bb1c8bd4f515ab00bc4cf0b564436b2bd33ee"}',0,'BLOCK_PARSED',NULL,'b886443113c2c9bc6a20a897ab335eca307faeaeeaad94cafb4939c119d036f1');
+INSERT INTO messages VALUES(943,310387,'insert','blocks','{"block_hash":"b4cac00f59c626206e193575b3ba9bfddd83bbfc374ebeb2838acd25e34a6c2b","block_index":310387,"block_time":310387000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b12708d93b971c1b4cca6d6d7c8f4ab89c5a7dd7515a36ac210a5eca790758fd');
+INSERT INTO messages VALUES(944,310387,'parse','blocks','{"block_index":310387,"ledger_hash":"327e9a842233568888998ec1456b6f78c093b47639707d44e6336b2bc18d955f","messages_hash":"6c4fdf12a3944933286f82ffc2cc8ea5717e92a79662a1002ee87b6c3c328358","transaction_count":0,"txlist_hash":"d7de64dd98a65b478518d909b1f0f2860f6a0b8e5e530f23ee55caffbaf1a545"}',0,'BLOCK_PARSED',NULL,'fbf996db3e159633237fcefe71fbfae38db7321ffd8db27921bc84063ae4627b');
+INSERT INTO messages VALUES(945,310388,'insert','blocks','{"block_hash":"41a04637694ea47a57b76fb52d3e8cfe67ee28e3e8744218f652166abe833284","block_index":310388,"block_time":310388000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b05ba01bc0b9f84cc06f6ade7407f4c4bcaf479888e02e0179fbb01af9b19e2');
+INSERT INTO messages VALUES(946,310388,'parse','blocks','{"block_index":310388,"ledger_hash":"6efaab188a5cae39ef547a804f61bcbc2be4881e0569f49d7622b407f6860401","messages_hash":"7fc9103dad9e6891d9b9de61a14acf6f0a5ad35bef48927444252504290adaee","transaction_count":0,"txlist_hash":"4916559fdc472a474aa4c652c85b0db143744daed0d98d7f2fddd1dba32be88e"}',0,'BLOCK_PARSED',NULL,'85ee792b39421292c637bc37deb4329eb51e262b95d249fc78549985080b90f0');
+INSERT INTO messages VALUES(947,310389,'insert','blocks','{"block_hash":"3ec95ae011161c6752f308d28bde892b2846e96a96de164e5f3394744d0aa607","block_index":310389,"block_time":310389000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a13599fca4a1b1afbdf90bc42235e632ee0784b77800f7c85367de691e4c9f28');
+INSERT INTO messages VALUES(948,310389,'parse','blocks','{"block_index":310389,"ledger_hash":"89c686d5d973691a7281268c867f837b86b140a05f16f12302a3cdeb3b6a0ee9","messages_hash":"11e6afd0bba96e205869c3a4a69e66234f9392e0302ff5f5ff49e83c834cbca3","transaction_count":0,"txlist_hash":"b2e0098e42f81a8a9369d510b17be67446feb3e5da1b1eb37acd9f0b33b29fce"}',0,'BLOCK_PARSED',NULL,'1186de8f0fcd0bb97eadf7c49c77d48b4273581cf0611da71c67d9e790d86eb4');
+INSERT INTO messages VALUES(949,310390,'insert','blocks','{"block_hash":"f05a916c6be28909fa19d176e0232f704d8108f73083dded5365d05b306ddf1a","block_index":310390,"block_time":310390000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'227040116c94e346010c9936b008a4a5fed7e754bb4edd4d7687a0efbf3e8ad1');
+INSERT INTO messages VALUES(950,310390,'parse','blocks','{"block_index":310390,"ledger_hash":"2c4eceebb94d0c7a7702478d9547d1afbb42ab5ecb5ae6271a3f69942bd77e50","messages_hash":"e52c228091d702041c31e0e38e84fd66e446dd2eeeec5fddc782877720ceaf7d","transaction_count":0,"txlist_hash":"8e3a48b160083860b0928dd97150477980da9097945c4ae3ee144c505f131b86"}',0,'BLOCK_PARSED',NULL,'29f1850ea25c8f495cd266f08917546718f2bfbd6a824fd045c2ee8389576b0d');
+INSERT INTO messages VALUES(951,310391,'insert','blocks','{"block_hash":"fc26112b7fdd8aaf333645607dabc9781eac067d4468d63bb46628623e122952","block_index":310391,"block_time":310391000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'191088d4285da76e973dde5ee5f9dcebaf510c9d81ea078a2988affd327b4e0c');
+INSERT INTO messages VALUES(952,310391,'parse','blocks','{"block_index":310391,"ledger_hash":"06397124ee2a1bcb9104899469394855d4ecccd1a08626d650bdf3169e227831","messages_hash":"3d53a7993178fb1677adb5db2583a2a98b71a50e37022564c92a563f76970968","transaction_count":0,"txlist_hash":"b1b4f0fc9ba54527ea0902192a61158bb5383f1959f187915c07f88bdf11caaa"}',0,'BLOCK_PARSED',NULL,'76ac5322db92c9166230add02ff14b7017180f303c144879ae64aa6d446a9eb1');
+INSERT INTO messages VALUES(953,310392,'insert','blocks','{"block_hash":"f7022ecab2f2179c398580460f50c643b10d4b6869e5519db6ef5d5a27d84a1d","block_index":310392,"block_time":310392000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4f4d606b447998aea4b3ec187667df56892abe078d418a9164855aee94358194');
+INSERT INTO messages VALUES(954,310392,'parse','blocks','{"block_index":310392,"ledger_hash":"44974b5fec0be3a2958d39f2d6824a2e82733f873a404ec9887178c620843149","messages_hash":"1cc4811a488ed35ebccbd82cceba623aa79b82061cbf44656730fe1afdc806e9","transaction_count":0,"txlist_hash":"97a039be078662ac5b1a275d5618224c1a90886c79b9fb651dfcb14481da8e8a"}',0,'BLOCK_PARSED',NULL,'19f69f017e3fc8f09357ecb3febc1da154ec53a9998f1b5a3c4a00f15af1c73c');
+INSERT INTO messages VALUES(955,310393,'insert','blocks','{"block_hash":"e6aeef89ab079721e7eae02f7b197acfb37c2de587d35a5cf4dd1e3c54d68308","block_index":310393,"block_time":310393000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a1be73a0d02c17b02fc7e7308094c603f2160d5b18176a066754c06d63e167e');
+INSERT INTO messages VALUES(956,310393,'parse','blocks','{"block_index":310393,"ledger_hash":"1863677c0e552344607b1af3eb8ef8f4fc6b2a73d63eebb3e9928302c887970f","messages_hash":"448db6001da6b26f80f360db92b09f5d3f7fdca4153b6d8043d5c1ad6a819e65","transaction_count":0,"txlist_hash":"c488dd61c64182cdc779e96a2b312463d42ff9829d1d518c8a9daa1a4cb26de3"}',0,'BLOCK_PARSED',NULL,'826d599c2410062e5eeffca63de57b0e3c5dd9bcd3de6e12314b119edd5be9a8');
+INSERT INTO messages VALUES(957,310394,'insert','blocks','{"block_hash":"2a944743c3beb3bf1b530bd6a210682a0a0e9b0e6a9ff938d9be856236779a6f","block_index":310394,"block_time":310394000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e89c472bcf576f4c67ce98ba72d69a731789458db3daaeff776eecba11d8c48');
+INSERT INTO messages VALUES(958,310394,'parse','blocks','{"block_index":310394,"ledger_hash":"3838ba6e84376ed8dffb3fee9b5928d903952c0d8a8ad41ab63a9651a1c8c770","messages_hash":"520cf9ed4916983937a5c927df80dfd8d700027da8c0c9ad89b485b484a9e011","transaction_count":0,"txlist_hash":"e329db30a579327664d135ce9c3661a259378dcc12e179232599e0186c7bfe91"}',0,'BLOCK_PARSED',NULL,'e911439858e02a74c53e99b79a88cc53629a431ab2c9ff0c2b924deb1a609763');
+INSERT INTO messages VALUES(959,310395,'insert','blocks','{"block_hash":"19eb891ce70b82db2f2745e1d60e0cf445363aaff4e96335f9014d92312d20e4","block_index":310395,"block_time":310395000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c23d38eb8987be93029c66762a83840b9f805f8de7ee2d5a5534bd52310bd8d1');
+INSERT INTO messages VALUES(960,310395,'parse','blocks','{"block_index":310395,"ledger_hash":"872367d61f81cddeb555da5f9c4f46a8ac57c24629ab073094e407a4555a8555","messages_hash":"75ef5223cfccc9addca156b0483556b1e66168a49d0e84cd5c07389b276a4fe0","transaction_count":0,"txlist_hash":"2234b36f4187eb0da9ed6a633aa2e15075d5efb23f154963885e7fd42495e4a5"}',0,'BLOCK_PARSED',NULL,'46cb583c174f0693db9bfd19ff0b5db58eee53496b1e9020b4b86618400629d8');
+INSERT INTO messages VALUES(961,310396,'insert','blocks','{"block_hash":"aea407729ac8d8e9221efd9d70106d14df6aaf9f2f87dc6f490835a9caadf08e","block_index":310396,"block_time":310396000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24f15f6fff5a459ba28f7ce648b42c559a0d7df72c14d08b0b1f68504c16ea96');
+INSERT INTO messages VALUES(962,310396,'parse','blocks','{"block_index":310396,"ledger_hash":"b9a9eaaf1cf6cfa4ae5b0f314812a9a2346209da0b7ce57e16010d2a01c0092a","messages_hash":"b93119cb624bdff14cf408f1fff736d5dc1635780de76556f31787c4769e1492","transaction_count":0,"txlist_hash":"25946162b9af068438633980c75eaf9e508144f603f7a913de56cc11a7a482f6"}',0,'BLOCK_PARSED',NULL,'c7bf88df9c24bb563f562a64d30df7c3b53b3908197b11e6d4c6a1641a6ca9cb');
+INSERT INTO messages VALUES(963,310397,'insert','blocks','{"block_hash":"7c429e56a19e884a8a77a759b52334a4b79404081b976270114043ba94d7985c","block_index":310397,"block_time":310397000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'802a8ce0253ef8d7250f14cf0bf922fd06788a827718214f940eeee58753843a');
+INSERT INTO messages VALUES(964,310397,'parse','blocks','{"block_index":310397,"ledger_hash":"b61f36bcc934a18fdccf7806d41482684ca129801d0b9ce7815dcd488fc49a66","messages_hash":"c30bc0cd819f567ea23116d924ce974964dc9769bed4fb6ff685acfe007bf684","transaction_count":0,"txlist_hash":"e697fb2f445f03a1d895b904be58a554af4c26ed74a65eb0e52c98e490efbd44"}',0,'BLOCK_PARSED',NULL,'6e38a71d17f85168c6289a75aea2e0b508d1b4e956ee2d8a03b0bf7a53f3b322');
+INSERT INTO messages VALUES(965,310398,'insert','blocks','{"block_hash":"55c046db86dee1d63c0e46e6df79b5b77dfd4ab2ff5da79e6360ce77dd98335e","block_index":310398,"block_time":310398000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'717440f3621960a49b4705eefc39757850d695bc15c617953e32ad509fc9b6b4');
+INSERT INTO messages VALUES(966,310398,'parse','blocks','{"block_index":310398,"ledger_hash":"9446476e123e5dd354682c60591cab8b712c30df9080dde756246eef45e21df5","messages_hash":"bf14172c1c7249a7e6b41ed7c80a1163f6e4a573dae8d15afc1ff8e64aa111ca","transaction_count":0,"txlist_hash":"0d20ba449b95f7d128c8b78ef2a37ec390e6177b2041a2b035a72cb8e6062ba9"}',0,'BLOCK_PARSED',NULL,'62d0ad8d87f68edd3574a836f8eb71dafcd33ba3806f46e2cace0085410174dd');
+INSERT INTO messages VALUES(967,310399,'insert','blocks','{"block_hash":"765abc449b3127d71ab971e0c2ae69c570284e0c5dacf4c3c07f2e4eca180e7a","block_index":310399,"block_time":310399000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'753e325d854b0a33955d6643e7093c6895b5e5dff7c690bf20cd05114fac75d9');
+INSERT INTO messages VALUES(968,310399,'parse','blocks','{"block_index":310399,"ledger_hash":"50d288bca09d446f56544fb1ec50d613bdf156488468ac92d433425a3cab0804","messages_hash":"6d5cbc8eea82b8eb7613b04131adce13a45a3001c5e6dc037cbce36d4528acc3","transaction_count":0,"txlist_hash":"82214bf1638d82e5b66919990e24d3960eb02a423bb3f36bcdd730b17267e340"}',0,'BLOCK_PARSED',NULL,'9551b01c1327924a6f35b50382703356552f7576f3040bebd40024bb15a02e4d');
+INSERT INTO messages VALUES(969,310400,'insert','blocks','{"block_hash":"925bc6f6f45fe2fb2d494e852aaf667d8623e5dae2e92fdffa80f15661f04218","block_index":310400,"block_time":310400000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49dbe471904f4fa5e4c184769d3dc84f794fc6249af4367810023c8260459ca7');
+INSERT INTO messages VALUES(970,310400,'parse','blocks','{"block_index":310400,"ledger_hash":"349a24fd446727bb1793ccf88fc569d20eb680c10e506fc25b281ce6ec3fd7bd","messages_hash":"9e1fcd3d6621686486774cc32cd0fd9685461be1facd2e63278f74bfb478ad75","transaction_count":0,"txlist_hash":"e7ce5e8c9c4160590dcdaba04bc866267a9784f99fe68bebd337da16768e8f18"}',0,'BLOCK_PARSED',NULL,'0fcccb3377b1731d18ed06bde7dd5e3d9048e332ece92b4576070c09e9cd020c');
+INSERT INTO messages VALUES(971,310401,'insert','blocks','{"block_hash":"f7b9af2e2cd16c478eed4a34021f2009944dbc9b757bf8fe4fc03f9d900e0351","block_index":310401,"block_time":310401000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c681abe5a2919b7d6c7478293fb1e56da7e5d4d98914686883c4e1cc411a45f3');
+INSERT INTO messages VALUES(972,310401,'parse','blocks','{"block_index":310401,"ledger_hash":"52c06b68cad19608420b73476a73b411d0327382b92bd454cadf1b8616eb17a5","messages_hash":"f3baa73765b6ebe741681361c22127cd7ca4af545ed41188b81c54477fe4e10c","transaction_count":0,"txlist_hash":"6ff1e13b2110c6ee69e86818bd32bacdffa6f4e91fd2d8c2b09b5db35062be81"}',0,'BLOCK_PARSED',NULL,'9e2d63cb4a30e1d2597f6fac0580463ca9c3e8a2374fedb66120506319bb79b2');
+INSERT INTO messages VALUES(973,310402,'insert','blocks','{"block_hash":"1404f1826cd93e1861dd92ca3f3b05c65e8578b88626577a3cbad1e771b96e44","block_index":310402,"block_time":310402000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d395d64d248499e11d0283ed6041ce1a3a15534c84222594c2caba11e1b65205');
+INSERT INTO messages VALUES(974,310402,'parse','blocks','{"block_index":310402,"ledger_hash":"8bf64213a454c62dd4b0dcd7dfa298da0244a6aa7ae6fff98be6f49d50d259ab","messages_hash":"9787b7b45182c6d57118df7ddc9a5e8023ac1165e57b2e7225cf48e2e47d19ed","transaction_count":0,"txlist_hash":"3e776187716a384a84170b2e7dbbb5c152d98535351c1f5b4b00c7bf5ea7ff33"}',0,'BLOCK_PARSED',NULL,'9ca3925298d00bfc613b4371fef483205e955095ef49bc4c3a9c93d94883db80');
+INSERT INTO messages VALUES(975,310403,'insert','blocks','{"block_hash":"f7426dbd4a0808148b5fc3eb66df4a8ad606c97888c175850f65099286c7581c","block_index":310403,"block_time":310403000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a591c2cd6eea252334945b507a67afc9bf3d1bcb5737802056fc487d33b1e1bc');
+INSERT INTO messages VALUES(976,310403,'parse','blocks','{"block_index":310403,"ledger_hash":"fb2a365372522d1442792cb38e1a4167eda2612ef442c776749097a3d541a827","messages_hash":"5edfa935fdf026ead1ae0d7f99f6e6bc2d48209879f4c841df19f6245596f55b","transaction_count":0,"txlist_hash":"1fad731787bca55d4102d8d355ccb9625590baaccd0ae63490320efbf5aaf90f"}',0,'BLOCK_PARSED',NULL,'07bf8f86d573a3eeedbdc8fd9d28f8d7a121321af7a97f654529054d354b7d0f');
+INSERT INTO messages VALUES(977,310404,'insert','blocks','{"block_hash":"401c327424b39a6d908f1a2f2202208a7893a5bedc2b9aff8e7eda0b64040040","block_index":310404,"block_time":310404000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0c1a0e7c82a0902a4e55ef78d09cf92fbd619cbe93341afa4cd1c0e92693c198');
+INSERT INTO messages VALUES(978,310404,'parse','blocks','{"block_index":310404,"ledger_hash":"47f96d798df9cad17667be908ebb063ab9f79d947784a78189d247e626864a5f","messages_hash":"75d90d2e7b129814b68fa5dd4fdcfc85ced4d68c40fa2849f90c67977e9a9b02","transaction_count":0,"txlist_hash":"10b2cfe8ebe45dac311048b4aa8d15d7c59ae17f5c1a0c132cfb675d893de8d5"}',0,'BLOCK_PARSED',NULL,'3d6324d9abced80d34aaf13eb59867e10de5d1d71574dc0ca0fbd0ab52c8f189');
+INSERT INTO messages VALUES(979,310405,'insert','blocks','{"block_hash":"4f6928561724e0f6aab2fc40719f591823ca7e57e42d1589a943f8c55400430a","block_index":310405,"block_time":310405000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4d1e5462c33891ae403dc6283997a8785bde3b5683647e8535e450103ecee29');
+INSERT INTO messages VALUES(980,310405,'parse','blocks','{"block_index":310405,"ledger_hash":"185780205a9ab241bb0656799fd0d5942c1e3e5854abd1d06573da550b04b096","messages_hash":"fcb93f66eab0d100dd46545b1aa8abbb8d847df3aa49eedfb562c499bf719740","transaction_count":0,"txlist_hash":"8cbd52dd97944b34f080d675a51360dafcd38183cb08633e6ea247d2c5074435"}',0,'BLOCK_PARSED',NULL,'0ceaea1f63ec5733b1d2d5d01e4108e06fd88805b029fdeccfa793087b9ab098');
+INSERT INTO messages VALUES(981,310406,'insert','blocks','{"block_hash":"6784365c24e32a1dd59043f89283c7f4ac8ceb3ef75310414ded9903a9967b97","block_index":310406,"block_time":310406000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ecc5f6d4a0bd052dae97c2c0093537795cf20c0b2d02b23e260ccbd601dd6d95');
+INSERT INTO messages VALUES(982,310406,'parse','blocks','{"block_index":310406,"ledger_hash":"367b9de2313c5f7fce0c2dc2b4a8e2bc059f6881bc924f7315e8e2ca61728a59","messages_hash":"fa4c558f1492ac0046e54c69f0810e14ff56d10c5a8697437d5e52a3a8cfa027","transaction_count":0,"txlist_hash":"0d104d4ce44d11e581f51e5a33ec9e35a994b2b992842b173fb8a2756412b4b2"}',0,'BLOCK_PARSED',NULL,'408bf77aaa32c5ef7af54a1c65e05d750f28f6983e317fc0cc83684db2f53dc6');
+INSERT INTO messages VALUES(983,310407,'insert','blocks','{"block_hash":"84396eb206e0ec366059d9e60aefdb381bca5082d58bffb3d2a7e7b6227fc01e","block_index":310407,"block_time":310407000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c5b4ce62951c4d6dfef1292bebe2d1c20080d36b4a6e0b3458a78b4f0738334');
+INSERT INTO messages VALUES(984,310407,'parse','blocks','{"block_index":310407,"ledger_hash":"2bdbd79575aa2ff52ba0cce3fc1a1aac6120d598a8ab0ff3925e1395e6cad2d1","messages_hash":"de9ac9c6bdd7a18930a0a225ec8711c8b43ea886859373e1227ab969f969bd5c","transaction_count":0,"txlist_hash":"a3407057dc90723c90ed8f2df5af7840e50daa4c4bdedd47181c17a1e8563934"}',0,'BLOCK_PARSED',NULL,'07db14a4ed79122cbdcd74dd46e0aa981f54b8bb6a2109c75b1975d7c47f9c43');
+INSERT INTO messages VALUES(985,310408,'insert','blocks','{"block_hash":"4827c178805e2abae5cb6625605623b3260622b364b7b6be455060deaaec2cda","block_index":310408,"block_time":310408000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5a6d6bd3df26e487b581d3f26eb6dc0e31f294f478651ccc8c03f0adf601e2a');
+INSERT INTO messages VALUES(986,310408,'parse','blocks','{"block_index":310408,"ledger_hash":"fcd0edef8c4ae9517a6e793a2742c598de38c122829b7a7aa265310417ac92c3","messages_hash":"1862d4012155a9831a3287984d9717d9f1e353e0f478912adb9d9a54950813eb","transaction_count":0,"txlist_hash":"3ee1e7949bdb395a4e481f94344fccb2781abcb3f5d1fea2bbadb9de9228a426"}',0,'BLOCK_PARSED',NULL,'63272ced3d28ad24b523840b35db1276f4e011dd22b7cd4c28fef745db9148bf');
+INSERT INTO messages VALUES(987,310409,'insert','blocks','{"block_hash":"01a719656ad1140e975b2bdc8eebb1e7395905fd814b30690ab0a7abd4f76bba","block_index":310409,"block_time":310409000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d7b3a599b526477b6374c7650e869f600786df612e020254cfd1191406054e3');
+INSERT INTO messages VALUES(988,310409,'parse','blocks','{"block_index":310409,"ledger_hash":"5b663c40873af21ebc721f2689e2c57a2c787fff579c58f033bba75910a64837","messages_hash":"843e91b4f8f556351d5f34b5dc9ec9e7f4dcf7b7f9a950fa53fbf6cd21f5b097","transaction_count":0,"txlist_hash":"68fbf3a110ed24946d1594f5a4de1dae9c4b6f0394188a71ab89996e9fb4e55b"}',0,'BLOCK_PARSED',NULL,'8f58f39106d1951afbb1def3d2770b0988868abf3ab4609a98135cb6425c0d08');
+INSERT INTO messages VALUES(989,310410,'insert','blocks','{"block_hash":"247a0070ac1ab6a3bd3ec5e73f802d9fbdcfa7ee562eaeeb21193f487ec4d348","block_index":310410,"block_time":310410000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'554ffb934d0326191a4bf46b9690371874d2136b2b947f519d61b0dac5bb7c1c');
+INSERT INTO messages VALUES(990,310410,'parse','blocks','{"block_index":310410,"ledger_hash":"93c5a33931b2a33933bc286d6987b34730c0677460e4875d5c032ae86c2e01f0","messages_hash":"01ef820183eced548e652869011f1d2cd7fb0c2e72e34ea87c7b1dbbdc117cfc","transaction_count":0,"txlist_hash":"bd755bf0718d5a0423ec41a8ac84b1554751ff8f0a3f63d87e7e0f58aaa31008"}',0,'BLOCK_PARSED',NULL,'7678c70d13c8af7d375336e1aad280baae271c0b7e3ccea285a7175efb9c07c5');
+INSERT INTO messages VALUES(991,310411,'insert','blocks','{"block_hash":"26cae3289bb171773e9e876faa3e45f0ccc992380bb4d00c3a01d087ef537ae2","block_index":310411,"block_time":310411000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'93a8b35895d1a797a68dac5822ec58b74014288e005e550767ffdb056d692fb1');
+INSERT INTO messages VALUES(992,310411,'parse','blocks','{"block_index":310411,"ledger_hash":"8d98498f89619a2e334e9ac69bf8ff37251af6431d9bb6d1ea8bbc404c5e560d","messages_hash":"f51297150aa18a34815b9fa1b190e53713cdb1edff7b14da41921f1e1cebd227","transaction_count":0,"txlist_hash":"103563dcfc7b9f149b6efdad7cae17b090d4a8232fd4c37fac7bcf942d784b55"}',0,'BLOCK_PARSED',NULL,'dff46da88ee3362a463d5304d4c841e620ef0f7080af1d4a6c02a9a5104a7bf6');
+INSERT INTO messages VALUES(993,310412,'insert','blocks','{"block_hash":"ab84ad5a3df5cfdce9f90b8d251eb6f68b55e6976a980de6de5bcda148b0cd20","block_index":310412,"block_time":310412000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0ccfd58cf0c99a49709d84ecafb9c809ee3d967f9de25db4310cf22cc957f26');
+INSERT INTO messages VALUES(994,310412,'parse','blocks','{"block_index":310412,"ledger_hash":"a16a650c4b63ed783e7229980be1177da867c188a5039ed5c58b9717f6ccf634","messages_hash":"51e8bd0ce5e1fe8c1838080eccd47b2945f767dd999de275e2494bce24f1b80a","transaction_count":0,"txlist_hash":"4daa6f0799529346ba4ee87e2aed1450447921dfa92e785378fae39c234a7c8f"}',0,'BLOCK_PARSED',NULL,'504c8ff4cfd78504339c99ad883d66e7a9e1a814af5bed2fd8c279477554c799');
+INSERT INTO messages VALUES(995,310413,'insert','blocks','{"block_hash":"21c33c9fd432343b549f0036c3620754565c3ad99f19f91f4e42344f10ec79bf","block_index":310413,"block_time":310413000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84b552a04c2e5d5a29538be8e86fa3ab498f14c5cf8db019b56f14f40e03c37a');
+INSERT INTO messages VALUES(996,310413,'parse','blocks','{"block_index":310413,"ledger_hash":"768577c1a7c2cf2cc19cd8dbe823f1bdb8a222daee4c7ac7b5ead6633040c283","messages_hash":"6f8b700a381e9b1899549129e333bcb4482147d7a3a013b3718bb376ba9d12d2","transaction_count":0,"txlist_hash":"7ae9815341dccd2d1bff8dbcfdbcce4e52b4aac8f2fdd421348ed9f44cd19e38"}',0,'BLOCK_PARSED',NULL,'47428bb9cb6f5d3abbe5a8a1a87f6a2ca6f14d41bf59809de19f0c4119729cd1');
+INSERT INTO messages VALUES(997,310414,'insert','blocks','{"block_hash":"8cff03c07fd2a899c3bcf6ac93e05840e00de3133da14a413e9807304db854b6","block_index":310414,"block_time":310414000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aec1b949c601aacf37ef9639a048311ef15a2d2d6d7ccd0cf1054d370931cea0');
+INSERT INTO messages VALUES(998,310414,'parse','blocks','{"block_index":310414,"ledger_hash":"906c491f164877c31002da41233c237d0d4a945a0072406a7b7d13df74be7eec","messages_hash":"37e351cfda5d24a99f5519eeb2ad241d1ba23f926599e591ec1a5a87a98d4a2a","transaction_count":0,"txlist_hash":"807cd64b4d8ee3d91a5cbc651e42feeacd5248b6572310472743ca71a9f24621"}',0,'BLOCK_PARSED',NULL,'24da0db5b031dbd0330abedcd77ea77c68ece04c9bebd4ece8af1f7f094ff3f6');
+INSERT INTO messages VALUES(999,310415,'insert','blocks','{"block_hash":"dd0facbd37cca09870f6054d95710d5d97528ed3d1faf2557914b61a1fc9c1cc","block_index":310415,"block_time":310415000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7fc5d1a61793056515488b6bdddc982284c8abf37dd213cf4abb22783c6cea0');
+INSERT INTO messages VALUES(1000,310415,'parse','blocks','{"block_index":310415,"ledger_hash":"d27f99b4a67dfc910d3b932f97b7299779f245e95f871140d3c90f13cc6e506e","messages_hash":"889bec7116eafdb2d75800de39bbf44e28a2b7104a0f72091fe1d44346f45ce0","transaction_count":0,"txlist_hash":"67fe947c260b3d8748887e94f68c3725664bb6dbd72187e9312ee48a42770ec3"}',0,'BLOCK_PARSED',NULL,'041e5498a1c82d5877ba1d9e11beba8ea2cafff83db2f08e85232609baa1499f');
+INSERT INTO messages VALUES(1001,310416,'insert','blocks','{"block_hash":"7302158055327843ded75203f7cf9320c8719b9d1a044207d2a97f09791a5b6b","block_index":310416,"block_time":310416000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5988fe70a0ffaa1529e2e2ff71de79d98229066dc84d90eb713cccc68ff73af3');
+INSERT INTO messages VALUES(1002,310416,'parse','blocks','{"block_index":310416,"ledger_hash":"90fcd04c508a9821e0ba0ed36cd7cfadd1d3c95116e3f52ad69f98d3d14de571","messages_hash":"053a7a0c1e332363a315082c7d3ebe0ec46010ff292c326847f097b23fb94105","transaction_count":0,"txlist_hash":"1041a17c5c146181a56da6ef17386814299be8a22c76a2b2f8a4a2768b2b531c"}',0,'BLOCK_PARSED',NULL,'4d7e573c0a98417511b658e6bea7b7ff26fbfb1fc7d39572fef44ef6c2359f16');
+INSERT INTO messages VALUES(1003,310417,'insert','blocks','{"block_hash":"2fef6d72654cbd4ea08e0989c18c32f2fe22de70a4c2d863c1778086b0449002","block_index":310417,"block_time":310417000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a70d5e2233e64e0226686dcf72ac402e78cd718bc7fd254c0c53e1860a8715a');
+INSERT INTO messages VALUES(1004,310417,'parse','blocks','{"block_index":310417,"ledger_hash":"19cbb26c6d24df5b110a5aae9b53a911a61b2086dde926273a1b0f66c1049e6b","messages_hash":"0ec21b071e93a654fe0acc298eecd6755d4f7f968578b4dd4a2823031482bdaa","transaction_count":0,"txlist_hash":"920154e272608daa3c501588cf0eee50c2c45a385d30f42711657ae4a6de3bf5"}',0,'BLOCK_PARSED',NULL,'8535b7d47b8486465feefa5eed38d7389edc67121a33b4feb2a39ab9e5b040f5');
+INSERT INTO messages VALUES(1005,310418,'insert','blocks','{"block_hash":"fc27f87607fd57cb02ce54d83cec184cf7d196738f52a8eb9c91b1ea7d071509","block_index":310418,"block_time":310418000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c847b0bd86fd0adc2b4c56221f35c2186d36eaa72cc2233b2fb8647df7b8ca96');
+INSERT INTO messages VALUES(1006,310418,'parse','blocks','{"block_index":310418,"ledger_hash":"2dc971d2db4e92e2d5dcef124bf9cdad33c41a71d6ae3db80297cb2257911f0d","messages_hash":"d68b4737689fadd1043e2a1df010e8a5c571c02aad90ab8657bb915bc7ab5173","transaction_count":0,"txlist_hash":"290826e9c72e49636370d0dad56ba1c2c9209d888b993e030838f84300c0225a"}',0,'BLOCK_PARSED',NULL,'1979c0b16821cd36803b25c85eed5f07fca313a04b50a4446c6571f3b90a49c8');
+INSERT INTO messages VALUES(1007,310419,'insert','blocks','{"block_hash":"9df404f5ce813fe6eb0541203c108bc7a0a2bac341a69d607c6641c140e21c8e","block_index":310419,"block_time":310419000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67d1edfa7889607d921199db2c7e97f79775666e430781465abfa167bd39dd61');
+INSERT INTO messages VALUES(1008,310419,'parse','blocks','{"block_index":310419,"ledger_hash":"7ad2bf141622a0db4b27b1f4dab4857d1595e3f746a4113992850a680ebf1f37","messages_hash":"845cf1141b13f3edc1b3dad5f0b76ae13255ff744e520f68b1652f7444e8e369","transaction_count":0,"txlist_hash":"d06653b493d120dd288637d530cd3f6efa1c8f5c252bb275572c1948ff0f3539"}',0,'BLOCK_PARSED',NULL,'6e6787bb7e64c51c7dde17f69c11e20562619cefa57ccb61fef2272b8e862521');
+INSERT INTO messages VALUES(1009,310420,'insert','blocks','{"block_hash":"138b3f1773159c0dd265a2d32dd2141202d174c2e52a4aeac3588224a3558372","block_index":310420,"block_time":310420000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fd8df9c873717b781a865c98b0660bffbac4875c0b3506210d3128a9b304a693');
+INSERT INTO messages VALUES(1010,310420,'parse','blocks','{"block_index":310420,"ledger_hash":"3602b26268d1bd3fc5f08f170e9767ff07c91f6976a1c342dc6b24f7ee98c509","messages_hash":"ecd60ce5bfca5707c1659c5257c7619c65ea946ffc84737f7e431397c7b75acf","transaction_count":0,"txlist_hash":"ae8e61a57232c10bd15c655bb8c76007dcef394ba64d1619157ca58990e18c25"}',0,'BLOCK_PARSED',NULL,'a147e871d4ceb233afbe34fad469d2e71479caac347048274288497ac912e115');
+INSERT INTO messages VALUES(1011,310421,'insert','blocks','{"block_hash":"71fe2b0e02c5cad8588636016483ddd97a4ef0737283b5fd4ab6ea5dc5c56b9a","block_index":310421,"block_time":310421000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'308fa26d4fd335d48006e956761e7e176705886400a9825aee081ab230d502a4');
+INSERT INTO messages VALUES(1012,310421,'parse','blocks','{"block_index":310421,"ledger_hash":"1c1facfa3852b33c173a08d06450335a2b230541c60973a154e8dd864f3c3c8b","messages_hash":"8d8a4969412a09dc50881fc22965607a9fbec8377e905630f1c0123d466b23a6","transaction_count":0,"txlist_hash":"01bfd609f878bb6149779f6377d7868d5b7fa3b831f68cd757967b982cd09ad4"}',0,'BLOCK_PARSED',NULL,'79ec58da7f8074aaebc051c11d914159abd5a93ea7e9cc8ee54ad0f4d5f5303a');
+INSERT INTO messages VALUES(1013,310422,'insert','blocks','{"block_hash":"cd40260541b9ed20abaac53b8f601d01cd972c34f28d91718854f1f3a4026158","block_index":310422,"block_time":310422000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aabb8131643f9eb69c2c758e928b485a84473701b4a0625e71c66e9e3b3bb691');
+INSERT INTO messages VALUES(1014,310422,'parse','blocks','{"block_index":310422,"ledger_hash":"e788123aefd1129554fa2c166dbd06ce68f913730183ca73cf248c1f5284eba4","messages_hash":"080360e72aa3a0e5cf5db215604e1f88f13245832a6317337c594346d6bcb0f5","transaction_count":0,"txlist_hash":"6577ad9a9e3889fb5eeac7fc9039af8d4537a8fc28b4a9de85e230f5d9da3583"}',0,'BLOCK_PARSED',NULL,'3bab9178fac6da19fc10d3650ed5ff5c78f59f584b575b1a0645fff390ca4940');
+INSERT INTO messages VALUES(1015,310423,'insert','blocks','{"block_hash":"6ca0d6d246108b2df3de62a4dd454ff940e1945f194ba72566089f98ad72f4db","block_index":310423,"block_time":310423000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d559d418ac79feeeb9c20f07dec990fc0dc336cb8326240f913a159646269ed');
+INSERT INTO messages VALUES(1016,310423,'parse','blocks','{"block_index":310423,"ledger_hash":"ad445e5351af8739b2f74cbba8b44201c20ab55ad1db064402614fb97f35c375","messages_hash":"24049c109410fd7e9757b5a79d44a9395f8be026386172809c40a9a2aa1c2f6f","transaction_count":0,"txlist_hash":"dd7b66518e8ec22359df2d8ad4c0349fe4ab3a74620aaf2ef4bdc93a4c7e2d92"}',0,'BLOCK_PARSED',NULL,'7b83ade2df620cf06b117008aa29e8262ec7fbd69e575187fc652fc67850af9d');
+INSERT INTO messages VALUES(1017,310424,'insert','blocks','{"block_hash":"ed42fe6896e4ba9ded6ea352a1e7e02f3d786bfc9379780daba4e7aa049668ad","block_index":310424,"block_time":310424000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a71e7fc447c529accd4904c3a2531fe2f3dbdeb8a7aca7512288ffe06ebd7dc9');
+INSERT INTO messages VALUES(1018,310424,'parse','blocks','{"block_index":310424,"ledger_hash":"e89872ed802fe4421844882958fe6384cf21a85a6dcf10db761e2bb4a77ed24e","messages_hash":"28487ea66f848a80139cbcc9672e74363859f4bdcb3c0119f97fdcfaa6bbca9e","transaction_count":0,"txlist_hash":"bb05836e569bc4c85141c5b4d2832efa5a83ad519260e96d92f6ee16fe4a0c80"}',0,'BLOCK_PARSED',NULL,'70ec7cd63f353cfd42cd51c791ddabdae0e1aebca2d229588be91c3f857a4e71');
+INSERT INTO messages VALUES(1019,310425,'insert','blocks','{"block_hash":"73f4be91e41a2ccd1c4d836a5cea28aea906ac9ede7773d9cd51dff5936f1ba7","block_index":310425,"block_time":310425000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3cb73e053437688f642c657169e5c6c3340bd4c4d14f806212c80144872f56eb');
+INSERT INTO messages VALUES(1020,310425,'parse','blocks','{"block_index":310425,"ledger_hash":"29e595e9ac7717013cfc8d12255496192234abbddd8a66762a5eaff0c49f3750","messages_hash":"fb5eaff1315e3832032d216f875007cfdc4ff836230107c46ed70e7c398a8317","transaction_count":0,"txlist_hash":"2cedf78c9d13e32fde5792907f2ac9f409fe701740533b94ceab6b8087f790b1"}',0,'BLOCK_PARSED',NULL,'206fd1a8db76d6eaaa8ce6d62d3963ec70c7de1ba0edee890e240e5b4d137b86');
+INSERT INTO messages VALUES(1021,310426,'insert','blocks','{"block_hash":"9d28065325bb70b8e272f6bee3bc2cd5ea4ea4d36e293075096e204cb53dc415","block_index":310426,"block_time":310426000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0fc13d49b6494e380a6d32ff95ce76fae6cca2dfed6d720e549ffb146d75932b');
+INSERT INTO messages VALUES(1022,310426,'parse','blocks','{"block_index":310426,"ledger_hash":"9b9509ce7b7bf380f4d030604810a755c71fabe27152be990997a6a9db37ff15","messages_hash":"ec477f826248341c9c69a641b4e2c492bc066e4cac8c5acd8fb672f1a53680ee","transaction_count":0,"txlist_hash":"c037094c1947835fceefa8a25a81724d9c88191d5f5199d3a59339bd44407289"}',0,'BLOCK_PARSED',NULL,'27156eda8c7e691447eb7fcd77af7b54c34edb4935e19e2c05382f8228a3a5f0');
+INSERT INTO messages VALUES(1023,310427,'insert','blocks','{"block_hash":"d08e8bc7035bbf08ec91bf42839eccb3d7e489d68f85a0be426f95709a976a2a","block_index":310427,"block_time":310427000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0da755b0a6d64fb7119eb95777a06811319a6a85fec95d7bcc3098ddf337f09');
+INSERT INTO messages VALUES(1024,310427,'parse','blocks','{"block_index":310427,"ledger_hash":"f1b834e2a380f1b9a78c592acbe78ec809220c620e15f296ab8d7ecea6cd392e","messages_hash":"9ee92aeef748ceaf5d7430c27b9763de6acdb51e7354d2cd4127fde93f665c09","transaction_count":0,"txlist_hash":"81d439d9d368279e97c8739243efb01c7027be218d831d93127364fa247aed95"}',0,'BLOCK_PARSED',NULL,'f6f15839f6b591003614d4ed7caf7d28110a9584ed45f7917c0928db971374de');
+INSERT INTO messages VALUES(1025,310428,'insert','blocks','{"block_hash":"2eef4e1784ee12bcb13628f2c0dc7c008db6aaf55930d5de09513425f55658a2","block_index":310428,"block_time":310428000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'baf75f25b8c5075cf7cd384d7133735754c6c72b274b68de76f91298fe4d300e');
+INSERT INTO messages VALUES(1026,310428,'parse','blocks','{"block_index":310428,"ledger_hash":"9e963a17fbc4a5c20d48094f1459959033520f92d7a8bc044b71bbffb8dd173d","messages_hash":"b5eeb4d5c377450a9f76cb9478336b2c2c923d202e34baf26921fdb376829d4d","transaction_count":0,"txlist_hash":"002b7ac255f66476970512e50d7ca9cb5da695bea9763bf0379f8d8e6c77a71c"}',0,'BLOCK_PARSED',NULL,'26457d0d44efe09a32c1e30c0e4eb2cd6a6961a24ac6cf450d7cda2edf409ea6');
+INSERT INTO messages VALUES(1027,310429,'insert','blocks','{"block_hash":"086bfbba799c6d66a39d90a810b8dd6753f2904a48e2c01590845adda214cf8d","block_index":310429,"block_time":310429000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dce53d52f634b4eb40d134e98b3d81f1eb23dfc5df629294e3caa965b742d150');
+INSERT INTO messages VALUES(1028,310429,'parse','blocks','{"block_index":310429,"ledger_hash":"ac8cfd965b9c53f32731a3e0fcdb6df5746d646b02c88b5201a674125e37eed5","messages_hash":"14adbb4a27e071e03732ca48f299cbb499a42dccb90f47bca54973da2d69fd2e","transaction_count":0,"txlist_hash":"4b68376b50d77145ada0ebc72c3eb43b54b4743b538dbc9fa2c914515882dbb7"}',0,'BLOCK_PARSED',NULL,'683f0dac06e5ed1351e5b6d08be286ed8dc32557fb5c244c1838233eb5fd30a2');
+INSERT INTO messages VALUES(1029,310430,'insert','blocks','{"block_hash":"870cf1829f84d1f29c231190205fe2e961738240fc16477c7de24da037763048","block_index":310430,"block_time":310430000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b3a3464a29c61ba22974d812497627b99467503bb075438bf3fdb3f2b03b1b8');
+INSERT INTO messages VALUES(1030,310430,'parse','blocks','{"block_index":310430,"ledger_hash":"33654e32dfd41ff3a5744b57fd2483a08a2b4729c18ca54c3ac5d95a1bf0ef21","messages_hash":"0e89d072dde10174bdf350dee0a3173a123b935ff900e1aed112a7b3874d1e2e","transaction_count":0,"txlist_hash":"3323c2d01e777caaca3eeaf6f2af8299cee1622589cbaf08f4d245356642d2f2"}',0,'BLOCK_PARSED',NULL,'cfe609f84f8fbce57c2f6969f4c766ebefc31e1e909422765f5423069758d853');
+INSERT INTO messages VALUES(1031,310431,'insert','blocks','{"block_hash":"20b72324e40ffc43a49569b560d6245c679e638b9d20404fc1e3386992d63648","block_index":310431,"block_time":310431000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfe90476bfa992603ee1ee9018e8fed84865b3695b8c477d3ea1c423aa6b8d84');
+INSERT INTO messages VALUES(1032,310431,'parse','blocks','{"block_index":310431,"ledger_hash":"ba8837c811ae87981cc37cb49438d958fa58dfc5a95824040f2fd088465406d1","messages_hash":"ed50aaeaa24fee6e11ab673511fef6b34e8ff7dc93a7ce1577d490df0618b260","transaction_count":0,"txlist_hash":"67aadda0a565f4f5e2786b5007e56e2d10077e87e7d3acc216fe0803365b7b81"}',0,'BLOCK_PARSED',NULL,'64a9026f6efd421ffa022df28c7373f23da07f4af42d3f948422d7b5caba6ea0');
+INSERT INTO messages VALUES(1033,310432,'insert','blocks','{"block_hash":"c81811aca423aa2ccb3fd717b54a24a990611365c360667687dc723e9208ad93","block_index":310432,"block_time":310432000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bc37167067651dca2c293136f4148181a0adfce7c129f36f12260c2d1942030');
+INSERT INTO messages VALUES(1034,310432,'parse','blocks','{"block_index":310432,"ledger_hash":"7864019cb0cbbcd895154421183d6acb932b1d64441103b913d52469f656655f","messages_hash":"0391adbb11914f1543fb6105d4b5d527bd4ea3c7925fe93c214e8a990de812ac","transaction_count":0,"txlist_hash":"c12942ffa02a5f8eaddf3e8e55ad0ea03f29cebd9e822e00c504c162cddd0471"}',0,'BLOCK_PARSED',NULL,'45ebe5202dbb1f4fb6e31d20346c2f504bae6dc4e3fd8404a6d470e757c31112');
+INSERT INTO messages VALUES(1035,310433,'insert','blocks','{"block_hash":"997e4a145d638ad3dcdb2865f8b8fd95242cbc4a4359407791f421f129b1d725","block_index":310433,"block_time":310433000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c268f3605e645894ce1db9da13386435fb2871a6fafa0aecc19c570fa51f890');
+INSERT INTO messages VALUES(1036,310433,'parse','blocks','{"block_index":310433,"ledger_hash":"a6da92ef0df7d092de09f2f8d2c99ff65ad74e2a0bd2ea25f8335614372f5279","messages_hash":"23a87d7e855d65d799a49edd6f528f46de68c6503d31f5a2085b9283ca96e3f8","transaction_count":0,"txlist_hash":"f0eefd9f81db595b07fe719a41e67e54fdb987e177f05d37040237db3be2a8a5"}',0,'BLOCK_PARSED',NULL,'6e98349e010eaf5063d4d6f50ff2da16560b589e7b2472ba98d5483edb8d5709');
+INSERT INTO messages VALUES(1037,310434,'insert','blocks','{"block_hash":"61df9508e53a7fe477f063e0ff7e86fbb0aef80ff2ddedc556236a38f49ac4d8","block_index":310434,"block_time":310434000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a5e082be5e2511ddc2543127d776050146ae111ca3a893f5e3b071e66089d8b1');
+INSERT INTO messages VALUES(1038,310434,'parse','blocks','{"block_index":310434,"ledger_hash":"e288db28ac6a42822f85fd042f65b57378bc6cc2f8616edfa88143d7b1c9ddcc","messages_hash":"a049224ac8ef93b12a2d484448fd7d630979344992b734ce80ea935af759645b","transaction_count":0,"txlist_hash":"173f8b7d2c581e9f088b3fb6e96ad2af597b172717d8f8732fd5857997f0f3d7"}',0,'BLOCK_PARSED',NULL,'34d831e0bc424775aa8ee29652de8100eef397fbb4f7a8a092f5bec7dd3cfb10');
+INSERT INTO messages VALUES(1039,310435,'insert','blocks','{"block_hash":"f24cf5e1296952a47556ac80a455a2c45da5c0dc2b388b51d235a3f741793d5f","block_index":310435,"block_time":310435000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'182aab6cbf8617cee6e26122a2d7fb632a21007bb68d81ff38568d300edc8652');
+INSERT INTO messages VALUES(1040,310435,'parse','blocks','{"block_index":310435,"ledger_hash":"e87af314e8d7a5f2315ccc559d7c2255c008ba63aff017696201db69344d423f","messages_hash":"af3417fc486fd4b5bcbc1cf4738466b40ee693fad1e6ebd84bac9289c42499d9","transaction_count":0,"txlist_hash":"a4dd5a36f1aeee54e99bb23095b64707fc0b3fde5f64e33135429a100e4ea558"}',0,'BLOCK_PARSED',NULL,'55b8b6c2dcec8c16e8be4449240db2ac98aaa24c144603aecb982360e92e50c6');
+INSERT INTO messages VALUES(1041,310436,'insert','blocks','{"block_hash":"a5e341ba92bdf9b3938691cd3aab87731eba5428bb61a804cecf9178c8da0c19","block_index":310436,"block_time":310436000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e702f7d2d1c22b79ef9672ff553a400ed9545861e4a31c7a47ea9f82bb6e9da4');
+INSERT INTO messages VALUES(1042,310436,'parse','blocks','{"block_index":310436,"ledger_hash":"82327b93bd3ffcdf797bc2f6470b9c8c5101e54b924ec5f141a31356aa8865c7","messages_hash":"c2e8f4987ff436411c6729a50a8e8449c189df1b3c57342d588080c675978eb4","transaction_count":0,"txlist_hash":"c6b0f05a847c30dd3f2d3f8cb7c26a84f1d005b4720a553f9dd8b717185d7f05"}',0,'BLOCK_PARSED',NULL,'34800c40dbe4f68f05afbc93d888d6464232dc83246732a8b501f37427faf5cd');
+INSERT INTO messages VALUES(1043,310437,'insert','blocks','{"block_hash":"9e18d0ffff2cb464c664cefc76e32d35752c9e639045542a73746f5ec2f3b002","block_index":310437,"block_time":310437000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'36881e837301cfecad61a96454be7826e79a80e0f9c0e6a98ee1c955baca1810');
+INSERT INTO messages VALUES(1044,310437,'parse','blocks','{"block_index":310437,"ledger_hash":"70d86f9ef8df495474de06b94e1857693c73d9ca3528356b82553a52fdce0dda","messages_hash":"af856b378def6d5b5e4f47e88ce78cb92f05fa481859d35697df2351654f9737","transaction_count":0,"txlist_hash":"809d60564fefff56688616b7fb96378d4eb425e5c8de36b34f0c9070935dac26"}',0,'BLOCK_PARSED',NULL,'768ca77441d757cbaa1ef108ea871cfab29d47316b0a20ad0609ce238d1e5d1d');
+INSERT INTO messages VALUES(1045,310438,'insert','blocks','{"block_hash":"36be4b3470275ff5e23ed4be8f380d6e034eb827ebe9143218d6e4689ea5a9fc","block_index":310438,"block_time":310438000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e595838cbac97821d08c23c4091dd78c58fae91ee5ead971407848b70d2c3fc5');
+INSERT INTO messages VALUES(1046,310438,'parse','blocks','{"block_index":310438,"ledger_hash":"44b90478e32373205462f0fb212da636b31db6dfb99a2b56923beb97a3a64722","messages_hash":"ba437d66bd9106e5dfba9abaca8523a49402154241336c48e5fae18055348265","transaction_count":0,"txlist_hash":"2cf7695a3cea08358af8bd9378b1d6ad6c7223cbac01589042ace6c3cb312196"}',0,'BLOCK_PARSED',NULL,'a6ac2c4699657e0fcb1aeb8f49ba4ad4ad1aaa45b2f5d9ba922d5b0766089c86');
+INSERT INTO messages VALUES(1047,310439,'insert','blocks','{"block_hash":"4f2449fce22be0edb4d2aefac6f35ce5a47b871623d07c2a8c166363112b2877","block_index":310439,"block_time":310439000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'348134a24fe5a2fdcf53b226819cee513e935eaf5151031add36b897b837140c');
+INSERT INTO messages VALUES(1048,310439,'parse','blocks','{"block_index":310439,"ledger_hash":"66b791b9deb7d2fc8b075f41d712e300ffa9c46ca9d6f4e7cec6429ca6a65163","messages_hash":"394de9c4af6f1e72606fea7c07233bbe50c658548ff8f1d36868b19d4eace8e0","transaction_count":0,"txlist_hash":"41f11f77910c12535fa183e819b36a0dda32eaafe0ae8016e2ce7c23d5c1d67d"}',0,'BLOCK_PARSED',NULL,'02b05ff856ea660e7f0bee3d59922a86d34359022cac345b15fe0ba86e2e7f2f');
+INSERT INTO messages VALUES(1049,310440,'insert','blocks','{"block_hash":"89d6bd4cdac1cae08c704490406c41fbc5e1efa6c2d7f161e9175149175ef12a","block_index":310440,"block_time":310440000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49be2315724d0413e497e9843640e7385210995231ed1d284e740eaf7003bdc7');
+INSERT INTO messages VALUES(1050,310440,'parse','blocks','{"block_index":310440,"ledger_hash":"5baa10e1659182ba4511f87f08deda38d5de3501c63efd376604cc199140d27c","messages_hash":"b12cd5754c6ead386f3e75c6770248d05281ab99cb08db994a1bc184c8e37c87","transaction_count":0,"txlist_hash":"c6762d7334806b6b62c3cee84f65346d1121493d3bc3f890af174c4abe4710ae"}',0,'BLOCK_PARSED',NULL,'eb21c400169d0055a9d12be8c5adc2b2620ee1b7508b0f6fc79a736a686105e4');
+INSERT INTO messages VALUES(1051,310441,'insert','blocks','{"block_hash":"2df1dc53d6481a1ce3a6fee51ad4adcce95f702606fee7c43feda4965cf9ee15","block_index":310441,"block_time":310441000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dede9c7bbc889de1bd39340420e1d583a13980d9d34ec77034e9e6c492eb9c33');
+INSERT INTO messages VALUES(1052,310441,'parse','blocks','{"block_index":310441,"ledger_hash":"2d490229fead1b15a8350da7bcc83c483dae06e4a2f574c6e8fde248acd449d6","messages_hash":"4f1fac34f1c683f047ad57f735ed40315439b5efe2d8e4243527b3b6c60b3cb5","transaction_count":0,"txlist_hash":"f9fcb16a928c44b86ab2af7407a2ca269455b144694a80927b9213bf8e7ac710"}',0,'BLOCK_PARSED',NULL,'e1e4b5c89c88beb7798eb338b0f197d64bf6333376e8d0da34c2ef3444b82bf0');
+INSERT INTO messages VALUES(1053,310442,'insert','blocks','{"block_hash":"50844c48722edb7681c5d0095c524113415106691e71db34acc44dbc6462bfec","block_index":310442,"block_time":310442000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'91c92a8c97ab3feba64876837cf2d823bfe529d307ef197348cd7b945ffa1f48');
+INSERT INTO messages VALUES(1054,310442,'parse','blocks','{"block_index":310442,"ledger_hash":"a3728bacfbdd289b7af24248b9bdacd5643bd5412bb993f5380278631eabb9e9","messages_hash":"8f34423881bd18aad46c3452b07649edde8d7b0308cdbcc57de76ffae059ed14","transaction_count":0,"txlist_hash":"5d2600af95413d101a9e3d98b2d9f5ea02cf1cf6a28bf7e96870e167638a7be9"}',0,'BLOCK_PARSED',NULL,'3f9c56aeb7727caf7544ae6869054e1663bccde7ca045cccc9cc89cff897eea1');
+INSERT INTO messages VALUES(1055,310443,'insert','blocks','{"block_hash":"edc940455632270b7deda409a3489b19b147be89c4d8f434c284e326b749c79a","block_index":310443,"block_time":310443000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dffe3c46e73473d11792002f426022120f3ec79c7e7a5aecbf629b52382d5d6');
+INSERT INTO messages VALUES(1056,310443,'parse','blocks','{"block_index":310443,"ledger_hash":"d829da764f6397b22a6b97ef396b363ef2cf071990df2dc9c0d03806db6a46b5","messages_hash":"1c244e91c5a685097f48f55f81d063fc917c816933cad2bdff2357b8a7c063eb","transaction_count":0,"txlist_hash":"4c595c9a60ccc98d2f6cd75c92c28333174c618337457f9c5ccf362252732081"}',0,'BLOCK_PARSED',NULL,'97c47134f3d2a66774ec8c7e79bfa8f873e550b670e1219d495940df4429c71f');
+INSERT INTO messages VALUES(1057,310444,'insert','blocks','{"block_hash":"68c9efab28e78e0ef8d316239612f918408ce66be09e8c03428049a6ee3d32e4","block_index":310444,"block_time":310444000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a244a017fc3e1a158bf1e4cec83568a7d6276bb5bff5673397f4221bd6c28611');
+INSERT INTO messages VALUES(1058,310444,'parse','blocks','{"block_index":310444,"ledger_hash":"ef53249bf0f13e1f2073b815c8d8da3ab744b6d277b29ddbc0bd68bd006af34b","messages_hash":"bacd8f1e97108e18297d012e2ebc95279e8140cfcf6c3b6c145d015e45b35cbc","transaction_count":0,"txlist_hash":"5ec6d64106ac1c65cd1dd2129c786aca3cf426c7a1b5f6a966b6684b37755293"}',0,'BLOCK_PARSED',NULL,'11e389f2a378a677990d3ae74cc9a0f5340433db90ff9383b5ce4a9f1fbce41a');
+INSERT INTO messages VALUES(1059,310445,'insert','blocks','{"block_hash":"22a2e3896f1c56aefb2d27032a234ea38d93edf2b6331e72e7b4e3952f0234ef","block_index":310445,"block_time":310445000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da5fb2407bbf7ddf4bf4de61b86e35367196cfc9a6b6f2e688a14dd7f2fc8313');
+INSERT INTO messages VALUES(1060,310445,'parse','blocks','{"block_index":310445,"ledger_hash":"7e731cda90932b2b4844abdbc3ff60683173104e6c72ed81c65d9a17fd4872dc","messages_hash":"d669de9250dbd03fbbe5f4e4f01f1f1e6a95a30d98732340e8c81743d1430004","transaction_count":0,"txlist_hash":"6da5abcb8ff2a77c33c7c43061754d9fe8e587157a98e194157faf534d2ee9c6"}',0,'BLOCK_PARSED',NULL,'633be1618d5d5ff9db57010807fe192489dc2c57ce5fc618c19c87be18b0d906');
+INSERT INTO messages VALUES(1061,310446,'insert','blocks','{"block_hash":"e8b0856eff3efce5f5114d6378a4e5c9e69e972825bc55cc00c26954cd1c8837","block_index":310446,"block_time":310446000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d3b1bc5021e5bb2bb7a441aca9f5996f2ec5ef512848775821a31dc38b71908');
+INSERT INTO messages VALUES(1062,310446,'parse','blocks','{"block_index":310446,"ledger_hash":"db55bac8025e95a567ba984f36dcb09357aa3e9b8706bb594e669b628d4e7204","messages_hash":"d2e44226c28c5e6e097519438fea8639215702130906c4ccb2573aa22acf6924","transaction_count":0,"txlist_hash":"e8efb64e8f5f867f1c0db99afa9f9a3e3a06d0e1d55e16e9639ca36c3bda5cd4"}',0,'BLOCK_PARSED',NULL,'81e46672fde221784be3ae0f4150c07bae991f28f8646045ac51d8d7abb8f1f2');
+INSERT INTO messages VALUES(1063,310447,'insert','blocks','{"block_hash":"3f4bc894c0bc04ee24ed1e34849af9f719f55df50c8bc36dc059ec5fa0e1c8a8","block_index":310447,"block_time":310447000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'513cc937d65c6dca33c4e8750a502f632c9ad238af3bdce159ab97bdfd4703d1');
+INSERT INTO messages VALUES(1064,310447,'parse','blocks','{"block_index":310447,"ledger_hash":"5cc4fa447cc291ffcce7be3c4f8fc70041bf8af5c2dd591136d4a449095d2570","messages_hash":"be181e7ddfb3aa0527e059763c972e160b9d3e8b89f77b1dc87a9e870c4fb3ed","transaction_count":0,"txlist_hash":"026eb6a7315302879ca62afb071da788deb5759eb3de89cf68fec00ec638d9f0"}',0,'BLOCK_PARSED',NULL,'16e1b377115e110b41bb11474eb54fb262c1ae84a581ceeb132971af7803b15c');
+INSERT INTO messages VALUES(1065,310448,'insert','blocks','{"block_hash":"6a6c7c07ba5b579abd81a7e888bd36fc0e02a2bcfb69dbfa061b1b64bfa1bd10","block_index":310448,"block_time":310448000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'74b69d754e90014b6ad74cf1839d25850bc6f59e3013740c5a886a7053c8b91a');
+INSERT INTO messages VALUES(1066,310448,'parse','blocks','{"block_index":310448,"ledger_hash":"ce49854f4493c163bc891888f920fbc6dd8855c30870beb757df69b33de52633","messages_hash":"598149869bcee867166fa1d679ed1a2237f77a8df3b009a2830cea292d990248","transaction_count":0,"txlist_hash":"e47cc99299a82c9be619633effff5b9cace113215d7f71aa7d2327e69d3ca3bb"}',0,'BLOCK_PARSED',NULL,'ad66e536467e2fb5e9505bc185f3050e9589b93170d87d44f7383000f49e543e');
+INSERT INTO messages VALUES(1067,310449,'insert','blocks','{"block_hash":"9e256a436ff8dae9ff77ed4cac4c3bfbbf026681548265a1b62c771d9d8e0779","block_index":310449,"block_time":310449000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae55d6ff9a31af6ae7a2f6cebaa8d1c897e2f64530f93d8eab9babb668d5bdfe');
+INSERT INTO messages VALUES(1068,310449,'parse','blocks','{"block_index":310449,"ledger_hash":"84557595cf2067a95924119b8ed5fea114acd9ca1b0df4dbe4ae5181a739b5d1","messages_hash":"afca019eafa05f1493f11ecf78cbafb7e057d1d65f4dcff8ba28353b89912704","transaction_count":0,"txlist_hash":"4e3048f5eeba69570f9ffd86a3573e85bdfb46a92acf60d55c04d41f49f7f870"}',0,'BLOCK_PARSED',NULL,'143c45413d704dc18fea8439a2daed740470e8aa83448ab6595630cd476b54f1');
+INSERT INTO messages VALUES(1069,310450,'insert','blocks','{"block_hash":"2d9b2ccc3ad3a32910295d7f7f0d0e671b074494adc373fc49aa874d575e36a3","block_index":310450,"block_time":310450000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e7f7854fae9adeea6695a307452d2da150a672c2e2a1f18865e2d95421aa3ba');
+INSERT INTO messages VALUES(1070,310450,'parse','blocks','{"block_index":310450,"ledger_hash":"0e3b252b73fb652f904780da9fc59d1081d712337a9b15cf1a56ea72fbe96c73","messages_hash":"2245beaae679257ea4c041f653a25d5682678c562573c0a6d705eba7e8de80dd","transaction_count":0,"txlist_hash":"c98b9428cf94077169705f3961816f87293eb89bc840167b1ed8ffb074aef48e"}',0,'BLOCK_PARSED',NULL,'08cbd1718ad3ff627d7aea65b091da16fabeeef5dd3337b4c3faea5ca8ff430e');
+INSERT INTO messages VALUES(1071,310451,'insert','blocks','{"block_hash":"55731a82b9b28b1aa82445a9e351c9df3a58420f1c2f6b1c9db1874483277296","block_index":310451,"block_time":310451000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4403f2e8f5e0f338673857838fba8756dc5d6399c3e5617612e331a1cf964d2d');
+INSERT INTO messages VALUES(1072,310451,'parse','blocks','{"block_index":310451,"ledger_hash":"790eccd04e24e5f10f843d63bbdc1538cf1aabb0e8e6c862104be0ef845f603f","messages_hash":"669db1defb1ef01bab9fc747e8d3e8d0eb5c055f665272510c952988febd034d","transaction_count":0,"txlist_hash":"3fda9e8b7ebc417311c9f14e61c9dca2e490702c1c796eeb1df156f174d52cb5"}',0,'BLOCK_PARSED',NULL,'372ece358934e82dc55eeec1d09d4bbe6073e4fa3ea8a6b9c38a97e99fd556f2');
+INSERT INTO messages VALUES(1073,310452,'insert','blocks','{"block_hash":"016abbaa1163348d8b6bc497cc487880d469f9300374a72ecb793a03d64572aa","block_index":310452,"block_time":310452000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'26c10e8a0c31cbfa6489ce3412eb2abb3660ea9d6706f5d61a6f8ebc5dbd8ada');
+INSERT INTO messages VALUES(1074,310452,'parse','blocks','{"block_index":310452,"ledger_hash":"30962129b060b63050fe8f249592587d74cdabc4ebb5680230a280da880c8586","messages_hash":"08be855eb4a7530f27caba04a0d694acf1ff7a11a4eacb3d423fb305841c15f8","transaction_count":0,"txlist_hash":"a1bf92fe5ae4df49a6059263dfd3a9ed105ec24ae02cb9127c0408f7330d962c"}',0,'BLOCK_PARSED',NULL,'3d7876d757ef85d834eaa6c2a08e6a3eedff8581391de9a0dd0b772a68105bd8');
+INSERT INTO messages VALUES(1075,310453,'insert','blocks','{"block_hash":"610be2f49623d3fe8c86eacf3620347ed1dc53194bf01e77393b83541ba5d776","block_index":310453,"block_time":310453000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eeab8334ca24ed7c7b6f6b2dea705210d3b81e7b0165bcd681128ada7c193ed4');
+INSERT INTO messages VALUES(1076,310453,'parse','blocks','{"block_index":310453,"ledger_hash":"56f4aa1086d8985a00cc295cf9618d976e69ba426b0c3d103bea6b47b58e4355","messages_hash":"c6d61883c60555b2ceb5db12f80b6eb2a5f1ff9f4710d56dde9cc5856ae5f904","transaction_count":0,"txlist_hash":"a81de51b7b56cc68f599e592be22e11c2f0b51ca27c027f13b58f05b2229a8e1"}',0,'BLOCK_PARSED',NULL,'4e439bd8a7872e97f4b5ad3da15b0ec7e478942fb3bbc186cd2550e64c519b36');
+INSERT INTO messages VALUES(1077,310454,'insert','blocks','{"block_hash":"baea6ad71f16d05b37bb30ca881c73bc48fd931f4bf3ac908a28d7681e976ee9","block_index":310454,"block_time":310454000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe3e8a9ac5e357921fc39a2ddd374576f7e066a170a1ee6f05492669eb4f0eee');
+INSERT INTO messages VALUES(1078,310454,'parse','blocks','{"block_index":310454,"ledger_hash":"38d14a206003b812cbaf5f200235dbe12aa6a674e5f3379cb186a781cb5a5654","messages_hash":"fb5f1049a29b4bcefe05d7a7369e02282641d032abae4502def0a3f1e664a83c","transaction_count":0,"txlist_hash":"022e8475ba7e68c75b4a00387ae431b7bdaa4d125dcd1b19d08e9c431d3e6057"}',0,'BLOCK_PARSED',NULL,'aea744e45c20af673a13a22c0df53318e011f19c8e03a653e8dab1f43d412db8');
+INSERT INTO messages VALUES(1079,310455,'insert','blocks','{"block_hash":"31a375541362b0037245816d50628b0428a28255ff6eddd3dd92ef0262a0a744","block_index":310455,"block_time":310455000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5f9539cbf20d5efba8bbc5db9e9ef3920a56dd66c6618253f48fcda7471f4946');
+INSERT INTO messages VALUES(1080,310455,'parse','blocks','{"block_index":310455,"ledger_hash":"b2ff303a67c05bc12fcdfdb774ea4ddc690434c3371428b3416d38105f265f28","messages_hash":"7e489e12aacc1229f3a6acbc43ea1fa8d2d3f2138c86a72981006ca3c2bbf2ec","transaction_count":0,"txlist_hash":"91a1dc2fe8dd56e137b210136966950c79b4badcdf787b4b9fafa7985847192a"}',0,'BLOCK_PARSED',NULL,'a7d596698a11ca66f3b61b3ea5bbe88380fa61457ed1db2df30f96c154e67ef6');
+INSERT INTO messages VALUES(1081,310456,'insert','blocks','{"block_hash":"5fee45c5019669a46a049142c0c4b6cf382e06127211e822f5f6f7320b6b50fa","block_index":310456,"block_time":310456000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e890f102e3680bcb61b5f680296c567cc056c9683239b0262d164815eefcfc5e');
+INSERT INTO messages VALUES(1082,310456,'parse','blocks','{"block_index":310456,"ledger_hash":"6cc16b442fd7758ed7bae9f50367fa60debdb5d81bffc5abccda044573aeaf15","messages_hash":"57e01d9b8b6d39d98340d47e2500f9c8eb6ed608a7fdf73dae13cf140dee538d","transaction_count":0,"txlist_hash":"5125d7f8718a5a26aed1e1db2ce80e8d2eb4d96bbc91277bace52f571b7f8c26"}',0,'BLOCK_PARSED',NULL,'3f1ab688bfe1115cac51c017753e3a5ef5515694c65f0e16ee91b64fa26437f5');
+INSERT INTO messages VALUES(1083,310457,'insert','blocks','{"block_hash":"9ce5a2673739be824552754ce60fd5098cf954729bb18be1078395f0c437cce9","block_index":310457,"block_time":310457000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04b70cb8dcd71e80f56d4cfd7a0fead6166447314ef89cce314fb2eac3f366d');
+INSERT INTO messages VALUES(1084,310457,'parse','blocks','{"block_index":310457,"ledger_hash":"8fa0401d245b1b1e8b40760a54f331564d8597e242462ec412878e36a9b06800","messages_hash":"471b03eaf728606a904cd338bdffe853f0292cd01cc74e3b7062e00131be15c9","transaction_count":0,"txlist_hash":"061dc1962f44d4da9de8ad6bff4d96650058f5d444951e9c808b901db8717c81"}',0,'BLOCK_PARSED',NULL,'0c37d974d2dd549987e7b2944d912ba65f5c67566dd7da7e597899ef85c3913c');
+INSERT INTO messages VALUES(1085,310458,'insert','blocks','{"block_hash":"deca40ba154ebc8c6268668b69a447e35ad292db4504d196e8a91abdc5312aac","block_index":310458,"block_time":310458000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fde902be92b8c6ab1575b64a4fd85ea58cb0455e910eda75d3576aa11835f4ee');
+INSERT INTO messages VALUES(1086,310458,'parse','blocks','{"block_index":310458,"ledger_hash":"520f92700e31b8a35260a280ae11bf8668b0e09d34795a9d88678f2977e19f7c","messages_hash":"94e083334b06f881e2c885040f6f30511529e6152310b438105a7882d401080d","transaction_count":0,"txlist_hash":"b0208287d25e4ca6a1856236b4d4c7a3608533f0a47a9c673806d5d3baeb2297"}',0,'BLOCK_PARSED',NULL,'605e9b7f19d59a7e961efa3d581404dad396803f22682210c54ee225fba286ed');
+INSERT INTO messages VALUES(1087,310459,'insert','blocks','{"block_hash":"839c15fa5eea10c91851e160a73a6a8ee273a31ab5385fe5bd71920cbc08b565","block_index":310459,"block_time":310459000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7ed6b644d597c2ea792a22cba403098b5fcc9a93ecea2d001c19fabeb74cfb5');
+INSERT INTO messages VALUES(1088,310459,'parse','blocks','{"block_index":310459,"ledger_hash":"d7f728b78228a914b8767a6caeaf2267e9dbd50490a27f6c23bd96060eab8ee0","messages_hash":"1f78f960cf305a7fb66750d6df1c8c328cd92ca738c348422a85de6f9803cc09","transaction_count":0,"txlist_hash":"21a24d787b30434a230cae77e281636855ff40a8fb4aaaad35eb034835f63e97"}',0,'BLOCK_PARSED',NULL,'c5ef0f967fbef35f9dcd27a6ad9c95e8afd1cf6d0a246713c1e3c2d27fd6f467');
+INSERT INTO messages VALUES(1089,310460,'insert','blocks','{"block_hash":"9b5f351a5c85aaaa737b6a55f20ebf04cafdf36013cdee73c4aaac376ad4562b","block_index":310460,"block_time":310460000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'866b22a240ff8a647d36f333bf740fed3e786eb2768e6ba9f4beb14eb7c96880');
+INSERT INTO messages VALUES(1090,310460,'parse','blocks','{"block_index":310460,"ledger_hash":"33c2b4c6d22888448a2458ff2ce6a1cfae5e858acae2a57e4cc0232980f8fa4a","messages_hash":"a1a8f755136d8c1e002673a43ae4f9c25a998cb53e84c3613a8e1e6658da9846","transaction_count":0,"txlist_hash":"2ae25ed250bd603684d0affe8b14af5a1b8d1554beaed08aa8f723cc3c66cf8d"}',0,'BLOCK_PARSED',NULL,'e469889687c7188ae7b10ad7266e2c841b3970fa5c75d5c2c89681777aba3547');
+INSERT INTO messages VALUES(1091,310461,'insert','blocks','{"block_hash":"8131c823f11c22066362517f8c80d93bfc4c3b0a12890bdd51a0e5a043d26b7b","block_index":310461,"block_time":310461000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2860d3a000eb23140bf0827376247ebe51178dfa921951f65a3b4403cef6e8b4');
+INSERT INTO messages VALUES(1092,310461,'parse','blocks','{"block_index":310461,"ledger_hash":"22426912d3317922912326da552af284677c9b76b6416b6c056668f27ae4f19f","messages_hash":"10e50722472b67e160edcb8dba4e23ee3f66814ba243e222fd9c5785286ca090","transaction_count":0,"txlist_hash":"13b7774cf2a5a0f3d65031cd5f9ee498eaeee5c1e0e8ecbd346e0427d847a5c0"}',0,'BLOCK_PARSED',NULL,'830e38f4af7f88a428181620957d690540111d13ff8fbb243a0f815319130632');
+INSERT INTO messages VALUES(1093,310462,'insert','blocks','{"block_hash":"16f8fad8c21560b9d7f88c3b22293192c24f5264c964d2de303a0c742c27d146","block_index":310462,"block_time":310462000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'961d25ee910ee172c123b9698fe7352631e9d07fb6fd3329d80c347663815d2c');
+INSERT INTO messages VALUES(1094,310462,'parse','blocks','{"block_index":310462,"ledger_hash":"74225b62e696aaeafbd4d6db40b41081c7493d9cc44984729d8619ff9450ce32","messages_hash":"f9a08101549db0aa9c6e67ae3a2cca46a59526dc5a313c2ad50f76ec5475f820","transaction_count":0,"txlist_hash":"4f23d4da0bbe4b8bb7e00b6b746b4180356013c63f7a6f9b3eee479380b04e4f"}',0,'BLOCK_PARSED',NULL,'1522bc284081ef5b0c48864bd5e919f1864665f17c4e73a98bd94984a1621f4e');
+INSERT INTO messages VALUES(1095,310463,'insert','blocks','{"block_hash":"bf919937d8d1b5d5f421b9f59e5893ecb9e77861c6ab6ffe6d2722f52483bd94","block_index":310463,"block_time":310463000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6a41236badf847c54014bd660f65c16b0f4d5f0bd8881473341bfda8c6c4cf79');
+INSERT INTO messages VALUES(1096,310463,'parse','blocks','{"block_index":310463,"ledger_hash":"b970979bfe0d44ae2f21f7d98bdcc4ae37287b93cad9fa51f32a62337ceba0c1","messages_hash":"caa64b96bc124bb33e6a9042af4ef016d359f2a78383e7e76024b6f5a1e3067f","transaction_count":0,"txlist_hash":"7b9a9095733a9d870b33aef4bb15767c32b012c27b52de8731358178b87bfb50"}',0,'BLOCK_PARSED',NULL,'a69e3cd2e82e0c6d1d291d3acc90c4ef00eff08c713eb6d7b19949392c5a0cd3');
+INSERT INTO messages VALUES(1097,310464,'insert','blocks','{"block_hash":"91f08dec994751a6057753945249e9c11964b98b654704e585d9239462bc6f60","block_index":310464,"block_time":310464000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8f0828b75d2715fcc28f14ea547dd2b42712277056c7b0eaf3f79c5b34918a74');
+INSERT INTO messages VALUES(1098,310464,'parse','blocks','{"block_index":310464,"ledger_hash":"00007a158b003fcca20c9fcaa8d73a556f0206bc9a7ab3e5c566ea1bda8648cb","messages_hash":"539ab03391bc8b4a2e62da7208b35f028011166420d97e0b335206a3a3ef6ebb","transaction_count":0,"txlist_hash":"28d7eceb69efcc6736dd64c65ed218dae2e8d0e9d4d7284b0572a5d1065a9d52"}',0,'BLOCK_PARSED',NULL,'6a75d008f88f2debfb917ccbd4e41f4b13f335000a696e6d6c20caae48fe8eda');
+INSERT INTO messages VALUES(1099,310465,'insert','blocks','{"block_hash":"5686aaff2718a688b9a69411e237912869699f756c3eb7bf7c3cf2b9e3756b3d","block_index":310465,"block_time":310465000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dee291f05cc158175d4ca5adcc49e3e0f55f1b88773e1731d1c8f943c70aea77');
+INSERT INTO messages VALUES(1100,310465,'parse','blocks','{"block_index":310465,"ledger_hash":"09c407870b056db90148a9e4cb8ada003898ff28c584bec6a5be90514758a851","messages_hash":"fb9d564583c18088c46b49126dedf7389071698866951a2e21447285893fd444","transaction_count":0,"txlist_hash":"7a4f4ed76efc69ddb5fc13abe258656d6a5e4a845203b5f3f9133716093d7f6d"}',0,'BLOCK_PARSED',NULL,'64b96041f8f4167db7c0b671165de3e3f5ecb81e0d95d89ad92376e7e7c5ddf1');
+INSERT INTO messages VALUES(1101,310466,'insert','blocks','{"block_hash":"8a68637850c014116da671bb544fb5deddda7682223055a58bdcf7b2e79501fc","block_index":310466,"block_time":310466000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cced00732477c3c89f7a57a6e9b2c8f9521dacabeccf1842e393a3454a60cc5');
+INSERT INTO messages VALUES(1102,310466,'parse','blocks','{"block_index":310466,"ledger_hash":"23bcfdbb44d8fc2ae6a86ea073ab080158014f04516b256a70d846399e7383cd","messages_hash":"74518dfb141064392b09d36ce6e749781162269155a0dfb8fed188c29bfe968c","transaction_count":0,"txlist_hash":"57124a566cf1e863b27fa19e3c982fe4a5115119ffb745624697380ad8d5f900"}',0,'BLOCK_PARSED',NULL,'75bb6c024e8769e9a31a8a502cfeee77c736c159273e4497a43c6297cdab8c3f');
+INSERT INTO messages VALUES(1103,310467,'insert','blocks','{"block_hash":"d455a803e714bb6bd9e582edc34e624e7e3d80ee6c7b42f7207d763fff5c2bd3","block_index":310467,"block_time":310467000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bc8dd45f533e51f18bdd737cd01f2b51771eba3c2c34b5eb7113e4d76c2313e');
+INSERT INTO messages VALUES(1104,310467,'parse','blocks','{"block_index":310467,"ledger_hash":"a43abeddb61ad99d57f208cb0c6cc3e0b05a200009e6d90641a2bc7aac707adf","messages_hash":"93cf78601c0e3a8a456b115962f8ab58695c582ff136737eb09be1a7680f2491","transaction_count":0,"txlist_hash":"fb3b1ef99d2f323e1bdd6998b78b6044c8c7328fafad6b9fea1de7bd0244a265"}',0,'BLOCK_PARSED',NULL,'7a2ef72b539b1b9b86918b955d8e96e3c736abd965cacec8a6a811293ef6eb00');
+INSERT INTO messages VALUES(1105,310468,'insert','blocks','{"block_hash":"d84dfd2fcf6d8005aeeac01e03b287af788c81955612375510e37a4ab5766891","block_index":310468,"block_time":310468000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38d0db4dd3098306bd5d722a82daff85700bd609ca8d5e79326a7bf4af5c29a7');
+INSERT INTO messages VALUES(1106,310468,'parse','blocks','{"block_index":310468,"ledger_hash":"fc909facd6ba38fa0908fd49a6e2f25bd8284de5265ef761497b8a2d595344b3","messages_hash":"dd0290589cda516ec6eddb2d75d86d64441550c19e8b8d3e9adbbb1544cf0544","transaction_count":0,"txlist_hash":"5c84a33365a6954fe639a1c2b1df030b8728d5d331df5ea1ef4a60f976cfa5d2"}',0,'BLOCK_PARSED',NULL,'fe65a89e6d70ad8c03456821dcf510697e1cf699036fee82f4993f979b43fa7f');
+INSERT INTO messages VALUES(1107,310469,'insert','blocks','{"block_hash":"2fbbf2724f537d539b675acb6a479e530c7aac5f93b4045f4356ea4b0f8a8755","block_index":310469,"block_time":310469000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'97dd9aab9c63353ff326115f221d84597da6a0678818049a9007a1887cbbfa99');
+INSERT INTO messages VALUES(1108,310469,'parse','blocks','{"block_index":310469,"ledger_hash":"09f0d1c9bde8cdd63544fbb5eab46c2954654d32f3736f9975cf860588aa65cf","messages_hash":"539c38d03e2330542cddb0826e1787d061c5521bc2665d4a95f865e808108f24","transaction_count":0,"txlist_hash":"38083f12891b03e2f089b02f7cb6b7fc7b6cb7091613e1d299051717eef6748b"}',0,'BLOCK_PARSED',NULL,'2d3975e3e184adab8e4c3acdc6518b550c862226ed1ee76036210dbba181b616');
+INSERT INTO messages VALUES(1109,310470,'insert','blocks','{"block_hash":"ebb7c8e3fbe0b123a456d753b85b8c123ca3b315da14a00379ebd34784b28921","block_index":310470,"block_time":310470000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8bfc6e22fdd317497606bc681720404da4545eec261379c8b8b6e6e6e126fbed');
+INSERT INTO messages VALUES(1110,310470,'parse','blocks','{"block_index":310470,"ledger_hash":"41832b12459e778621b8f576e597b9f639390338605b30e5be28423b016b199a","messages_hash":"9eb29fc43349c9c9eba529ff4994e9d6f91063e923e37136e14efdc7f0280854","transaction_count":0,"txlist_hash":"bc0a8227d8698655c56004a73150eb92144469fd22d4ce8bf0f48c27084e99ae"}',0,'BLOCK_PARSED',NULL,'39bd5879e224b2d5d2b7363958648d847da9518af0162f136379e5dae15f34e2');
+INSERT INTO messages VALUES(1111,310471,'insert','blocks','{"block_hash":"fc6f8162c55ecffeaabb09f70f071fd0cb7a9ef1bccaafaf27fe9a936defb739","block_index":310471,"block_time":310471000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ad85ef5fded3634ad63c766f35f2e202712ad2f187218e6cd6897d13d2cf6c5');
+INSERT INTO messages VALUES(1112,310471,'parse','blocks','{"block_index":310471,"ledger_hash":"bf701017153742cb597353349c90ec66f790f222dd98d617d98a0117f1de3274","messages_hash":"dd1da36cbaf6a1417087abf478e9a63e828d79cc956de97568328429fe35e172","transaction_count":0,"txlist_hash":"d912707e01e39b078d3cee49df85af32019d7367d199543259bc98864c3ddae5"}',0,'BLOCK_PARSED',NULL,'7c54d0fee465593caa458d988223812ee36ac06fa3aec786301bfcc396721416');
+INSERT INTO messages VALUES(1113,310472,'insert','blocks','{"block_hash":"57ee5dec5e95b3d9c65a21c407294a32ed538658a6910b16124f18020f16bdf7","block_index":310472,"block_time":310472000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5dd8023033dc2d63d2f53e304c985eaecae5428d9735e47ce8fdb8022805da7f');
+INSERT INTO messages VALUES(1114,310472,'parse','blocks','{"block_index":310472,"ledger_hash":"2a162bbd5a20f89a39156995658fd0c4715881bc130922d0edf95b60ece60b9c","messages_hash":"06055afb3d5c34520bdebfa82843416194751f582864050cb6ff8dd206b8a420","transaction_count":0,"txlist_hash":"c9f21a9ff022fd95423d3eb56017f4f6f8ad56a9fde974c5d08b37f01a0d0f13"}',0,'BLOCK_PARSED',NULL,'b3daf708cc9d00e343c3056d1ac30e7cabfcc2c2e8bd62d4e42d6348d42621fe');
+INSERT INTO messages VALUES(1115,310473,'insert','blocks','{"block_hash":"33994c8f6d06134f886b47e14cb4b5af8fc0fd66e6bd60b3a71986622483e095","block_index":310473,"block_time":310473000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d6424b94f8562359ec07867a9b1793b2711d67cc3c70ad1ebd78afe799d679d1');
+INSERT INTO messages VALUES(1116,310473,'parse','blocks','{"block_index":310473,"ledger_hash":"1ce10996ec9e37d8ddc204f038542c6781da88d2d45bae1952a88ab993b81e88","messages_hash":"b1fa993525a8ff98aec397fb3f0e882cf1aa01a0a07ee3bca9ef543bc2366258","transaction_count":0,"txlist_hash":"ad410d51bae82f8322d110d7b2270a1ff74c0ca64dfc31c5d293cfee7dbbb459"}',0,'BLOCK_PARSED',NULL,'b6c44f579ce306e2d988b0f3faa02c6d5212e8b4d35ed6a81e224886b062e3c1');
+INSERT INTO messages VALUES(1117,310474,'insert','blocks','{"block_hash":"312ee99e9526e9c240d76e3c3d1fe4c0a21f58156a15f2789605b3e7f7794a09","block_index":310474,"block_time":310474000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10b9c8ec809ff5265e29349a1aac1201c5ff6daa8ca76dea7510c7bdb03b0de0');
+INSERT INTO messages VALUES(1118,310474,'parse','blocks','{"block_index":310474,"ledger_hash":"5ae424c24ca30aad5aca8298a13ae9371f55b15bc789c7731d833c6e7c7cb04e","messages_hash":"f61554899fcca1135dcce45a468d91170468a8531e3ee564ecd84372ce32f7d1","transaction_count":0,"txlist_hash":"b091eceeb4b263d9fa55bd5595cd298ff8b335e03007d62339033cd884137d48"}',0,'BLOCK_PARSED',NULL,'f98ca5ebd076ac3fb590b37ec2b0f940e87c7ca6c5f2aaf90e09a8bd25b32e6b');
+INSERT INTO messages VALUES(1119,310475,'insert','blocks','{"block_hash":"bb9289bcd79075962117aef1161b333dbc403efebd593d93fc315146a2f040eb","block_index":310475,"block_time":310475000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3021e617178ea6166262432dac449893ef41137e7463d9140e78a15cd5cc6d59');
+INSERT INTO messages VALUES(1120,310475,'parse','blocks','{"block_index":310475,"ledger_hash":"b9b257efe76a36c340629ceb265822dd10449a08eadc69667a8ea05af5c052f8","messages_hash":"3e926512bf9640bf41a62025435cf17bf9f76eb10db313ec520120f47e0b8710","transaction_count":0,"txlist_hash":"345c94c7b237efaf2b4e92802125b7d783e456e36ab6868d1f4126698361ba89"}',0,'BLOCK_PARSED',NULL,'813773b581a999ffc060dd2e3cfe6a091b40ddc2983f1e4c8ce16f4230e1def6');
+INSERT INTO messages VALUES(1121,310476,'insert','blocks','{"block_hash":"3712e1ebd195749e0dc92f32f7f451dd76f499bf16d709462309ce358a9370d0","block_index":310476,"block_time":310476000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b75eeddd9dda24dbeaa74705e524137cd1dda15851f3bac76a7627dba9467e2f');
+INSERT INTO messages VALUES(1122,310476,'parse','blocks','{"block_index":310476,"ledger_hash":"070c06b36f3a77c04fb4bcc3ab1045e95f198f3f970846e59c35db0d03cdaf2c","messages_hash":"504ce7a02051b85beec5aec3f966ef1e27296818dc1cb2d33d90df9addc2209e","transaction_count":0,"txlist_hash":"014e01dabe6dd8db8e0477f9b12d4f4e3589e41223ec8c9ca5035b942524ca41"}',0,'BLOCK_PARSED',NULL,'e52d1d98d7f7a2570cf0e5746a2f23d73620f5b9ed70d56abe4f92fcb6b1a149');
+INSERT INTO messages VALUES(1123,310477,'insert','blocks','{"block_hash":"7381973c554ac2bbdc849e8ea8c4a0ecbb46e7967d322446d0d83c3f9deab918","block_index":310477,"block_time":310477000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d704bd663024904ee50ac561132410f20823a6b4b76fe977d92d7a5ff3dc8a0e');
+INSERT INTO messages VALUES(1124,310477,'parse','blocks','{"block_index":310477,"ledger_hash":"4954596dd44d112fd0407c215be3c9534a348d6f708ae4a1e66527d1ac2830b1","messages_hash":"dbcf2532422d19dcd61cab53ba009a72ea64584bf2963d1a54e6316e35ecb4cf","transaction_count":0,"txlist_hash":"1351438c8ea21d9619f81e51cfd188dbefd6a4816fe3c30b68210ac160890e9b"}',0,'BLOCK_PARSED',NULL,'c5f5733d004e01e87a0e5ff745e0fe632e1c34c8301bb0739b1e8ad611ff6f26');
+INSERT INTO messages VALUES(1125,310478,'insert','blocks','{"block_hash":"c09ee871af7f2a611d43e6130aed171e301c23c5d1a29d183d40bf15898b4fa0","block_index":310478,"block_time":310478000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d652db09ebf0fc04f966419bd2e07816c970f6c50aec7f2ff2ee43d4fc12e42e');
+INSERT INTO messages VALUES(1126,310478,'parse','blocks','{"block_index":310478,"ledger_hash":"d9cac2e29863569bc96aaf022437906a534968a17bf965c54bf59931cd92e590","messages_hash":"2d38354f588f7444d08b83ec1bfb229391fb9e536d39edd0c6ed01e3ae6615e2","transaction_count":0,"txlist_hash":"cbec4d277b86a587fd0463340a8990600046f6f166f6fde0b6ec1ee817ab12bb"}',0,'BLOCK_PARSED',NULL,'aedf92ae82f26efe1fe332f2122eca4c03aa3c49bc7d01ffdf899a392a2e8480');
+INSERT INTO messages VALUES(1127,310479,'insert','blocks','{"block_hash":"f3d691ce35f62df56d142160b6e2cdcba19d4995c01f802da6ce30bfe8d30030","block_index":310479,"block_time":310479000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12ed2a5c8c2ca5f18f02ff4ae94748637c9fa10b6076f9913ba3cc075ea88fd7');
+INSERT INTO messages VALUES(1128,310479,'parse','blocks','{"block_index":310479,"ledger_hash":"2e48a89a55b6f368745e1c022683e93c20bdd920011518f18fd936f2190ac5e0","messages_hash":"cffeea14d3d4af3dec1742a1e754397f09f1689e33cc3b38a382d74b4ffeee79","transaction_count":0,"txlist_hash":"81d4ab55e022000a1bb3fbe758e497425c5196951c3e7896d3c641d54b4f2db6"}',0,'BLOCK_PARSED',NULL,'c9e639b3e3e36e9ae51e71178ed6d7b1565a05eaf40432637507c94401519e72');
+INSERT INTO messages VALUES(1129,310480,'insert','blocks','{"block_hash":"2694e89a62b3abd03a38dfd318c05eb5871f1be00a6e1bf06826fd54d142e681","block_index":310480,"block_time":310480000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84ad13997bc819b64e1c7894f0b77e0433cf8bf6b99a7ff91d4ddb486e5dc265');
+INSERT INTO messages VALUES(1130,310480,'parse','blocks','{"block_index":310480,"ledger_hash":"aa54124d86e74bebd14ea481ac2a5a5186236ffe214747f1af11ac370565525c","messages_hash":"7feff465e13b22a734949e2d3d6f1140f3a678691da42717b38b5e0994df9c95","transaction_count":0,"txlist_hash":"8d7e0f8a6f052692155e23eb612c02468830485938e7cb77a91e0c2061611385"}',0,'BLOCK_PARSED',NULL,'061f991b5771d469de25e25029aa921f76ec24bff6b580145549ac30301ebd5c');
+INSERT INTO messages VALUES(1131,310481,'insert','blocks','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e14116e07a9f0de68ff57a9a15822db58971305764bf70536e6bd48d2e6f358');
+INSERT INTO messages VALUES(1132,310481,'insert','transactions','{"block_hash":"db37d8f98630ebc61767736ae2c523e4e930095bf54259c01de4d36fd60b6f4a","block_index":310481,"block_time":310481000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec68656c6c6f","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482,"utxos_info":"bfa2498c61a5ab493924ae30e1755b76e3aa56a149551f72c198302f4bb72514:1"}',0,'NEW_TRANSACTION',NULL,'dae320de7aaca2889c05a98125d035135c6931804c38cded4ed2bb4eb5b2243a');
+INSERT INTO messages VALUES(1133,310481,'insert','debits','{"action":"send","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310481,"event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'DEBIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','984d792f91fe9c699dbadc62af926aea9d2d79b2b5aedf94318c5ff301b1eb89');
+INSERT INTO messages VALUES(1134,310481,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310481,"calling_function":"send","event":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","quantity":100000000,"tx_index":482,"utxo":null,"utxo_address":null}',0,'CREDIT','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','899fdd26c681e69b3fd804947035fe2cf744a33ad9220c30ae1a89b9d1298ebd');
+INSERT INTO messages VALUES(1135,310481,'insert','sends','{"asset":"XCP","block_index":310481,"destination":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","memo":"68656c6c6f","quantity":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'ENHANCED_SEND','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','406e93ea90d8045a4f903ad92c8cc9dd42a4b6b0e21226b2f3660f7464748011');
+INSERT INTO messages VALUES(1136,310481,'parse','transactions','{"supported":true,"tx_hash":"b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5","tx_index":482}',0,'TRANSACTION_PARSED','b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5','919e5da9cc1d451e226930ddb537de1f1126c54ea90f86c5b81ffc606d1697a7');
+INSERT INTO messages VALUES(1137,310481,'parse','blocks','{"block_index":310481,"ledger_hash":"fbbe1266bb773e5a3f5b48e82566ff75bc74bfea9424f81f670952565db15c59","messages_hash":"2ae951fd6cf6e0889356eedc61d768c4525631ead613256b725866de2b88ecf0","transaction_count":1,"txlist_hash":"8bc755d288d8d6525d9161e5d5072631a72e46d2373de37c7851aa10f3479ed5"}',0,'BLOCK_PARSED',NULL,'bf06e19455a2b29a6fd2ae454adc9139ab83ef0abe851cd0224c6bb5f51bdef1');
+INSERT INTO messages VALUES(1138,310482,'insert','blocks','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'458997ca13acfb07452bbd984a708f8e24c8bab33154d47cdaf6d01ad6851a58');
+INSERT INTO messages VALUES(1139,310482,'insert','transactions','{"block_hash":"2e27db87dfb6439c006637734e876cc662d1ca74c717756f90f0e535df0787d6","block_index":310482,"block_time":310482000,"btc_amount":0,"data":"0000000200000000000000010000000005f5e1006f4838d8b3588c4c7ba7c1d06f866e9b3739c63037fade0001","destination":"","fee":6350,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483,"utxos_info":"2ebe132dfa9d25726c0cae96e32a1f4bb92cfaae285a740dd1a21e1e1586e15b:1"}',0,'NEW_TRANSACTION',NULL,'b82a23cc6ea3b99696bef9da71c42bae30b21753a8167ec7b987b5ba7f2b0409');
+INSERT INTO messages VALUES(1140,310482,'insert','debits','{"action":"send","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310482,"event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'DEBIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','b3ba09debaa33fac10b6bd10811fde0014935a53c9f63d7197dcd8f98c4f6f88');
+INSERT INTO messages VALUES(1141,310482,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310482,"calling_function":"send","event":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","quantity":100000000,"tx_index":483,"utxo":null,"utxo_address":null}',0,'CREDIT','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a755b89636d5334d6d5dd862255e0d26d864a63c079c8b5a10d41bfe7efb2aad');
+INSERT INTO messages VALUES(1142,310482,'insert','sends','{"asset":"XCP","block_index":310482,"destination":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","memo":"fade0001","quantity":100000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'ENHANCED_SEND','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','b562a5cbe167c906dcf035a6e40fed7962503172497592f8ea6ab5e882fd8176');
+INSERT INTO messages VALUES(1143,310482,'parse','transactions','{"supported":true,"tx_hash":"c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34","tx_index":483}',0,'TRANSACTION_PARSED','c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34','a93968c5440243bee5acb292978506e0d3efa90bb653c349953e9b4fce2ad180');
+INSERT INTO messages VALUES(1144,310482,'parse','blocks','{"block_index":310482,"ledger_hash":"bd28a97e90054319c4c301c3e99d68aaa5e1bf5a145a8f2c4529040bb8137209","messages_hash":"54f9d1ce2022edb448e6b60988f10661916a2be3c0c88d257f4512f4661d3cfb","transaction_count":1,"txlist_hash":"838486910c9c7722fb3afbac7b0514cdd94126486f6671697423b34164b9906f"}',0,'BLOCK_PARSED',NULL,'83a41a28394b982bbe38a2847a7b0dc8c0c0f5dd73bf5807865854c7769fb2c1');
+INSERT INTO messages VALUES(1145,310483,'insert','blocks','{"block_hash":"013bac61f8e33c8d8d0f60f5e6a4ec3de9b16696703dea9802f64a258601c460","block_index":310483,"block_time":310483000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cc0e8c1b3e16a89d3bf48a9264cec11adc080fb4a08945eee760ed16806e8cc');
+INSERT INTO messages VALUES(1146,310483,'parse','blocks','{"block_index":310483,"ledger_hash":"fbbeacec99c9ed99a7fc37cdd5673fe8bdce08eba7fcb25b696e262af29ca5d8","messages_hash":"ecf5eb0a239482dcc60b55ce9d7ae555d91926d80eb7870deab151d5b0c30d89","transaction_count":0,"txlist_hash":"2be6ebe515877a76a7b83b1929ca2ef77be1df3aa3d6766c0c47450898ad7adf"}',0,'BLOCK_PARSED',NULL,'acca7d572f1d71c1f67d6fe55e6d723705ef1dfa748de1e60088ed8bcd4102fa');
+INSERT INTO messages VALUES(1147,310484,'insert','blocks','{"block_hash":"7cac2b3630c31b592fa0497792bed58d3c41120c009471c348b16b5578b3aa2b","block_index":310484,"block_time":310484000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d00a305a2321a44beee2cd2170586a5e0a26a5a1f645beec294fccbb0210226');
+INSERT INTO messages VALUES(1148,310484,'parse','blocks','{"block_index":310484,"ledger_hash":"310bc7c61c1325ee3f97e888658fd74e1fe4adccef4924abb6978150fe6f3dad","messages_hash":"afec302c107b27644ee0f39a850cca9f86703a0ac8d78a40580694d33e7c3cab","transaction_count":0,"txlist_hash":"ec800faf2b61e7b1c2c85157d09b058f59defc14ffbe64d82dffea2a0368ade2"}',0,'BLOCK_PARSED',NULL,'5f15bdfc1af72f500d493891d9fb2c4caef1b9ed66664a2d0b39e00d61aed3ec');
+INSERT INTO messages VALUES(1149,310485,'insert','blocks','{"block_hash":"eab5febc9668cd438178496417b22da5f77ceaed5bb6e01fc0f04bef1f5b4478","block_index":310485,"block_time":310485000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90afdc70349c43ddcf894f23153771cf0ebfdf1fbda23bdb4d7c48003218e428');
+INSERT INTO messages VALUES(1150,310485,'parse','blocks','{"block_index":310485,"ledger_hash":"b7f66db9ea5838b65286422d0cac262f6b81bbd5a7397adf7b8d85b21354dbcd","messages_hash":"8b2a5b6a613c9f190a253983aa6578ef496edd5a8426aeaae21dfd81475379c2","transaction_count":0,"txlist_hash":"c2c0301119eb8f6e5ee8f72a4f93366a7c2b9f327f087a5aabff7d73892ca74f"}',0,'BLOCK_PARSED',NULL,'f7dbb4a04624fee91af740b8627589eef25375ffc4941f7f273f00d650c4d148');
+INSERT INTO messages VALUES(1151,310486,'insert','blocks','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5ecd824a3bc34200becdf685f3737a04d00845743bf4cd7a3035040cb4f8de6a');
+INSERT INTO messages VALUES(1152,310486,'insert','transactions','{"block_hash":"d4fbe610cc60987f2d1d35c7d8ad3ce32156ee5fe36ef8cc4f08b46836388862","block_index":310486,"block_time":310486000,"btc_amount":0,"data":"0000001e52bb33003ff0000000000000004c4b4009556e69742054657374","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"utxos_info":"6b8d0b2f14d76925018d55a2b0948e66cb67a99678b9ae8026797948ca974cd8:0"}',0,'NEW_TRANSACTION',NULL,'dd128408568c3b385acda57270c93d3896ff72700d3c93b1da75d22d2733075f');
+INSERT INTO messages VALUES(1153,310486,'insert','broadcasts','{"block_index":310486,"fee_fraction_int":5000000,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"Unit Test","timestamp":1388000000,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487,"value":1.0}',0,'BROADCAST','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','eb6b5674b178a161e97e04e22e1c8f81bfcea359a38b80ce3ea3122ca20ec464');
+INSERT INTO messages VALUES(1154,310486,'parse','transactions','{"supported":true,"tx_hash":"3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14","tx_index":487}',0,'TRANSACTION_PARSED','3b95e07a2194174ac020de27e8b2b6ee24d5fc120f118df516ba28495657cf14','7917d95c15134dddfbeecb1a5e1a34886ea2ad138daaa8ca27478c226da54593');
+INSERT INTO messages VALUES(1155,310486,'parse','blocks','{"block_index":310486,"ledger_hash":"0f829769e4da773089d7b05047a499db5f6d1b17795d4fba912882caee9813e0","messages_hash":"74231803907f08e1d469edec4cb87590248b16b49e101fa502fe0bb21645dc34","transaction_count":1,"txlist_hash":"ea66c7d9251a0eb884fef48de05cb58bbcf3a9e08319f01c96f180aeb0de9bab"}',0,'BLOCK_PARSED',NULL,'c3ad9f5b7ae1d3e354ff2b4ea4d960d22cd7648ed52ed5a2153419b62d67ea29');
+INSERT INTO messages VALUES(1156,310487,'insert','blocks','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'453f6892e59fb46ce13ed3b516f036c723e9af995712c8ffa9e0f5b235253727');
+INSERT INTO messages VALUES(1157,310487,'insert','transactions','{"block_hash":"32aa1b132d0643350bbb62dbd5f38ae0c270d8f491a2012c83b99158d58e464f","block_index":310487,"block_time":310487000,"btc_amount":5430,"data":"00000028000152bb3301000000000000000900000000000000090000000000000000000013b000000064","destination":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","fee":7650,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"utxos_info":"ed3fb8c01061ce068ac9758e33c6cb9f8f76d0173fa9cd0a2f1d06dd0452296f:0"}',0,'NEW_TRANSACTION',NULL,'938c5a1d392acf5a352c755e8e785954630f0de3f1af0a0904e25239aaa7c2f8');
+INSERT INTO messages VALUES(1158,310487,'insert','debits','{"action":"bet","address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310487,"event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":488,"utxo":null,"utxo_address":null}',0,'DEBIT','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','4280681518dd24e5a0dc5992a86bc50ee7c1962308903a45bb345075fc8bb7c9');
+INSERT INTO messages VALUES(1159,310487,'insert','bets','{"bet_type":1,"block_index":310487,"counterwager_quantity":9,"counterwager_remaining":9,"deadline":1388000001,"expiration":100,"expire_index":310587,"fee_fraction_int":5000000.0,"feed_address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","leverage":5040,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"open","target_value":0.0,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488,"wager_quantity":9,"wager_remaining":9}',0,'OPEN_BET','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','a12ad7b97553aaa2af601e7950d69bd2cd6a817ac140d9e2ffa13123016b3711');
+INSERT INTO messages VALUES(1160,310487,'parse','transactions','{"supported":true,"tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","tx_index":488}',0,'TRANSACTION_PARSED','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','1916a99a23c981376b6a8e5c0ff988ccb33c234c3f9b7fb33fe8749e4d2f9565');
+INSERT INTO messages VALUES(1161,310487,'parse','blocks','{"block_index":310487,"ledger_hash":"4b4d7a79843342e96e5d9d71bbc49690245b3098be75e7b86f273021d526216d","messages_hash":"dbcff459bc535e44556f4ca4fcc7a8992bddccf9be2b2e3880437e4203be6b99","transaction_count":1,"txlist_hash":"76fbd411c43f3f67c8bf61138c5672de0cfda2d98f112a6e50b3a5d084d7cc72"}',0,'BLOCK_PARSED',NULL,'efd9feb5d8710044cd1937cac777c94b9cc0519497d6300f76da6d466bd44057');
+INSERT INTO messages VALUES(1162,310488,'insert','blocks','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'113ea0b0aabb1ad71195e052ff66a605a97f146b896a38f3c5f59a5d4ff30496');
+INSERT INTO messages VALUES(1163,310488,'insert','transactions','{"block_hash":"80b8dd5d7ce2e4886e6721095b892a39fb699980fe2bc1c17e747f822f4c4b1b","block_index":310488,"block_time":310488000,"btc_amount":0,"data":"0000001e52bb33023ff000000000000000000000096f7074696f6e732030","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"utxos_info":"66afb5bf48c426a8f871e9c6db4b8f48db8c473f9757dcdf75d71d6231c2ef9e:0"}',0,'NEW_TRANSACTION',NULL,'597e08b1b0f48d0ce2f582d167f9ba512192a1866486018b371a41217dffe61b');
+INSERT INTO messages VALUES(1164,310488,'insert','broadcasts','{"block_index":310488,"fee_fraction_int":0,"locked":false,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":"options 0","timestamp":1388000002,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489,"value":1.0}',0,'BROADCAST','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','4a046eb7f232461b229ad43c8b516fd173cbd7efa95a6c818c7a96e6661131a9');
+INSERT INTO messages VALUES(1165,310488,'insert','addresses','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","block_index":310488,"options":0}',0,'NEW_ADDRESS_OPTIONS','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','d8c632601c4edf19d5c8bfd28e162f049ddb7b8cf4545567c868ba8c6cecd125');
+INSERT INTO messages VALUES(1166,310488,'parse','transactions','{"supported":true,"tx_hash":"870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638","tx_index":489}',0,'TRANSACTION_PARSED','870fb08b373705423f31ccd91fdbcabe135ad92d74e709a959dfa2e12f9a6638','3d697c561496f4d000659e5f698da24402d18f628765eed24bef6e4bfcea031c');
+INSERT INTO messages VALUES(1167,310488,'parse','blocks','{"block_index":310488,"ledger_hash":"2d7e59026ea4c8933e9c7474936931ca49d4af91f9b9985f3c76085fb3a69104","messages_hash":"3ef2798c9af0fae8ddca24c6480f43428d5612c19ab9b1340fa19a8f56eaaeb2","transaction_count":1,"txlist_hash":"78e801f2d1968c860ac2563e9cc912c18cb8e5f95996011e84c289833fbd46da"}',0,'BLOCK_PARSED',NULL,'e514dbc1ed077aa02b5ce3854c95142b4d9c35f9ca86ae69f269c5de2f682b7c');
+INSERT INTO messages VALUES(1168,310489,'insert','blocks','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4aaa45d142da1aeb97c8af91b8fd005c70099cc9cc7ac147ef8bfd03644ccfa');
+INSERT INTO messages VALUES(1169,310489,'insert','transactions','{"block_hash":"2efdb36f986b3e3ccc6cc9b0c1c3cdcb07429fb43cbc0cc3b6c87d1b33f258b6","block_index":310489,"block_time":310489000,"btc_amount":0,"data":"0000001e52bb33033ff000000000000000000000046c6f636b","destination":"","fee":6800,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"utxos_info":"147f338cda56d39f102fd4ec014961e482a2ca4f7b8c419c368e6147b87dca09:0"}',0,'NEW_TRANSACTION',NULL,'dde193380aaae7d10eb0dbb933b496cb54d6aa2bf837e1bd7a5bf17f03276bfb');
+INSERT INTO messages VALUES(1170,310489,'insert','broadcasts','{"block_index":310489,"fee_fraction_int":null,"locked":true,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","status":"valid","text":null,"timestamp":0,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490,"value":null}',0,'BROADCAST','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','f17b81bc1f6c2307af1a28827604e60657eea2e53be29c4669681634bb2c0deb');
+INSERT INTO messages VALUES(1171,310489,'parse','transactions','{"supported":true,"tx_hash":"685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1","tx_index":490}',0,'TRANSACTION_PARSED','685d7f99fa76a05201c3239a4e0d9060ea53307b171f6ad7d482a26c73e9c0d1','a488312e4ce2a769e0427b7c3ee49a402562a558571c3269cf6cdbdab17af2bc');
+INSERT INTO messages VALUES(1172,310489,'parse','blocks','{"block_index":310489,"ledger_hash":"716354a370f344980e98785a444b56b21188bc699e7fbd0c877b6f2fabf35efc","messages_hash":"770a0750a3f1e400309da9b29ccba06399e3faa2c5b74f38b114de6a79e24fb8","transaction_count":1,"txlist_hash":"23d9af03e6aa29fbab29c8e2a5a0419680053bba19594105cc8ef4d3db05d418"}',0,'BLOCK_PARSED',NULL,'cc03bc171138af6dcc8faffee8fb027eb8c54ede33c8ed96174821f94f474e3b');
+INSERT INTO messages VALUES(1173,310490,'insert','blocks','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'46748efd270c7c284cd5cf10272e3a14206962965480deb3203742932ad3b2a1');
+INSERT INTO messages VALUES(1174,310490,'insert','transactions','{"block_hash":"e2cb04b8a7368c95359c9d5ff33e64209200fb606de0d64b7c0f67bb1cb8d87c","block_index":310490,"block_time":310490000,"btc_amount":0,"data":"0000001e52bb33043ff000000000000000000000096f7074696f6e732031","destination":"","fee":6800,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"utxos_info":"dd5471d13ce574963ee0c49f77de65c6161dfa81e4d137e75f4402ea687a75ad:0"}',0,'NEW_TRANSACTION',NULL,'507438de372bf629d0234488daeeab8cf717e2d65d367a442b23f46bb9c50d92');
+INSERT INTO messages VALUES(1175,310490,'insert','broadcasts','{"block_index":310490,"fee_fraction_int":0,"locked":false,"source":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","status":"valid","text":"options 1","timestamp":1388000004,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491,"value":1.0}',0,'BROADCAST','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','30cc9471c9f88229f0a0065eea616329f8b29dd3c85a86d81a3d16df64fa26c8');
+INSERT INTO messages VALUES(1176,310490,'insert','addresses','{"address":"mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42","block_index":310490,"options":1}',0,'NEW_ADDRESS_OPTIONS','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','fd560166693514024809d3c3578a2dbdf6e69cd0902bfc2917d1bde58d049465');
+INSERT INTO messages VALUES(1177,310490,'parse','transactions','{"supported":true,"tx_hash":"7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af","tx_index":491}',0,'TRANSACTION_PARSED','7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af','fd0d7d3a7f05620175a62137b33b48dae68f85bc279599972b0d41f7598a88e6');
+INSERT INTO messages VALUES(1178,310490,'parse','blocks','{"block_index":310490,"ledger_hash":"906a38f4256f50312891119c99721537992438af85421e317574ce1810e2b909","messages_hash":"b10799e81bef49fbd4b57768bae9fdbbe85148f35fedcdf273327c0d78e7e1ed","transaction_count":1,"txlist_hash":"5f934032dce4102cd1d72d3f887526e78baa4a78991bc43cf0a1ebefe08fdec7"}',0,'BLOCK_PARSED',NULL,'be3a9bc6059cb821344ba094ba5d7f0534f497e339f3db3337a04285e05009d9');
+INSERT INTO messages VALUES(1179,310491,'insert','blocks','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfafdd8d939124f278aefbd4f1960fdc6891be5c4d1ded62c2702ae31797a017');
+INSERT INTO messages VALUES(1180,310491,'insert','transactions','{"block_hash":"811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16","block_index":310491,"block_time":310491000,"btc_amount":0,"data":"0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0","destination":"","fee":6800,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492,"utxos_info":"34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0"}',0,'NEW_TRANSACTION',NULL,'295235078f2c337662528b1fcf74918a67a4bf60800e82243225490a5a2b8bce');
+INSERT INTO messages VALUES(1181,310491,'insert','debits','{"action":"open order","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310491,"event":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","quantity":100000000,"tx_index":492,"utxo":null,"utxo_address":null}',0,'DEBIT','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','813f16af0a8c224e55c8bbae171d72d40c127482b5799952e76137d352770979');
+INSERT INTO messages VALUES(1182,310491,'insert','orders','{"block_index":310491,"expiration":2000,"expire_index":312491,"fee_provided":6800,"fee_provided_remaining":6800,"fee_required":900000,"fee_required_remaining":900000,"get_asset":"BTC","get_quantity":800000,"get_remaining":800000,"give_asset":"XCP","give_quantity":100000000,"give_remaining":100000000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'OPEN_ORDER','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','809160fb3837fe48e07f815c4948d2ad92034dc6bce9998206066d430eac4f47');
+INSERT INTO messages VALUES(1183,310491,'parse','transactions','{"supported":true,"tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx_index":492}',0,'TRANSACTION_PARSED','74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','75bf228c22e57f3817704518952ecd3dbeb70c20f62f61657eac312d52b59d92');
+INSERT INTO messages VALUES(1184,310491,'parse','blocks','{"block_index":310491,"ledger_hash":"3114d8091cfcaa9944c6fab49d51950535c4ef269877d58c372ed80b2b472ec6","messages_hash":"9e9c8f8f8d7dfb437d16e3fb14b93104a64d31577e5771fd91ad73d816d0feae","transaction_count":1,"txlist_hash":"f065728a3544adc085fae976759c0d040a34ca0a8ddd39260b55f0262cd5baa8"}',0,'BLOCK_PARSED',NULL,'710d54698fb4852c1b8993b9c0f4ae09ab8cdddab19c4cf966814eb004667977');
+INSERT INTO messages VALUES(1185,310492,'insert','blocks','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49e443289a5790a7d02c3052ddaaba1e7940e831dafb8c4cf123da6e48a01a18');
+INSERT INTO messages VALUES(1186,310492,'insert','transactions','{"block_hash":"8a09b2faf0a7ad67eb4ab5c948b9769fc87eb2ec5e16108f2cde8bd9e6cf7607","block_index":310492,"block_time":310492000,"btc_amount":0,"data":"0000000a000000000000000000000000000c350000000000000000010000000005f5e10007d00000000000000000","destination":"","fee":1000000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493,"utxos_info":"01435600d3eb8a5196ce2321b423a1c1cd395c14c4144c1f5fc378d9f81029f7:0"}',0,'NEW_TRANSACTION',NULL,'76282094e5c0ad1f77bbc9e10bb0b14b6e686c49a30d566c69778f231cf53e8b');
+INSERT INTO messages VALUES(1187,310492,'insert','orders','{"block_index":310492,"expiration":2000,"expire_index":312492,"fee_provided":1000000,"fee_provided_remaining":1000000,"fee_required":0,"fee_required_remaining":0,"get_asset":"XCP","get_quantity":100000000,"get_remaining":100000000,"give_asset":"BTC","give_quantity":800000,"give_remaining":800000,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'OPEN_ORDER','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','41ce205c218bbbf508ae72871ccfcad6a9380bee47dba47fd845dce482e07b40');
+INSERT INTO messages VALUES(1188,310492,'update','orders','{"fee_provided_remaining":6800,"fee_required_remaining":892800,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','25a4e13b913446a51b0c59e726ffff5e561f4d07087058fb748dfe14e233ea12');
+INSERT INTO messages VALUES(1189,310492,'update','orders','{"fee_provided_remaining":992800,"fee_required_remaining":0,"get_remaining":0,"give_remaining":0,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','adb4da0f5b3f0f23f40bc78db209e680f6221d173cf7aaf5c9e731650f0bd22a');
+INSERT INTO messages VALUES(1190,310492,'insert','order_matches','{"backward_asset":"BTC","backward_quantity":800000,"block_index":310492,"fee_paid":7200,"forward_asset":"XCP","forward_quantity":100000000,"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","match_expire_index":310512,"status":"pending","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx0_block_index":310491,"tx0_expiration":2000,"tx0_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498","tx0_index":492,"tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","tx1_block_index":310492,"tx1_expiration":2000,"tx1_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx1_index":493}',0,'ORDER_MATCH','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','e3e49a6d7a57e12979ddc46398f4d8e24f0db12e04cc2ded34f1c20de2c51856');
+INSERT INTO messages VALUES(1191,310492,'parse','transactions','{"supported":true,"tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx_index":493}',0,'TRANSACTION_PARSED','1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','7cc0eca176d0d34b35ddfd84dffae4cea1663d0139ca6f6a7ec33d04e3e9f131');
+INSERT INTO messages VALUES(1192,310492,'parse','blocks','{"block_index":310492,"ledger_hash":"98af18583618fdeed545347c013763d068e8294405d265911cc5e1bc420bc740","messages_hash":"6be55e89129fde30a1c54dd27eb62baf59845f5f35cd43a435dea6ba7b18b715","transaction_count":1,"txlist_hash":"daf4d2c1a1ad5206abcf7744bdd06fae99c442fb2607a843dcabb5727d02916e"}',0,'BLOCK_PARSED',NULL,'1bb3ecb94ce43ea913308aceac159e924c598611c85efad9c478ca56f0e43220');
+INSERT INTO messages VALUES(1193,310493,'insert','blocks','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3fd3ae58b64f42616185111c2e78710e36886af415cb918773e65fc5ec5f3132');
+INSERT INTO messages VALUES(1194,310493,'insert','transactions','{"block_hash":"c19e2915b750279b2be4b52e57e5ce29f63dffb4e14d9aad30c9e820affc0cbf","block_index":310493,"block_time":310493000,"btc_amount":62000000,"data":"","destination":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","fee":5625,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494,"utxos_info":"55bf39bd1c04f6c3d17d6449db501f6723412e38bf91419334b985175ed7a7db:0"}',0,'NEW_TRANSACTION',NULL,'7e68cb985f58dd24995d248f2fdb246a32b4a65cab7449abfc6aabad4d6b81e5');
+INSERT INTO messages VALUES(1195,310493,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310493,"calling_function":"burn","event":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","quantity":92995878046,"tx_index":494,"utxo":null,"utxo_address":null}',0,'CREDIT','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','d25edb4450a05c23cf039aaeeded91eb9b7da82007ebf3cbca92cab5f24c6726');
+INSERT INTO messages VALUES(1196,310493,'insert','burns','{"block_index":310493,"burned":62000000,"earned":92995878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a","tx_index":494}',0,'BURN','c0733e1287afb1bb3d2fdacd1db7c74ea84f14362f3a8d1c038e662e1d0b1b1a','8f69c6600389edf7849fef3e36f1d87444e59b499d93b8a0be7724d6e448c5d4');
+INSERT INTO messages VALUES(1197,310493,'parse','blocks','{"block_index":310493,"ledger_hash":"29119cd30a4733916fbfd0551506eaa16f7bb1bdfbdf8d17ac4e5bb20d1cb09c","messages_hash":"8d04d8d9bacf66aec04b5eedc6dae4ec20cc2964e7e2a03a96a368dd8cc92bf7","transaction_count":1,"txlist_hash":"7ec4cfa94544900c8e8732ad51be7cee6452aa1884ea940cd5c98862fb4aaba6"}',0,'BLOCK_PARSED',NULL,'0eb85800ad717b5b0675924890e4ad2ce6f74dec12fe90c9b3d643ed69c3e13c');
+INSERT INTO messages VALUES(1198,310494,'insert','blocks','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1b2259c196068c890a51052a31396a8e9d2fe8d3223d7047cb380b981a947d2c');
+INSERT INTO messages VALUES(1199,310494,'insert','transactions','{"block_hash":"7dda1d3e12785313d5651ee5314d0aecf17588196f9150b10c55695dbaebee5d","block_index":310494,"block_time":310494000,"btc_amount":0,"data":"00000014000000063e985ffd00000000000000640100000000000000000000","destination":"","fee":6800,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495,"utxos_info":"1b0e761450063df114e0779bde3146b1a32ded225c76632be83c753ee1749ceb:0"}',0,'NEW_TRANSACTION',NULL,'a0fba4c5d9c09619e25d3cdb5fd64f9e564557be1e5454b545652522f241f4c1');
+INSERT INTO messages VALUES(1200,310494,'insert','debits','{"action":"issuance fee","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310494,"event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":50000000,"tx_index":495,"utxo":null,"utxo_address":null}',0,'DEBIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','d6b54146bbb29279121406134fcbb369aff908eec3679da3a5d90ae8789f17af');
+INSERT INTO messages VALUES(1201,310494,'insert','assets','{"asset_id":"26819977213","asset_longname":null,"asset_name":"DIVIDEND","block_index":310494}',0,'ASSET_CREATION','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','e3e45c67f380f027b64139537ff73d7653eadd0999234004fec761f23edd6952');
+INSERT INTO messages VALUES(1202,310494,'insert','issuances','{"asset":"DIVIDEND","asset_events":"creation","asset_longname":null,"block_index":310494,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","locked":false,"quantity":100,"reset":false,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","transfer":false,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'ASSET_ISSUANCE','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','766b85b01fe952be1df6724c6b47522039ef80c24a353f2832e133017a33be14');
+INSERT INTO messages VALUES(1203,310494,'insert','credits','{"address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310494,"calling_function":"issuance","event":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","quantity":100,"tx_index":495,"utxo":null,"utxo_address":null}',0,'CREDIT','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','f33642f212dd13f7cd9778ee6b0fdef0bc1326ff6c91630f99823dbe607bd52d');
+INSERT INTO messages VALUES(1204,310494,'parse','transactions','{"supported":true,"tx_hash":"321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503","tx_index":495}',0,'TRANSACTION_PARSED','321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503','7aef77360ffab43ee1418125433203342ee38b1e431e86022bd8f247ee5e8f34');
+INSERT INTO messages VALUES(1205,310494,'parse','blocks','{"block_index":310494,"ledger_hash":"72d71bd72263699ea9f2b097ad141be5bc394f49d8b0b0a6b2ff6a87b0ee3919","messages_hash":"f9e39883736e349f6c06f7a0f7b0501d5cf4c9feff4eb53e9d3c0afafc85c6a0","transaction_count":1,"txlist_hash":"9350c3ba33d0546d1194c5fa767ced28834b26246aedc56d89b1d48ec4f26014"}',0,'BLOCK_PARSED',NULL,'3b41faa02c8ccfa497a4a2f59103ae8ed5f8c496653b468f0a11235019dbe4ac');
+INSERT INTO messages VALUES(1206,310495,'insert','blocks','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48717528e996251c25a85f47fab46592503cb0f18a542ee9af2b24b9bf5538ba');
+INSERT INTO messages VALUES(1207,310495,'insert','transactions','{"block_hash":"4769aa7030f28a05a137a85ef4ee0c1765c37013773212b93ec90f1227168b67","block_index":310495,"block_time":310495000,"btc_amount":5430,"data":"00000000000000063e985ffd000000000000000a","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496,"utxos_info":"968efa9a1142fdc8e129ca7f89453f84ba195ed950db191b2f502114b000ea75:0"}',0,'NEW_TRANSACTION',NULL,'0c449bff134c04829a62c2297c523e54d6e6891f0c1511d0237dbfe73e62b729');
+INSERT INTO messages VALUES(1208,310495,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"DIVIDEND","block_index":310495,"event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'DEBIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','474ade3c1ebf14cfce40519a6584f5a6d74698e0e2013ed1be231ab3fa4d5f31');
+INSERT INTO messages VALUES(1209,310495,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"DIVIDEND","block_index":310495,"calling_function":"send","event":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","quantity":10,"tx_index":496,"utxo":null,"utxo_address":null}',0,'CREDIT','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','ba4822326861e664c1ba1411f69abb4107491fe43cd613848c8cb081bf8bfec5');
+INSERT INTO messages VALUES(1210,310495,'insert','sends','{"asset":"DIVIDEND","block_index":310495,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":10,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'SEND','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','105bf10773af47af51740f761a3539ebe7c25977203b0e5c28fdaf2b08180155');
+INSERT INTO messages VALUES(1211,310495,'parse','transactions','{"supported":true,"tx_hash":"02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e","tx_index":496}',0,'TRANSACTION_PARSED','02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e','94c9470b1c9b10efa0ba550a519848942402a38ea182d3a364f14106a60cbb8a');
+INSERT INTO messages VALUES(1212,310495,'parse','blocks','{"block_index":310495,"ledger_hash":"5a7e5a36882466373d576bb5f4ccd1bc72ecaf548b9589baa803a7275a7a24cd","messages_hash":"3f691c9db715a8e8824082201e3e64b8693be7dc0cce079b89b35da3ce6fdb6d","transaction_count":1,"txlist_hash":"09e9db121649cacd979fd18bbaa35e519361e727e7e072e2f2f86291160cdb29"}',0,'BLOCK_PARSED',NULL,'c40f9581e2df8404e7aa39d6b0eba9bb8b785c536dfb2a8ea37f933b092d94a8');
+INSERT INTO messages VALUES(1213,310496,'insert','blocks','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f382760910c5405be4d84bccf7884d3d92c382e6d1bacadac6b1cf56fe144037');
+INSERT INTO messages VALUES(1214,310496,'insert','transactions','{"block_hash":"65884816927e8c566655e85c07bc2bc2c7ee26e625742f219939d43238fb31f8","block_index":310496,"block_time":310496000,"btc_amount":5430,"data":"00000000000000000000000100000015a4018c1e","destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","fee":7650,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497,"utxos_info":"2a460887da5c0bc81f5caf284edc0d1a6ffb001c66f6a9124b386d3b2f6bff73:0"}',0,'NEW_TRANSACTION',NULL,'6ffa544a594d4ab55905222b38cf06be7db49c49e690b13c99dda349ccc35b79');
+INSERT INTO messages VALUES(1215,310496,'insert','debits','{"action":"send","address":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","asset":"XCP","block_index":310496,"event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'DEBIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','49f04680fb79b577b2dcb45bbfd551dc5891180b77c04a296e85bf41020ce071');
+INSERT INTO messages VALUES(1216,310496,'insert','credits','{"address":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","asset":"XCP","block_index":310496,"calling_function":"send","event":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","quantity":92945878046,"tx_index":497,"utxo":null,"utxo_address":null}',0,'CREDIT','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','8bbe0684f3e432ae2341634282dd463ee6dbe0b1b1682f8f63bda27f4b9432e2');
+INSERT INTO messages VALUES(1217,310496,'insert','sends','{"asset":"XCP","block_index":310496,"destination":"mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj","quantity":92945878046,"source":"mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH","status":"valid","tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'SEND','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','5972abede12fd562cad66d45002c72a9cc8bd4434b8612c2c9a3df98d9b27169');
+INSERT INTO messages VALUES(1218,310496,'parse','transactions','{"supported":true,"tx_hash":"a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba","tx_index":497}',0,'TRANSACTION_PARSED','a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba','2ecca22ca25c587529a503cba5692cc98474a61fb84a8ec0068690944e723f1e');
+INSERT INTO messages VALUES(1219,310496,'parse','blocks','{"block_index":310496,"ledger_hash":"7ac6121c624b634f44695172761830926afe76bb18c4cc9195773f3a26966941","messages_hash":"5eca451c1b5b96497fd7e9c95966aee8f7cb89d5c7a198059631e9e4db60df23","transaction_count":1,"txlist_hash":"9eda85cce745579122ba9c6e24b63cd83f2e5161031a34e6ee9bf08b80823cb4"}',0,'BLOCK_PARSED',NULL,'77f07a73ea0a3de1c4fcfef79339b92c7c76636df1d5ba9de7be357fb7e70863');
+INSERT INTO messages VALUES(1220,310497,'insert','blocks','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e936cd130e95252d3b5c83bc005ab22dea1bfd90a653698c86bd10d74319853d');
+INSERT INTO messages VALUES(1221,310497,'insert','transactions','{"block_hash":"f1118591fe79b8bf52ccf0c5de9826bfd266b1fdc24b44676cf22bbcc76d464e","block_index":310497,"block_time":310497000,"btc_amount":0,"data":"00000014000000000aa4097d0000000005f5e100010000000000000000000c506172656e74206173736574","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498,"utxos_info":"fccea6e9a0ad88c0b3a93594e176a9226095acdad38b63daabbdfe96737b8bf7:1"}',0,'NEW_TRANSACTION',NULL,'fd8d7aa08f045b852417b095eb877eae6c8763d66153130fdb5d96b79da38c58');
+INSERT INTO messages VALUES(1222,310497,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310497,"event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":50000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'DEBIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','4c467f60447fbf44453f65ed54169597b849e167af0a7860be14ffac13a9923c');
+INSERT INTO messages VALUES(1223,310497,'insert','assets','{"asset_id":"178522493","asset_longname":null,"asset_name":"PARENT","block_index":310497}',0,'ASSET_CREATION','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','0aebb17967767924cd07fa766ec69a558a27201e0e520fb9b2de281329b5ca48');
+INSERT INTO messages VALUES(1224,310497,'insert','issuances','{"asset":"PARENT","asset_events":"creation","asset_longname":null,"block_index":310497,"call_date":0,"call_price":0.0,"callable":false,"description":"Parent asset","description_locked":false,"divisible":true,"fee_paid":50000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'ASSET_ISSUANCE','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','38d0882e0fc716867d5c933a0978f66336df620acd0469b91046c2764a26013a');
+INSERT INTO messages VALUES(1225,310497,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"PARENT","block_index":310497,"calling_function":"issuance","event":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","quantity":100000000,"tx_index":498,"utxo":null,"utxo_address":null}',0,'CREDIT','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','a74d83fc1e5fd5fde3f1ad8d31c55313dfc339097afdd356fbfafd13620f73d8');
+INSERT INTO messages VALUES(1226,310497,'parse','transactions','{"supported":true,"tx_hash":"076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f","tx_index":498}',0,'TRANSACTION_PARSED','076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f','08145d8e8cafee6bab71a6790d55e0b5876d2ef47c0c1a77dc8ea466864de6cc');
+INSERT INTO messages VALUES(1227,310497,'parse','blocks','{"block_index":310497,"ledger_hash":"28c6e92b2299b9cbbb5953f8b7ff3de0fe962d15642ba27e43faa64e1935e819","messages_hash":"1b1d5d1b626a20a86f47ef4ac50bc55ffb05bb7569bf294c312d70306eef77b9","transaction_count":1,"txlist_hash":"ff8136601b9e0138a999d1f0467af6e8535a2bcdd2b622af7be0178a083b9519"}',0,'BLOCK_PARSED',NULL,'b747579a2a7f653c04b4cb95c00bdf2d829d256d4425d9cffe3039de9a03943c');
+INSERT INTO messages VALUES(1228,310498,'insert','blocks','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'787446fe17274f0825615508ce430fbf1183c29f675b449d376eda851cbffd3a');
+INSERT INTO messages VALUES(1229,310498,'insert','transactions','{"block_hash":"b7058b6d1ddc325a10bf33144937e06ce6025215b416518ae120da9440ae279e","block_index":310498,"block_time":310498000,"btc_amount":0,"data":"0000001501530821671b10650000000005f5e10001108e90a57dba9967c422e83080f22f0c684368696c64206f6620706172656e74","destination":"","fee":6550,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499,"utxos_info":"0c2cc9e9cdd3a29c7a2fcd38a68d409c4c03ff78456fde49595d8fdfd6110b67:1"}',0,'NEW_TRANSACTION',NULL,'1e7d12fd93d3b87fd071fdf4cc3378cc6bad077c2bc66975cfbdaaafdc78c3f9');
+INSERT INTO messages VALUES(1230,310498,'insert','debits','{"action":"issuance fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310498,"event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":25000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'DEBIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','cb2ab416e0893c80e51c0a9915925df63ec91cb03f96f482626a02bfea35179c');
+INSERT INTO messages VALUES(1231,310498,'insert','assets','{"asset_id":"95428956661682277","asset_longname":"PARENT.already.issued","asset_name":"A95428956661682277","block_index":310498}',0,'ASSET_CREATION','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','b4f929c2e141496f69f5a6520c2f8950994ad17126adaf3fab23559f8b408b5e');
+INSERT INTO messages VALUES(1232,310498,'insert','issuances','{"asset":"A95428956661682277","asset_events":"creation","asset_longname":"PARENT.already.issued","block_index":310498,"call_date":0,"call_price":0.0,"callable":false,"description":"Child of parent","description_locked":false,"divisible":true,"fee_paid":25000000,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":100000000,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'ASSET_ISSUANCE','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','c4e1ec37ba78592e8839c6d7fce9db07b73368e19adce5f93792cf9f6cbdeb77');
+INSERT INTO messages VALUES(1233,310498,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"A95428956661682277","block_index":310498,"calling_function":"issuance","event":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","quantity":100000000,"tx_index":499,"utxo":null,"utxo_address":null}',0,'CREDIT','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','76a834fb1ddf0d3c8ce7cd065827a1f6199f526c14407fd991310f496195e965');
+INSERT INTO messages VALUES(1234,310498,'parse','transactions','{"supported":true,"tx_hash":"0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf","tx_index":499}',0,'TRANSACTION_PARSED','0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf','fb224550ec1bb641728657d3f5ff0993c619605ef719b9075c1793d3c9fbd131');
+INSERT INTO messages VALUES(1235,310498,'parse','blocks','{"block_index":310498,"ledger_hash":"5fe6cdb0828379bf240fad99c68bba34e1889bbc19605ce5c297b82352264414","messages_hash":"6bb9890fecd1e6d7df2077d3a93ce52295a7e77c0400332c287b23c00318b4b1","transaction_count":1,"txlist_hash":"b488f6f0e6c233f202ee17c0843236d464144e79c870af88bae56355ae9372b7"}',0,'BLOCK_PARSED',NULL,'9b2f77fe54e2f12291c0d951a75dc8190185964b562ecd858d9bfd5e8898ef97');
+INSERT INTO messages VALUES(1236,310499,'insert','blocks','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a25270af7add2e072f8de98e2e22906406b54cd8d4d23c15a2f16e4f0506b5d1');
+INSERT INTO messages VALUES(1237,310499,'insert','transactions','{"block_hash":"1950e1a4d7fc820ed9603f6df6819c3c953c277c726340dec2a4253e261a1764","block_index":310499,"block_time":310499000,"btc_amount":0,"data":"5a46524545464149524d494e7c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500,"utxos_info":"3c3cf4ecfbafac833fe6d141c3dd3a3a1f544da16513e14f2f3c344f443ae035:1"}',0,'NEW_TRANSACTION',NULL,'288892dd40d45af45bfaa6c0fb63591ce85b196116a476b74055d6ac848bfeb7');
+INSERT INTO messages VALUES(1238,310499,'insert','fairminters','{"asset":"FREEFAIRMIN","asset_longname":"","asset_parent":"","block_index":310499,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":0,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'NEW_FAIRMINTER','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','7d0e420609ec27a435e5fa8d16665236b7400059dcf6a9939c2ea41e05ab2148');
+INSERT INTO messages VALUES(1239,310499,'insert','assets','{"asset_id":"799006024850293","asset_longname":null,"asset_name":"FREEFAIRMIN","block_index":310499}',0,'ASSET_CREATION','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','4a59860088ca6d230326a2ad9dd5e7b0d1dc173c48f39c87bac10eabe39202a1');
+INSERT INTO messages VALUES(1240,310499,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310499,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'ASSET_ISSUANCE','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','e089fd4fe262da25da6b3633322669fc64bc7c816201eb45e37ef8635720c753');
+INSERT INTO messages VALUES(1241,310499,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310499,"event":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","quantity":50000000,"tx_index":500,"utxo":null,"utxo_address":null}',0,'DEBIT','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','216272978a48ba258f711f0646f8956bb7ecafdf5db917f4399afcb01bec09bf');
+INSERT INTO messages VALUES(1242,310499,'parse','transactions','{"supported":true,"tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","tx_index":500}',0,'TRANSACTION_PARSED','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','1cbec2173fa9285395b9f3fd34089b9ba467d02aba9d9ae7a19962a4b39c205d');
+INSERT INTO messages VALUES(1243,310499,'parse','blocks','{"block_index":310499,"ledger_hash":"bc09daa74c639506a1de4eadcd0aa8f599c1bc6a2a287cce7bfc89c301253233","messages_hash":"1f284bc0283d35a0e16080380df507528f987e1b74d7f221eb4214bd8acd4efe","transaction_count":1,"txlist_hash":"c14c7cd236dd94835917a5912c746b53a9ad97be74509c56672ea57226bc6db3"}',0,'BLOCK_PARSED',NULL,'1f44ca17d7af83a08788a6ddcf890161b2d4e1cceb86a3084b7ebe2d17146620');
+INSERT INTO messages VALUES(1244,310500,'insert','blocks','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb112422b418cb048e309193cd74e2bf87a467533ae78d154bd718e75dbd978c');
+INSERT INTO messages VALUES(1245,310500,'insert','transactions','{"block_hash":"54aeaf47d5387964e2d51617bf3af50520a0449410e0d096cf8c2aa9dad5550b","block_index":310500,"block_time":310500000,"btc_amount":0,"data":"5a50414944464149524d494e7c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6300,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501,"utxos_info":"63d204e6d293e32c74a4cab23f13a26ea8de60e9a5ff37959c992f1661848043:1"}',0,'NEW_TRANSACTION',NULL,'08b55083ab5bc940ad108cd53258efcf1f114745a0cf94d076bb4a01d35a6a2d');
+INSERT INTO messages VALUES(1246,310500,'insert','fairminters','{"asset":"PAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310500,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":0,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":0,"pre_minted":false,"premint_quantity":0,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'NEW_FAIRMINTER','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','e0b95e802df1bfe8599158946003af077e96b133fbdc2228ec1cae7dd9a52cdb');
+INSERT INTO messages VALUES(1247,310500,'insert','assets','{"asset_id":"2119202695289589","asset_longname":null,"asset_name":"PAIDFAIRMIN","block_index":310500}',0,'ASSET_CREATION','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','3f963d08efa733837fa66717bab66f3ab945c63103429d723d24cb033c484cdf');
+INSERT INTO messages VALUES(1248,310500,'insert','issuances','{"asset":"PAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310500,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":0,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'ASSET_ISSUANCE','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','b66f99b58e228ed974af169cb153f3c8ac65d0311fbeb98d41ed891be87b55fb');
+INSERT INTO messages VALUES(1249,310500,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310500,"event":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","quantity":50000000,"tx_index":501,"utxo":null,"utxo_address":null}',0,'DEBIT','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','f8af5c128b591f77ac59f9071b90214676395ef6c1545f94f0ef604c8cf0410d');
+INSERT INTO messages VALUES(1250,310500,'parse','transactions','{"supported":true,"tx_hash":"13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe","tx_index":501}',0,'TRANSACTION_PARSED','13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe','4bbaece63e96c6f62ca5f5b2b3f652cd5dc714c6ad329c9a1d2e373a87ab01b6');
+INSERT INTO messages VALUES(1251,310500,'parse','blocks','{"block_index":310500,"ledger_hash":"6c240f1f3a985ff91e6a280c4448b8d739a06caa6fa383c4b9a7b90d27bdb17b","messages_hash":"7e9485dcce4f7f6aa33c498249ecf99ffb3cd102cc30888c70b93c73d43d591d","transaction_count":1,"txlist_hash":"d21ed1a33a3ff157708a8e8c5a11062e0b33a7682896f695cd174ee93dce7767"}',0,'BLOCK_PARSED',NULL,'f2f5f5c2d4aa7f62e64852c94c1f9379e9e930e627429e551b99e9d2750bc4b9');
+INSERT INTO messages VALUES(1252,310501,'insert','blocks','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4948f101c2ca8860f062808ae72cfe6e4ca8cdd54d62f4e72f32c8bb5ccde78c');
+INSERT INTO messages VALUES(1253,310501,'insert','transactions','{"block_hash":"9d9019d15a1d878f2c39c7e3de4340a043a4a31aebb298acdf8e913284ae26ba","block_index":310501,"block_time":310501000,"btc_amount":0,"data":"5b46524545464149524d494e7c30","destination":"","fee":5575,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502,"utxos_info":"fe9a0647adff98bcc8289f2d6178db687d99be439cb64a1c8ae89d325552fd38:1"}',0,'NEW_TRANSACTION',NULL,'c18b7a0f34f0c7d20c17f76f21581f9195f9e3900f47b8f16c968f44fbc09c06');
+INSERT INTO messages VALUES(1254,310501,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"FREEFAIRMIN","block_index":310501,"calling_function":"fairmint","event":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","quantity":10,"tx_index":502,"utxo":null,"utxo_address":null}',0,'CREDIT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','70abee5471c3f769b36b6b1be5c8295cc3980e42893286333f424d1a5539e527');
+INSERT INTO messages VALUES(1255,310501,'insert','fairmints','{"asset":"FREEFAIRMIN","block_index":310501,"commission":0,"earn_quantity":10,"fairminter_tx_hash":"a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce","paid_quantity":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'NEW_FAIRMINT','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','a0b99e5da472f87e5e7aa4c59755a1d352c4b64e218108d7b368828b598f4bf8');
+INSERT INTO messages VALUES(1256,310501,'insert','issuances','{"asset":"FREEFAIRMIN","asset_events":"fairmint","asset_longname":"","block_index":310501,"call_date":0,"call_price":0.0,"callable":false,"description":"","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'ASSET_ISSUANCE','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','97708d3f077ab48d8effb1617e35510c5f355daf7f42128bca169b1648dcc85f');
+INSERT INTO messages VALUES(1257,310501,'parse','transactions','{"supported":true,"tx_hash":"d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67","tx_index":502}',0,'TRANSACTION_PARSED','d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67','12448179ca4db46553ddd3499097882de6ce9bea5ef95b6e3874626e48c3bec0');
+INSERT INTO messages VALUES(1258,310501,'parse','blocks','{"block_index":310501,"ledger_hash":"21921f9e40915d2f4d33ce415de80e473082423b967fa344bf7f67475ebe83d3","messages_hash":"56e65a2c34de5746cda3c9bd15c28c0fce98bff2f61a0fd60c24d998ea87cab7","transaction_count":1,"txlist_hash":"b6774cf6b7892427229841125497ba41492fcaecae93559f8936feca2b57825e"}',0,'BLOCK_PARSED',NULL,'9695c972d599e1e81dd9287911ae4539b06e3855d825e5f7b03f687cbb9ddca4');
+INSERT INTO messages VALUES(1259,310502,'insert','blocks','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'654f0ffc79f214f495b9b27b13ad49bf6e7ec432b6207ef53032a3fee982f8c4');
+INSERT INTO messages VALUES(1260,310502,'insert','transactions','{"block_hash":"b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c378670732a1430ed67","block_index":310502,"block_time":310502000,"btc_amount":0,"data":"5a52414944464149524d494e7c7c31307c317c31307c33307c32307c307c307c307c307c307c307c307c307c317c","destination":"","fee":6375,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503,"utxos_info":"c5ae7746f5282db0e11d580db3006fc6ff2e1b895e1513dbb4586343e08df687:1"}',0,'NEW_TRANSACTION',NULL,'10b3c53f665952e874757bd7f2d0e759dcd210b8157f7860e98e44266facddf8');
+INSERT INTO messages VALUES(1261,310502,'insert','fairminters','{"asset":"RAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310502,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":30,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":10,"minted_asset_commission_int":0,"pre_minted":true,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":0,"soft_cap_deadline_block":0,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'NEW_FAIRMINTER','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','25352094c5cc04beebb38d7fc6ff3c661918692a8b53e58f66267757cc3af0a0');
+INSERT INTO messages VALUES(1262,310502,'insert','assets','{"asset_id":"2401536886596341","asset_longname":null,"asset_name":"RAIDFAIRMIN","block_index":310502}',0,'ASSET_CREATION','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','fd8c59816e48dcc2fcc29c6969918c5f9e342f9d0a2346bee351a6346b7cbe14');
+INSERT INTO messages VALUES(1263,310502,'insert','issuances','{"asset":"RAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310502,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'ASSET_ISSUANCE','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','26264cb2d22561ed88c8eb31b4f98a97bbefd2fd39e16487f2db40fd7b824200');
+INSERT INTO messages VALUES(1264,310502,'insert','credits','{"address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"RAIDFAIRMIN","block_index":310502,"calling_function":"premint","event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":20,"tx_index":503,"utxo":null,"utxo_address":null}',0,'CREDIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','7e9e182fbe881f1108158adfbdcb09b94387ffcaacb27e67cf6d912fc2b9810f');
+INSERT INTO messages VALUES(1265,310502,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310502,"event":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","quantity":50000000,"tx_index":503,"utxo":null,"utxo_address":null}',0,'DEBIT','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','c26aed474bf803d44c8154a45c1a3118fcbb71a135d03f562e2287dd62b70d2a');
+INSERT INTO messages VALUES(1266,310502,'parse','transactions','{"supported":true,"tx_hash":"9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1","tx_index":503}',0,'TRANSACTION_PARSED','9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1','7ce22b14b5a312c5d597dd73fdec1c62206da1008327a82ac910584bac68f8e4');
+INSERT INTO messages VALUES(1267,310502,'parse','blocks','{"block_index":310502,"ledger_hash":"31102b5b0c5d3d1caf84d37077c482722c779124cbdf31dc84c1aed8648f294a","messages_hash":"7a09fe3be87e3463a81f0c31e1d5a380f7171ff1a4ef855ba769fe877936a099","transaction_count":1,"txlist_hash":"630e68e2965d5ff6d0c0573ae4386b7c5f1d6739aa59f4ca8e78c18c97dda4ea"}',0,'BLOCK_PARSED',NULL,'2830c20ab5d6621145d86d9a8302d3d21120a51a71b5e1470f7c5e9b45283a16');
+INSERT INTO messages VALUES(1268,310503,'insert','blocks','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3668940df7bc05fd91d667b992369ff3d008931423e9c855624eb80834a9d1d9');
+INSERT INTO messages VALUES(1269,310503,'insert','transactions','{"block_hash":"219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c","block_index":310503,"block_time":310503000,"btc_amount":0,"data":"5a51414944464149524d494e7c7c31307c317c307c35307c32307c307c307c32307c3430303030307c35303030303030307c307c307c307c317c","destination":"","fee":6675,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504,"utxos_info":"3e7d029e0751dbdd5853f91b6e28f8df6b1b940ace7b8723d459905df4e0ef9c:1"}',0,'NEW_TRANSACTION',NULL,'20881677ffdd742afeb3b987b6f14cfeb084b2a9496f94d92bc40d2c06e6f208');
+INSERT INTO messages VALUES(1270,310503,'insert','fairminters','{"asset":"QAIDFAIRMIN","asset_longname":"","asset_parent":"","block_index":310503,"burn_payment":false,"description":"","divisible":true,"end_block":0,"hard_cap":50,"lock_description":false,"lock_quantity":false,"max_mint_per_tx":0,"minted_asset_commission_int":50000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":400000,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","start_block":0,"status":"open","tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'NEW_FAIRMINTER','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','873eeb9a07543be1dacdd899ec858ceb413955fe293f3f4f3b2daac459f12538');
+INSERT INTO messages VALUES(1271,310503,'insert','assets','{"asset_id":"2260369790942965","asset_longname":null,"asset_name":"QAIDFAIRMIN","block_index":310503}',0,'ASSET_CREATION','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','2d97aff62b196950252b0f052fc55790bd6c12e029171dfe4b005d0837bd3ebc');
+INSERT INTO messages VALUES(1272,310503,'insert','issuances','{"asset":"QAIDFAIRMIN","asset_events":"open_fairminter","asset_longname":"","block_index":310503,"call_date":0,"call_price":0,"callable":false,"description":"","divisible":true,"fair_minting":true,"fee_paid":50000000.0,"issuer":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","locked":false,"quantity":20,"reset":false,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","transfer":false,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'ASSET_ISSUANCE','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','a122340facdd4fc3335fc2fc8687fd069a39aafbc6b641117ccf1526350d3683');
+INSERT INTO messages VALUES(1273,310503,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"QAIDFAIRMIN","block_index":310503,"calling_function":"escrowed premint","event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":20,"tx_index":504,"utxo":null,"utxo_address":null}',0,'CREDIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','3cf13242b2218d3656911030488c657fdebf31f73957c2ae01d4b96d21bccc75');
+INSERT INTO messages VALUES(1274,310503,'insert','debits','{"action":"fairminter fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310503,"event":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","quantity":50000000,"tx_index":504,"utxo":null,"utxo_address":null}',0,'DEBIT','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','677f16280a900bbed4546ba85b90733e308a754adcc06178f5ae49e0bb732dbf');
+INSERT INTO messages VALUES(1275,310503,'parse','transactions','{"supported":true,"tx_hash":"c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7","tx_index":504}',0,'TRANSACTION_PARSED','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7','160b4297fc3f3c754f7fe6072fa2eaf76d08dd1e77e75e9e52dd625295879bbd');
+INSERT INTO messages VALUES(1276,310503,'parse','blocks','{"block_index":310503,"ledger_hash":"e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db","messages_hash":"cde2608bae2eb699993efa4b79cdb33288c5220c9b3771db3803f1f8555348d4","transaction_count":1,"txlist_hash":"a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2"}',0,'BLOCK_PARSED',NULL,'e34b106e75e3ca2cbf857957295e49432cc551f67ebe79748919359ce33d81bf');
+INSERT INTO messages VALUES(1277,310504,'insert','blocks','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5fecd21f2606abd10d1053f703a676aed0a72a266ba7cc1117f19e378ec21cdc');
+INSERT INTO messages VALUES(1278,310504,'insert','transactions','{"block_hash":"0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25","block_index":310504,"block_time":310504000,"btc_amount":0,"data":"5a413136303336313238353739323733333732397c7c31307c317c307c35307c32307c307c307c32307c3331303532307c33303030303030307c307c317c317c317c736f6674636170206465736372697074696f6e","destination":"","fee":8825,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505,"utxos_info":"a827b0538f335c6416477786ef827c5bf52bb1bfa20053209d5b788d18b8e16c:0"}',0,'NEW_TRANSACTION',NULL,'ccb9770d30d2e4d69ee92c90d727d6c644726e1281846bae3831a79908549c3c');
+INSERT INTO messages VALUES(1279,310504,'insert','fairminters','{"asset":"A160361285792733729","asset_longname":"","asset_parent":"","block_index":310504,"burn_payment":false,"description":"softcap description","divisible":true,"end_block":0,"hard_cap":50,"lock_description":true,"lock_quantity":true,"max_mint_per_tx":0,"minted_asset_commission_int":30000000,"pre_minted":false,"premint_quantity":20,"price":10,"quantity_by_price":1,"soft_cap":20,"soft_cap_deadline_block":310520,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","start_block":0,"status":"open","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'NEW_FAIRMINTER','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','445b714cf7d3e054bdb79e43efd61427b5a5684f6071146b55d45dbbb256c898');
+INSERT INTO messages VALUES(1280,310504,'insert','assets','{"asset_id":"160361285792733729","asset_longname":null,"asset_name":"A160361285792733729","block_index":310504}',0,'ASSET_CREATION','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','1d0c1915b462f825ec7f96aa7d6087b4d4bb121c525736d235f8bec4fef5a4f1');
+INSERT INTO messages VALUES(1281,310504,'insert','issuances','{"asset":"A160361285792733729","asset_events":"open_fairminter","asset_longname":"","block_index":310504,"call_date":0,"call_price":0,"callable":false,"description":"softcap description","divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'ASSET_ISSUANCE','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','bace96a0f04a27f291abef9f8512f755b0333fdc98ae4e4a18c1309f5b139d02');
+INSERT INTO messages VALUES(1282,310504,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310504,"calling_function":"escrowed premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":505,"utxo":null,"utxo_address":null}',0,'CREDIT','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','9e36cc06e3a45e7315a2dc981784220c61b27eaa4b5541c183f84c86ea98a452');
+INSERT INTO messages VALUES(1283,310504,'parse','transactions','{"supported":true,"tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","tx_index":505}',0,'TRANSACTION_PARSED','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','88ad6ccaaed88a001ae7f5a975fb9b2528276283f6cb474eba9ed57397d18a35');
+INSERT INTO messages VALUES(1284,310504,'parse','blocks','{"block_index":310504,"ledger_hash":"3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1","messages_hash":"9f802ac448be60ae7dff91bf0d9be9c3ae9b22e42967592d1de7ed83c5d55481","transaction_count":1,"txlist_hash":"4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9"}',0,'BLOCK_PARSED',NULL,'765d91f1b693722ea94b197664613530dc3c7a019c7596492dff1fa8bf0e1c90');
+INSERT INTO messages VALUES(1285,310505,'insert','blocks','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d54768f82b98013815b953266d2806a05a4bfe436db1d3ec08b64b6a975daf7');
+INSERT INTO messages VALUES(1286,310505,'insert','transactions','{"block_hash":"dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a","block_index":310505,"block_time":310505000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3130","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506,"utxos_info":"f1a22cd5df828fe94c328ca0c39fd1120b98dcc333b2d1ac95465b4bc2a2ace1:1"}',0,'NEW_TRANSACTION',NULL,'0668d4544f1232bc04a1271d45dabb4652a486959334f0d9efa38c8a2186d89c');
+INSERT INTO messages VALUES(1287,310505,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310505,"event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'DEBIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ec70967c25313ec6040efd74c861e346767c7779334fed65bb6b661432529eca');
+INSERT INTO messages VALUES(1288,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c41620d7fb6a2c54645373288f3fd06d66f4c1e07f258239e6450985c2aec6e9');
+INSERT INTO messages VALUES(1289,310505,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310505,"calling_function":"escrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":10,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','4be64f4246e6e98d3512b9f7b8b7e66021626ad97826ab0a210ac206f4200036');
+INSERT INTO messages VALUES(1290,310505,'insert','fairmints','{"asset":"A160361285792733729","block_index":310505,"commission":3,"earn_quantity":7,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":100,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'NEW_FAIRMINT','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','ef183223b62dcb4b5d95938ae76f5413b96325b698e206ec69d691a113a845d5');
+INSERT INTO messages VALUES(1291,310505,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310505,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":10,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'ASSET_ISSUANCE','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','a1f1a123c100def7d69064cd60f89e503a816dc256aac18a4480d0123cf22698');
+INSERT INTO messages VALUES(1292,310505,'parse','transactions','{"supported":true,"tx_hash":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","tx_index":506}',0,'TRANSACTION_PARSED','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8','c3ef97a63953b27959d0e5cd4539b0a04b52ba7e450f0b6f879cd2600e175670');
+INSERT INTO messages VALUES(1293,310505,'parse','blocks','{"block_index":310505,"ledger_hash":"55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662","messages_hash":"b533acfcc0186c3673ef702efe5259fa88b0327e7331f86c7c13d38048201f48","transaction_count":1,"txlist_hash":"bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c"}',0,'BLOCK_PARSED',NULL,'4507bf505b86fdfea5d3292cba432fb26f88c2e0b4a0c2529925e73c334aae18');
+INSERT INTO messages VALUES(1294,310506,'insert','blocks','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df33dfe04242bd7dee26d816cfa81777b5bfb41ea7e6d45c8b49bd0b48e2ba53');
+INSERT INTO messages VALUES(1295,310506,'insert','transactions','{"block_hash":"9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c","block_index":310506,"block_time":310506000,"btc_amount":0,"data":"5b413136303336313238353739323733333732397c3230","destination":"","fee":5800,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507,"utxos_info":"33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1"}',0,'NEW_TRANSACTION',NULL,'4a03e65c8d3b972aa64b4d617656c458bd13255a7d13f5b546483523562d422a');
+INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed fairmint","address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f82926eec3488973ed225a7f87c7379a95b10de6c7eb44e90ed5319f89b9db84');
+INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','fbf8e31792a7d7b8ce3fbd6f82347eee36baf1820a80ee313adc318dc59ef03d');
+INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','da5a78fbe07047309273c85b9ad9bd0da0bf5c01bbd38b6ce9ece949bb64b8e4');
+INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','54c3de62c7650af478aa901319a39070465fb9ff255079a82d0eb4805f56cb1b');
+INSERT INTO messages VALUES(1300,310506,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7ca357cac6d21c75eb87593312c37564926409fcac499e5d383e71b5218167a5');
+INSERT INTO messages VALUES(1301,310506,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','0223292d74fa983d073535d62365c3ad1f83ac58307958eb132211fd662a0d76');
+INSERT INTO messages VALUES(1302,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','0e3a16ce86785a416b2d89c864fc57cfec52f166befd28c555b4bd31f2b3360e');
+INSERT INTO messages VALUES(1303,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','0c2e676e44901efcd1a3f81ee5f56fdf5ecae133279682bab5b4c44e01f329d6');
+INSERT INTO messages VALUES(1304,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','41c6177c0610ad430b3d5b90a3c0baeebee65ff6ec776a9061d592768bf349b5');
+INSERT INTO messages VALUES(1305,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f84c51b63b4c12d93787e23ec90a099318462568f8f7b97ea9040945dcd077b4');
+INSERT INTO messages VALUES(1306,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','35633bb7878a02058bf9b44ab1580f353ab38f747044c425ad16dd71deb6d79c');
+INSERT INTO messages VALUES(1307,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','31d671c145ea9f10bad085683133f913ceaa0a963a88f4eaa0c4db9aaf475d29');
+INSERT INTO messages VALUES(1308,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','544a7b400f099582b6e914919444e9c7f5bbbc460e33fc379b6c27630107ca19');
+INSERT INTO messages VALUES(1309,310506,'update','fairminters','{"status":"closed","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9"}',0,'FAIRMINTER_UPDATE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','184b3e6ee73af53682f2a59837236a64405b401e0be98b1de6627ff5c00af3f1');
+INSERT INTO messages VALUES(1310,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":true,"divisible":true,"fair_minting":false,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":true,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4e79faa09e02a16218f2c23a6322e727e2910d1ee7edf54d6599c52614dc4693');
+INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','f635572266e85b24b0c1103dff4e5a39dfadd70347358cfe2828398e6b85e636');
+INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"bdb7759ca028c4e77b935218321adbcd2b57350905e2ee17163c7622b109e44d","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'d43d6a0625074cd1cb43533597654c88b7d01f93ae2b6ad0f0933371a503d999');
+INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32bef11f3b08db332b2077802b79c8b170837d238d999ceb87645b1548cc3b53');
+INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'d89b305c447b37ceb25d4e4ea0299fc01171ee787eb61797d460109777ef7c6e');
+INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','153ee197185895d7d97049ccbaf173e43ee3e79362c40e975cf0feb77ba4c235');
+INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','1aa22a6d652d3a697cd64238c952712f290fa02eea94b627fd3b989b681079ff');
+INSERT INTO messages VALUES(1317,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','57110b9fade6dd04d6d8ac1ac12834c3fb0e432b4e96f4fb55202ac9d41941c1');
+INSERT INTO messages VALUES(1318,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','2c9ec1725472f72840b42ae97b0c247e85a169f60d47825c11195150a4f4bdb6');
+INSERT INTO messages VALUES(1319,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','03f26b30e93ba01baba5c5d022d843537f6f51141f4d8abab77461dc9935bb4f');
+INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','69366b0f341d6208a55c2a185626b08b4938c87e8b555c49d604e2d0939ebe66');
+INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','c4a3a43a9b9f3e90009092f51763e3e0eca4f3f0c1fb0217035521d0750e3bd9');
+INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67","messages_hash":"70607a9526c0f2c4361fea26aaf5e3f11ffc02ba166ce5afdaf9cfdd8d4ba4b2","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'11de78e4e869396055f7b6ff8278cd357dae9fadd2d00c77b9ef05a80def685f');
+INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58eec28a7aeab56684373623f95c514f8b0e3a9495242fe5feb4a26a4cb980bf');
+INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'acacdf6e2cea9afb762b8c0e2d7c0a01ffe4196bf45175e307a5573de9f0c739');
+INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','e8a1550c8a7391a2005b4e8669e5f106badb61c50146aa4ede71b09830c44ef7');
+INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','f5962ff3c7a66bb4771a7f7bbb2d4041694812e9c4aea27c98537dd727fd3478');
+INSERT INTO messages VALUES(1327,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','2812bbb5b5a23099008de8e83e82aff7aff9037b1b7675bf337ea7bcc08d1b3f');
+INSERT INTO messages VALUES(1328,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','8c99a65c9f7d4fd43ea257146491461a5c30507826c215e59c2497287ec50572');
+INSERT INTO messages VALUES(1329,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','597e66e256d58339ae7bcb0063cf759e5f504a876de96c34182ed8ffcce20a0d');
+INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','6bba4b0bfe4cfe00131366f3b5886ac0708bdc460a26dff6091c914057f9c1da');
+INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','503f581efdf128914871f465c14e5030f6caec8164697259b72d19ee8ab0e0e0');
+INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8","messages_hash":"4a4d72b278971ef337754a3424d4cec3799122eb07fffb2412087a9d70c4e74b","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'5664552086a5efc38ba49257152e2c14ba5e0dcaba079c3c786300b97143d75b');
+INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c41b28d98b662de9c83db163fce734fc55cf565f4a271c2e4c1ace2ee686bc31');
+INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'82c827db0f1756a1c19b81e0c284664b2a626a86aaa23fb0f7fa1cfda1fe4d46');
+INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','79a91b3abf63d389e478d4668c5dd0529855678e04e2411f243a98a0f338b713');
+INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','76b1f650f1dbe21bc44229ae45fdb6e0ad43e5c06488094a725bee249ea9b040');
+INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','afaa26c82e7e684088661f569fe0887025a17de9f3c362386edfd4777299fd9e');
+INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ebeabfbbb9144947b6472f920f12bc8aa59d44e6c48b71c3cca87e4e759ce4c9');
+INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e7990d3398b8ccfe9ca75df71df58e5597a0bd2cd1c791d3cd93a2dbf4185b47');
+INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08","messages_hash":"533077fdce00d88540869011d696b65ec5ac5de1255e6b639a547e3ee326dc89","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'f9f8f3bb331f074d0e6ff2680f51933e94cbdc9eeb526adfe3ca8fb708397267');
+INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a05f14d5485fb7c247f8e430403404d66205e70dbb15e308b2beb6d93af01f7');
+INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'cdd9cae901c11d2e012527ef8d18cc1e48a6ea5215fedf785e02eba19897950d');
+INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','ebf50a3fa925b7a750455eba61f728e2a4a7a393f5aecdbf57903571f4e447f1');
+INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','acce0d601d578f547d1cf32dea3481445d783848db135766fc9d515f70f56363');
+INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','af18970d83374229b56d0481ae56bc1d09a3c8dbb07d2c7896a11014b3554fd5');
+INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e","messages_hash":"dc3bbd61e07c70212e5bc61e890ed464a44b69447624d6e375f4d1259323418e","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'dfb39fec9e8abc8cbf90caa4066c1d724e3f4344d20059a16b351d3683cf66fc');
+INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb81be39094f65ee4796f00724cb86ab2e64d8e5ea8488549e726397b206520e');
+INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334","messages_hash":"377b80a9b46d405fea95879d7245fc9ec8c7a94a311b4c11dc7412f4e4d5beb1","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'4a2b33c0c25be6584c8862d0b91c083bd39a5628f07dd90f5180c6ea23bfa6e4');
+INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d1fe623e47be0173fa9e77f09675ad587364e62018b1f465fd85ed1190a74db8');
+INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103","messages_hash":"e57fedf50f5e589557828ef99ba62eb5b487d7074a3ee562909be037f369a805","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'2df3159fb6ff95260be029ecd0a749f3304b9d41f90f267ded8007bfb945467a');
+INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cb537938199e5e702f9af9172ac7332311aaccee1cfc7272dca4d26493b7b04');
+INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'3a79c33f6686e162baeadc0f6994d5400987feb1408461264296a61c1c1de7b8');
+INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'31e2fad1c137e501f75d36c39ffcca07fd04417f35d5a631b211a3c53a6a2aee');
+INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'62adbdaef6a870fc27bf84fd39a36823758d6d8372cecd17653c72dd0b027482');
+INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'adffd043bcfdee4dc5c394fccafdbff9d8df0d03d37f21bf90422c81a7343353');
+INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91","messages_hash":"40cb981160e56743bcbfeb5332557a77609fd0469f4aaf45a0d13a96a616a4b1","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'bf4bdd142406d5a040deca96a375d3fc8852503e9ad48082ba3b2aa6afbee2e0');
+INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'15e9a212e4139ad81d94dc3ea035d7d2bddd0cf8a996681dcb86ab9296f1b1f2');
+INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0","messages_hash":"f09e3a98073d66ed6ab0e60b877e57599ff54b2f711e467a5be30a7e568deb3d","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'bc5f76e67764c737c3bfb4db21cfa93acdc49005e15a1a9cf335f16f583b75f5');
+INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a52c66fd036ad35b2d049ea7ca026da5fce8d70a717c14873809eb5acd11437');
+INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948","messages_hash":"e1e735494efe8655aff2d85f8da16c5bd49c6081b9e5663aa1e993eb6636b8bc","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'81d629542290e27a8c801f6eb21994fe970ab2f4304f6aaa81eec3ea609ecfc7');
+INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e73e798dc68aab07d9b4ae961ffaab8cbe7102098fb876620c0f5cd8f7e385');
+INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a","messages_hash":"580e09a9bd27bef7b3cca49576088d409c9f9216927708494785d3ed300da77a","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'32a61f2a87bc9d1f185dea2510d8782e482be55a1b8c52edb5592a9ea25c9725');
+INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f5dee7600109be190eb5c94d9a0c781c0b0cd1849b5b44b3ea253b2897d27fa');
+INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f","messages_hash":"f7fee89aa4742dbc8530f49e453d9d792a9551d1eb784bcd9cf91229f3d33723","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'eee51c48aa77137be76d1c7812843f94ffc44a9441fe24c19aeaa38cfb618c66');
+INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'79213bf881bfd8a5c0ccd576259d6a1a42c1bdc1d1536506c68e5d004f37f561');
+INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340","messages_hash":"fcdab08b80aa353c69584af2691670c40f14d7005ae8211b8c55d838e69c85fe","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'9b0eefd08b0f9971e0e395b2a3d9033bc2d5fc6d6f65f7fe1d32c824cb1af873');
+INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1715c21c6981e0cbb896bb20a77d6bfc616fad71add25f758c7afba8fdb8c7cb');
+INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c","messages_hash":"1d3d14d33e2a0c96b22c9ce7c7814a4068621c24ca7b89011187012d0be6341e","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'ea3772a6bd23677b80937f8bdd63e1c76eb92dbe7156099f1961ec0acbd43281');
+INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'132b0d979a8527fb3da5a4a13704eafb2d31b6c7dfaec3eecf7e517ed21568c5');
+INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd","messages_hash":"dfd3d667b1fbaaa916b09d1b594609d58f54dde5a908a6fd0cfd517047ceb85e","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'d4aa6515bbd8b0d04aa4cd5dbeac4f265d2060530f3f598d3bd8e9ae402f3b0a');
+INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6040a7af0577a86ccf8f3ee93c52bdcab66d9f3af0454ed0c6fea375a20cab82');
+INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8","messages_hash":"2a22c2ab92e53c25f51968b1faa6b5421a740922b256353bc9a5040d6501aa8e","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'3a5fd34ef37f8f19e02598c2d3db2c156855e48006e8f72fa3f14dd24eb67ef2');
+INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a1f5b27eccc83edba292198f7a6566fb9be7aca0c67f1e58179726f882e3d32');
+INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0","messages_hash":"f7e5b76fa88a19b4b9f5f287f0b907fa3ae57b30a5ac19435afda7cdd4eb77ed","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'07fd28d88f17b9d4692ab1c904d7093aed730b641ab6bf1dffae1d83f6c6a1ef');
+INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f62af8c64fa185522d4f5325c9232cea7618997bf37f9a03ed90bdef3cf29073');
+INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e","messages_hash":"bfa61c215ee22be3f7efab822268aae10991d0c0b1944b07fd61912c87f032d9","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'5ee718fe05a32da1416c140ccc4c4a38ad2e87c8ae27e78b000c4ee9e1f32f12');
+INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5bbe2f764d8338c40e458bc607a69ae0ebec29e388c6f334d45915a99011bcb');
+INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc","messages_hash":"ac00f053549ea8f45bef6bdcf3d513a45d9dacce6a144d06f84b140b00be91d1","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'4a2749ac6a9ad36f587105c72cea5b03c8aaa88f0fb6b6a3861b27dc64b1da1e');
+INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35e66c34e7026a607e0af93c22dfed60541bccfee84df6b0e7b1f6a88cabe62d');
+INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7","messages_hash":"e14d957d8509b0eab7cde558efc2a05700208603818becd17a9a13a118d340d9","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'5890570b83543e587049eed7e8bd2743ef6c8473c717a2ed538c68866be3132b');
+INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c09c9088759008fe7ebbe15dcbc96cd96a44c71f587ce350df505041249aab03');
+INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e","messages_hash":"f80855d680e2abb67a5a25a5466f3145ed268296da900ed7e618c2fd5f717891","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'e5692f73bd239ab3f78292c7214e4b11eb2cf4a465c4b91f60c2701c2e3325c5');
+INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4543f47e6436a4e6726d4593cbaf3c4c5899ffe67283e9fbe7f0550b64b653dc');
+INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c","messages_hash":"dc506661dd766d375b70999ab07b57e84fb629fc81c7a93bef55f28658ea37c4","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'29e0aa21909276081e40ab1ad66e70993d0a773b4142a2f7fa45c4c11ee5c599');
+INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3f8d3bd35ed99abec75d9f8ce23cf5c1768d154bcadc424b009a4d78481a445a');
+INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d","messages_hash":"cf32eaad387c5ed2b3d65a8a3c170fa813341df398a11d014ffd4d8eaf328c23","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'e1b39d92421f7404454ee1ab941fee9feb413abc3a6820143773546fb608d355');
+INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'28a45e35f3d37edee61cb7d6cf31ced0d77ee8ee8c025060a9665f44e74b8224');
+INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b","messages_hash":"31fe60b84c42b208ab135789882f894cd65e34c8f884ac7dfa4fd9ded9cf3ecd","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'6f0961db3dab10baebc743a9d8df136ed0252e3497fa884edfb96fe1daa2eeef');
+INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'976e6023994e805ea0a0322347a69197f63181bad1d1ca184128a6b116c65dee');
+INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c","messages_hash":"6157abc3bd4a2b57bd150185f90769621dd92a7b8ce718e189572a613442dc19","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'691a96622f35ce652f085cf37fd7bfc01766e6baf2d548b840b21b8d6e3b7335');
+INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e923da0e98ebe2a2f818acda9d5cfa273514ee2348464d5a7310e7b1a38e938a');
+INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849","messages_hash":"6481917e4602ccfbd0d9f6515aa64686970ddb12b573154ea65c693d9421735d","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'2b284a2df8667a534f062959c454ff25c916ce30120f156fccf4805791699df7');
+INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3515532a1993eb181e96914476689771ad98dd6b55367333c906f0d0bce912f1');
+INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852","messages_hash":"558baaeee5f0a6a25ecd524e9d5ebda4b1b239c7099774966129b3d81d0f432d","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'9c5f2bd387a549040cf087768ad29d9e56d775b7ee9a03da294388cdfd80f94a');
+INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a298e6a8861bf5fe9c9a57e40f4802f0dd786579f48013abce8464cf44fd3d1');
+INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403","messages_hash":"f6826bde541e9d973bfba4cf31098cca10fcd051c21069a2c2ace23c998662ab","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'bfc8937bcd1d23c4db9e3aea7844ab42bdf6d0361f7b309698eb5b7d9b3de47a');
+INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d646aa1e40cda9f69304f24d1ac85fbe981f25ca8400cff81900f5946ddd2141');
+INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba","messages_hash":"2790ab8560aef67849590b0982be710478bd347c5fab2f9cd18e4b0d7e2f35ea","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'a1a7e9fb2ac0310fbfd4563120a223eb5106d6a91997f4d7c6d88af8be55b5ab');
+INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d2240fba1b957be3c27e6136c86a199b8bf35e7eaeec643fb671ebf236fc014e');
+INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d","messages_hash":"94643866b10a6bfdad9483e2f91cab8c353189cbd11533723f61576b8bcbdb48","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'b28716877bbb80461dcb84269ea916e56b1e19bee0ecf521b2a4aaa6c291340e');
+INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f5cfc0f1f8eeb849b83e66cdb9560588815150c923dc26d4d769f42c774b843');
+INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb","messages_hash":"7c6aba3b11d92ecb27db8d623e22e362530497d994dcb58c9494b1fad8390c3a","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'d97bf615d23bce6bc4f4dc6e2ad36d74443a94019aafc50b05b6c00872c51287');
+INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e773f27e8506f7bcf73a2f9ee2c5bf05f8fe1839add470379d675134a1933fa');
+INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25","messages_hash":"7b61a5f9f592e156c277e5663a214b2d1f6dff3759945ab00ec5df0bedea7132","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'418571d7630b6b3d7be41a0dbe31aee8d45542b35a65d5ce322e61aa648672bd');
+INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'55c078a1794e37bd5642949581dd0b87cde44826775428de9c4bf943cd3cfc5b');
+INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d","messages_hash":"424150875fe6abfa671114f1de6ee25cba158ba9a785f4de66016496ce4b8245","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'9cbfa1c538afabfa899ed799615ce90c3a49a9458f5d0f58f13109e681bad026');
+INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2e8e85ba1807cf403ac0e226ccd618325457a3dc41c2616432a8cd8f5e9eb0a4');
+INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af","messages_hash":"cffa0d5acacbdab0f647b1d616e58f5b6a77cb4f152132f8646b2c0312022777","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'ea144535c83231f51c4efd3013c3f68526c225cbb69010b645750f71569591f3');
+INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bbbc02840c2e55819e64c38931989c29a5d83cbd0fb3e21c169b155436e2ec98');
+INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f","messages_hash":"e2732a291f53732dc9f17d1e5b00314233e97647f750c9034420b111d422cfca","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'30acf33757d569eede7b99a0651c9bbf05f8d3c5defd0139a5677b83fb5b1bc3');
+INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'653c64815cd307d7a592ce2873d252f5c4136e7e0e14509712e613da802140d0');
+INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e","messages_hash":"4b2a92757890f74c8dc1cd25b79087de549e95c41b2df88275b1c445f3ce02e7","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'b53c06b7bbb8cbc69bd9be06f65c014134054c450b9a07070df8f0d9022f219a');
+INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae9bf290e73fcddbc7211eb23aa3f5d80b60f20aba5f11b2f79b53270d6195f3');
+INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369","messages_hash":"b24ee3dd85c82c88f3fb9eaa06ed92ca376686f87a614a2e07c7fd5f035bfd56","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'1bcf81666c967548c0acd31253eb8a764d9c4c3ccd95a8141e281f97d9d2da87');
+INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b8f4245ef9d6ae73298733ea2a98a437d805458947f0486082577f38db9ec73');
+INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6","messages_hash":"efc83e6cd724fe89d3d3fe1c57dfa6bd4b91c63399a019a11d715ba9bf6ce0b8","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'219c1a3e176f97b4068d3a732929884ce77564af94ff75383014f396f260c3e2');
+INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d35803d16edb9556f5f849d49f054b186d520c5b4546f5b84c66db036b123d4');
+INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50","messages_hash":"8bf5a381abc25bc415bd415a27cb190e1f285c88ea31eb8c459dc4da65fdd444","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'3203999fb63955ec7f54593aea1064090823a717959bf10de0355e01d47d40b8');
+INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c70d41d80d013e8cd8ecd98fca56445006f12871d62620c73129f9c685f42364');
+INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1","messages_hash":"fe3fdd7b83da05622f9d9906587511bc99c48bb512f51faf674bdc9e985486cd","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'daf75db6a6e141c453f3297e4764349562517eab6fa83f11f6a737db7d725f18');
+INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'292f269583cd1ddb2e1471edfdc0f1927b518bb1e31a8c70d9268c19f7605c87');
+INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480","messages_hash":"7dc2536ade31822424c3a8f34fbdc9c6706f1bc9c366bf5f4aba14559d3ee445","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'c02ab205cfe8aaca661895553ca3e3e89952e3814ac4634cf91d05e940542fdc');
+INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0ab7571ca305c298694f8c8f71945e3065c277b2a66519ea493ab1a5f4e023d');
+INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf","messages_hash":"217081e6577ebd699ce0fd3814beb7ecec042579293f12d08137c8c50777f961","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'34b19e02fdba78fcc67aa7ae905eff0ac6af80f10e54a786c1f501fce0b6b2b0');
+INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5724302ba34a15a0c56e5b2784e8a2befc6ae482d2c188e1db63f586e3384a76');
+INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd","messages_hash":"ea397f7c401126afbe64b1a7857af6c66c470e88e17241e98973ef3521c2fdaa","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'fab1c768c652f1acba5b742e9a1c2f32b505fe5f1d0e8653a7746a758c2e66ce');
+INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'984e4368c2528f786aff039f1d1a97b9075a99fd6925c324ccc3b4ff8d00269f');
+INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e","messages_hash":"284bfd354a0631172414fc5262ec0eb0b32a22a11a89cfd4a3530fa139965555","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'eddb2edf28a83aa80081f135486c21309848274719a7a02ff30c4a0cda84ea8a');
+INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5a1e338c8f14df673ef42cf45d3983deca7a1656b498530fae1e1bffcc7e5f4');
+INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986","messages_hash":"b7dae5fdb8f2a8f5d8b2b60d0be7262f5f604187d6af40bd3cec4aa4a2712c97","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'f576800e9668bd36f63d99329c7ba6dba12c65a0e1a0f69f7fe687c470b1f808');
+INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d156fa2c01fbdecbc1206fefbd6732f7a365b54575eab9f2a768779b8269873e');
+INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5","messages_hash":"156b7d109db27f0c5b438f50f70686d0b74697a2ae324b697718f9baabd7c644","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'e736efeb6f6fccfa468170563b7de1a5755480269e33e52118644f7c61fb0e6b');
+INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'703321439d0a4b08de46e6e04eab67035327a5d7bc8e66b2946e86e56811eb5c');
+INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2","messages_hash":"f0dd7b04ecc60667e63b095d1b8094fa3115eea58940f23b9c37c6bf97b2ab22","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'0654740da8c518a45a6e562336c700ab4b61678dbb05714bbf762c5ef7a0a3dc');
+INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9ffb10ec174006d2e168dccb074149c1f74d4ec115dc88cb93cb4211865b9a3');
+INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617","messages_hash":"8e8ba18912c0725a5b4a918c3b8f1ab876922308a37606d6a5ac41d165471ff1","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'c76e17896c50e28b8cc2c6e836f5391ecf311784ca2b9ace057f1dcb45d1479b');
+INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09a3f2d94f6aa61e33acbc8c806eedfab0d6929351ad7bdd4cef44bcdd3ac3a5');
+INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536","messages_hash":"7e4151c22059e28d21bbb58532dbff0da9541d6035639a008900cf33da9d941a","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'1248b5be75e9a81aa5831f4cfa2726bebd59832a0da9d453c42eb3754ea0e650');
+INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a60e95267bb1f5427576362e952c628ea266e2b9f3a816a122fff547b3e1534');
+INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31","messages_hash":"a05a55216987e52a4cd71edeb67afacc01e4de5687cc1d86d9f988053a0060b8","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'fd7b9d7b503504ad4bf891bdc21bc1a5a22d7b16093ff5ccd99c3c1b10f15f5a');
+INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71574fef06c9eba6fc1289c57578b0bcf3de88be9d3fe9aef807abc31e0aefbc');
+INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242","messages_hash":"4d2775a870dd20810e75af34ff984483ef38614e5eaf471ec036696bbb30c3bf","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'1632cd9164c71b0d39dac343b69185d512da792e6926c9102ca61e661c970fc9');
+INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7d41a351037f2464a8168d3e8de214854bd4d65b9e429272462e6278c5cda74');
+INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5","messages_hash":"ddfc9adb4f5df158dec97783d9cf6affec910e1cd039174eedd44f17b8778514","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'1106fe9dc222feb49977c51ff128daafc1ba796e8448ee1efcf8b5a1116bd284');
+INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ba623b23f8bfe6f801f3077f245a9109c3fd8f835e0d22c22fad9aa3a0d891f7');
+INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf","messages_hash":"3ee7e75a498506b1776d53c171fb5ff06466bb32145e3413aa181133bfe7be3e","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'3d97c47ae72e8ab92a1da7319464c35352d78ccc8c8354fd1eb5ab37ab0f46f0');
+INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c23cb96ad816a328b5ed79b7fe04d47ee91a306f21b1150b27fbf40406f58fdc');
+INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f","messages_hash":"5b9ecb55fb2754a4637eb9a77ad86dd3aa5833b4b752570c01bc30a9023f428f","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'5fb53c0eda61282329e58f84a88722ff6d778830f63be44eb55703e780219884');
+INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51bfe5a27a12b0d6267dd1ea7658e2b370ab16c95d4ee8244739b8fcbdd221b9');
+INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701","messages_hash":"08c63d3d75a56117d943287df9f2f5e5b5aa8793045fe5811cfdae2aa25b99c2","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'ac01fd45839d6aaf31a84a048171abda1ecd42eb60ee893b72b6cbaf53e5cb52');
+INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ae17b5ebc91d23b5963c6293f81ee9e9aed99b41a211b6c9ff06ea1e6466572');
+INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf","messages_hash":"634ed3c4f90105f17393b6d06d9468bfd20e72f54da081fe29993c1cc3646047","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'7cfea30761a4ae059987685171b6af8bea44eb32faadcd64c114b3d79d3d933c');
+INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f6143639847ca27dd3e7afeb431faa6ecbab6e60d1a4438fb28acf9bf73c1599');
+INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9","messages_hash":"25b4888e600f4dac90272171cc5ca2d25956da67479aad56ccc9ade21e1af470","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'9fcfec393837c8890ad61ca850ae75bc2d41932542be6dcc695eedfbec670e1d');
+INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a1bc4554011f0e5b97f2b6bb484111e9969521ec65f323bbb88e69b20199b61f');
+INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e","messages_hash":"f66da75f6792a9f3cd9460b51e6b1278cb03ae295398c0bcecec62848fb09a55","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'9825c1c4b9b69019e534694445649dde301c7ca4d554f8b0575b2104ad1b8b5f');
+INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b09797f8132358c07270eb3267d3027672c1881a34cc64baa55140d82fb3576');
+INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7","messages_hash":"ad12978790f26a911c79c2199a35fbd742883e7e2feeab47f2f6114411c3da55","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'0ce6871d53adbb142d20dc890edca1648ad8e964555afe24c0754f1093bd1ca3');
+INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0417f315aa343806ff9a399ced753630263d2f711e30188fba79fcd3506697fe');
+INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053","messages_hash":"22a65d8c55114b0557255bda0ed0fef09d82c4639d72bd54afccedcd6536e120","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'0bce3cda4d3feb565165dd5611fd175a9a8088f521648e9c4b6108ff9cb170db');
+INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe343422a8ff458748cd8c88162a176597ad7937f1d817f408a812dc9f88346d');
+INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c","messages_hash":"21ec649a7935abb03ecfcb280bd0fab4f230ca2d91b6c30ddbf33ddb04e4ed4f","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'143e96131ebf2466dac77ed300e74c9f6c8420690315b179fea246afac0fc227');
+INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d223fd133c32faf8fd82d505ddf376aaa8f3ccc68b318131f6d2343d54e60781');
+INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59","messages_hash":"e767acab4a3ce2dd6bf3afcba93a2226ee01c3dfc384caa303e428d4ff6ba9b5","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'4492e8ec9d8bfc09c25f1970aa5c5b2cdb75bdd0dc478b40f136758b4723fe7b');
+INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'357e0d2e0f54f46cd13e06417091846a09a8bca21dc26b511b6e12d911e9a4e7');
+INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3","messages_hash":"5328e9f8b6467d7397e3ee60caec087c4b50f07a42617f6224f906dc7d85e4af","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'92c10cf20bc1c4d8ca6a78ba1fb78a7b20cb4f2517ffbee96b10629fa5e1fb92');
+INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'757c557cc5925e901287b0b684596882daf951e17b5c62ca88d496a0b073ea7b');
+INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc","messages_hash":"8f5d787fe6cee69046a2fe9e538ec4f34b164cddab1889ba581930c5ceb94da2","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'dd2951ef694cada9b9a5c4d0c73067ef1cc52f6ca5d705ae6cc4a351af06b4bb');
+INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0f5801fd6951bbcde53384d1850980dd10946350cf96609fcea6ea902e341770');
+INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90","messages_hash":"980ff0336aa223399aa25c8fc903f38b4e06a5c071b0367dbb44f9e3c3434ea9","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'330e2439a2a8e66e6e34fac4183a072e37f34394af977c9cab14c46be7bf611e');
+INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4dcf8b26fd0c7863a5e186e951c58d892dace1fc93f1f961f5493f708129f63');
+INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8","messages_hash":"2e3b5884fb5032203ceae5782c9bad4fa62556331f98d1dc68b86c539777601e","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'01fb908d7ae9a2ba09c056a46451d392cd2dbbb4091261c76e91832a515cf492');
+INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00fd9521d5721aea3b2c2aef7c5d56c6ff9a8dc31817365cd815ec217ecf2b9d');
+INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c","messages_hash":"02154c31facf51c1981bd8a60ff12a2ebff2660f1ee9b8df14362e0b87222ae7","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'6aae93f303b6a7e4a872b2a6572a52b0e8ba8c7e6bbe2d4708cf83ae0b41e419');
+INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b04230bf8ddce41e368fd95ad569d99572cf9fba317f20697a0976ebaeb4ca95');
+INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9","messages_hash":"b6d1efc33a75c137746d2a7927f93700213176937c66ac9e988017519021e705","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'bfe574f9ca397e427ca152f35f19151e4df93e75d2f5f2bd1a1ad4cb1cd0c9b8');
+INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'165493723814e32c4b2c7ee86aaf2eb0d60e46268462d49c85096d7f84306232');
+INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876","messages_hash":"69518bdaa5777b5938839c89b6f38ba7431389fcfb4ba21e75155af37f204c33","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'62274ad0a69a24a4fa3748617ac06ccab2c2de3e490e814705d4e20cb0c2f8be');
+INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4980c5c383cd3a439c04eb1e5bdd4b72e83a0fd416c67ce1a1886f0288c176e0');
+INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966","messages_hash":"6374560641ede2326a655baa894c0ce3af24f6ae931e6ce5a2db6e763c53450d","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'a3d4db5d0e584baa47b566a39b04cb91dc5bcac3751a195a901a5016c121bc68');
+INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35edd3647c9be2a8ea711a5b8426d184d6028079b1beaae62c9ff6e87bdb7246');
+INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045","messages_hash":"163ef3cb33c25fed114247401fe7c4b29b6c24f528f97beba30798d277ff2277","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'6465e63379f889b591ab865ad94f423edd128b884832bf79d4aeaa6a11d1b705');
+INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'808a2fce4178379c7028e6951ce8c3913a6c6983586575b8db2cdffbe45c93cb');
+INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197","messages_hash":"86753a4a848575133cf073de2466f53c3b295b1652f5d905551cbcf1e41d1507","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'a195cfc7e11ade8ba0f1c0900da7a33a2f335f1756358a456edb5f1b52be0784');
+INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'298de351c2c2e7fd3617eea430eaedbae2a1cbafd7be2fe7891dcec0eac47b16');
+INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5","messages_hash":"37edfb0969ae5aa3647f541f7093f9ce11c73ee131aa4f40c50d83174eae45d6","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'592c0daa2d899790dc4577123fbe12d6c877e2034edf9face596a753e2a0d343');
+INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a939d773d12bb349c312c3bd0f6cca831e08e99e60d04ed4417bf61164ad28b');
+INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c","messages_hash":"e2a8a0eddb5430752694510ad9672b226e1ceb00803567983cb353b901e5ee02","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'439768180d52e8e8fa4eb3703006ae145bdb4822096f5025e873f9e80a202daa');
+INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'708bafbc65df13416964717ea7624cf535d8fa21b6834601ab05ce006cf5a672');
+INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f","messages_hash":"9cf513f576f18ada23f3d8ea08fe0ff798bcb24b63706c510fa08da0b1dd68f7","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'0f71c14fec1c67f8603fab8f21023eb35e9822af70c759b5462e992c869506b9');
+INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a76f457fc83fa0ce78034b9a6d2d267bef75c6879b0254593570f8e4eefcc81e');
+INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4","messages_hash":"c0f216b427f251d36f4c25519bfeaf16ab6ce3aa7177439eb7acc3b98fd1aa35","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'04aae364f2bc06e27f23b81ddd71bcb641a08b9d95a0a2fb3b05f5370f8fa8f5');
+INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00995f195c09fe02b4406969f9b61f7ee0422900eb91abd235b75a94415924fc');
+INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9","messages_hash":"818fdf1b55b56125a2572af426ae72628c792b38ba71b9c4309b81b7875640ca","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'f3e2fd2f4cdefd37a8002f8b5a43c47c8c19938a3854be6f20c48384daa3af31');
+INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'327f647ad8b24c3fe57d2166e1ca15c95ab38eae4fde5c766e05edc8845fb7aa');
+INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55","messages_hash":"e2a1e7066ed8801df57ff449d271f57de4fd94e2a3f2c26d585b0ea6bdb4beba","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'bca0cc8672f79af4b60d6ecc2528aa5ee0ff720c2fd2ad98062000ef45b21290');
+INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fe20d650c46331a1f45fa1f610453bf09115dd1c8fd39c13cc378268991b6b2');
+INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4","messages_hash":"7d9cc2e20887fdddc472bd1f160a24eb51224a7b7414d239ffc3af6fd2ed50fc","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'0c87c695f85524e85b33c5b5aed8110b3859277b4fe0c52e8766acdf07be5bb6');
+INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1775e22075b66ffc6852c04a4c427191e099a91de0fd42fb99a30baf503173ac');
+INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34","messages_hash":"dca4ae1aaa0516ea81ac2cb5118b4f980cebc46263929c678f3fd7c483bd25ce","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'6f74a3cbf1fb915dcc9bc676931bc2a5b99c0eddca6fc48819db4740b0cc4365');
+INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e85a8577f035d2ab9fe93f081dcbcbfc8515d22e800d90be06829d8707bfc57f');
+INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16","messages_hash":"fc6f9c59bda735c1fddf3c393e290edac38cdbec0cccfdd3fb47c60ea2d81bca","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'d2a0549bd6d8cfef58224b47da3cdfb0a45af35917848770eca871fe5c991f82');
+INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fe0a612f5d7b087bb63d8f51bf1946ba38ac0f8ac030a3c5c971618439b3a56f');
+INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b","messages_hash":"9285af91e93c082e04cadf02726578f7e562ea62fe021de92cca66d2b42133fa","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'ba9ff208f9af67f9f721f8108ff399943c9fe7210d604289d4e5c37b78db8c16');
+INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b0dda41312fab1cdd1243661d72ff3d6ef2a1f2f26aee5834203bedb33f061a1');
+INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'07b392a4f66cf06c5af415b1dbb9bae634ecb6bd2f614e63c547d7d60fa84d06');
+INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b65308c1c4267b6a120918b52a2cbd785c0eb3c599c148d4ce13faaec5b8ce7b');
+INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'0d3b4d750f2c5757aef751dda50d355930f78cb0575606567fd4a1a376745a8e');
+INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50","messages_hash":"14fee9852e2292cc9d13403f67f6c71ed2bcf8a6e5b0bf7b327b4ba6f0854b8b","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'466e538eb30265122120bcb0b483d98147d32ed7d2bd9f3a34b7775350158103');
+INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aae64be59d8c28956a0ac629def31096e8a28b67401410a8e1e3ef97971f4bdb');
+INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27","messages_hash":"7ca7563648c2333e269bcacd41105d1ffafb80f51065b153a4ee2c91317ef6ed","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'c91d9bc204716a4ed09bab11275430fcd0a86abe67832da08220e65fcf4a9272');
+INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58de44cb63114f0347dd298d6a0db9d2045d2e8e161148a4f2707abbae758a20');
+INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9","messages_hash":"3d59f48fcb005cfda23fa02bd91080db6d45d6beab2be7967eabe516f071c940","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'62f16a7eddb64780b5e036a31fc83db0d579f6361b891e672c60ca63ad98648f');
+INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a5d1dec897fdd0f645ef8e2eef60a27f86354d8cba8747750e44fff8e32115');
+INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32","messages_hash":"735ad20bd609e7af27cd05128025b3f28216297e260107e21a4dfaefc42475b9","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'31cf680b372e5647ea78642de6e70b3759e97ebcc9623c37571be3b9ed040f9d');
+INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9135f6eb62697642a97380607b8feaabeeaa816e2da51e6f8499919c21bf3f7');
+INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da","messages_hash":"390e7fc0b23505dc054cf152ca6b4e0f85e3de5305f33a5b6b6babbbba00b9b9","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'470b4716477baad8877a882c1ec6f25b067970d7797db0b7188cf47c48a0187a');
+INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8b4fe1fcfe379a0ad0f22c56d2ae2f2ed03948090accc12400ca70fc4e4a9dbc');
+INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553","messages_hash":"f4a40cacc4b43995dd20a807dd32a353b9abe4d4cfc120f91fae0c9d18e93ecf","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'7aaa9e93f3156a16082ac41337d30d019246519d0c90eedca408ee26ba1b4a14');
+INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4543dc57a46f5f6c59de7b96f2fb10dad546f2de4b733a9ea3e3f2c7aa2c435');
+INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5","messages_hash":"719d6d0da72b9c877e3e397b67b4b9e7b39058b7d14fb9b838d9091cb7d9643b","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'97a20cf173ff2793c5f0114e2ed77a4d8c5439696fdcacc86f2b8210406eb4f7');
+INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a0306fcb37bc1b39f251a8bafe2c4a8edf3be4b6d16c3a5443ea7bdc6917f0f');
+INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13","messages_hash":"3de82b39a5fab20c1e9ffb199e85e40d062f2a14dc6785915afdf7237ee2d91b","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'6a127583bb53f3d1c5e4be2d443cef32f40296c69b4a139b573fed389756d531');
+INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8e39e3eb903cc5f76f482aeb2a524a57cbda1f5957cec1c11aee9ec91d7883a8');
+INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f","messages_hash":"4d1d8b57d6b8f75c625171621f01575aa253b9c69e3c01c9a26a22ddc78c436d","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'19eeadf4e2c0fd8aa1e4644242c8ff52ee7f942ddfe39476ba71731943bbe8ec');
+INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6942c23f61a28cae4739ea44c0af2c0db17985c6ad127e2fcdc6622a61e51da5');
+INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5","messages_hash":"672977e75961f1b6fad4871e1904d114be10b11181f5cda075141f98ab3365aa","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'0a65673950edad193987b8f3bf185baca16f6273594f6fbbbaa5d2157edb3308');
+INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51ec379926b9bfa8803d394c4f9b2c084fe9365c004cb5b0836b9e8e643f53b3');
+INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6","messages_hash":"e406de167f88936588d2d427bd6b8d9c90a947ff6bfca529c37042515b242f75","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'d70fe4ba374ea560121886247028d9f26d7cbc94c8201cc24954f176bd722ea6');
+INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e626b9244f2e1c48ad3f78101317479e1881d27f6631287b80ac53d08f85798');
+INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17","messages_hash":"bce85fb0fd133918ffaac7660520e80d7b42272b18e01fa01ca330bb384493ba","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'5314c26fd8575cf6c53dc6cfc93590cd740f1a820380932c1a1ab87ff698310e');
+INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bef8f7cea5f0c71b7bafd117794900287ebfd811fcfa2ed98f3f42de3a5e7c3c');
+INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989","messages_hash":"75a871e3857891a3494d1f9aa3cefd639dffd27538598c97fe9e9fd45f42d26a","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'29645d3f0bf6c282f0fa171c42a2a317ec364be81d6968b8dcd850742dbe9d5e');
+INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bfbf57d65936cf3fc0d8e3b43f040cc9d3af51b6efe870f681ebe217da7b3824');
+INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d","messages_hash":"0e4a4da780b4f2272d88ace7413d0a0f19a9b3beede089f9c6346f7143bfcc09","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'f2cfbc0fc01405c42948ef6379fd1d055cf2ff4308c58e229635382cb960b49a');
+INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10a941b0659293baa4684a9f762eb023d003604d561397615a8a6622f1ead072');
+INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0","messages_hash":"a2e8a5e63c659b877359f4b115f6aa507fe9d95f9fffac20fb8613063254f89e","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'7d00da0ea18a97ed19b399b55274b4651e2d3820f644cb92ebe948de431a7d1a');
+INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c512ee58a65a9b7f62a3aa57646ec1ccfe0bdfa8e78c94f522ee41a9ee29189a');
+INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69","messages_hash":"91a480a959b6c20dd9c0003769792479b4ca1f3187cc95281d5bbd752898ead8","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'04eb3f2a5115bae018e6b351a49bbe5adada186b70d433c2de005c28d1eda226');
+INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb3fdd0a364175a9804b2c25b365385877622b1aa34d2d07ecdce03274b81968');
+INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36","messages_hash":"7a70d8af9cb999e78142a4bb5fcf431a99f6de479ce74470be8c95cbc447b1ac","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'f6fa442a2eb945e24df9872d8db76cf8f6fbd6cf4a65fc77ee11715b1b29b8d5');
+INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9a5d5f92c5a6e1bbc5c6057ea51c7ab265fbc14d390b00b767f470926756a665');
+INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c","messages_hash":"01e35ff7b52aaede21978f33a444e8322b191eac224e4327746e34dbe4b53a4f","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'0fb70ef7faaebd3283d542e09995376744ddae2df952ba332f2181628720092a');
+INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3da1112398d4a50951d0304acad0acd5b31e0e009d5a012822c14326f8c32aa2');
+INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5","messages_hash":"0002cb44723839b1eb5416453b1bcb390c7c25f2ff6f0fcf3eb0a643dd45bc87","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'2ecce70c11499c5d2e01367c6069db1eb3ba7403edbfa8f5b7079d2b675b2c40');
+INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'486e8c3225b1c0d8b84d71edf3d6fda9f8d1928d83ab7a0d8c4e7935551e006e');
+INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26","messages_hash":"2d29551343c840afcc23e5367116922594a9cb3dd49c9f98c331d2383a1d1b61","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'8f038e9ab3ebba87c7d81100ed86263de8f119ad975c1e9e0e1c66250a855b08');
+INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'550b83c83e32df48705f099bc55902ea65001addc8abd953989cebeb64a5f762');
+INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4","messages_hash":"072a514d43030b305cd5ab52dc7f025a6fa8fdafc700c8c4840922d763e87709","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'d30db70ce4edc46574039c791d620e02d012992bfa88f1f6044f7582aa50a037');
+INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d77f1b5b4bbc42961d9473031b3fc779aff50b537317d25e986c48f9bc1efe8');
+INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c","messages_hash":"0081d700eb987df05224651c7a86aad8466c1c0aed1f8b9adcd804c0c357ba95","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'89bd90e91ff3641e1ffaaa33cca56919de0126b748e2f69bac24805e83771669');
+INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'168c0fbfee2811452c9a6ffda5717f8349943e2b138b45f582b1600ef3d28153');
+INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723","messages_hash":"aad7d0f1b069ead9be5840191c72486dd35a99cc0d636f84dc26c9011750515a","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'da2511285f46743c279d96c02101a4a665551fd20483a76fbaa9cc5aec96f828');
+INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c93bdb039419fb1ceca66aa97b2e9a800cdef02e3e5b152e8833bb7c1db408a7');
+INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282","messages_hash":"cd1831370719d122b3f104816d00c53999d5d3c4231d61a63939cac11b9e371d","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'0eca0914da406ac7e8f9d3e0e7e277dcb95e87c631fcbf1e22480bbea2d882a4');
+INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a79e24b37e1345c5b6fbc786ac04ecbb38295925d788efce26fc267c6021d513');
+INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d","messages_hash":"dfcc0432d894cedc1b86b930ebe7c2a91923c73a3b48ddaf20af6a91a1fd8d4f","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'2b54eadde69270526efcae9deca123552876082e8e127a0082cbd0344a413378');
+INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fce6633b262f838ead4935159f20fa9460a66f0e32349ac1b698af07b74fd01a');
+INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88","messages_hash":"35bbf8c0a4c7b76ee99651dabc7fd61ecad1944ec64894d58b4b23b3f56e32f5","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'bbaad3c636ecf5d6722ea1e66871278db5e4a03665a634a3835ecb539982977a');
+INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd63eccb1bb02127afb47e863c4d634d5e898c91d72cd39b029ce68cfc627bbd');
+INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9","messages_hash":"c17603776457e6b4ec866211fab5a67645264ad88982e074e35934955aafb672","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'38d2cc5e28706a1edbedce7bdb867bb77755d629f8cad1ee04cca17339f65389');
+INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de19372f982c7d04995cd419524af24896db2ff21eb6663b98e8f23562920ee3');
+INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0","messages_hash":"658470a3c81fa20340341844f3f6c4421d4163a563ba6c76bad26ae5ff8f6f30","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'64327036a7ef395f305bfcda1cc2050f382d33ef8345631830a143bec6d0494e');
+INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'913a3c75c7c8e02769f8c0e16d41f191f7b035d68aadc2070f5d590fd0a9a25a');
+INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7","messages_hash":"3c19e585c98db921941f5b26a126b80a49c2dec9557f830931ade7262e91c062","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'a2d3b78fdb74695f1545446a14d1c5e9ea97a0ca132db20c9003aacbbfcba5b9');
+INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73bafa7718d9c8d4bc762696587fbc3100fc0b800249ef0276521ea7a26d8fe8');
+INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66","messages_hash":"d3e6cfcc59682b7ca7651a4d0b764e978f39e0275179d9c7d345ca2036df6ba5","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'70c2d85bc3a9f202998e11a77d263b500669013279eda0a886e0117cc92853d2');
+INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ebf7972beea07d1fd216902990516e8772c795f9b0a1ac3cc6ddcb829f26ab8');
+INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca","messages_hash":"5b4b24c7af8e50b44e4fc6d23ed3b636c2f720d79427696f39e5f5a744f0b1ee","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'e0165370caa210cc51caac7267a02c642bf8733aef554e466df490571f258930');
+INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eed3acade1c5a5c534e9ad171c1531add6ed91a9d37ebc6afd7e70277d28977d');
+INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9","messages_hash":"99b36bbe5f19e83ea1b1ccad1d01356648aedb05e1e596ba41600358164b8ac7","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'4dcd70bcaf790deebb920a1e32b16ad8e18ba95d41bc3d5fbf9416c8bf76d925');
+INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5472d6d1bfa1a2b878c0a72b3075e0e8220c2109380f8a8e2aa3288033ae3740');
+INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542","messages_hash":"4527b116244cca77263350c03e796f7b8f68e3359a31122544a8506d649c0414","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'8af3316418f9960f4383769b33f07c322b854882b44e9fffe5122e430060f3fd');
+INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3c108d271ec9bd917d3065c7ba090042b313306c6bcf4f2d321d03215df3184f');
+INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed","messages_hash":"d49ffe3fb323982ad595474cd4d4a750e40f92ed7bac60328fabb6b3adfc4ce1","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'bbb4bcb2901d771d6d7df699612a587e99f899dea1ef93c8bdcfba2fa601a3cb');
+INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ddac55eedf67f4cda4879af8b8a330bc1c4ede49db62e3b90fa5954e27cd26f');
+INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2","messages_hash":"e31efce2466a3499fe85fc3fd38c4239dd008155ce0bf7197760cb52a82ee77c","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'4f3d62f29074d4513e6e33794c8b214e47fbf7d18a5513a6f6cc59a6e0c881b2');
+INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'193ca4ccbd417052b1b17bcf60935c179799daa0c34f7526916a957a8db1bb32');
+INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328","messages_hash":"25bfebc1c8ab376f51290a883ecab7b9ee9f9ca243fba57f1d784287bf73560a","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'77f81133bdc5069e419e29bdfa361732752ec1392229cb17ab3e31eda4b99cfe');
+INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'05a5e4a72b2d95df6ab54c04cb7f21b2e8666fd3937586bcb63c052594441449');
+INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d","messages_hash":"5f7cf3364676fb64b39fce7d55240f958e9832c147fe1a028ec7e08f04bd7a1c","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'14a9f748ba21605a898b30fe78257cbacd75acb9c93fb7216a8bbe45e5948f09');
+INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9815d60d31ab6554838b679e3a859700f8e3d3901f305dc089a68d947e51d971');
+INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d","messages_hash":"86d7dd3386c1d6c331bb7d2ff4c66fd058f8d061cb81fcccd96984bd730278a2","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'fd8d268a701b15529ebb4b01f8e5ebf2c9a16d79b82f138dbb1f597acc186c2e');
+INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a4ef7486d53783c6e35a3d23212fdbdb25df2e909b7f1b8b0bae60d71f412c92');
+INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96","messages_hash":"757bb6997fd9c8958569c3b90924b80dfcd32e2b600dae70830cb79e6b8cec59","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'02beab89baf77b7127333d670e8a7cb458206ad89fe808ed746f6896d6504cd8');
+INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f79a66e6321e67a0ee8c7893f25b1453c29c3c6e65bb6f4611cc46f4787a027b');
+INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d","messages_hash":"c303f75cc2fe00d44ebab4d32b25b49c2da39284686382a36b35d509b1adc8dc","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'85ba9dab1261131a5c4d9b8e33d6e9b87505a23b2790d1f9ba4e5ae55f169d21');
+INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'160d26b6e2f6e17db8a45b9a78e57f2a87f850d13b3b46621de03d1cef42f0b0');
+INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b","messages_hash":"207919db28449144d8bfcf7a2d2aa1c3f9da1bb30d625d4346be0aef97b9fb41","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'5705e0f90c5a294b5c3f4c7efe601a935e538d8699232464a51a8f04316d4f55');
+INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d03e62e8869e6875b0f0046e3ce31bc8d8eb95c3767e6b80f5275c4887d83e21');
+INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d","messages_hash":"b2deb2e778518a65c7e22d9ea3dfe8b20f22a6f0a98fc121921824a6ccc5767a","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'a885a20ab3bfc0df464c69ba748aa526bbd4c612d8cf5d018bf8181db847b5eb');
+INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4fc9ee5b4a69214ebecc4c02404125cb35c80b945eb2786b234584062350845');
+INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8","messages_hash":"0d5746a5957752c2906ea859b36fac65adfaed20b77dc5221f0dd3b82adb153b","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'78d11ecf2d41da82962c06cbceddb3d79fd16d9942fc16a5fd40fc4cca393903');
+INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc4202032d1b5b3c3f7fadd1d355c7485433792abc030c7a4c83f184a1f72fc7');
+INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3","messages_hash":"d28f8cbce3f48ded964028367ac5bbb4705c81ba6fc0f89bdba45229a1bf6d95","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'81d44ede94ce23dfe16fd83582035085fc397d8f2728dece2607bebd96191c19');
+INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0e9fc9434f1278da95f3018dda3413b221e551fdc6da47b309c254a31ce188af');
+INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7","messages_hash":"802428c482632ff14810dd4456420e560672dd2bde33476b9583d287243ec83a","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'808cd70bd8c7fdfd60ed95d0ca68fe876ba519dce514124cae584bbd41dc0eea');
+INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'693f86c31c7c2a86d320419b6398f6305e0cbc8a364858a7c8ca424b840d796c');
+INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f","messages_hash":"0a3765d2494e2691d6f99e6323c5babad9644c5994a6fa0a92791e244bc69743","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'68fe8e19aac2843bfc6a239d6c1335e2140067dfa7ec2491a012007d049ff32a');
+INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a575229df6b2b9a7a7d621c19204cb8ac0caf29b0e2316715f6b0d607cbb79ab');
+INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1","messages_hash":"7bdaa1ff0e78bd031a50bd15d814a283282ac11b1201bd957ee4473ed1e19c4a","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'a41648ed385c25c0848835542100f4c45bb3f3ea4d3aa37332d570598cd07208');
+INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b7c67a227fbd3cb069ac2d45156653b391595b5e6ed77a859e1d114388ab83bb');
+INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97","messages_hash":"b4f02b8d29590e5cd36d497111827654f87e6d984e687aabeea90a7a625af20b","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'d997fa5d73fb6b7e408bc8f9dc5293bf1aabd290e453520a674fd3d83720e56a');
+INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a45ebbbb8bd7406f036fffede7b299477197c4ddc0b4e1ee31d7ac6930e2928b');
+INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323","messages_hash":"86fff556f529899c5904c21c3718a761203480e004d8f5806c3f9fc82bd221cc","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'a77bf39c91f4607a75e4e02e2ea27ba4cbfe8baf97db7f9c2b11f967a264bcb5');
+INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa77583f6a1aa0f57149e4087acf46c7c7fc21c6ee3d6b0f30c636e622dae47e');
+INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e","messages_hash":"80ae4a42a3ea75d772058d3b84fbcdc6ac5392f4fc2260258b97a7dd14a28abb","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'dd9c4f601b7fbcd312e898adb25ab8a53f833f048b46d6402a596a6151da90a1');
+INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b42e94567fb30f7e19b6bdfef715b023a06378283f500eb8f9937aed7e2966');
+INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247","messages_hash":"a0fca2d1c45a647f0f5cc160cfa040d7876b70dc1a4bba5be573ab39812fa2b2","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'64e550d81490146b5243ed486a98e85798403548ed288cc23d5e0e9529e2e844');
+INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d261ed5f8aec3844c9f47ae68bab50abcde64eeb02b7b15529f1e119f3e422af');
+INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626","messages_hash":"51d703529c87ce1110fb82b1852476613763f042f15db40d27a1ea60cb8bb2e9","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'319caf96393b9bd77f3aa2c25874283fdcca07b048b6ee57eac141b2e8f00806');
+INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ae2b6f00b018a1536175b7b81be65820c9c3243d8784ec1a09fbf00c590dbcc');
+INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b","messages_hash":"6cf2423bbc5d8b255d3f80e88b3150150d0934c16f7d6e97aeaa9cfead892869","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'2b9c61a81c09b0742b823d45497a7b3d9aaca4832393b91b257c8df8d5da122c');
+INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1905e7c3c4ae30ab58d15630140ee0dc311f29fb830fce1aed6d4914c5f3fdbc');
+INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1","messages_hash":"031cfb4d2a53fbdc957fe2fb4221885914ddeb33fd8e9ab14b788e26636ca3d6","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'3c969e62a62295cbfe8690e6cf5a74a8908b193df4aaf06573c6d4d9571313c8');
+INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'24942b08a2860da37934d846e8be6f6b3a1291606e209ea10de63aba5c18b1f5');
+INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b","messages_hash":"5a04be3dbfe8c59f55788d253e52e64724cbae371470b139ae6c610fda9feec9","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'8165e5718fbbd5f701ecb7b5b4b9196358758a242c5c80d75e4981b169136b17');
+INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc1d9afa142612c0c8b32ec2324e66be96793fc2e0c6b5329c122a3de3cd723');
+INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80","messages_hash":"7a5f8d4ee64b87ced44ce44e2aea65904f97568cb9bbf5105acaca9d42b01cbf","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'e4453127aafa1a254b59a323718980933e2e4a7dab1b8d558997467d1d4e122d');
+INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ede14d845baaba6b35081458660d1dc26b5870375a44530601fce42d1657023');
+INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105","messages_hash":"3fcfd123a88ad9d8710d32be1f0ae8e752a2864a6fa3a6acb472fe8e9f89aa13","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'1ed626afe372c42364c0a6f46ec1063c01bc8ad7ed68ffd93b7163f8d719a764');
+INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77f48d359826a920f20ede0a753c01f11bcdc11d1f473f427d89c3c91bef0629');
+INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb","messages_hash":"1b217483fa5bde6c53b24bc615dd10f59d41fa74529e2dc9f45bcaf213ca8aaf","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'245711f0ed5c66fb7ac5edf30331a603ae726640621c7596da4743f04c7c45fc');
+INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'692b26e6784dde3befdfea85ddb229bfec0d44fd4f84ade06e2fad341c292473');
+INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920","messages_hash":"ff57e5cff64d2e1286bc27110d4b88c5b261a401907c4e26f9d6d301c2e44160","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'ba0d0e3b088965248aba9a0b10d9181c4bdf53ada541743463f1f2b34bcfe2bc');
+INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2c95a2a4a16a96f2307eb0791c99327834b5f2c67894594810796298d1b85098');
+INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602","messages_hash":"787c55f9b276611a37751587e6b930944b47a7df6d7fc0b78abe76e7cc0d852d","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'3b7088cb8ca00270271651810899c5ca8d2d55fbbac113506b74ffe4a97fe640');
+INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'88c4ff3d756ad5ce7e0fa43980c30cbd80bc0b37c9700af9dc476388a2dad26a');
+INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e","messages_hash":"7f884ca84212371f3d07de00c05e171d40aa53f8d93fa919819bffd9eb69c37a","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'3e1e0a440be69609c2d3702b130e0eea7563a62fad73d3a3924f5866b8d66fe1');
+INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3816b8f31879219271fe58cc9a348be665a31255998ea22314f3359e15f5d34f');
+INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d","messages_hash":"136931a8c79bed40b5d2af24148b5d4dbfb1688cb9a380b8a6d0f9818df0e4a7","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'6324d5186276f836b93d2a5b67240368ed1e7e9199094be69b0387eb9d1f736e');
+INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'db816637ce7ba4eaf34e7549552e7656837f15a2b13d87203fba34ef27665557');
+INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c","messages_hash":"3acddeeea5792debd38fa3dfc11a3d4fb4fea48d3bbecff8a3034c11f30f582a","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'023c8a12726c2ab8c6e96ce2cdbd98d0e315d2a68b7943adc3d2060c6a9e2756');
+INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'04a514e39d8811c6367b4754d7a9c171f252ed791ea027390f897bf7bd34ca7e');
+INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966","messages_hash":"a1393b20aab486d72245785c0d6167bcf5bbd163cf6d3a16f40f32ad934e9c19","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'ed7a2f63f034fc06d39acfa2768fdb1346386ea0995f44e61cffb00315deb906');
+INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bb15cdd0646871de2736542d4a2cba3d91b3629f63c400c58fc75bf8b26110b0');
+INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5","messages_hash":"64b05af3d6aae2858432eac39d614837d9cf7ab67e2a4665c77682cd35f7c932","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'e00f2ef9b361ebc948ccf4a44933cf8b81693635c34f1781a0c27c4c2e4649c2');
+INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43cdd69c85437c61f4b15d8fe0b895dc987da209753901df1301522ce07150e3');
+INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66","messages_hash":"2d0c524badfd5efb7992e4bfe5a8cd4b365e44f5364e31383fceb616dfb3a172","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'e37464e67250d4bc359cc4d70268d4ec265f58f37f9ff7c1fbc3a0b6b9e5698c');
+INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b1dae30e72f8df56d4607b77a6a7d84197a3760dd7555554c2544f751e371708');
+INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72","messages_hash":"b1d407191bf8dc946e2dd99d0dbbdc69c51b971b416e448b94519bdaababb2fe","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'acb55262d6e29f0cfcbe0b4d452a9362dde51e14f8d74dedcd44b39d804a3d09');
+INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b88a67cd1d96024bb6088962454f7dbcbca738e40ba27cc0b93a6bae8458af02');
+INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658","messages_hash":"5c989bdbf8aad78e3dc2d749e7c279e423e773096edace524b21dd5b8aaac8ad","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'d38354c0dcee27a19b8e7c6e6753dbc9438a5d02ab53f03ed58e6d9676073848');
+INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95a29abf4d39a4aef1994f677b1501add5826da8c510d23964b3fea29d34df5c');
+INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d","messages_hash":"89b56221d0b58205c1fb244796ad86e5a33814267d60bfec9757e4e929a7e8ce","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'b15d8a4ff5abb2d7150e52282c1227af32786cc410218de73106bfb5b9995bf4');
+INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e2712dd6c8bfdd2a40b7f553187465a011f941203e3848e1edfca4c6f52200b');
+INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b","messages_hash":"7a53a155b4665f4a4816b515cedb51ca43a2886be73284cec520e62d15a72bf1","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'40dc910cbe51951f7c34f01b444fb6339a30db1515327a8fffe48f57b3fdaf4f');
+INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8adaf81629fd48314446de58dd7d80cabfa4e87381649c9aacebad260d233e9');
+INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614","messages_hash":"dd7b544bea09772a3f6124a6164b1c3d53ae2fd30b1cc0429a7e7056a697408a","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'7b67fd9caf1508697b214309917041748138ff0ca78cbfcb609bc272014e85c2');
+INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'336e8a8edde0fba4f6ebf0b3d378df70230fc93ba28ea2a06e8693d8b6d22265');
+INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d","messages_hash":"e2d5fb7a5080495161fe416b9e3541d80316a3647cbe22a64e8af6d32af07473","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'12cca7a279d492c972af6a7250547c9d03dfe0387ad640b91604f8d91c72592d');
+INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1a9866ed295f000daaf46536cc23d7ed53e0b6319c7ec0e668f5729a3ae5eab7');
+INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392","messages_hash":"e2aa54542a95a8e8d6b7f2faddbf926f72b60f745dc96a23725fafcc05a5f84e","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'e2ac21dfbe87d325f915b1a8121bbd76e33b824b4ed991ed06fcb860c6bf2294');
+INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'58d0687d07ddccb9a8bcf344341b9df71a75fc82a4c69e9842a92c361c6af375');
+INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805","messages_hash":"a43798189afa87e197830f8df29e8686a1dd3ef5fd4a8a1aba4bc81967bb2347","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'3390083bef464b32328e849d6da8070b153aa73dcb024160fcf2bf1e5a1dde1c');
+INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'56ac53934f3b87be7625fe88a37cc6e7762ba813dcfab7e75b4a9e711964ea4a');
+INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318","messages_hash":"23fee6035da4ebdaff578b4afc6e6144fe2b0dbdd11c742fc4f3644bcc4cbbb9","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'834293824d347df3f2173e48a699f0a34d38094adcf36005b5bab29b6acecbb1');
+INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb1db324939bee92bb8ab97fac153d287b13438258e9bde059a9d9428d865ab0');
+INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e","messages_hash":"5b3235621e8b9163be2760e6b7c2f97da6eae84d8521c903d2cb378772c78936","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'2d7510438ff4ac1cfdc72b8a452073c704864ecae939a0b7eb9dcc63e47bc045');
+INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'17e50e9450536dc34c5d00f8757b2a1cdf65e83752d2cbcd783ebb393c44ed65');
+INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8","messages_hash":"5f31077e72445bbfacbe6fd75d3c7b98a61535937919a9276ea515097191cda0","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'4b641d051b7bd0f4f0db9439540cde6a1881a78923df45d0f4982748a3f045a6');
+INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7c7b3dae50915d0a2f9b523aec546dcd4debec64e5f3b274b9fc573e314341f6');
+INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0","messages_hash":"8b7e6330e620f547807b44ee45135190d336eeeb332c22ca9715d06bf362724b","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'3aecbd36b9d8dc3485b253a0e5225fa9d220dff9a64d32ecd94bd526c335d065');
+INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5349b66f34b8917de501184bd9ab18f37c0510074f682c2cc2b7c6e52f792706');
+INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6","messages_hash":"14a8864d9c20ad253940a754ee55f0e897556482ed3aa04c6b24eed23a038db0","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'d24ecb02c4492d6115087a1f5f2ffa6c8fb3f5feafc27b747771ac8c4b395c3d');
+INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7cc455238211cb0b70481ca608ca852bf775116e5884aa8e419c9f85a9603859');
+INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8","messages_hash":"1e966870fcbe2d8b8d50453b974bb52b12bd5da819485a5369b6524484c6ddac","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'d6840399f8f10c8d592563aaff6dae9d9476266ecac9ea5ad963a8bffeb1a8dd');
+INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a8d8c67b49b8359dda2accc2ba457b63b3cd9e812eb3834d536045b8bd0002a3');
+INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f","messages_hash":"59491c7be213e15d2f0c01dfd7234c8ca0d6c13654dd811d9f589f1328cf958b","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'ab365079e0223a0c07a20dec196075c32591eb811001d059aa978b3bd1ac7841');
+INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'155156bcaa34670474c995c325fbef4eba847d9ae0ce93ac34bf24289188c5eb');
+INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8","messages_hash":"d46db7182822aede24231ac4d2bae54649bd81093f5503551ac3ae50cc55b24a","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'9def020ead267e812f22daed5a7c4f54d076cb60682497efd5322f337a8a2e83');
+INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c09435510ae15e51f8f8debec34e7c5094312ecbbc9abdddfa0b0bdac3075781');
+INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076","messages_hash":"bdf5e5a3b7c2ab26c978e2ba4b37f4cf76f01a2ed18861a7cee3619133074fc8","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'21daab237d2e2e6ecf018567b93b1f8d872a55f4034c2ceedd6877e03ef5e0fc');
+INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9914bcbb242d71be5b8e5a76cb5a089a367f3f49a233f50b7574b46172010fd5');
+INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238","messages_hash":"b57450c4f69f5f7404ec6b4718469d49d237934443f490112b7d7a40ed01f764","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'8af5db42348334008df27c8de1c75fa9dd862098e4f1dad6ce38e52ab612a181');
+INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'794247242e9e67f5a9ee4ada9b372526377419e432f7181a476e59ce4e9a29c4');
+INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c","messages_hash":"187790ed3e50c37b64e92ab78178bcf83709a500f3107a3a648426068470b921","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'5486a0d7edbfdb306e3ddd000ca33e484ba37d1e46c78add7e37015722362d74');
+INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d9409178075f22c98fd6554398b9f4168eb83d8dc532ee81d14df8426116f75');
+INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54","messages_hash":"ac1869305532cccdf26f545546e6dffe0e266773b7f1271d963b03768311501e","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'1bb2ed2b959daca93ec740e3c16d7b38528b2f9be1ebfa64b148f106f79f694c');
+INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3863a0b5d95eb7b6f35f3d01ae34afc4d24f16e4f2bb15dcb79032e27b27382a');
+INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712","messages_hash":"eda9e4bff58b78300c49f153d946a05ad79cc2a2c4d890f62107862bbf58e281","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'b26c020babda063d066183fd12d4dfb0fce5bdcd754c079306d6ed00627e2a36');
+INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e68d9c11237185ebc6425e49cf8297943e5edf5b5c7ea2f837bc371010b3989a');
+INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583","messages_hash":"15c13a8577041a93affa73dd930c61d3ca3ac4cd24e5bc195185559a0288bf0f","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'1c1ee7d7d314ac7aac8c757db1204f0b4b6aad3dbb994b625e2e3faa454a76dc');
+INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3b3b401a49eefb5b191fab1733b086abeca906fc638b5b927d8226e9b6086ca0');
+INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07","messages_hash":"82f57f514dba082ff58f07898e9ceb7dfafa7802e71279de9f9b1b50c37bdd5e","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'3c5d90857f34d60244852327718ee831ea24855bfeb5bfa9ac3b11d7660f7eb7');
+INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27ddef46b925a253373a5356dda204659acab7d25d49907181ad5acd5b072d7b');
+INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f","messages_hash":"93ffe2201b58525b8c2bbfb5e8274cce94adff6a620f802469894da3d07d28f7","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'57e69fa76c4b984b10cb5298b96bb9c494d1145a5e5d34b610f31e716fa92363');
+INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ad6ec706094e79a6d286260b6da00c53a2d997b6f023769bf7ce7b15735b89f');
+INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e","messages_hash":"8cf0bdefca7c9f082895f573213c31fcaf679090b0ba4086356527122bb4ea1d","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'0f984909cee42f7eb53f923e18da8b8299d8ad49ce1569a0b4f38c1c55917b64');
+INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'02293511b2980779a305eddd01edf626d371e4d8e57087d2fd6d855dfe2b705a');
+INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2","messages_hash":"d9d40e4a4bf36c698f89003ec5b12162b0a8a69a3c6a787bf6b019bc4663952d","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'40329deb0871046a294987d50c5f8df9f162d554ba90c4260809942aa2ac24c1');
+INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7c8d5c5e960ed2375411a97c1fa6911aaeed29e8ffe8bbbd2d4450dfc2adeef');
+INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec","messages_hash":"1520317691e7972e26ec441c69e1c325c3f68af33b81b129000f03df21ac3ff4","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'ec1798d3d08b84fd25863be5ee98927e055856567aab6f7760f4a50c380b770c');
+INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c5b8fa8ba9697b40b52961bc63a6b3763677724f679a2255c18feb9d9f250856');
+INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779","messages_hash":"335b4ee753fa80bdaf49af4448b2556b211702cdbc6e879c31bc8883615586f7","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'d79cdc526a09285310d8dbe15dd426bcb57fe301efa8b05c06984f6ff7fd1aa3');
+INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc4753389eb0fa3508f6a6fd0dbfb23c405f29359f37c97365211f2fece22eb8');
+INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1","messages_hash":"be040e6eb65a044cc6ef71e63e215f93d0d1630ef5265d0b4aabecda92d39736","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'c670f755e6658a451a9dde5a23ba00763af99591fccf067ea6c0e120d3f01b7b');
+INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'65d093c054bc8ed216e78602d18c4b73ec409b5e234d51fd6dc47f36ae71f1d7');
+INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5","messages_hash":"e5767f2f7f04a2ef37312736fd5d191341b2b9342adf1c403eabe0c385cdd1d9","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'eff867be0cb5e43b1cc6725818de68a1b129f73f3751d7e440b707abd047ae62');
+INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'54f3b61ad0e574ee8186a056bb3c5a8e64b0df5c0cb52af187c26a3af074960f');
+INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914","messages_hash":"873efaa1183593ac12a37d9d4166ea1b4535f2825db80a2f71b737d15f265299","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'05e7784aa44ede1dfdc53fe2d4ee9accb8709787e9362dc217bd2e1a4c2a06ea');
+INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'90a2e870a681be977a7cd28220090e323813fc9e22dc9201254bcba282a19640');
+INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52","messages_hash":"3963f5c2f0b08d1181a5dd2f9074b03ab29d0c9967cf16d1bfb35a963360dd16","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'f4dc68dc14297b504c92ee3a04d4799b6cc7fd06d568a461943b8372769569c7');
+INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c7c2035c222a03c005f1e9ab1b6eb22c6bef8a825d1dcb273e675d7a1123fb6a');
+INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20","messages_hash":"8263796916d90637ca98afc47d057801ba14dd96efddaa27ad88b7dbdeb07e15","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'756950369072fe1271b330fc78c8a0f2609224524d01463e134b02d4e55c4c7d');
+INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'448d529081f9a2b657db7d0694696c76293dad9a1a6362d038a2e44dfd3a5274');
+INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f","messages_hash":"0bd4ae72810a6acbfa4129c446f371b48c5b21938cdd67488a4703633f376081","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'f62ab9ddd3b4501161e6a4c9cd2842c87dcbb4fd17f97c5fcb9cb3fae15e03e6');
+INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'30028c92f4e2532ed57773872414c5b60608803fae9bffc1f62fb90fc222dbc7');
+INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf","messages_hash":"9d2a21ab22a0cd25d5d3bfadb697ce48ae45b89a1231a59f5e2189b950bccfe3","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'d1b969f7be0714f7bf85932d8ac9e43c225910bdb69c59c36d5b2ee88bdf8f42');
+INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b6d14abff52132228e68a662dca3f22e5118120256e0539532f04af8378a004');
+INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c","messages_hash":"6a933def9bb004d37ae9ece8f5b7c01d628d5cc9029b59547e82ea9000f63ff3","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'00dd0892cb5af7488af5055b647301e0fc013c8398a1d63f42a3144a00543585');
+INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7e7e6deaed32d629e6ce869d1b3e25da412b84f957765950a036a0d53445dfd1');
+INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2","messages_hash":"fc971e9f6de6fe3655a6c79a15f620f8f24c7066a94fbc577368cefd73b26a1d","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'2b6b6b56195e83b5e3c05346c2cf64584ecc1359ba64b32646030641234767ef');
+INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'174e827ef0405dbb3a0d548848559eecf8654d62addbd19cf2f816eec989d240');
+INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82","messages_hash":"2cee1ba30e1b1be03ff712650d5f37b16ffc1e5630e3276a0eddabaad8591f8f","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'1750bb76ae6b901bafdcb6c91dd2f70d5cf23ae52b710e391f7a39d37cbec15d');
+INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3562340c5e217ff80ad983394150708205f44e1539079f3bbc6371ca88c33e4c');
+INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f","messages_hash":"31e4ea83f5958ff14927f00e62cbb52b245d3e6509834da426806b396cc117aa","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'9ecb8fffdf41cbd6e2e134a29dba8b478c249d17c8396cb1692a846ef3e659df');
+INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d048e2bbf3450fce09f81167d2b729bff69d187e52f859ab77548a2ec628bddc');
+INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5","messages_hash":"ede966fe3f835c5a48e474870b179d1ba1b7938744f6133a3804686c136e9f7f","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'719f2c34e6a00d26633ee935037f1800a4762ab43d282a97cb319a595eaeaff3');
+INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4ab9822dcbb77920f7ff66e9fb4f934226ca74ab9916d6282ff729561ee94e52');
+INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8","messages_hash":"193fa09a1d321e9e1eb9fadf56dbf46128a0e0f23276afb0af169be0a2714a51","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'3d1015a1f263567abfd0401796d2874c2d568f0aafc943f2bacd33f368d2c643');
+INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'48537366309fe15629c6a93afd6c8f7dd59c2ce607c2d563d8d7e262fb9de7db');
+INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1","messages_hash":"7112da51430ab9dfb8dba1fe06f52fcffdac61e146a50c73e95e1ecffa62b6fd","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'1db2cb99c6424e489cfcd59defbf62109fdf63a466e4d813943599bfaacbfaef');
+INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa5a9d987e6ba8f00cd526d5a253eda86a607bfb5c6969374ed4248c97d89a7c');
+INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728","messages_hash":"1b9aef26cd6d6e43ebc95c01db0ce8ccb05b8400955737643bef4458471f7c29","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'96d3f2b37f790f3f779023bc8ea5d7539d5f6716224876655fda46351981cb8e');
+INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5fe5f232fb3a1b40cda39102f711ab0c3564c844453ab2dbcd78518cac8671a');
+INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584","messages_hash":"ef1273df0c8d6bbe9078468440fe92eec3515e5985064775d453615448d836cd","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'8c2d7944b1a34e38af73b9087f04afa13689851f99ce810ab0aee31d85c90ec6');
+INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03ffd3312223294c2c952ae42e7b5a46147754d0213f9a9475e4829bd50683e6');
+INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65","messages_hash":"2d3ce8e66aa0fa6491fa43efa2de7264011d91dc04b6a7aa37d7974876c3c22a","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'d015a1d0cdfe9c58d9ff4bb5d6e3289232d854d7468b1b869ed5f795dab39410');
+INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49b4c02b371b539a908b62d4394f53ead1a9ccec893c2121d32beae3149deda4');
+INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12","messages_hash":"3a2b15d7772dd7a9d22d7bfcc558ec8da5713b427e25289eb809b4edeb673e2e","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'bb0c0fdb2dc24f3f68c4e20df6d76705c5ab91e8f9895237bea5aee8e2119158');
+INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87882080a60c35a4609da8afca89870b51dc77d6cbdf702eb8c34caf2cb48b0e');
+INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e","messages_hash":"8a30a60098f9f82a118549ec730568a44d5fa6eb3335a20aec2b44599039342d","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'55651d6a6431b271cd4c716b88e020abd285fa5390d95e6778a3a46ab71e3f84');
+INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a6bdc39b5be364606d64c1b024f028048827baf5633b3529de4c01f28f530c4');
+INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d","messages_hash":"a12df3e7bce37d8f4a9c4c0a2a3f367fb071142acff947cecc23173b4925fb53","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'541a49c153ceeba74c99fa1e434c50920190bf9773fbea6170b5b6bb5baf4dd8');
+INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4765de017bd682cc989229cb29b80fae7c8c55d24208be06458fa84138d702ee');
+INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe","messages_hash":"9e09c7b47df3a09f541b40931ccce3b512ca113a6d4dd5e6d3505e29bfea8e31","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'680670fda43d00496e85da21dcc0cf25506bb21cdd43ec0c55f50ce3c68cb2ac');
+INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dae8a4b7a8fb893eb354a676bc9aa41131b1086b033b08c1078de07a3d1c3362');
+INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a","messages_hash":"82e79417c7ec1856ced190d3fe19150f1510992e5abfd326b92edd143260259d","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'084f990c96dfcbc724458e54154757258c4b0ecc17255ab42a9c0db2dd4939de');
-- Triggers and indices on messages
CREATE TRIGGER block_update_messages
BEFORE UPDATE ON messages BEGIN
@@ -2266,6 +3097,7 @@ CREATE TABLE order_match_expirations(
tx1_address TEXT,
block_index INTEGER,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
+INSERT INTO order_match_expirations VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',310513);
-- Triggers and indices on order_match_expirations
CREATE TRIGGER block_update_order_match_expirations
BEFORE UPDATE ON order_match_expirations BEGIN
@@ -2309,6 +3141,7 @@ CREATE TABLE order_matches(
fee_paid INTEGER,
status TEXT);
INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'BTC',800000,310491,310492,310492,2000,2000,310512,7200,'pending');
+INSERT INTO order_matches VALUES('74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'BTC',800000,310491,310492,310513,2000,2000,310512,7200,'expired');
-- Triggers and indices on order_matches
CREATE TRIGGER block_update_order_matches
BEFORE UPDATE ON order_matches BEGIN
@@ -2396,6 +3229,8 @@ INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef318
INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,800000,'XCP',100000000,100000000,2000,312492,0,0,1000000,1000000,'open');
INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310492,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,0,'BTC',800000,0,2000,312491,900000,892800,6800,6800,'open');
INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310492,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,0,'XCP',100000000,0,2000,312492,0,0,1000000,992800,'open');
+INSERT INTO orders VALUES(492,'74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498',310513,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,100000000,'BTC',800000,800000,2000,312491,900000,900000,6800,6800,'open');
+INSERT INTO orders VALUES(493,'1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81',310513,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','BTC',800000,800000,'XCP',100000000,100000000,2000,312492,0,0,1000000,992800,'open');
-- Triggers and indices on orders
CREATE TRIGGER block_update_orders
BEFORE UPDATE ON orders BEGIN
@@ -2549,6 +3384,7 @@ CREATE TABLE bet_expirations(
source TEXT,
block_index INTEGER,
FOREIGN KEY (block_index) REFERENCES blocks(block_index));
+INSERT INTO bet_expirations VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',310588);
-- Triggers and indices on bet_expirations
CREATE INDEX bet_expirations_block_index_idx ON bet_expirations (block_index)
;
@@ -2594,6 +3430,7 @@ INSERT INTO bets VALUES(21,'5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3
INSERT INTO bets VALUES(102,'db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e',310101,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',3,1388000200,10,10,10,10,0.0,5040,1000,311101,5000000,'open');
INSERT INTO bets VALUES(113,'d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048',310112,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',3,1388000200,10,10,10,10,0.0,5040,1000,311112,5000000,'open');
INSERT INTO bets VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310487,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',1,1388000001,9,9,9,9,0.0,5040,100,310587,5000000,'open');
+INSERT INTO bets VALUES(488,'41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM',1,1388000001,9,9,9,9,0.0,5040,100,310587,5000000,'expired');
-- Triggers and indices on bets
CREATE INDEX bets_block_index_idx ON bets (block_index)
;
@@ -2798,42 +3635,53 @@ BEGIN TRANSACTION;
-- Table issuances
DROP TABLE IF EXISTS issuances;
-CREATE TABLE "issuances"(
- tx_index INTEGER,
- tx_hash TEXT,
- msg_index INTEGER DEFAULT 0,
- block_index INTEGER,
- asset TEXT,
- quantity INTEGER,
- divisible BOOL,
- source TEXT,
- issuer TEXT,
- transfer BOOL,
- callable BOOL,
- call_date INTEGER,
- call_price REAL,
- description TEXT,
- fee_paid INTEGER,
- locked BOOL,
- status TEXT,
- asset_longname TEXT,
- reset BOOL,
- PRIMARY KEY (tx_index, msg_index),
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
- UNIQUE (tx_hash, msg_index));
-INSERT INTO issuances VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',0,310001,'DIVISIBLE',100000000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Divisible asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',0,310002,'NODIVISIBLE',1000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'No divisible asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',0,310003,'CALLABLE',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Callable asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',0,310004,'LOCKED',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',0,310005,'LOCKED',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0);
-INSERT INTO issuances VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',0,310016,'MAXI',9223372036854775807,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Maximum quantity',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',0,310109,'PAYTOSCRIPT',1000,0,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',0,0,0,0.0,'PSH issued asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',0,310113,'LOCKEDPREV',1000,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',0,310114,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0);
-INSERT INTO issuances VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',0,310115,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'changed',0,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',0,310494,'DIVIDEND',100,1,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH',0,0,0,0.0,'',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',0,310497,'PARENT',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Parent asset',50000000,0,'valid',NULL,0);
-INSERT INTO issuances VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',0,310498,'A95428956661682277',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Child of parent',25000000,0,'valid','PARENT.already.issued',0);
+CREATE TABLE issuances(
+ tx_index INTEGER,
+ tx_hash TEXT,
+ msg_index INTEGER DEFAULT 0,
+ block_index INTEGER,
+ asset TEXT,
+ quantity INTEGER,
+ divisible BOOL,
+ source TEXT,
+ issuer TEXT,
+ transfer BOOL,
+ callable BOOL,
+ call_date INTEGER,
+ call_price REAL,
+ description TEXT,
+ fee_paid INTEGER,
+ locked BOOL,
+ status TEXT,
+ asset_longname TEXT,
+ reset BOOL,
+ description_locked BOOL,
+ fair_minting BOOL DEFAULT 0,
+ PRIMARY KEY (tx_index, msg_index),
+ UNIQUE (tx_hash, msg_index)
+ );
+INSERT INTO issuances VALUES(2,'1fc2e5a57f584b2f2edd05676e75c33d03eed1d3098cc0550ea33474e3ec9db1',0,310001,'DIVISIBLE',100000000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Divisible asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(3,'7b1bf5144346279271b1ff78664f118224fe27fd8679d6c1519345f9c6c54584',0,310002,'NODIVISIBLE',1000,0,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'No divisible asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(4,'c26f3a0c4e57e41919ff27aae95a9a9d4d65d34c6da6f1893884a17c8d407140',0,310003,'CALLABLE',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Callable asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(5,'90b5734be98b0f2a0bd4b6a269c8db3368e2e387bb890ade239951d05423b4da',0,310004,'LOCKED',1000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(6,'344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc',0,310005,'LOCKED',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(17,'bd4e9cbbe69c2db893cd32182a2d315c89c45ba4e31aa5775d1fe42d841cea39',0,310016,'MAXI',9223372036854775807,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Maximum quantity',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(110,'e8baf787b9e4636a3cad0ffeb62992ad7abb160dc6506af0546f566dc178de7e',0,310109,'PAYTOSCRIPT',1000,0,'2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy',0,0,0,0.0,'PSH issued asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(114,'34bce6f409758b3d6fd13282a99b277ef1fdf44a1025d2901075cac0249dbc63',0,310113,'LOCKEDPREV',1000,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(115,'025b810fce7735c5869b90846007e5f604f60c1beda4c1695f1c7fbec3d44bc2',0,310114,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'Locked asset',0,1,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(116,'4ab1a24283c1dbfc710be7b215d64e8a4510ee97af019e210049c25773b50beb',0,310115,'LOCKEDPREV',0,1,'mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42','mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42',0,0,0,0.0,'changed',0,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(495,'321bed395482e034f2ce0a4dbf28d1f800592a658e26ea91ae9c5b0928204503',0,310494,'DIVIDEND',100,1,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH',0,0,0,0.0,'',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(498,'076ae3d8eeb7fb40d2ae27692340157c746d9832806766b0dac5adb1526dc78f',0,310497,'PARENT',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Parent asset',50000000,0,'valid',NULL,0,0,0);
+INSERT INTO issuances VALUES(499,'0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf',0,310498,'A95428956661682277',100000000,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'Child of parent',25000000,0,'valid','PARENT.already.issued',0,0,0);
+INSERT INTO issuances VALUES(500,'a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',0,310499,'FREEFAIRMIN',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(501,'13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',0,310500,'PAIDFAIRMIN',0,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(502,'d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',0,310501,'FREEFAIRMIN',10,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',0,0,'valid','',0,0,1);
+INSERT INTO issuances VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',0,310502,'RAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',0,310503,'QAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,310504,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,NULL,1);
+INSERT INTO issuances VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',0,310505,'A160361285792733729',10,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1);
+INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,1,'valid','',0,1,0);
+INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0);
-- Triggers and indices on issuances
CREATE TRIGGER block_update_issuances
BEFORE UPDATE ON issuances BEGIN
@@ -2873,21 +3721,23 @@ CREATE TABLE "sends"(
asset TEXT,
quantity INTEGER,
status TEXT,
- msg_index INTEGER DEFAULT 0, memo BLOB,
+ msg_index INTEGER DEFAULT 0, memo BLOB, fee_paid INTEGER DEFAULT 0,
PRIMARY KEY (tx_index, msg_index),
FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index),
UNIQUE (tx_hash, msg_index) ON CONFLICT FAIL);
-INSERT INTO sends VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'valid',0,NULL);
-INSERT INTO sends VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,NULL);
-INSERT INTO sends VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'valid',0,NULL);
-INSERT INTO sends VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'valid',0,NULL);
-INSERT INTO sends VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'valid',0,NULL);
-INSERT INTO sends VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'valid',0,NULL);
-INSERT INTO sends VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'valid',0,NULL);
-INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,X'68656C6C6F');
-INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001');
-INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL);
-INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL);
+INSERT INTO sends VALUES(8,'6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753',310007,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','DIVISIBLE',100000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(9,'4fd55abadfdbe77c3bda2431749cca934a29994a179620a62c1b57f28bd62a43',310008,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(13,'698e97e507da8623cf38ab42701853443c8f7fe0d93b4674aabb42f9800ee9d6',310012,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','XCP',300000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(14,'0cfeeb559ed794d067557df0376a6c213b48b174b80cdb2c3c6d365cf538e132',310013,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','DIVISIBLE',1000000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(15,'1facb0072f16f6bdca64ea859c82b850f58f0ec7ff410d901679772a4727515a',310014,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','NODIVISIBLE',5,'valid',0,NULL,0);
+INSERT INTO sends VALUES(16,'e3b6667b7baa515048a7fcf2be7818e3e7622371236b78e19b4b08e2d7e7818c',310015,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2','NODIVISIBLE',10,'valid',0,NULL,0);
+INSERT INTO sends VALUES(111,'f6a0f819e899b407cbfa07b4eff3d58902af3899abfbaa47d5f31d5b398e76e7',310110,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy','DIVISIBLE',100000000,'valid',0,NULL,0);
+INSERT INTO sends VALUES(482,'b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5',310481,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100000000,'valid',0,X'68656C6C6F',0);
+INSERT INTO sends VALUES(483,'c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34',310482,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100000000,'valid',0,X'FADE0001',0);
+INSERT INTO sends VALUES(496,'02156b9a1f643fb48330396274a37620c8abbbe5eddb2f8b53dadd135f5d2e2e',310495,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','DIVIDEND',10,'valid',0,NULL,0);
+INSERT INTO sends VALUES(497,'a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba',310496,'mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH','mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj','XCP',92945878046,'valid',0,NULL,0);
+INSERT INTO sends VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','XCP',100,'valid',0,NULL,10);
+INSERT INTO sends VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','DIVISIBLE',1,'valid',0,NULL,10);
-- Triggers and indices on sends
CREATE TRIGGER block_update_sends
BEFORE UPDATE ON sends BEGIN
@@ -3087,15 +3937,17 @@ BEGIN TRANSACTION;
-- Table destructions
DROP TABLE IF EXISTS destructions;
CREATE TABLE destructions(
- tx_index INTEGER PRIMARY KEY,
- tx_hash TEXT UNIQUE,
- block_index INTEGER,
- source TEXT,
- asset INTEGER,
- quantity INTEGER,
- tag TEXT,
- status TEXT,
- FOREIGN KEY (tx_index, tx_hash, block_index) REFERENCES transactions(tx_index, tx_hash, block_index));
+ tx_index INTEGER,
+ tx_hash TEXT,
+ block_index INTEGER,
+ source TEXT,
+ asset INTEGER,
+ quantity INTEGER,
+ tag TEXT,
+ status TEXT
+ );
+INSERT INTO destructions VALUES(508,'9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid');
+INSERT INTO destructions VALUES(509,'ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','valid');
-- Triggers and indices on destructions
CREATE TRIGGER block_update_destructions
BEFORE UPDATE ON destructions BEGIN
@@ -3133,6 +3985,12 @@ INSERT INTO assets VALUES('62667321322601','LOCKEDPREV',310113,NULL);
INSERT INTO assets VALUES('26819977213','DIVIDEND',310494,NULL);
INSERT INTO assets VALUES('178522493','PARENT',310497,NULL);
INSERT INTO assets VALUES('95428956661682277','A95428956661682277',310498,'PARENT.already.issued');
+INSERT INTO assets VALUES('799006024850293','FREEFAIRMIN',310499,NULL);
+INSERT INTO assets VALUES('2119202695289589','PAIDFAIRMIN',310500,NULL);
+INSERT INTO assets VALUES('2401536886596341','RAIDFAIRMIN',310502,NULL);
+INSERT INTO assets VALUES('2260369790942965','QAIDFAIRMIN',310503,NULL);
+INSERT INTO assets VALUES('160361285792733729','A160361285792733729',310504,NULL);
+INSERT INTO assets VALUES('154062662379','TESTDISP',310509,NULL);
-- Triggers and indices on assets
CREATE INDEX assets_asset_id_idx ON assets (asset_id)
;
@@ -3233,6 +4091,7 @@ CREATE TABLE dispensers(
last_status_tx_source TEXT,
close_block_index INTEGER);
INSERT INTO dispensers VALUES(108,'9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec',310107,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',100,100,100,0,100,NULL,NULL,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,NULL,NULL);
+INSERT INTO dispensers VALUES(511,'af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,100,100,0,100,NULL,NULL,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,NULL,NULL);
-- Triggers and indices on dispensers
CREATE TRIGGER block_update_dispensers
BEFORE UPDATE ON dispensers BEGIN
@@ -3340,3 +4199,132 @@ CREATE INDEX dispenser_refills_tx_hash_idx ON dispenser_refills (tx_hash)
;
COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairminters
+DROP TABLE IF EXISTS fairminters;
+CREATE TABLE fairminters (
+ tx_hash TEXT,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ asset TEXT,
+ asset_parent TEXT,
+ asset_longname TEXT,
+ description TEXT,
+ price INTEGER,
+ quantity_by_price INTEGER,
+ hard_cap INTEGER,
+ burn_payment BOOL,
+ max_mint_per_tx INTEGER,
+ premint_quantity INTEGER,
+ start_block INTEGER,
+ end_block INTEGER,
+ minted_asset_commission_int INTEGER,
+ soft_cap INTEGER,
+ soft_cap_deadline_block INTEGER,
+ lock_description BOOL,
+ lock_quantity BOOL,
+ divisible BOOL,
+ pre_minted BOOL DEFAULT 0,
+ status TEXT
+ );
+INSERT INTO fairminters VALUES('a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce',500,310499,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','FREEFAIRMIN','','','',0,1,0,0,10,0,0,0,0,0,0,0,0,1,0,'open');
+INSERT INTO fairminters VALUES('13e642d78db80af715cdce12a9fca81965752bbfb59549341fa4760da3d32afe',501,310500,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','PAIDFAIRMIN','','','',10,1,0,0,0,0,0,0,0,0,0,0,0,1,0,'open');
+INSERT INTO fairminters VALUES('9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN','','','',10,1,30,0,10,20,0,0,0,0,0,0,0,1,1,'open');
+INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','QAIDFAIRMIN','','','',10,1,50,0,0,20,0,0,50000000,20,400000,0,0,1,0,'open');
+INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open');
+INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'closed');
+-- Triggers and indices on fairminters
+CREATE TRIGGER block_update_fairminters
+ BEFORE UPDATE ON fairminters BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairminters_asset_idx ON fairminters (asset)
+ ;
+CREATE INDEX fairminters_asset_longname_idx ON fairminters (asset_longname)
+ ;
+CREATE INDEX fairminters_asset_parent_idx ON fairminters (asset_parent)
+ ;
+CREATE INDEX fairminters_block_index_idx ON fairminters (block_index)
+ ;
+CREATE INDEX fairminters_source_idx ON fairminters (source)
+ ;
+CREATE INDEX fairminters_status_idx ON fairminters (status)
+ ;
+CREATE INDEX fairminters_tx_hash_idx ON fairminters (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table fairmints
+DROP TABLE IF EXISTS fairmints;
+CREATE TABLE fairmints (
+ tx_hash TEXT PRIMARY KEY,
+ tx_index INTEGER,
+ block_index INTEGER,
+ source TEXT,
+ fairminter_tx_hash TEXT,
+ asset TEXT,
+ earn_quantity INTEGER,
+ paid_quantity INTEGER,
+ commission INTEGER,
+ status TEXT
+ );
+INSERT INTO fairmints VALUES('d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67',502,310501,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce','FREEFAIRMIN',10,0,0,'valid');
+INSERT INTO fairmints VALUES('6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','A160361285792733729',7,100,3,'valid');
+INSERT INTO fairmints VALUES('ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9','A160361285792733729',14,200,6,'valid');
+-- Triggers and indices on fairmints
+CREATE TRIGGER block_update_fairmints
+ BEFORE UPDATE ON fairmints BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX fairmints_asset_idx ON fairmints (asset)
+ ;
+CREATE INDEX fairmints_block_index_idx ON fairmints (block_index)
+ ;
+CREATE INDEX fairmints_fairminter_tx_hash_idx ON fairmints (fairminter_tx_hash)
+ ;
+CREATE INDEX fairmints_source_idx ON fairmints (source)
+ ;
+CREATE INDEX fairmints_status_idx ON fairmints (status)
+ ;
+CREATE INDEX fairmints_tx_hash_idx ON fairmints (tx_hash)
+ ;
+
+COMMIT TRANSACTION;
+PRAGMA page_size=4096;
+-- PRAGMA encoding='UTF-8';
+-- PRAGMA auto_vacuum=FULL;
+-- PRAGMA max_page_count=4294967294;
+
+BEGIN TRANSACTION;
+
+-- Table transaction_count
+DROP TABLE IF EXISTS transaction_count;
+CREATE TABLE transaction_count(
+ block_index INTEGER,
+ transaction_id INTEGER,
+ count INTEGER);
+INSERT INTO transaction_count VALUES(310507,100,1);
+INSERT INTO transaction_count VALUES(310508,100,2);
+-- Triggers and indices on transaction_count
+CREATE TRIGGER block_update_transaction_count
+ BEFORE UPDATE ON transaction_count BEGIN
+ SELECT RAISE(FAIL, "UPDATES NOT ALLOWED");
+ END;
+CREATE INDEX transaction_count_block_index_transaction_id_idx ON transaction_count (block_index, transaction_id)
+ ;
+
+COMMIT TRANSACTION;
diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py
index 84990fae77..850b19a705 100644
--- a/counterparty-core/counterpartycore/test/fixtures/vectors.py
+++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py
@@ -9,16 +9,21 @@
"""
import binascii
-from fractions import Fraction
import bitcoin as bitcoinlib
from counterpartycore.lib import config, deserialize, exceptions, script # noqa: F401
from counterpartycore.lib.api.api_v1 import APIError
-from counterpartycore.lib.ledger import CreditError, DebitError
from counterpartycore.lib.messages import issuance
-from counterpartycore.lib.util import QuantityError, RPCError
+from counterpartycore.lib.util import RPCError
+from .contract_vectors.dispenser import DISPENSER_VECTOR
+from .contract_vectors.fairmint import FAIRMINT_VECTOR
+from .contract_vectors.fairminter import FAIRMINTER_VECTOR
+from .contract_vectors.gas import GAS_VECTOR
+from .contract_vectors.ledger import LEDGER_VECTOR
+from .contract_vectors.send import SEND_VECTOR
+from .contract_vectors.utxo import UTXO_VECTOR
from .params import (
ADDR,
MULTISIGADDR,
@@ -30,11215 +35,10199 @@
DEFAULT_PARAMS as DP,
)
-UNITTEST_VECTOR = {
- "bet": {
- "validate": [
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 0,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": ([], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 0,
- 1488000100,
- 2**32,
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": ([], 15120),
- },
- {
- "in": (
- ADDR[0],
- ADDR[1],
- 3,
- 1388001000,
- DP["small"],
- DP["small"],
- 0.0,
- 5040,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["feed doesn’t exist"], 5040),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- -1,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["unknown bet type"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 2,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["leverage used with Equal or NotEqual"], 15120),
- },
- {
- "in": (
- P2SH_ADDR[0],
- ADDR[0],
- 0,
- 1488000100,
- 2**32,
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": ([], 15120),
- },
- {
- "in": (
- ADDR[0],
- P2SH_ADDR[0],
- 0,
- 1488000100,
- 2**32,
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": ([], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 3,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 5000,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["leverage used with Equal or NotEqual", "leverage level too low"], 5000),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- 312350,
- ),
- "out": (["CFDs temporarily disabled"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- 1.1 * DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["wager_quantity must be in satoshis"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- 1.1 * DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["counterwager_quantity must be in satoshis"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- 1.1 * DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["expiration must be expressed as an integer block delta"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- -1 * DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["non‐positive wager"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- -1 * DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["non‐positive counterwager"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[2],
- 1,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["feed is locked"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- -1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["deadline in that feed’s past", "negative deadline"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- -1 * DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["negative expiration"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- DP["small"],
- 1.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["CFDs have no target value"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 2,
- 1488000100,
- DP["small"],
- DP["small"],
- -1.0,
- 5040,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["negative target value"], 5040),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- 8095,
- DP["default_block_index"],
- ),
- "out": (["expiration overflow"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- 2**63,
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["integer overflow"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- 2**63,
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["integer overflow"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 2**63,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["integer overflow", "unknown bet type"], 15120),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 2**63,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["integer overflow"], 2**63),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 1,
- 2**63,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- DP["default_block_index"],
- ),
- "out": (["integer overflow"], 15120),
- },
- ],
- "compose": [
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 0,
- 1488000100,
- 2**32,
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- ),
- "error": (exceptions.ComposeError, "insufficient funds"),
- },
- {
- "in": (
- ADDR[1],
- ADDR[0],
- 0,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- ),
- "out": (
- ADDR[1],
- [(ADDR[0], None)],
- b"\x00\x00\x00(\x00\x00X\xb1\x14d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- ),
- },
- {
- "in": (
- P2SH_ADDR[0],
- ADDR[0],
- 0,
- 1488000100,
- DP["small"],
- DP["small"],
- 0.0,
- 15120,
- DP["expiration"],
- ),
- "out": (
- P2SH_ADDR[0],
- [(ADDR[0], None)],
- b"\x00\x00\x00(\x00\x00X\xb1\x14d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- ),
- },
- ],
- "parse": [
- {
- "in": (
- {
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "block_time": 310501000,
- "data": b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "btc_amount": 5430,
- "tx_index": 502,
- "tx_hash": "a0ed83b170344b996bdd71799dd774ab10f5410f8572079a292f681d36ebc42c",
- "fee": 10000,
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- },
- ),
- "out": None,
- },
- {
- "comment": "1",
- "in": (
- {
- "fee": 10000,
- "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
- "data": b"\x00\x00\x00(\x00\x00X\xb1\x14\x00\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\xb0\x00\x00\x00\n",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_index": DP["default_block_index"],
- "btc_amount": 5430,
- "tx_index": 502,
- "supported": 1,
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_time": 310501000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- },
- ),
- "records": [
- {
- "table": "bets",
- "values": {
- "bet_type": 0,
+UNITTEST_VECTOR_ = UTXO_VECTOR | GAS_VECTOR
+
+UNITTEST_VECTOR = (
+ FAIRMINTER_VECTOR
+ | FAIRMINT_VECTOR
+ | LEDGER_VECTOR
+ | UTXO_VECTOR
+ | SEND_VECTOR
+ | DISPENSER_VECTOR
+ | GAS_VECTOR
+ | {
+ "bet": {
+ "validate": [
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 0,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": ([], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 0,
+ 1488000100,
+ 2**32,
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": ([], 15120),
+ },
+ {
+ "in": (
+ ADDR[0],
+ ADDR[1],
+ 3,
+ 1388001000,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 5040,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["feed doesn’t exist"], 5040),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ -1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["unknown bet type"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 2,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["leverage used with Equal or NotEqual"], 15120),
+ },
+ {
+ "in": (
+ P2SH_ADDR[0],
+ ADDR[0],
+ 0,
+ 1488000100,
+ 2**32,
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": ([], 15120),
+ },
+ {
+ "in": (
+ ADDR[0],
+ P2SH_ADDR[0],
+ 0,
+ 1488000100,
+ 2**32,
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": ([], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 3,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 5000,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (
+ ["leverage used with Equal or NotEqual", "leverage level too low"],
+ 5000,
+ ),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ 312350,
+ ),
+ "out": (["CFDs temporarily disabled"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ 1.1 * DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["wager_quantity must be in satoshis"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ 1.1 * DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["counterwager_quantity must be in satoshis"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ 1.1 * DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["expiration must be expressed as an integer block delta"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ -1 * DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["non‐positive wager"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ -1 * DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["non‐positive counterwager"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[2],
+ 1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["feed is locked"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ -1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["deadline in that feed’s past", "negative deadline"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ -1 * DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["negative expiration"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 1.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["CFDs have no target value"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 2,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ -1.0,
+ 5040,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["negative target value"], 5040),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ 8095,
+ DP["default_block_index"],
+ ),
+ "out": (["expiration overflow"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ 2**63,
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["integer overflow"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ 2**63,
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["integer overflow"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 2**63,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["integer overflow", "unknown bet type"], 15120),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 2**63,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["integer overflow"], 2**63),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 1,
+ 2**63,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ DP["default_block_index"],
+ ),
+ "out": (["integer overflow"], 15120),
+ },
+ ],
+ "compose": [
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 0,
+ 1488000100,
+ 2**32,
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ ),
+ "error": (exceptions.ComposeError, "insufficient funds"),
+ },
+ {
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ 0,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ ),
+ "out": (
+ ADDR[1],
+ [(ADDR[0], None)],
+ b"\x00\x00\x00(\x00\x00X\xb1\x14d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ ),
+ },
+ {
+ "in": (
+ P2SH_ADDR[0],
+ ADDR[0],
+ 0,
+ 1488000100,
+ DP["small"],
+ DP["small"],
+ 0.0,
+ 15120,
+ DP["expiration"],
+ ),
+ "out": (
+ P2SH_ADDR[0],
+ [(ADDR[0], None)],
+ b"\x00\x00\x00(\x00\x00X\xb1\x14d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "in": (
+ {
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "block_time": 310501000,
+ "data": b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"block_index": DP["default_block_index"],
- "counterwager_quantity": 0,
- "counterwager_remaining": 0,
- "deadline": 1488000000,
- "expiration": 10,
- "expire_index": DP["default_block_index"] + 10,
- "fee_fraction_int": 5000000,
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "leverage": 5040,
+ "supported": 1,
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "a0ed83b170344b996bdd71799dd774ab10f5410f8572079a292f681d36ebc42c",
+ "fee": 10000,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ ),
+ "out": None,
+ },
+ {
+ "comment": "1",
+ "in": (
+ {
+ "fee": 10000,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "data": b"\x00\x00\x00(\x00\x00X\xb1\x14\x00\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\xb0\x00\x00\x00\n",
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: non‐positive counterwager",
- "target_value": 0.0,
+ "block_index": DP["default_block_index"],
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 0,
+ "block_index": DP["default_block_index"],
+ "counterwager_quantity": 0,
+ "counterwager_remaining": 0,
+ "deadline": 1488000000,
+ "expiration": 10,
+ "expire_index": DP["default_block_index"] + 10,
+ "fee_fraction_int": 5000000,
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "leverage": 5040,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: non‐positive counterwager",
+ "target_value": 0.0,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "tx_index": DP["default_tx_index"],
+ "wager_quantity": 100000000,
+ "wager_remaining": 100000000,
+ },
+ }
+ ],
+ },
+ {
+ "comment": "P2SH",
+ "in": (
+ {
+ "fee": 10000,
"tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
- "tx_index": 502,
- "wager_quantity": 100000000,
- "wager_remaining": 100000000,
- },
- }
- ],
- },
- {
- "comment": "P2SH",
- "in": (
- {
- "fee": 10000,
- "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
- "data": b"\x00\x00\x00(\x00\x00X\xb1\x14\x00\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\xb0\x00\x00\x00\n",
- "source": P2SH_ADDR[0],
- "block_index": 310501,
- "btc_amount": 5430,
- "tx_index": 502,
- "supported": 1,
- "destination": P2SH_ADDR[0],
- "block_time": 310501000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- },
- ),
- "records": [
- {
- "table": "bets",
- "values": {
- "bet_type": 0,
- "block_index": 310501,
- "counterwager_quantity": 0,
- "counterwager_remaining": 0,
- "deadline": 1488000000,
- "expiration": 10,
- "expire_index": 310511,
- "fee_fraction_int": 5000000,
- "feed_address": P2SH_ADDR[0],
- "leverage": 5040,
+ "data": b"\x00\x00\x00(\x00\x00X\xb1\x14\x00\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\xb0\x00\x00\x00\n",
"source": P2SH_ADDR[0],
- "status": "invalid: non‐positive counterwager",
- "target_value": 0.0,
- "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
- "tx_index": 502,
- "wager_quantity": 100000000,
- "wager_remaining": 100000000,
- },
- }
- ],
- },
- {
- "in": (
- {
- "supported": 1,
- "data": b"\x00\x00\x00(\x00\x02R\xbb3\xc8\x00\x00\x00\x00\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\xb0\x00\x00\x03\xe8",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "btc_amount": 5430,
- "block_index": DP["default_block_index"],
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "tx_hash": "30b9ca8488a931dffa1d8d3ac8f1c51360a29cedb7c703840becc8a95f81188c",
- "block_time": 310501000,
- "fee": 10000,
- },
- ),
- "records": [
- {
- "table": "bets",
- "values": {
- "bet_type": 2,
"block_index": DP["default_block_index"],
- "counterwager_quantity": 10,
- "counterwager_remaining": 0,
- "deadline": 1388000200,
- "expiration": 1000,
- "expire_index": 311501,
- "fee_fraction_int": 5000000,
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "leverage": 5040,
+ "btc_amount": 5430,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "destination": P2SH_ADDR[0],
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ },
+ ),
+ "records": [
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 0,
+ "block_index": DP["default_block_index"],
+ "counterwager_quantity": 0,
+ "counterwager_remaining": 0,
+ "deadline": 1488000000,
+ "expiration": 10,
+ "expire_index": DP["default_block_index"] + 10,
+ "fee_fraction_int": 5000000,
+ "feed_address": P2SH_ADDR[0],
+ "leverage": 5040,
+ "source": P2SH_ADDR[0],
+ "status": "invalid: non‐positive counterwager",
+ "target_value": 0.0,
+ "tx_hash": "72a62abedd38d5f667150929c24dc1d7465dd81ab1502974814d20c1f65d871f",
+ "tx_index": DP["default_tx_index"],
+ "wager_quantity": 100000000,
+ "wager_remaining": 100000000,
+ },
+ }
+ ],
+ },
+ {
+ "in": (
+ {
+ "supported": 1,
+ "data": b"\x00\x00\x00(\x00\x02R\xbb3\xc8\x00\x00\x00\x00\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\xb0\x00\x00\x03\xe8",
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "filled",
- "target_value": 0.0,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "btc_amount": 5430,
+ "block_index": DP["default_block_index"],
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
"tx_hash": "30b9ca8488a931dffa1d8d3ac8f1c51360a29cedb7c703840becc8a95f81188c",
- "tx_index": 502,
- "wager_quantity": 10,
- "wager_remaining": 0,
+ "block_time": 310501000,
+ "fee": 10000,
},
- },
- {
- "table": "bets",
- "values": {
- "bet_type": 3,
+ ),
+ "records": [
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 2,
+ "block_index": DP["default_block_index"],
+ "counterwager_quantity": 10,
+ "counterwager_remaining": 0,
+ "deadline": 1388000200,
+ "expiration": 1000,
+ "expire_index": DP["default_block_index"] + 1000,
+ "fee_fraction_int": 5000000,
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "leverage": 5040,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "filled",
+ "target_value": 0.0,
+ "tx_hash": "30b9ca8488a931dffa1d8d3ac8f1c51360a29cedb7c703840becc8a95f81188c",
+ "tx_index": DP["default_tx_index"],
+ "wager_quantity": 10,
+ "wager_remaining": 0,
+ },
+ },
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 3,
+ "block_index": DP["default_block_index"],
+ "counterwager_quantity": 10,
+ "counterwager_remaining": 0,
+ "deadline": 1388000200,
+ "expiration": 1000,
+ "expire_index": 311101,
+ "fee_fraction_int": 5000000,
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "leverage": 5040,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "filled",
+ "target_value": 0.0,
+ "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ "tx_index": 102,
+ "wager_quantity": 10,
+ "wager_remaining": 0,
+ },
+ },
+ ],
+ },
+ ],
+ "get_fee_fraction": [
+ {"in": (ADDR[1],), "out": (0)},
+ {"in": (P2SH_ADDR[0],), "out": (0.05)},
+ {"in": (ADDR[0],), "out": (0.05)},
+ {"in": (ADDR[2],), "out": (0)},
+ ],
+ # TODO: Test match by calling parse. Add all skipping modes
+ "match": [
+ {"in": ({"tx_index": 99999999, "tx_hash": "fakehash"},), "out": None},
+ {
+ "in": (
+ {
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
"block_index": DP["default_block_index"],
- "counterwager_quantity": 10,
- "counterwager_remaining": 0,
- "deadline": 1388000200,
- "expiration": 1000,
- "expire_index": 311101,
- "fee_fraction_int": 5000000,
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "leverage": 5040,
+ "supported": 1,
+ "block_time": 310501000,
+ "data": b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "filled",
- "target_value": 0.0,
- "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- "tx_index": 102,
- "wager_quantity": 10,
- "wager_remaining": 0,
+ "btc_amount": 5430,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "fee": 10000,
+ "tx_hash": "a0ed83b170344b996bdd71799dd774ab10f5410f8572079a292f681d36ebc42c",
+ "tx_index": DP["default_tx_index"],
},
- },
- ],
- },
- ],
- "get_fee_fraction": [
- {"in": (ADDR[1],), "out": (0)},
- {"in": (P2SH_ADDR[0],), "out": (0.05)},
- {"in": (ADDR[0],), "out": (0.05)},
- {"in": (ADDR[2],), "out": (0)},
- ],
- # TODO: Test match by calling parse. Add all skipping modes
- "match": [
- {"in": ({"tx_index": 99999999, "tx_hash": "fakehash"},), "out": None},
- {
- "in": (
- {
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "block_time": 310501000,
- "data": b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "btc_amount": 5430,
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "fee": 10000,
- "tx_hash": "a0ed83b170344b996bdd71799dd774ab10f5410f8572079a292f681d36ebc42c",
- "tx_index": 502,
- },
- ),
- "out": None,
- },
- ],
- # Testing expiration of normal bets is impossible - either the bet is expired automatically with expiry < DP['default_block_index'] - 1 or
- # with expire > DP['default_block_index'] - 1 insert fails with FOREIGN KEY error on block_index (which doesn't exist). With expiry DP['default_block_index'] - 1 nothing happens.
- # Testing bet_match expirations is impossible too, since if you add a bet_match with 'pending' status to the fixtures, it raises a ConsensusError in blocks.parse_block.
- # 'expire': [{
- # 'in': (DP['default_block_index'] - 1, 5388000200,),
- # 'records': [
- # {'table': 'bet_match_expirations', 'values': {
- # 'bet_match_id': '94c900515ecf53680e98d51216c520ccb6b91a72d5aff7f62665d6328d4db832_ee5ea2ce1a423157bbb1edbabcadf2dc3adcd328d17c52c44f63dbda835f9125',
- # 'block_index': DP['default_block_index'] - 1,
- # 'tx0_address': 'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',
- # 'tx1_address': 'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',
- # }}
- # ]
- # }],
- "cancel_bet": [
- {
- "in": (
- {
- "counterwager_quantity": 10,
- "wager_remaining": 10,
- "target_value": 0.0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "counterwager_remaining": 10,
- "tx_index": 102,
- "block_index": 310101,
- "deadline": 1388000200,
- "bet_type": 3,
- "expiration": 1000,
- "expire_index": 311101,
- "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- "leverage": 5040,
- "wager_quantity": 10,
- "fee_fraction_int": 5000000,
- "status": "open",
- },
- "filled",
- DP["default_block_index"],
- 0,
- ),
- "records": [
- {
- "table": "bets",
- "values": {
- "bet_type": 3,
- "expiration": 1000,
- "expire_index": 311101,
- "block_index": 310500,
- "deadline": 1388000200,
+ ),
+ "out": None,
+ },
+ ],
+ # Testing expiration of normal bets is impossible - either the bet is expired automatically with expiry < DP['default_block_index'] - 1 or
+ # with expire > DP['default_block_index'] - 1 insert fails with FOREIGN KEY error on block_index (which doesn't exist). With expiry DP['default_block_index'] - 1 nothing happens.
+ # Testing bet_match expirations is impossible too, since if you add a bet_match with 'pending' status to the fixtures, it raises a ConsensusError in blocks.parse_block.
+ # 'expire': [{
+ # 'in': (DP['default_block_index'] - 1, 5388000200,),
+ # 'records': [
+ # {'table': 'bet_match_expirations', 'values': {
+ # 'bet_match_id': '94c900515ecf53680e98d51216c520ccb6b91a72d5aff7f62665d6328d4db832_ee5ea2ce1a423157bbb1edbabcadf2dc3adcd328d17c52c44f63dbda835f9125',
+ # 'block_index': DP['default_block_index'] - 1,
+ # 'tx0_address': 'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',
+ # 'tx1_address': 'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',
+ # }}
+ # ]
+ # }],
+ "cancel_bet": [
+ {
+ "in": (
+ {
"counterwager_quantity": 10,
"wager_remaining": 10,
+ "target_value": 0.0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"counterwager_remaining": 10,
"tx_index": 102,
- "fee_fraction_int": 5000000,
- "status": "filled",
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_index": 310101,
+ "deadline": 1388000200,
+ "bet_type": 3,
+ "expiration": 1000,
+ "expire_index": 311101,
+ "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
"leverage": 5040,
"wager_quantity": 10,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "target_value": 0.0,
- "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ "fee_fraction_int": 5000000,
+ "status": "open",
},
- }
- ],
- }
- ],
- "cancel_bet_match": [
- {
- "in": (
- {
- "tx0_block_index": 310019,
- "backward_quantity": 9,
- "initial_value": 1,
- "tx1_expiration": 100,
- "id": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "settled",
- "leverage": 5040,
- "target_value": 0.0,
- "fee_fraction_int": 5000000,
- "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "deadline": 1388000001,
- "tx1_bet_type": 0,
- "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx0_index": 20,
- "tx1_hash": "5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
- "tx0_hash": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1",
- "block_index": 310020,
- "forward_quantity": 9,
- "match_expire_index": 310119,
- "tx1_block_index": 310020,
- "tx0_expiration": 100,
- "tx1_index": 21,
- "tx0_bet_type": 1,
- },
- "filled",
- DP["default_block_index"],
- 0,
- ),
- "records": [
- {
- "table": "bet_matches",
- "values": {
+ "filled",
+ DP["default_block_index"],
+ 0,
+ ),
+ "records": [
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 3,
+ "expiration": 1000,
+ "expire_index": 311101,
+ "block_index": DP["default_block_index"] - 1,
+ "deadline": 1388000200,
+ "counterwager_quantity": 10,
+ "wager_remaining": 10,
+ "counterwager_remaining": 10,
+ "tx_index": 102,
+ "fee_fraction_int": 5000000,
+ "status": "filled",
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "leverage": 5040,
+ "wager_quantity": 10,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "target_value": 0.0,
+ "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ },
+ }
+ ],
+ }
+ ],
+ "cancel_bet_match": [
+ {
+ "in": (
+ {
+ "tx0_block_index": 310019,
"backward_quantity": 9,
- "block_index": 310500,
- "deadline": 1388000001,
- "fee_fraction_int": 5000000,
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "forward_quantity": 9,
- "id": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
"initial_value": 1,
+ "tx1_expiration": 100,
+ "id": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "settled",
"leverage": 5040,
- "match_expire_index": 310119,
- "status": "filled",
"target_value": 0.0,
+ "fee_fraction_int": 5000000,
"tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx0_bet_type": 1,
- "tx0_block_index": 310019,
- "tx0_expiration": 100,
- "tx0_hash": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1",
- "tx0_index": 20,
- "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "deadline": 1388000001,
"tx1_bet_type": 0,
- "tx1_block_index": 310020,
- "tx1_expiration": 100,
+ "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx0_index": 20,
"tx1_hash": "5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
+ "tx0_hash": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1",
+ "block_index": 310020,
+ "forward_quantity": 9,
+ "match_expire_index": 310119,
+ "tx1_block_index": 310020,
+ "tx0_expiration": 100,
"tx1_index": 21,
+ "tx0_bet_type": 1,
},
- }
- ],
- }
- ],
- },
- "gettxinfo": {
- "get_tx_info": [
- # data in OP_CHECKSIG script
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- # data in OP_CHECKMULTISIG script
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- # data in OP_CHECKMULTISIG script, destination = p2sh
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- {
- # 2 sources is actually invalid, but pre-first_input_is_source this was the consensus!
- "mock_protocol_changes": {"first_input_is_source": False},
- "comment": "data in OP_CHECKMULTISIG script , without first_input_is_source, 2 sources",
- "in": (
- deserialize.deserialize_tx(
- "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff5ef833190e74ad47d8ae693f841a8b1b500ded7e23ee66b29898b72ec4914fdc0100000000ffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aed2fe7c11000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns-mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- {
- "comment": "data in OP_CHECKMULTISIG script, with first_input_is_source, 1 source",
- "in": (
- deserialize.deserialize_tx(
- "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff5ef833190e74ad47d8ae693f841a8b1b500ded7e23ee66b29898b72ec4914fdc0100000000ffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aed2fe7c11000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- ],
- "get_tx_info_legacy": [
- # data in OP_CHECKSIG script
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00TESTXXXX\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00TESTXXXX\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00TESTXXXX\x00\x00\x00;\x10\x00\x00\x00\n\x9b\xb3Q\x92(6\xc8\x86\x81i\x87\xe1\x0b\x03\xb8_8v\x8b",
- [],
- ),
- },
- # # data in OP_CHECKMULTISIG script, unsupported by get_tx_info1
- # {
- # 'in': (b'0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000', DP['default_block_index']),
- # 'error': (exceptions.DecodeError, 'no prefix')
- # },
- # # data in OP_CHECKSIG script, destination = p2sh, unsupported by get_tx_info1
- # {
- # 'in': (b'0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff06361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8736150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000', DP['default_block_index']),
- # 'error': (exceptions.DecodeError, 'no prefix')
- # }
- ],
- "get_tx_info_new": [
- # data in OP_CHECKSIG script
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- # data in OP_CHECKMULTISIG script
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- # data in OP_CHECKMULTISIG script, destination = p2sh, unsupported by get_tx_info2
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- #'get_tx_info3'
- # data in OP_CHECKSIG script
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- None,
- True,
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- # data in OP_CHECKMULTISIG script
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- None,
- True,
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- # data in OP_CHECKMULTISIG script, destination = p2sh, unsupported by get_tx_info2
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- None,
- True,
- ),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- 5430,
- 10000,
- b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
- [],
- ),
- },
- {
- "in": (
- deserialize.deserialize_tx(
- "0100000001aee668de98ef5f37d4962b620b0ec3deed8bbd4c2fb8ddedaf36c2e8ca5e51a7060000001976a914f3a6b6e4a093e5a5b9da76977a5270fd4d62553e88acffffffff04781e000000000000695121027c6a5e4412be80b5ccd5aa0ea685a21e7a577a5e390d138288841d06514b47992103b00007171817fb044e8a5464e3e274210dd64cf68cca9ea9c3e06df384aae6b22103d928d7d5bbe6f435da935ed382a0061c4a22bdc9b60a2ce6deb7d0f134d22eef53ae781e000000000000695121037c6a5e4412be80b5cc13bde2d9b04fd2cd1fc7ff664c0d3b6d8133163857b08f2103bb6fba40bee91bb02b54835b32f14b9e04016bfa34411ec64f09e3a9586efd5d2103d928d7d5bbe6f435da935ed382a0061c4a22bdc9b60a2ce6deb7d0f134d22eef53ae781e00000000000069512102696a5e4412be80b5ccd6aa0ac9a95e43ca49a21d40f762fadc1aab1c25909fb02102176c68252c6b855d7967aee372f14b772c963b2aa0411ec64f09e3a951eefd3e2103d928d7d5bbe6f435da935ed382a0061c4a22bdc9b60a2ce6deb7d0f134d22eef53aea8d37700000000001976a914f3a6b6e4a093e5a5b9da76977a5270fd4d62553e88ac00000000",
- use_txid=True,
- ),
- DP["default_block_index"],
- None,
- True,
- ),
- "error": (exceptions.BTCOnlyError, "no data and not unspendable"),
- #'out': (0,)
- },
- ],
- },
- "blocks": {
- "parse_tx": [
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc-mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- "tx_index": 502,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- ),
- "out": None,
- },
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- "tx_index": 502,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns-mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- },
- ),
- "out": None,
- },
- ],
- "get_next_tx_index": [{"in": (), "out": 500}],
- },
- "cancel": {
- "compose": [
- {
- "in": (ADDR[1], "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e"),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [],
- b"\x00\x00\x00F\xdbN\xa0\x92\xbe\xa6\x03n=\x1e_n\xc8c\xdb\x9b\x90\x02R\xb4\xf4\xd6\xd9\xfa\xa6\x16S#\xf43\xc5\x1e",
- ),
- },
- {
- "in": (
- P2SH_ADDR[0],
- "d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048",
- ),
- "out": (
- P2SH_ADDR[0],
- [],
- b"\x00\x00\x00F\xd7\x9bY\x0eN\xc3\xe7L\xbc>\xb4\xd0\xf9V\xcez\xbb\x0e:\xf2\xcc\xac\x85\xff\x90\xed\x8a\xcf\x13\xf2\xe0H",
- ),
- },
- {
- "in": (ADDR[1], "foobar"),
- "error": (exceptions.ComposeError, ["no open offer with that hash"]),
- },
- {
- "in": (
- "foobar",
- "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- ),
- "error": (exceptions.ComposeError, ["incorrect source address"]),
- },
- {
- "in": (ADDR[1], "5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93"),
- "error": (exceptions.ComposeError, ["offer not open"]),
- },
- ],
- "parse": [
- {
- "in": (
- {
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "data": b"\x00\x00\x00F\xdbN\xa0\x92\xbe\xa6\x03n=\x1e_n\xc8c\xdb\x9b\x90\x02R\xb4\xf4\xd6\xd9\xfa\xa6\x16S#\xf43\xc5\x1e",
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "fee": 10000,
- "block_time": 310501000,
- "tx_hash": "fb645106e276bfa1abd587f4a251b26f491a2a9ae61ca46a669794109728b122",
- "destination": "",
- "supported": 1,
- },
- ),
- "out": None,
- },
- {
- "in": (
- {
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "data": b"\x00\x00\x00F\xdbN\xa0\x92\xbe\xa6\x03n=\x1e_n\xc8c\xdb\x9b\x90\x02R\xb4\xf4\xd6\xd9\xfa\xa6\x16S#\xf43\xc5\x1e",
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "fee": 10000,
- "block_time": 310501000,
- "tx_hash": "fb645106e276bfa1abd587f4a251b26f491a2a9ae61ca46a669794109728b122",
- "destination": "",
- "supported": 1,
- },
- ),
- "records": [
- {
- "table": "cancels",
- "values": {
- "block_index": DP["default_block_index"],
- "offer_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "tx_hash": "fb645106e276bfa1abd587f4a251b26f491a2a9ae61ca46a669794109728b122",
- "tx_index": 502,
- },
- },
- {
- "table": "bets",
- "values": {
- "bet_type": 3,
- "expiration": 1000,
- "expire_index": 311101,
- "block_index": DP["default_block_index"],
- "deadline": 1388000200,
- "counterwager_quantity": 10,
- "wager_remaining": 10,
- "counterwager_remaining": 10,
- "tx_index": 102,
- "fee_fraction_int": 5000000,
- "status": "cancelled",
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "leverage": 5040,
- "wager_quantity": 10,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "target_value": 0.0,
- "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- },
- },
- ],
- },
- ],
- },
- "broadcast": {
- "validate": [
- {
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "Unit Test",
- DP["default_block_index"],
- ),
- "out": ([]),
- },
- {
- "in": (
- P2SH_ADDR[0],
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "Unit Test",
- DP["default_block_index"],
- ),
- "out": ([]),
- },
- {
- "in": (
- ADDR[2],
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "Unit Test",
- DP["default_block_index"],
- ),
- "out": (["locked feed"]),
- },
- {
- "in": (ADDR[0], 1588000000, 1, 4294967296, "Unit Test", DP["default_block_index"]),
- "out": (["fee fraction greater than or equal to 1"]),
- },
- {
- "in": (
- ADDR[0],
- -1388000000,
- 1,
- DP["fee_multiplier"],
- "Unit Test",
- DP["default_block_index"],
- ),
- "out": (["negative timestamp", "feed timestamps not monotonically increasing"]),
- },
- {
- "in": (
- None,
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "Unit Test",
- DP["default_block_index"],
- ),
- "out": (["null source address"]),
- },
- {
- "comment": "test changing options to ADDRESS_OPTION_MAX_VALUE + 1 on a specific address",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- ADDR[5],
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "OPTIONS %i" % (config.ADDRESS_OPTION_MAX_VALUE + 1),
- DP["default_block_index"],
- ),
- "out": (["options out of range"]),
- },
- {
- "comment": "test changing options to -1 on a specific address",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- ADDR[5],
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "OPTIONS -1",
- DP["default_block_index"],
- ),
- "out": (["options integer overflow"]),
- },
- {
- "comment": "test changing options to non-int on a specific address",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- ADDR[5],
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "OPTIONS XCP",
- DP["default_block_index"],
- ),
- "out": (["options not an integer"]),
- },
- ],
- "compose": [
- {
- "comment": "test old text packing for short text",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (ADDR[0], 1588000000, 1, DP["fee_multiplier"], "Unit Test"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
- ),
- },
- {
- "in": (P2SH_ADDR[0], 1588000000, 1, DP["fee_multiplier"], "Unit Test"),
- "out": (
- P2SH_ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
- ),
- },
- {
- "comment": "test old text packing for 51 chars",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- 0,
- "Exactly 51 characters test test test test test tes.",
- ),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
- ),
- },
- {
- "comment": "test old text packing for 52 chars",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- 0,
- "Exactly 52 characters test test test test test test.",
- ),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
- ),
- },
- {
- "comment": "test old text packing for 53 chars",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- 0,
- "Exactly 53 characters test test test test test testt.",
- ),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Exactly 53 characters test test test test test testt.",
- ),
- },
- {
- "comment": "test old text packing for string with utf-8 char, "
- "THIS IS A BUG! but for consensus reasons we want to keep it in tact! the length byte should be 1 higher",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (ADDR[0], 1588000000, 1, 0, "This is an e with an: è."),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18This is an e with an: \xc3\xa8",
- ),
- },
- {
- "comment": "test old text packing for LOCK",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (ADDR[0], 1388000100, 50000000, 0, "LOCK"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
- ),
- },
- {
- "comment": "test current text packing for short text",
- "in": (ADDR[0], 1588000000, 1, DP["fee_multiplier"], "Unit Test"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
- ),
- },
- {
- "comment": "test current text packing for 51 chars",
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- 0,
- "Exactly 51 characters test test test test test tes.",
- ),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
- ),
- },
- {
- "comment": "test current text packing for 52 chars",
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- 0,
- "Exactly 52 characters test test test test test test.",
- ),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
- ),
- },
- {
- "comment": "test current text packing for 53 chars",
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- 0,
- "Exactly 53 characters test test test test test testt.",
- ),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x005Exactly 53 characters test test test test test testt.",
- ),
- },
- {
- "comment": "test current text packing for string with utf-8 char",
- "in": (ADDR[0], 1588000000, 1, 0, "This is an e with an: è."),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19This is an e with an: \xc3\xa8.",
- ),
- },
- {
- "comment": "test current text packing for LOCK",
- "in": (ADDR[0], 1388000100, 50000000, 0, "LOCK"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
- ),
- },
- {
- "in": (
- ADDR[0],
- 1588000000,
- 1,
- DP["fee_multiplier"],
- "Over 80 characters test test test test test test test test test test test test test test test test test test",
- ),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@lOver 80 characters test test test test test test test test test test test test test test test test test test",
- ),
- },
- {
- "comment": "test current text packing for 'OPTIONS 1'",
- "in": (ADDR[0], 1388000100, 50000000, 0, "OPTIONS 1"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 1",
- ),
- },
- {
- "comment": "test current text packing for 'OPTIONS 0'",
- "in": (ADDR[0], 1388000100, 50000000, 0, "OPTIONS 0"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 0",
- ),
- },
- ],
- "parse": [
- {
- "comment": "test old text unpacking for short text",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x06BARFOO",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "BARFOO",
- "timestamp": 1388000100,
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 50000000.0,
- },
- },
- ],
- },
- {
- "comment": "test old text unpacking for 51 chars",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "Exactly 51 characters test test test test test tes.",
- "timestamp": 1588000000,
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
- },
- },
- ],
- },
- {
- "comment": "test old text unpacking for 52 chars, "
- "THIS IS A BUG! but for consensus reasons we want to keep it in tact! the '4' from the length byte is added to the stored text",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "4Exactly 52 characters test test test test test test.",
- "timestamp": 1588000000,
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
- },
- },
- ],
- },
- {
- "comment": "test old text unpacking for 53 chars",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Exactly 53 characters test test test test test testt.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "Exactly 53 characters test test test test test testt.",
- "timestamp": 1588000000,
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
- },
- },
- ],
- },
- {
- "comment": "test old text packing for string with utf-8 char, "
- "THIS IS A BUG! but for consensus reasons we want to keep it in tact! the . is trimmed off because of a bad length byte",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18This is an e with an: \xc3\xa8.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "This is an e with an: è",
- "timestamp": 1588000000,
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
- },
- },
- ],
- },
- {
- "comment": "test old text unpacking for bet",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- {
- "fee": 10000,
- "btc_amount": 0,
- "supported": 1,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "block_time": 310501000,
- "destination": "",
- "block_index": DP["default_block_index"],
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
- "data": b"\x00\x00\x00\x1eR\xbb4,\xc0\x00\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 5000000,
- "locked": 0,
+ "filled",
+ DP["default_block_index"],
+ 0,
+ ),
+ "records": [
+ {
+ "table": "bet_matches",
+ "values": {
+ "backward_quantity": 9,
+ "block_index": DP["default_block_index"] - 1,
+ "deadline": 1388000001,
+ "fee_fraction_int": 5000000,
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "forward_quantity": 9,
+ "id": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1_5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
+ "initial_value": 1,
+ "leverage": 5040,
+ "match_expire_index": 310119,
+ "status": "filled",
+ "target_value": 0.0,
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx0_bet_type": 1,
+ "tx0_block_index": 310019,
+ "tx0_expiration": 100,
+ "tx0_hash": "2a2169991597036b6dad687ea1feffd55465a204466f40c35cbba811cb3109b1",
+ "tx0_index": 20,
+ "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx1_bet_type": 0,
+ "tx1_block_index": 310020,
+ "tx1_expiration": 100,
+ "tx1_hash": "5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
+ "tx1_index": 21,
+ },
+ }
+ ],
+ }
+ ],
+ },
+ "gettxinfo": {
+ "get_tx_info": [
+ # data in OP_CHECKSIG script
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ["4f4a408d8bd90ca994e1f6b0969a8fe1a6bcf33211a4b5bad876d26b6f3a666b:0"],
+ ),
+ },
+ # data in OP_CHECKMULTISIG script
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ["564501b070077eb6e978a547ae28a3e8ec4505da3de856f03a0d127750a44f11:0"],
+ ),
+ },
+ # data in OP_CHECKMULTISIG script, destination = p2sh
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ["1f9b910792994070699d898d59217df052bc3568d7b8e4e5d5bba485aa62c73a:0"],
+ ),
+ },
+ {
+ # 2 sources is actually invalid, but pre-first_input_is_source this was the consensus!
+ "mock_protocol_changes": {"first_input_is_source": False},
+ "comment": "data in OP_CHECKMULTISIG script , without first_input_is_source, 2 sources",
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff5ef833190e74ad47d8ae693f841a8b1b500ded7e23ee66b29898b72ec4914fdc0100000000ffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aed2fe7c11000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns-mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ["3481e0520d4f928617e86c0695f3d49faabb10b5432d44eb02e01141a4e6fc4d:0"],
+ ),
+ },
+ {
+ "comment": "data in OP_CHECKMULTISIG script, with first_input_is_source, 1 source",
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff5ef833190e74ad47d8ae693f841a8b1b500ded7e23ee66b29898b72ec4914fdc0100000000ffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753aed2fe7c11000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ["3481e0520d4f928617e86c0695f3d49faabb10b5432d44eb02e01141a4e6fc4d:0"],
+ ),
+ },
+ ],
+ "get_tx_info_legacy": [
+ # data in OP_CHECKSIG script
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00TESTXXXX\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00TESTXXXX\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00TESTXXXX\x00\x00\x00;\x10\x00\x00\x00\n\x9b\xb3Q\x92(6\xc8\x86\x81i\x87\xe1\x0b\x03\xb8_8v\x8b",
+ [],
+ ),
+ },
+ # # data in OP_CHECKMULTISIG script, unsupported by get_tx_info1
+ # {
+ # 'in': (b'0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000', DP['default_block_index']),
+ # 'error': (exceptions.DecodeError, 'no prefix')
+ # },
+ # # data in OP_CHECKSIG script, destination = p2sh, unsupported by get_tx_info1
+ # {
+ # 'in': (b'0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff06361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8736150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000', DP['default_block_index']),
+ # 'error': (exceptions.DecodeError, 'no prefix')
+ # }
+ ],
+ "get_tx_info_new": [
+ # data in OP_CHECKSIG script
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ),
+ },
+ # data in OP_CHECKMULTISIG script
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ),
+ },
+ # data in OP_CHECKMULTISIG script, destination = p2sh, unsupported by get_tx_info2
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ),
+ },
+ #'get_tx_info3'
+ # data in OP_CHECKSIG script
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0636150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac36150000000000001976a9147da51ea175f108a1c63588683dc4c43a7146c46788ac36150000000000001976a9147da51ea175f108a1c6358868173e34e8ca75a06788ac36150000000000001976a9147da51ea175f108a1c637729895c4c468ca75a06788ac36150000000000001976a9147fa51ea175f108a1c63588682ed4c468ca7fa06788ace24ff505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ None,
+ True,
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ),
+ },
+ # data in OP_CHECKMULTISIG script
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ None,
+ True,
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ),
+ },
+ # data in OP_CHECKMULTISIG script, destination = p2sh, unsupported by get_tx_info2
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87781e000000000000695121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae4286f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ None,
+ True,
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ 5430,
+ 10000,
+ b"\x00\x00\x00(\x00\x00R\xbb3d\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00;\x10\x00\x00\x00\n",
+ [],
+ ),
+ },
+ {
+ "in": (
+ deserialize.deserialize_tx(
+ "0100000001aee668de98ef5f37d4962b620b0ec3deed8bbd4c2fb8ddedaf36c2e8ca5e51a7060000001976a914f3a6b6e4a093e5a5b9da76977a5270fd4d62553e88acffffffff04781e000000000000695121027c6a5e4412be80b5ccd5aa0ea685a21e7a577a5e390d138288841d06514b47992103b00007171817fb044e8a5464e3e274210dd64cf68cca9ea9c3e06df384aae6b22103d928d7d5bbe6f435da935ed382a0061c4a22bdc9b60a2ce6deb7d0f134d22eef53ae781e000000000000695121037c6a5e4412be80b5cc13bde2d9b04fd2cd1fc7ff664c0d3b6d8133163857b08f2103bb6fba40bee91bb02b54835b32f14b9e04016bfa34411ec64f09e3a9586efd5d2103d928d7d5bbe6f435da935ed382a0061c4a22bdc9b60a2ce6deb7d0f134d22eef53ae781e00000000000069512102696a5e4412be80b5ccd6aa0ac9a95e43ca49a21d40f762fadc1aab1c25909fb02102176c68252c6b855d7967aee372f14b772c963b2aa0411ec64f09e3a951eefd3e2103d928d7d5bbe6f435da935ed382a0061c4a22bdc9b60a2ce6deb7d0f134d22eef53aea8d37700000000001976a914f3a6b6e4a093e5a5b9da76977a5270fd4d62553e88ac00000000",
+ use_txid=True,
+ ),
+ DP["default_block_index"],
+ None,
+ True,
+ ),
+ "error": (exceptions.BTCOnlyError, "no data and not unspendable"),
+ #'out': (0,)
+ },
+ ],
+ },
+ "blocks": {
+ "parse_tx": [
+ {
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc-mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ "tx_index": DP["default_tx_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ },
+ ),
+ "out": None,
+ },
+ {
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "text": "Unit Test",
- "timestamp": 1388000300,
- "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
- "tx_index": 502,
- "value": -2.0,
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ "tx_index": DP["default_tx_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns-mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
},
- },
- {
- "table": "bets",
- "values": {
- "bet_type": 3,
+ ),
+ "out": None,
+ },
+ ],
+ "get_next_tx_index": [{"in": (), "out": 512}],
+ },
+ "cancel": {
+ "compose": [
+ {
+ "in": (
+ ADDR[1],
+ "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ ),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [],
+ b"\x00\x00\x00F\xdbN\xa0\x92\xbe\xa6\x03n=\x1e_n\xc8c\xdb\x9b\x90\x02R\xb4\xf4\xd6\xd9\xfa\xa6\x16S#\xf43\xc5\x1e",
+ ),
+ },
+ {
+ "in": (
+ P2SH_ADDR[0],
+ "d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048",
+ ),
+ "out": (
+ P2SH_ADDR[0],
+ [],
+ b"\x00\x00\x00F\xd7\x9bY\x0eN\xc3\xe7L\xbc>\xb4\xd0\xf9V\xcez\xbb\x0e:\xf2\xcc\xac\x85\xff\x90\xed\x8a\xcf\x13\xf2\xe0H",
+ ),
+ },
+ {
+ "in": (ADDR[1], "foobar"),
+ "error": (exceptions.ComposeError, ["no open offer with that hash"]),
+ },
+ {
+ "in": (
+ "foobar",
+ "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ ),
+ "error": (exceptions.ComposeError, ["incorrect source address"]),
+ },
+ {
+ "in": (
+ ADDR[1],
+ "5c6562ddad0bc8a1faaded18813a65522cd273709acd190cf9d3271817eefc93",
+ ),
+ "error": (exceptions.ComposeError, ["offer not open"]),
+ },
+ ],
+ "parse": [
+ {
+ "in": (
+ {
"block_index": DP["default_block_index"],
- "counterwager_quantity": 10,
- "counterwager_remaining": 10,
- "deadline": 1388000200,
- "expiration": 1000,
- "expire_index": 311101,
- "fee_fraction_int": 5000000,
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "leverage": 5040,
+ "btc_amount": 0,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "dropped",
- "target_value": 0.0,
- "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- "tx_index": 102,
- "wager_quantity": 10,
- "wager_remaining": 10,
+ "data": b"\x00\x00\x00F\xdbN\xa0\x92\xbe\xa6\x03n=\x1e_n\xc8c\xdb\x9b\x90\x02R\xb4\xf4\xd6\xd9\xfa\xa6\x16S#\xf43\xc5\x1e",
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "fee": 10000,
+ "block_time": 310501000,
+ "tx_hash": "fb645106e276bfa1abd587f4a251b26f491a2a9ae61ca46a669794109728b122",
+ "destination": "",
+ "supported": 1,
},
- },
- ],
- },
- {
- "comment": "test old text unpacking for LOCK",
- "mock_protocol_changes": {"broadcast_pack_text": False},
- "in": (
- {
- "btc_amount": 0,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "destination": "",
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "supported": 1,
- "block_time": 310501000,
- "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
+ ),
+ "out": None,
+ },
+ {
+ "in": (
+ {
"block_index": DP["default_block_index"],
- "fee_fraction_int": None,
- "locked": 1,
+ "btc_amount": 0,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": None,
- "timestamp": 0,
- "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "value": None,
- },
- }
- ],
- },
- {
- "comment": "test current text unpacking for short text",
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x06BARFOO",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
+ "data": b"\x00\x00\x00F\xdbN\xa0\x92\xbe\xa6\x03n=\x1e_n\xc8c\xdb\x9b\x90\x02R\xb4\xf4\xd6\xd9\xfa\xa6\x16S#\xf43\xc5\x1e",
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "fee": 10000,
+ "block_time": 310501000,
+ "tx_hash": "fb645106e276bfa1abd587f4a251b26f491a2a9ae61ca46a669794109728b122",
+ "destination": "",
+ "supported": 1,
+ },
+ ),
+ "records": [
+ {
+ "table": "cancels",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "offer_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "tx_hash": "fb645106e276bfa1abd587f4a251b26f491a2a9ae61ca46a669794109728b122",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 3,
+ "expiration": 1000,
+ "expire_index": 311101,
+ "block_index": DP["default_block_index"],
+ "deadline": 1388000200,
+ "counterwager_quantity": 10,
+ "wager_remaining": 10,
+ "counterwager_remaining": 10,
+ "tx_index": 102,
+ "fee_fraction_int": 5000000,
+ "status": "cancelled",
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "leverage": 5040,
+ "wager_quantity": 10,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "target_value": 0.0,
+ "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ },
+ },
+ ],
+ },
+ ],
+ },
+ "broadcast": {
+ "validate": [
+ {
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "Unit Test",
+ DP["default_block_index"],
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ P2SH_ADDR[0],
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "Unit Test",
+ DP["default_block_index"],
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[2],
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "Unit Test",
+ DP["default_block_index"],
+ ),
+ "out": (["locked feed"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ 4294967296,
+ "Unit Test",
+ DP["default_block_index"],
+ ),
+ "out": (["fee fraction greater than or equal to 1"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ -1388000000,
+ 1,
+ DP["fee_multiplier"],
+ "Unit Test",
+ DP["default_block_index"],
+ ),
+ "out": (["negative timestamp", "feed timestamps not monotonically increasing"]),
+ },
+ {
+ "in": (
+ None,
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "Unit Test",
+ DP["default_block_index"],
+ ),
+ "out": (["null source address"]),
+ },
+ {
+ "comment": "test changing options to ADDRESS_OPTION_MAX_VALUE + 1 on a specific address",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ ADDR[5],
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "OPTIONS %i" % (config.ADDRESS_OPTION_MAX_VALUE + 1),
+ DP["default_block_index"],
+ ),
+ "out": (["options out of range"]),
+ },
+ {
+ "comment": "test changing options to -1 on a specific address",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ ADDR[5],
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "OPTIONS -1",
+ DP["default_block_index"],
+ ),
+ "out": (["options integer overflow"]),
+ },
+ {
+ "comment": "test changing options to non-int on a specific address",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ ADDR[5],
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "OPTIONS XCP",
+ DP["default_block_index"],
+ ),
+ "out": (["options not an integer"]),
+ },
+ ],
+ "compose": [
+ {
+ "comment": "test old text packing for short text",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (ADDR[0], 1588000000, 1, DP["fee_multiplier"], "Unit Test"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
+ ),
+ },
+ {
+ "in": (P2SH_ADDR[0], 1588000000, 1, DP["fee_multiplier"], "Unit Test"),
+ "out": (
+ P2SH_ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
+ ),
+ },
+ {
+ "comment": "test old text packing for 51 chars",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ 0,
+ "Exactly 51 characters test test test test test tes.",
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
+ ),
+ },
+ {
+ "comment": "test old text packing for 52 chars",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ 0,
+ "Exactly 52 characters test test test test test test.",
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
+ ),
+ },
+ {
+ "comment": "test old text packing for 53 chars",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ 0,
+ "Exactly 53 characters test test test test test testt.",
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Exactly 53 characters test test test test test testt.",
+ ),
+ },
+ {
+ "comment": "test old text packing for string with utf-8 char, "
+ "THIS IS A BUG! but for consensus reasons we want to keep it in tact! the length byte should be 1 higher",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (ADDR[0], 1588000000, 1, 0, "This is an e with an: è."),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18This is an e with an: \xc3\xa8",
+ ),
+ },
+ {
+ "comment": "test old text packing for LOCK",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (ADDR[0], 1388000100, 50000000, 0, "LOCK"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
+ ),
+ },
+ {
+ "comment": "test current text packing for short text",
+ "in": (ADDR[0], 1588000000, 1, DP["fee_multiplier"], "Unit Test"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
+ ),
+ },
+ {
+ "comment": "test current text packing for 51 chars",
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ 0,
+ "Exactly 51 characters test test test test test tes.",
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
+ ),
+ },
+ {
+ "comment": "test current text packing for 52 chars",
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ 0,
+ "Exactly 52 characters test test test test test test.",
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
+ ),
+ },
+ {
+ "comment": "test current text packing for 53 chars",
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ 0,
+ "Exactly 53 characters test test test test test testt.",
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x005Exactly 53 characters test test test test test testt.",
+ ),
+ },
+ {
+ "comment": "test current text packing for string with utf-8 char",
+ "in": (ADDR[0], 1588000000, 1, 0, "This is an e with an: è."),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19This is an e with an: \xc3\xa8.",
+ ),
+ },
+ {
+ "comment": "test current text packing for LOCK",
+ "in": (ADDR[0], 1388000100, 50000000, 0, "LOCK"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ 1588000000,
+ 1,
+ DP["fee_multiplier"],
+ "Over 80 characters test test test test test test test test test test test test test test test test test test",
+ ),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@lOver 80 characters test test test test test test test test test test test test test test test test test test",
+ ),
+ },
+ {
+ "comment": "test current text packing for 'OPTIONS 1'",
+ "in": (ADDR[0], 1388000100, 50000000, 0, "OPTIONS 1"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 1",
+ ),
+ },
+ {
+ "comment": "test current text packing for 'OPTIONS 0'",
+ "in": (ADDR[0], 1388000100, 50000000, 0, "OPTIONS 0"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 0",
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "comment": "test old text unpacking for short text",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x06BARFOO",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "BARFOO",
- "timestamp": 1388000100,
"tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 50000000.0,
},
- },
- ],
- },
- {
- "comment": "test current text unpacking for 51 chars",
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "BARFOO",
+ "timestamp": 1388000100,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 50000000.0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "test old text unpacking for 51 chars",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "Exactly 51 characters test test test test test tes.",
- "timestamp": 1588000000,
"tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
},
- },
- ],
- },
- {
- "comment": "test current text unpacking for 52 chars",
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "Exactly 51 characters test test test test test tes.",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "test old text unpacking for 52 chars, "
+ "THIS IS A BUG! but for consensus reasons we want to keep it in tact! the '4' from the length byte is added to the stored text",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "Exactly 52 characters test test test test test test.",
- "timestamp": 1588000000,
"tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
},
- },
- ],
- },
- {
- "comment": "test current text unpacking for 53 chars, ",
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x005Exactly 53 characters test test test test test testt.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "4Exactly 52 characters test test test test test test.",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "test old text unpacking for 53 chars",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Exactly 53 characters test test test test test testt.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "Exactly 53 characters test test test test test testt.",
- "timestamp": 1588000000,
"tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
},
- },
- ],
- },
- {
- "comment": "test current text packing for string with utf-8 char, ",
- "in": (
- {
- "destination": "",
- "block_index": DP["default_block_index"],
- "supported": 1,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19This is an e with an: \xc3\xa8.",
- "fee": 10000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 310501000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "Exactly 53 characters test test test test test testt.",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "test old text packing for string with utf-8 char, "
+ "THIS IS A BUG! but for consensus reasons we want to keep it in tact! the . is trimmed off because of a bad length byte",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18This is an e with an: \xc3\xa8.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": "This is an e with an: è.",
- "timestamp": 1588000000,
"tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
- "tx_index": 502,
- "value": 1.0,
},
- },
- ],
- },
- {
- "comment": "test current text unpacking for bet",
- "in": (
- {
- "fee": 10000,
- "btc_amount": 0,
- "supported": 1,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "block_time": 310501000,
- "destination": "",
- "block_index": DP["default_block_index"],
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
- "data": b"\x00\x00\x00\x1eR\xbb4,\xc0\x00\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "This is an e with an: è",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "test old text unpacking for bet",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ {
+ "fee": 10000,
+ "btc_amount": 0,
+ "supported": 1,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "block_time": 310501000,
+ "destination": "",
"block_index": DP["default_block_index"],
- "fee_fraction_int": 5000000,
- "locked": 0,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "text": "Unit Test",
- "timestamp": 1388000300,
"tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
- "tx_index": 502,
- "value": -2.0,
- },
- },
- {
- "table": "bets",
- "values": {
- "bet_type": 3,
- "block_index": DP["default_block_index"],
- "counterwager_quantity": 10,
- "counterwager_remaining": 10,
- "deadline": 1388000200,
- "expiration": 1000,
- "expire_index": 311101,
- "fee_fraction_int": 5000000,
- "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "leverage": 5040,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "dropped",
- "target_value": 0.0,
- "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- "tx_index": 102,
- "wager_quantity": 10,
- "wager_remaining": 10,
+ "data": b"\x00\x00\x00\x1eR\xbb4,\xc0\x00\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
},
- },
- ],
- },
- {
- "comment": "attempt to cancel bet on LOCKED feed, should keep bet open",
- "in": (
- {
- "fee": 10000,
- "btc_amount": 0,
- "supported": 1,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_index": 502,
- "block_time": 310501000,
- "destination": "",
- "block_index": DP["default_block_index"],
- "source": ADDR[4],
- "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
- "data": b"\x00\x00\x00\x1eR\xbb4,\xc0\x00\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": 5000000,
- "locked": 0,
- "source": ADDR[4],
- "status": "invalid: locked feed",
- "text": "Unit Test",
- "timestamp": 1388000300,
- "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
- "tx_index": 502,
- "value": -2.0,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 5000000,
+ "locked": 0,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "text": "Unit Test",
+ "timestamp": 1388000300,
+ "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
+ "tx_index": DP["default_tx_index"],
+ "value": -2.0,
+ },
},
- },
- {
- "table": "bets",
- "values": {
- "bet_type": 1,
- "block_index": 310487,
- "counterwager_quantity": 9,
- "counterwager_remaining": 9,
- "deadline": 1388000001,
- "expiration": 100,
- "expire_index": 310587,
- "fee_fraction_int": 5000000,
- "feed_address": ADDR[4],
- "leverage": 5040,
- "source": ADDR[4],
- "status": "open",
- "target_value": 0.0,
- "tx_hash": "41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef",
- "tx_index": 488,
- "wager_quantity": 9,
- "wager_remaining": 9,
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 3,
+ "block_index": DP["default_block_index"],
+ "counterwager_quantity": 10,
+ "counterwager_remaining": 10,
+ "deadline": 1388000200,
+ "expiration": 1000,
+ "expire_index": 311101,
+ "fee_fraction_int": 5000000,
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "leverage": 5040,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "dropped",
+ "target_value": 0.0,
+ "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ "tx_index": 102,
+ "wager_quantity": 10,
+ "wager_remaining": 10,
+ },
},
- },
- ],
- },
- {
- "comment": "test current text unpacking for LOCK",
- "in": (
- {
- "btc_amount": 0,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "destination": "",
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "supported": 1,
- "block_time": 310501000,
- "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
- },
- ),
- "records": [
- {
- "table": "broadcasts",
- "values": {
- "block_index": DP["default_block_index"],
- "fee_fraction_int": None,
- "locked": 1,
+ ],
+ },
+ {
+ "comment": "test old text unpacking for LOCK",
+ "mock_protocol_changes": {"broadcast_pack_text": False},
+ "in": (
+ {
+ "btc_amount": 0,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "text": None,
- "timestamp": 0,
- "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "value": None,
- },
- }
- ],
- },
- {
- "comment": "test changing options to 1 on a specific address",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- {
- "btc_amount": 0,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "source": ADDR[5],
- "destination": "",
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "supported": 1,
- "block_time": 310501000,
- "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 1",
- },
- ),
- "records": [{"table": "addresses", "values": {"options": 1, "address": ADDR[5]}}],
- },
- {
- "comment": "test changing options to 1 on an address with LOCKED feed",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- {
- "btc_amount": 1,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "source": ADDR[4],
- "destination": "",
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "supported": 1,
- "block_time": 310501000,
- "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 1",
- },
- ),
- "out": None,
- "records": [{"table": "addresses", "values": {"options": 0, "address": ADDR[4]}}],
- },
- {
- "comment": "test malformed message with incorrect length",
- "mock_protocol_changes": {"broadcast_pack_text": True},
- "in": (
- {
- "btc_amount": 1,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "source": ADDR[4],
- "destination": "",
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "supported": 1,
- "block_time": 310501000,
- "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@#A 28 CHARACTERS LONG TEXT",
- },
- ),
- "out": None,
- "records": [
- {
- "table": "broadcasts",
- "values": {
+ "destination": "",
"block_index": DP["default_block_index"],
- "fee_fraction_int": 0,
- "locked": 0,
- "source": ADDR[4],
- "status": "invalid: could not unpack text",
- "text": None,
- "timestamp": 0,
+ "fee": 10000,
+ "supported": 1,
+ "block_time": 310501000,
"tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
- "tx_index": 502,
- "value": None,
- },
- }
- ],
- },
- ],
- },
- "burn": {
- "validate": [
- {
- "in": (ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_start"]),
- "out": ([]),
- },
- {
- "in": (ADDR[0], DP["unspendable"], 1.1 * DP["burn_quantity"], DP["burn_start"]),
- "out": (["quantity must be in satoshis"]),
- },
- {
- "in": (ADDR[0], ADDR[1], DP["burn_quantity"], DP["burn_start"]),
- "out": (["wrong destination address"]),
- },
- {
- "in": (ADDR[0], DP["unspendable"], -1 * DP["burn_quantity"], DP["burn_start"]),
- "out": (["negative quantity"]),
- },
- {
- "in": (ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_start"] - 2),
- "out": (["too early"]),
- },
- {
- "in": (ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_end"] + 1),
- "out": (["too late"]),
- },
- {
- "in": (ADDR[0], ADDR[1], 1.1 * DP["burn_quantity"], DP["burn_start"] - 2),
- "out": (["wrong destination address", "quantity must be in satoshis"]),
- },
- {
- "in": (ADDR[0], ADDR[1], DP["burn_quantity"], DP["burn_start"] - 2),
- "out": (["wrong destination address", "too early"]),
- },
- {
- "in": (MULTISIGADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_start"]),
- "out": ([]),
- },
- {
- "comment": "p2sh",
- "in": (P2SH_ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_start"]),
- "out": ([]),
- },
- ],
- "compose": [
- {
- "in": (ADDR[1], DP["burn_quantity"]),
- "out": (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
- None,
- ),
- },
- {
- "in": (ADDR[0], DP["burn_quantity"]),
- "error": (exceptions.ComposeError, "1 BTC may be burned per address"),
- },
- {
- "in": (MULTISIGADDR[0], int(DP["quantity"] / 2)),
- "out": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 50000000)],
- None,
- ),
- },
- {
- "comment": "p2sh",
- "in": (P2SH_ADDR[0], int(DP["burn_quantity"] / 2)),
- "out": (P2SH_ADDR[0], [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 31000000)], None),
- },
- ],
- "parse": [
- {
- "in": (
- {
- "block_index": DP["default_block_index"],
- "destination": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
- "fee": 10000,
- "block_time": 155409000,
- "supported": 1,
- "btc_amount": 62000000,
- "data": b"",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_index": 502,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "burns",
- "values": {
- "block_index": DP["default_block_index"],
- "burned": 62000000,
- "earned": 92995811159,
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
+ },
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": None,
+ "locked": 1,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": None,
+ "timestamp": 0,
+ "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
+ "tx_index": DP["default_tx_index"],
+ "value": None,
+ },
+ }
+ ],
+ },
+ {
+ "comment": "test current text unpacking for short text",
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x06BARFOO",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
"source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "burn",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 92995811159,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "BARFOO",
+ "timestamp": 1388000100,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 50000000.0,
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "supported": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "btc_amount": 50000000,
- "block_index": DP["default_block_index"],
- "block_hash": DP["default_block_hash"],
- "fee": 10000,
- "data": b"",
- "block_time": 155409000,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "tx_index": 502,
- "destination": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
- },
- ),
- "records": [
- {
- "table": "burns",
- "values": {
- "block_index": DP["default_block_index"],
- "burned": 50000000,
- "earned": 74996621902,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ ],
+ },
+ {
+ "comment": "test current text unpacking for 51 chars",
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x003Exactly 51 characters test test test test test tes.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "burn",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 74996621902,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "Exactly 51 characters test test test test test tes.",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
},
- },
- ],
- },
- ],
- },
- "destroy": {
- "validate": [
- {"in": (ADDR[0], None, "XCP", 1), "out": None},
- {"in": (P2SH_ADDR[0], None, "XCP", 1), "out": None},
- {
- "in": (ADDR[0], None, "foobar", 1),
- "error": (exceptions.ValidateError, "asset invalid"),
- },
- {
- "in": (ADDR[0], ADDR[1], "XCP", 1),
- "error": (exceptions.ValidateError, "destination exists"),
- },
- {
- "in": (ADDR[0], None, "BTC", 1),
- "error": (exceptions.ValidateError, "cannot destroy BTC"),
- },
- {
- "in": (ADDR[0], None, "XCP", 1.1),
- "error": (exceptions.ValidateError, "quantity not integer"),
- },
- {
- "in": (ADDR[0], None, "XCP", 2**63),
- "error": (exceptions.ValidateError, "integer overflow, quantity too large"),
- },
- {
- "in": (ADDR[0], None, "XCP", -1),
- "error": (exceptions.ValidateError, "quantity negative"),
- },
- {
- "in": (ADDR[0], None, "XCP", 2**62),
- "error": (exceptions.BalanceError, "balance insufficient"),
- },
- ],
- "pack": [
- {
- "in": ("XCP", 1, bytes(9999999)),
- "out": b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- }
- ],
- #'unpack': [{
- # 'in': (b'\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00',),
- # 'error': (exceptions.UnpackError, 'could not unpack')
- # }],
- "compose": [
- {
- "in": (ADDR[0], "XCP", 1, bytes(9999999)),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (ADDR[0], "XCP", 1, b"WASTE"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTE",
- ),
- },
- {
- "in": (ADDR[0], "XCP", 1, b"WASTEEEEE"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTEEEEE",
- ),
- },
- {
- "in": (ADDR[0], "PARENT.already.issued", 1, b"WASTEEEEE"),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00n\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x00\x00\x00\x01WASTEEEEE",
- ),
- },
- ],
- "parse": [
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "destination": None,
- "data": b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTE\x00\x00\x00",
- "tx_index": 502,
- },
- ),
- "records": [
- {
- "table": "destructions",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "quantity": 1,
- "source": ADDR[0],
- "status": "valid",
- "tag": b"WASTE\x00\x00\x00",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ ],
+ },
+ {
+ "comment": "test current text unpacking for 52 chars",
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004Exactly 52 characters test test test test test test.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
},
- },
- ],
- },
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "destination": ADDR[1],
- "data": b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTE\x00\x00\x00",
- "tx_index": 502,
- },
- ),
- "records": [
- {
- "table": "destructions",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "quantity": 1,
- "source": ADDR[0],
- "status": "invalid: destination exists",
- "tag": b"WASTE\x00\x00\x00",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "Exactly 52 characters test test test test test test.",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
},
- },
- ],
- },
- ],
- },
- "send": {
- "validate": [
- {"in": (ADDR[0], ADDR[1], "XCP", DP["quantity"], 1), "out": ([])},
- {"in": (ADDR[0], P2SH_ADDR[0], "XCP", DP["quantity"], 1), "out": ([])},
- {"in": (P2SH_ADDR[0], ADDR[1], "XCP", DP["quantity"], 1), "out": ([])},
- {"in": (ADDR[0], ADDR[1], "BTC", DP["quantity"], 1), "out": (["cannot send bitcoins"])},
- {
- "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3, 1),
- "out": (["quantity must be in satoshis"]),
- },
- {
- "in": (ADDR[0], ADDR[1], "XCP", -1 * DP["quantity"], 1),
- "out": (["negative quantity"]),
- },
- {"in": (ADDR[0], MULTISIGADDR[0], "XCP", DP["quantity"], 1), "out": ([])},
- {"in": (ADDR[0], ADDR[1], "MAXI", 2**63 - 1, 1), "out": ([])},
- {"in": (ADDR[0], ADDR[1], "MAXI", 2**63, 1), "out": (["integer overflow"])},
- {
- "in": (ADDR[0], ADDR[6], "XCP", DP["quantity"], 1),
- "out": (["destination requires memo"]),
- },
- ],
- "compose": [
- {
- "in": (ADDR[0], ADDR[1], "XCP", DP["small"]),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- },
- {
- "in": (P2SH_ADDR[0], ADDR[1], "XCP", DP["small"]),
- "out": (
- P2SH_ADDR[0],
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- },
- {
- "in": (ADDR[0], P2SH_ADDR[0], "XCP", DP["small"]),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [(P2SH_ADDR[0], None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- },
- {
- "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] * 10000000),
- "error": (exceptions.ComposeError, "insufficient funds"),
- },
- {
- "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3),
- "error": (exceptions.ComposeError, "quantity must be an int (in satoshi)"),
- },
- {
- "in": (ADDR[0], MULTISIGADDR[0], "XCP", DP["quantity"]),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- },
- {
- "in": (MULTISIGADDR[0], ADDR[0], "XCP", DP["quantity"]),
- "out": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- },
- {
- "in": (MULTISIGADDR[0], MULTISIGADDR[1], "XCP", DP["quantity"]),
- "out": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [
- (
- "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
+ },
+ {
+ "comment": "test current text unpacking for 53 chars, ",
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x005Exactly 53 characters test test test test test testt.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ },
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "Exactly 53 characters test test test test test testt.",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
+ },
],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- },
- {
- "in": (ADDR[0], ADDR[1], "MAXI", 2**63 - 1),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff",
- ),
- },
- {
- "in": (ADDR[0], ADDR[1], "MAXI", 2**63 + 1),
- "error": (exceptions.ComposeError, "insufficient funds"),
- },
- {
- "in": (ADDR[0], ADDR[1], "BTC", DP["quantity"]),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 100000000)],
- None,
- ),
- },
- {
- "in": (ADDR[0], P2SH_ADDR[0], "BTC", DP["quantity"]),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy", 100000000)],
- None,
- ),
- },
- {
- "comment": "resolve subasset to numeric asset",
- "in": (ADDR[0], ADDR[1], "PARENT.already.issued", 100000000),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- binascii.unhexlify("0000000001530821671b10650000000005f5e100"),
- ),
- },
- {
- "comment": "send to a REQUIRE_MEMO address, without memo",
- "in": (ADDR[0], ADDR[6], "XCP", 100000000),
- "error": (exceptions.ComposeError, ["destination requires memo"]),
- },
- {
- "comment": "send to a REQUIRE_MEMO address, with memo text, before enhanced_send activation",
- "in": (
- {
- "source": ADDR[0],
- "destination": ADDR[6],
- "asset": "XCP",
- "quantity": 100000000,
- "memo": "12345",
- "use_enhanced_send": True,
- }
- ),
- "error": (exceptions.ComposeError, "enhanced sends are not enabled"),
- },
- {
- "comment": "send from a standard P2PKH address to a P2WPKH address",
- "mock_protocol_changes": {"enhanced_sends": True, "segwit_support": True},
- "in": (
- {
- "source": ADDR[0],
- "destination": P2WPKH_ADDR[0],
- "asset": "XCP",
- "quantity": 100000,
- "memo": "segwit",
- "use_enhanced_send": True,
- }
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x86\xa0\x80u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6segwit",
- ),
- },
- {
- "comment": "send to multiple addresses, before mpma_sends activation",
- "mock_protocol_changes": {
- "enhanced_sends": True,
- "options_require_memo": True,
- "mpma_sends": False,
- },
- "in": (
- {
- "source": ADDR[0],
- "destination": [ADDR[1], ADDR[2]],
- "asset": ["XCP", "XCP"],
- "quantity": [100000000, 100000000],
- "memo": "12345",
- "use_enhanced_send": True,
- }
- ),
- "error": (exceptions.ComposeError, "mpma sends are not enabled"),
- },
- ],
- "parse": [
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- "tx_index": 502,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
+ },
+ {
+ "comment": "test current text packing for string with utf-8 char, ",
+ "in": (
+ {
+ "destination": "",
+ "block_index": DP["default_block_index"],
+ "supported": 1,
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19This is an e with an: \xc3\xa8.",
+ "fee": 10000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 310501000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ },
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": "This is an e with an: è.",
+ "timestamp": 1588000000,
+ "tx_hash": "dd48da950fd7d000224b79ebe3495fa594ca6d6698f16c4e2dc93b4f116006ea",
+ "tx_index": DP["default_tx_index"],
+ "value": 1.0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "test current text unpacking for bet",
+ "in": (
+ {
+ "fee": 10000,
+ "btc_amount": 0,
+ "supported": 1,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "block_time": 310501000,
+ "destination": "",
"block_index": DP["default_block_index"],
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 100000000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
+ "data": b"\x00\x00\x00\x1eR\xbb4,\xc0\x00\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 5000000,
+ "locked": 0,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "text": "Unit Test",
+ "timestamp": 1388000300,
+ "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
+ "tx_index": DP["default_tx_index"],
+ "value": -2.0,
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 3,
+ "block_index": DP["default_block_index"],
+ "counterwager_quantity": 10,
+ "counterwager_remaining": 10,
+ "deadline": 1388000200,
+ "expiration": 1000,
+ "expire_index": 311101,
+ "fee_fraction_int": 5000000,
+ "feed_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "leverage": 5040,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "dropped",
+ "target_value": 0.0,
+ "tx_hash": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
+ "tx_index": 102,
+ "wager_quantity": 10,
+ "wager_remaining": 10,
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "block_index": DP["default_block_index"],
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x0b\xeb\xc2\x00",
- "block_time": 155409000,
- "fee": 10000,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "tx_index": 502,
- "supported": 1,
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 0,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "in": (
- {
- "tx_index": 502,
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00X\xb1\x14\x00",
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "block_time": 310501000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_hash": "736ecc18f9f41b3ccf67dded1252969e4929404d6ad657b2039b937a7785cf3e",
- "supported": 1,
- "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "btc_amount": 5430,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "quantity": 0,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "status": "valid",
- "tx_hash": "736ecc18f9f41b3ccf67dded1252969e4929404d6ad657b2039b937a7785cf3e",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "in": (
- {
- "block_index": DP["default_block_index"],
- "btc_amount": 7800,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "data": b"\x00\x00\x00\x00\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x01\xf4",
- "block_hash": DP["default_block_hash"],
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "NODIVISIBLE",
+ ],
+ },
+ {
+ "comment": "attempt to cancel bet on LOCKED feed, should keep bet open",
+ "in": (
+ {
+ "fee": 10000,
+ "btc_amount": 0,
+ "supported": 1,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "tx_index": DP["default_tx_index"],
+ "block_time": 310501000,
+ "destination": "",
"block_index": DP["default_block_index"],
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 500,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "source": ADDR[4],
+ "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
+ "data": b"\x00\x00\x00\x1eR\xbb4,\xc0\x00\x00\x00\x00\x00\x00\x00\x00LK@\tUnit Test",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "NODIVISIBLE",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 500,
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 5000000,
+ "locked": 0,
+ "source": ADDR[4],
+ "status": "invalid: locked feed",
+ "text": "Unit Test",
+ "timestamp": 1388000300,
+ "tx_hash": "c9e8db96d520b0611218504801e74796ae4f476578512d21d3f99367ab8e356f",
+ "tx_index": DP["default_tx_index"],
+ "value": -2.0,
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "NODIVISIBLE",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 500,
+ {
+ "table": "bets",
+ "values": {
+ "bet_type": 1,
+ "block_index": 310487,
+ "counterwager_quantity": 9,
+ "counterwager_remaining": 9,
+ "deadline": 1388000001,
+ "expiration": 100,
+ "expire_index": 310587,
+ "fee_fraction_int": 5000000,
+ "feed_address": ADDR[4],
+ "leverage": 5040,
+ "source": ADDR[4],
+ "status": "open",
+ "target_value": 0.0,
+ "tx_hash": "41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef",
+ "tx_index": 488,
+ "wager_quantity": 9,
+ "wager_remaining": 9,
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "btc_amount": 7800,
- "block_hash": DP["default_block_hash"],
- "fee": 10000,
- "tx_index": 502,
- "destination": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "supported": 1,
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
+ ],
+ },
+ {
+ "comment": "test current text unpacking for LOCK",
+ "in": (
+ {
+ "btc_amount": 0,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "destination": "",
"block_index": DP["default_block_index"],
- "destination": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "quantity": 100000000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "fee": 10000,
+ "supported": 1,
+ "block_time": 310501000,
+ "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\x04LOCK",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
+ ),
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": None,
+ "locked": 1,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "text": None,
+ "timestamp": 0,
+ "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
+ "tx_index": DP["default_tx_index"],
+ "value": None,
+ },
+ }
+ ],
+ },
+ {
+ "comment": "test changing options to 1 on a specific address",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ {
+ "btc_amount": 0,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "source": ADDR[5],
+ "destination": "",
"block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ "fee": 10000,
+ "supported": 1,
+ "block_time": 310501000,
+ "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 1",
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
+ ),
+ "records": [
+ {"table": "addresses", "values": {"options": 1, "address": ADDR[5]}}
+ ],
+ },
+ {
+ "comment": "test changing options to 1 on an address with LOCKED feed",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ {
+ "btc_amount": 1,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "source": ADDR[4],
+ "destination": "",
"block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ "fee": 10000,
+ "supported": 1,
+ "block_time": 310501000,
+ "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\x1eR\xbb3dA\x87\xd7\x84\x00\x00\x00\x00\x00\x00\x00\x00\tOPTIONS 1",
},
- },
- ],
- },
- {
- "in": (
- {
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "supported": 1,
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "btc_amount": 7800,
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
+ ),
+ "out": None,
+ "records": [
+ {"table": "addresses", "values": {"options": 0, "address": ADDR[4]}}
+ ],
+ },
+ {
+ "comment": "test malformed message with incorrect length",
+ "mock_protocol_changes": {"broadcast_pack_text": True},
+ "in": (
+ {
+ "btc_amount": 1,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
+ "source": ADDR[4],
+ "destination": "",
"block_index": DP["default_block_index"],
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 100000000,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "fee": 10000,
+ "supported": 1,
+ "block_time": 310501000,
+ "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@#A 28 CHARACTERS LONG TEXT",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- ],
- },
- {
- "in": (
- {
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "destination": "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "supported": 1,
- "block_time": 155409000,
- "fee": 10000,
- "block_index": DP["default_block_index"],
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "btc_amount": 7800,
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- "tx_index": 502,
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "quantity": 100000000,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- ],
- },
- {
- "in": (
- {
- "block_index": DP["default_block_index"],
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "btc_amount": 7800,
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "supported": 1,
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "MAXI",
- "block_index": DP["default_block_index"],
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 9223372036854775807,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "MAXI",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "quantity": 9223372036854775807,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "MAXI",
- "block_index": DP["default_block_index"],
- "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "quantity": 9223372036854775807,
- },
- },
- ],
- },
- {
- "comment": "Reject a send without memo to a REQUIRE_MEMO address",
- "mock_protocol_changes": {"options_require_memo": True},
- "in": (
- {
- "block_index": DP["default_block_index"],
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "btc_amount": 7800,
- "data": b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- "source": ADDR[0],
- "destination": ADDR[6],
- "supported": 1,
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": ADDR[6],
- "quantity": 50000000,
- "source": ADDR[0],
- "status": "invalid: destination requires memo",
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "tx_index": 502,
- },
- }
- ],
- },
- ],
- },
- "issuance": {
- # validate (db, source, destination, asset, quantity, divisible, lock, reset, callable_, call_date, call_price, description, subasset_parent, subasset_longname=None, block_index=None):
- # validate (db, source, destination, asset, quantity, divisible, ,callable_, call_date, call_price, description, block_index)
- "validate": [
- {
- "in": (
- ADDR[0],
- None,
- "ASSET",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
- },
- {
- "in": (
- P2SH_ADDR[0],
- None,
- "ASSET",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
- },
- {
- "in": (
- ADDR[2],
- None,
- "DIVIDEND",
- 1000,
- False,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["cannot change divisibility"],
- 0,
- "",
- False,
- False,
- False,
- True,
- None,
- ),
- },
- {
- # disabled for now because conftest.ALWAYS_LATEST_PROTOCOL_CHANGES = True
- #
- # 'in': (ADDR[2], None, 'DIVIDEND', 1000, True, None, None, True, None, None, '', None, None, DP['default_block_index']),
- # 'out': (0, 0.0, ['cannot change callability'], 0, '', True, True, False, False, None)
- # }, {
- "in": (
- ADDR[0],
- None,
- "BTC",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["cannot issue BTC or XCP"],
- 50000000,
- "",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- "XCP",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["cannot issue BTC or XCP"],
- 50000000,
- "",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- "NOSATOSHI",
- 1000.5,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, ["quantity must be in satoshis"], 0, "", True, None, None),
- },
- {
- "in": (
- ADDR[0],
- None,
- "CALLPRICEFLOAT",
- 1000,
- True,
- None,
- None,
- False,
- None,
- 100.0,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 0, "", True, False, False, False, None),
- },
- {
- "in": (
- ADDR[0],
- None,
- "CALLPRICEINT",
- 1000,
- True,
- None,
- None,
- False,
- None,
- 100,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
- },
- {
- "in": (
- ADDR[0],
- None,
- "CALLPRICESTR",
- 1000,
- True,
- None,
- None,
- False,
- None,
- "abc",
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, "abc", ["call_price must be a float"], 0, "", True, None, None),
- },
- {
- "in": (
- ADDR[0],
- None,
- "CALLDATEINT",
- 1000,
- True,
- None,
- None,
- False,
- 1409401723,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
- },
- {
- "in": (
- ADDR[0],
- None,
- "CALLDATEFLOAT",
- 1000,
- True,
- None,
- None,
- False,
- 0.9 * 1409401723,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 1268461550.7,
- 0.0,
- ["call_date must be epoch integer"],
- 0,
- "",
- True,
- None,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- "CALLDATESTR",
- 1000,
- True,
- None,
- None,
- False,
- "abc",
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": ("abc", 0.0, ["call_date must be epoch integer"], 0, "", True, None, None),
- },
- {
- "in": (
- ADDR[0],
- None,
- "NEGVALUES",
- -1000,
- True,
- None,
- None,
- True,
- -1409401723,
- -DP["quantity"],
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- -1409401723,
- -100000000.0,
- ["negative quantity", "negative call price", "negative call date"],
- 50000000,
- "",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "in": (
- ADDR[2],
- None,
- "DIVISIBLE",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "Divisible asset",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["issued by another address"],
- 0,
- "Divisible asset",
- True,
- False,
- False,
- True,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- "LOCKED",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "Locked asset",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["locked asset and non‐zero quantity"],
- 0,
- "Locked asset",
- True,
- False,
- False,
- True,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- "BSSET",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "LOCK",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["cannot lock a non‐existent asset"],
- 50000000,
- "LOCK",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- # Now it's possible to issue and transfer simultaneously
- "in": (
- ADDR[0],
- ADDR[1],
- "BSSET",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
- },
- {
- "in": (
- ADDR[2],
- None,
- "BSSET",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["insufficient funds"],
- 50000000,
- "",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- "BSSET",
- 2**63,
- True,
- None,
- None,
- False,
- None,
- None,
- "",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["total quantity overflow", "integer overflow"],
- 50000000,
- "",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- # Now it's possible to issue and transfer simultaneously
- "in": (
- ADDR[0],
- ADDR[1],
- "DIVISIBLE",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "Divisible asset",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 0, "Divisible asset", True, False, False, True, None),
- },
- {
- "in": (
- ADDR[0],
- None,
- "MAXIMUM",
- 2**63 - 1,
- True,
- None,
- None,
- False,
- None,
- None,
- "Maximum quantity",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 50000000, "Maximum quantity", True, False, False, False, None),
- },
- {
- "comment": "total + quantity has to be lower than MAX_INT",
- "in": (
- ADDR[0],
- None,
- "DIVISIBLE",
- 2**63 - 1,
- True,
- None,
- None,
- False,
- None,
- None,
- "Maximum quantity",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["total quantity overflow"],
- 0,
- "Maximum quantity",
- True,
- False,
- False,
- True,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- f"A{26 ** 12 + 1}",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "description",
- "NOTFOUND",
- "NOTFOUND.child1",
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["parent asset not found"],
- 25000000,
- "description",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "in": (
- ADDR[1],
- None,
- f"A{26 ** 12 + 1}",
- 100000000,
- True,
- None,
- None,
- False,
- None,
- None,
- "description",
- "PARENT",
- "PARENT.child1",
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["parent asset owned by another address"],
- 25000000,
- "description",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- f"A{26 ** 12 + 1}",
- 100000000,
- True,
- None,
- None,
- False,
- None,
- None,
- "description",
- "NOTFOUND",
- "NOTFOUND.child1",
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["parent asset not found"],
- 25000000,
- "description",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "comment": "A subasset name must be unique",
- "in": (
- ADDR[0],
- None,
- f"A{26 ** 12 + 1}",
- 100000000,
- True,
- None,
- None,
- False,
- None,
- None,
- "description",
- "PARENT",
- "PARENT.already.issued",
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["subasset already exists"],
- 25000000,
- "description",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- "comment": "cannot change subasset name through a reissuance description modification",
- "in": (
- ADDR[0],
- None,
- f"A{26 ** 12 + 101}",
- 200000000,
- True,
- None,
- None,
- False,
- None,
- None,
- "description",
- "PARENT",
- "PARENT.changed.name",
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- [],
- 0,
- "description",
- True,
- False,
- False,
- True,
- "PARENT.already.issued",
- ),
- },
- {
- "in": (
- ADDR[0],
- None,
- "UNRELATED",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "description",
- "PARENT",
- "PARENT.child1",
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["a subasset must be a numeric asset"],
- 25000000,
- "description",
- True,
- False,
- False,
- False,
- None,
- ),
- },
- {
- # before protocol change, reissuing a quantity of a locked asset was allowed if the description was changed
- "comment": "allow reissuance of locked asset before fix",
- "in": (
- ADDR[6],
- None,
- "LOCKEDPREV",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "Locked prev",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (0, 0.0, [], 0, "Locked prev", True, False, False, True, None),
- },
- {
- # after protocol change, reissuing quantities for a locked asset is never allowed
- "comment": "disallow reissuance of locked asset after fix",
- "mock_protocol_changes": {"issuance_lock_fix": True},
- "in": (
- ADDR[6],
- None,
- "LOCKEDPREV",
- 1000,
- True,
- None,
- None,
- False,
- None,
- None,
- "Locked prev",
- None,
- None,
- DP["default_block_index"],
- ),
- "out": (
- 0,
- 0.0,
- ["locked asset and non‐zero quantity"],
- 0,
- "Locked prev",
- True,
- False,
- False,
- True,
- None,
- ),
- },
- ],
- # compose (db, source, transfer_destination, asset, quantity, divisible, lock, reset=None, description=None)
- "compose": [
- {
- "in": (ADDR[0], "ASSET", 1000, None, True, False, None, ""),
- "error": (exceptions.AssetNameError, "non‐numeric asset name starts with ‘A’"),
- },
- {
- "in": (ADDR[0], "BSSET1", 1000, None, True, False, None, ""),
- "error": (exceptions.AssetNameError, "invalid character:"),
- },
- {
- "in": (ADDR[0], "SET", 1000, None, True, False, None, ""),
- "error": (exceptions.AssetNameError, "too short"),
- },
- {
- "in": (ADDR[0], "BSSET", 1000, None, True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (ADDR[0], "BASSET", 1000, None, True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\xbaOs\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (P2SH_ADDR[0], "BSSET", 1000, None, True, False, None, ""),
- "out": (
- P2SH_ADDR[0],
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (
- ADDR[0],
- "BSSET",
- 1000,
- None,
- True,
- False,
- None,
- "description much much much longer than 42 letters",
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00description much much much longer than 42 letters",
- ),
- },
- {
- "in": (ADDR[0], "DIVISIBLE", 0, ADDR[1], True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (MULTISIGADDR[0], "BSSET", 1000, None, True, False, None, ""),
- "out": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (ADDR[0], "DIVISIBLE", 0, MULTISIGADDR[0], True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
+ ),
+ "out": None,
+ "records": [
+ {
+ "table": "broadcasts",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "fee_fraction_int": 0,
+ "locked": 0,
+ "source": ADDR[4],
+ "status": "invalid: could not unpack text",
+ "text": None,
+ "timestamp": 0,
+ "tx_hash": "6b4a62b80f35b0e66df4591c8a445d453d995609e2df12afe93e742bea10dd86",
+ "tx_index": DP["default_tx_index"],
+ "value": None,
+ },
+ }
],
- b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (ADDR[0], "MAXIMUM", 2**63 - 1, None, True, False, None, "Maximum quantity"),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00Maximum quantity",
- ),
- },
- {
- "in": (ADDR[0], f"A{2 ** 64 - 1}", 1000, None, None, False, None, None),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- ),
- },
- {
- "in": (ADDR[0], f"A{2 ** 64}", 1000, None, True, False, None, ""),
- "error": (exceptions.AssetNameError, "numeric asset name not in range"),
- },
- {
- "in": (ADDR[0], f"A{26 ** 12}", 1000, None, True, False, None, ""),
- "error": (exceptions.AssetNameError, "numeric asset name not in range"),
- },
- {
- "comment": "basic child asset",
- "in": (ADDR[0], "PARENT.child1", 100000000, None, True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "0000001701530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
- ),
- ),
- # 00000017|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46
- # 00000015|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46
- },
- {
- "comment": "basic child asset with description",
- "in": (ADDR[0], "PARENT.child1", 100000000, None, True, False, None, "hello world"),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "0000001701530821671b10010000000005f5e100010a57c6f36de23a1f5f4c4668656c6c6f20776f726c64"
- ),
- ),
- # 00000017|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46|68656c6c6f20776f726c64
- # 00000015|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46|68656c6c6f20776f726c64
- # | | | | | | |
- # | | | | | | └─── Description - "hello world"
- # | | | | | └─── Subasset (compacted) - "PARENT.child1"
- # | | | | └─── Length of the subasset data (up to 255) - 10
- # | | | └─── divisible (1 byte)
- # | | └───── quantity (8 bytes) - 100000000
- # | └────────────────── asset name (8 bytes) - Numeric asset A95428956661682177 (26**12 + 1)
- # └────────────────── Type ID (4 bytes) - type 21/subasset
- },
- {
- "in": (ADDR[0], "PARENT.a.b.c", 1000, None, True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "0000001701530821671b100100000000000003e8010a014a74856171ca3c559f"
- ),
- ),
- # 00000017|01530821671b1001|00000000000003e8|01|0a|014a74856171ca3c559f
- # 00000015|01530821671b1001|00000000000003e8|01|0a|014a74856171ca3c559f
- },
- {
- "in": (ADDR[0], "PARENT.a-zA-Z0-9.-_@!", 1000, None, True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "0000001701530821671b100100000000000003e801108e90a57dba99d3a77b0a2470b1816edb"
- ),
- ),
- # 00000017|01530821671b1001|00000000000003e8|01|10|8e90a57dba99d3a77b0a2470b1816edb
- },
- {
- "comment": "make sure compose catches asset name syntax errors",
- "in": (ADDR[0], "BADASSETx.child1", 1000, None, True, False, None, ""),
- "error": (
- exceptions.AssetNameError,
- "parent asset name contains invalid character:",
- ),
- },
- {
- "comment": "make sure compose catches validation errors",
- "in": (ADDR[1], "PARENT.child1", 1000, None, True, False, None, ""),
- "error": (exceptions.ComposeError, ["parent asset owned by another address"]),
- },
- {
- "comment": "referencing parent asset by name composes a reissuance",
- "in": (ADDR[0], "PARENT.already.issued", 1000, None, True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "comment": "basic child asset with compact message type id",
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (ADDR[0], "PARENT.child1", 100000000, None, True, False, None, ""),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "1701530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
- ),
- ),
- # 17|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46
- },
- {
- "in": (
- ADDR[0],
- f"A{26 ** 12 + 101}",
- 200000000,
- None,
- True,
- None,
- None,
- "description",
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x0b\xeb\xc2\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00description",
- ),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLEB",
- 0,
- ADDR[1],
- True,
- False,
- None,
- "second divisible asset",
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8]\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00second divisible asset",
- ),
- },
- {
- "in": (ADDR[0], "DIVISIBLEC", 0, None, True, True, None, "third divisible asset"),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8^\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00third divisible asset",
- ),
- },
- ],
- "parse": [
- {
- "comment": "first",
- "in": (
- {
- "supported": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "data": b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\xbaOs\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- "btc_amount": None,
- "destination": None,
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "fee": 10000,
- "tx_index": 502,
- "block_hash": DP["default_block_hash"],
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": "BASSET",
+ },
+ ],
+ },
+ "burn": {
+ "validate": [
+ {
+ "in": (ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_start"]),
+ "out": ([]),
+ },
+ {
+ "in": (ADDR[0], DP["unspendable"], 1.1 * DP["burn_quantity"], DP["burn_start"]),
+ "out": (["quantity must be in satoshis"]),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], DP["burn_quantity"], DP["burn_start"]),
+ "out": (["wrong destination address"]),
+ },
+ {
+ "in": (ADDR[0], DP["unspendable"], -1 * DP["burn_quantity"], DP["burn_start"]),
+ "out": (["negative quantity"]),
+ },
+ {
+ "in": (ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_start"] - 2),
+ "out": (["too early"]),
+ },
+ {
+ "in": (ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_end"] + 1),
+ "out": (["too late"]),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], 1.1 * DP["burn_quantity"], DP["burn_start"] - 2),
+ "out": (["wrong destination address", "quantity must be in satoshis"]),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], DP["burn_quantity"], DP["burn_start"] - 2),
+ "out": (["wrong destination address", "too early"]),
+ },
+ {
+ "in": (
+ MULTISIGADDR[0],
+ DP["unspendable"],
+ DP["burn_quantity"],
+ DP["burn_start"],
+ ),
+ "out": ([]),
+ },
+ {
+ "comment": "p2sh",
+ "in": (P2SH_ADDR[0], DP["unspendable"], DP["burn_quantity"], DP["burn_start"]),
+ "out": ([]),
+ },
+ ],
+ "compose": [
+ {
+ "in": (ADDR[1], DP["burn_quantity"]),
+ "out": (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ None,
+ ),
+ },
+ {
+ "in": (ADDR[0], DP["burn_quantity"]),
+ "error": (exceptions.ComposeError, "1 BTC may be burned per address"),
+ },
+ {
+ "in": (MULTISIGADDR[0], int(DP["quantity"] / 2)),
+ "out": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 50000000)],
+ None,
+ ),
+ },
+ {
+ "comment": "p2sh",
+ "in": (P2SH_ADDR[0], int(DP["burn_quantity"] / 2)),
+ "out": (P2SH_ADDR[0], [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 31000000)], None),
+ },
+ ],
+ "parse": [
+ {
+ "in": (
+ {
"block_index": DP["default_block_index"],
- "description": "",
- "divisible": 1,
- "fee_paid": 50000000,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": 1000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 0,
+ "destination": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ "fee": 10000,
+ "block_time": 155409000,
+ "supported": 1,
+ "btc_amount": 62000000,
+ "data": b"",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx_index": DP["default_tx_index"],
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "asset_longname": None,
+ "block_hash": DP["default_block_hash"],
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "BASSET",
- "block_index": DP["default_block_index"],
- "calling_function": "issuance",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 1000,
+ ),
+ "records": [
+ {
+ "table": "burns",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "burned": 62000000,
+ "earned": 92994113884,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "issuance fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 50000000,
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "burn",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 92994113884,
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_time": 155409000,
- "btc_amount": 7800,
- "supported": 1,
- "tx_index": 502,
- "block_index": DP["default_block_index"],
- "data": b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8]\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00second divisible asset",
- "block_hash": DP["default_block_hash"],
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "fee": 10000,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": "DIVISIBLEB",
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": "second divisible asset",
- "divisible": 1,
- "fee_paid": 50000000,
- "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "locked": 0,
- "quantity": 0,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "in": (
- {
- "tx_index": 502,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "data": b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8^\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00third divisible asset",
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "fee": 10000,
- "destination": None,
- "supported": 1,
- "block_index": DP["default_block_index"],
- "btc_amount": None,
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": "DIVISIBLEC",
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": "third divisible asset",
- "divisible": 1,
- "fee_paid": 50000000,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0, # lock arg ignored
- "quantity": 0,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 0,
+ ],
+ },
+ {
+ "in": (
+ {
+ "supported": 1,
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "in": (
- {
- "data": b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- "supported": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_index": DP["default_block_index"],
- "destination": "",
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "btc_amount": 0,
- "tx_index": 502,
- "block_hash": DP["default_block_hash"],
- "block_time": 155409000,
- "fee": 10000,
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": "BSSET",
- "asset_longname": None,
+ "btc_amount": 50000000,
"block_index": DP["default_block_index"],
- "description": "",
- "divisible": 1,
- "fee_paid": 50000000,
- "issuer": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "locked": 0,
- "quantity": 1000,
+ "block_hash": DP["default_block_hash"],
+ "fee": 10000,
+ "data": b"",
+ "block_time": 155409000,
"source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "valid",
- "transfer": 0,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "tx_index": DP["default_tx_index"],
+ "destination": "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "BSSET",
- "block_index": DP["default_block_index"],
- "calling_function": "issuance",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 1000,
+ ),
+ "records": [
+ {
+ "table": "burns",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "burned": 50000000,
+ "earned": 74995253132,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "issuance fee",
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 50000000,
+ {
+ "table": "credits",
+ "values": {
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "burn",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 74995253132,
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "fee": 10000,
- "block_time": 155409000,
- "data": b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
- "block_index": DP["default_block_index"],
- "block_hash": DP["default_block_hash"],
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "btc_amount": 7800,
- "tx_index": 502,
- "destination": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "supported": 1,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": "DIVISIBLE",
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": "",
- "divisible": 1,
- "fee_paid": 0,
- "issuer": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "locked": 0,
- "quantity": 0,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 1,
+ ],
+ },
+ ],
+ },
+ "destroy": {
+ "validate": [
+ {"in": (ADDR[0], None, "XCP", 1), "out": None},
+ {"in": (P2SH_ADDR[0], None, "XCP", 1), "out": None},
+ {
+ "in": (ADDR[0], None, "foobar", 1),
+ "error": (exceptions.ValidateError, "asset invalid"),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", 1),
+ "error": (exceptions.ValidateError, "destination exists"),
+ },
+ {
+ "in": (ADDR[0], None, "BTC", 1),
+ "error": (exceptions.ValidateError, "cannot destroy BTC"),
+ },
+ {
+ "in": (ADDR[0], None, "XCP", 1.1),
+ "error": (exceptions.ValidateError, "quantity not integer"),
+ },
+ {
+ "in": (ADDR[0], None, "XCP", 2**63),
+ "error": (exceptions.ValidateError, "integer overflow, quantity too large"),
+ },
+ {
+ "in": (ADDR[0], None, "XCP", -1),
+ "error": (exceptions.ValidateError, "quantity negative"),
+ },
+ {
+ "in": (ADDR[0], None, "XCP", 2**62),
+ "error": (exceptions.BalanceError, "balance insufficient"),
+ },
+ ],
+ "pack": [
+ {
+ "in": ("XCP", 1, bytes(9999999)),
+ "out": b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ }
+ ],
+ #'unpack': [{
+ # 'in': (b'\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00',),
+ # 'error': (exceptions.UnpackError, 'could not unpack')
+ # }],
+ "compose": [
+ {
+ "in": (ADDR[0], "XCP", 1, bytes(9999999)),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (ADDR[0], "XCP", 1, b"WASTE"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTE",
+ ),
+ },
+ {
+ "in": (ADDR[0], "XCP", 1, b"WASTEEEEE"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTEEEEE",
+ ),
+ },
+ {
+ "in": (ADDR[0], "PARENT.already.issued", 1, b"WASTEEEEE"),
+ "out": (
+ ADDR[0],
+ [],
+ b"\x00\x00\x00n\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x00\x00\x00\x01WASTEEEEE",
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "in": (
+ {
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "issuance fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 0,
- },
- },
- ],
- },
- {
- "in": (
- {
- "data": b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00Maximum quantity",
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": "MAXIMUM",
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": "Maximum quantity",
- "fee_paid": 50000000,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": 9223372036854775807,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 0,
- "divisible": 1,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "MAXIMUM",
- "block_index": DP["default_block_index"],
- "calling_function": "issuance",
- "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "quantity": 9223372036854775807,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "issuance fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "quantity": 50000000,
- },
- },
- ],
- },
- {
- "in": (
- {
- "data": b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- "tx_index": 502,
- "tx_hash": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
- "destination": "",
- "fee": 10000,
- "btc_amount": 0,
- "block_time": 2815010000000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "block_hash": "8e80b430efbe3e1b7cc13d7ec51c1e47a16b0fa23d6dd3c939fb6c4d4cfa311e1f25072500f5f9872373b54c72424b3557fccd68915d00c0afb6523702e11b6a",
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": "A18446744073709551615",
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": "",
- "divisible": 1,
- "fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": 1000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 0,
- "tx_hash": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "A18446744073709551615",
- "block_index": DP["default_block_index"],
- "calling_function": "issuance",
- "event": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
- "quantity": 1000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "issuance fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
- "quantity": 0,
- },
- },
- ],
- },
- {
- "comment": "too short asset length",
- # 00000014|00000000000002bf|0000000005f5e100|01
- # | | | |
- # | | | └─── divisible (1 byte)
- # | | └───── quantity (8 bytes) - 100000000
- # | └────────────────── asset name (8 bytes) - BBB (invalid)
- # └────────────────── Type ID (4 bytes) - type 20/issuance
- "in": (
- {
- "data": binascii.unhexlify("0000001400000000000002bf0000000005f5e10001"),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": None,
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": None,
- "fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": None,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: bad asset name",
- "transfer": 0,
- "divisible": None,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "first time issuance of subasset",
- "in": (
- {
- "data": binascii.unhexlify(
- "0000001501530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
- ),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": f"A{26 ** 12 + 1}",
- "asset_longname": "PARENT.child1",
- "block_index": DP["default_block_index"],
- "description": "",
- "fee_paid": 25000000,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": 100000000,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 0,
- "divisible": 1,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": f"A{26 ** 12 + 1}",
- "block_index": DP["default_block_index"],
- "calling_function": "issuance",
- "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "quantity": 100000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "issuance fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
+ "supported": 1,
"block_index": DP["default_block_index"],
- "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "quantity": 25000000,
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "destination": None,
+ "data": b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTE\x00\x00\x00",
+ "tx_index": DP["default_tx_index"],
},
- },
- {
- "table": "assets",
- "values": {
- "asset_id": int(26**12 + 1),
- "asset_name": f"A{26 ** 12 + 1}",
- "block_index": DP["default_block_index"],
- "asset_longname": "PARENT.child1",
+ ),
+ "records": [
+ {
+ "table": "destructions",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "quantity": 1,
+ "source": ADDR[0],
+ "status": "valid",
+ "tag": b"WASTE\x00\x00\x00",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- ],
- },
- {
- "comment": "first time issuance of subasset with description",
- "in": (
- {
- "data": binascii.unhexlify(
- "0000001501530821671b10010000000005f5e100010a57c6f36de23a1f5f4c4668656c6c6f20776f726c64"
- ),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": f"A{26 ** 12 + 1}",
- "asset_longname": "PARENT.child1",
- "block_index": DP["default_block_index"],
- "description": "hello world",
- "fee_paid": 25000000,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": 100000000,
+ ],
+ },
+ {
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "transfer": 0,
- "divisible": 1,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": f"A{26 ** 12 + 1}",
+ "supported": 1,
"block_index": DP["default_block_index"],
- "calling_function": "issuance",
- "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "quantity": 100000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "issuance fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "quantity": 25000000,
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "destination": ADDR[1],
+ "data": b"\x00\x00\x00n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01WASTE\x00\x00\x00",
+ "tx_index": DP["default_tx_index"],
},
- },
- {
- "table": "assets",
- "values": {
- "asset_id": int(26**12 + 1),
- "asset_name": f"A{26 ** 12 + 1}",
- "block_index": DP["default_block_index"],
- "asset_longname": "PARENT.child1",
+ ),
+ "records": [
+ {
+ "table": "destructions",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "quantity": 1,
+ "source": ADDR[0],
+ "status": "invalid: destination exists",
+ "tag": b"WASTE\x00\x00\x00",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- ],
- },
- {
- "comment": "subassets not enabled yet",
- "in": (
- {
- "data": binascii.unhexlify(
- "0000001501530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
- ),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "mock_protocol_changes": {"subassets": False},
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": None,
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": None,
- "fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": None,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: could not unpack",
- "transfer": 0,
- "divisible": None,
+ ],
+ },
+ ],
+ },
+ "issuance": {
+ # validate (db, source, destination, asset, quantity, divisible, lock, reset, callable_, call_date, call_price, description, subasset_parent, subasset_longname=None, block_index=None):
+ # validate (db, source, destination, asset, quantity, divisible, ,callable_, call_date, call_price, description, block_index)
+ "validate": [
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "ASSET",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
+ },
+ {
+ "in": (
+ P2SH_ADDR[0],
+ None,
+ "ASSET",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
+ },
+ {
+ "in": (
+ ADDR[2],
+ None,
+ "DIVIDEND",
+ 1000,
+ False,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["cannot change divisibility"],
+ 0,
+ "",
+ False,
+ False,
+ False,
+ True,
+ None,
+ ),
+ },
+ {
+ # disabled for now because conftest.ALWAYS_LATEST_PROTOCOL_CHANGES = True
+ #
+ # 'in': (ADDR[2], None, 'DIVIDEND', 1000, True, None, None, True, None, None, '', None, None, DP['default_block_index']),
+ # 'out': (0, 0.0, ['cannot change callability'], 0, '', True, True, False, False, None)
+ # }, {
+ "in": (
+ ADDR[0],
+ None,
+ "BTC",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["cannot issue BTC or XCP"],
+ 50000000,
+ "",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "XCP",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["cannot issue BTC or XCP"],
+ 50000000,
+ "",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "NOSATOSHI",
+ 1000.5,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, ["quantity must be in satoshis"], 0, "", True, None, None),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "CALLPRICEFLOAT",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ 100.0,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 0, "", True, False, False, False, None),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "CALLPRICEINT",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ 100,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "CALLPRICESTR",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ "abc",
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, "abc", ["call_price must be a float"], 0, "", True, None, None),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "CALLDATEINT",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ 1409401723,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "CALLDATEFLOAT",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ 0.9 * 1409401723,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 1268461550.7,
+ 0.0,
+ ["call_date must be epoch integer"],
+ 0,
+ "",
+ True,
+ None,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "CALLDATESTR",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ "abc",
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ "abc",
+ 0.0,
+ ["call_date must be epoch integer"],
+ 0,
+ "",
+ True,
+ None,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "NEGVALUES",
+ -1000,
+ True,
+ None,
+ None,
+ True,
+ -1409401723,
+ -DP["quantity"],
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ -1409401723,
+ -100000000.0,
+ ["negative quantity", "negative call price", "negative call date"],
+ 50000000,
+ "",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[2],
+ None,
+ "DIVISIBLE",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "Divisible asset",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["issued by another address"],
+ 0,
+ "Divisible asset",
+ True,
+ False,
+ False,
+ True,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "LOCKED",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "Locked asset",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["locked asset and non‐zero quantity"],
+ 0,
+ "Locked asset",
+ True,
+ False,
+ False,
+ True,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "BSSET",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "LOCK",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["cannot lock a non‐existent asset"],
+ 50000000,
+ "LOCK",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ # Now it's possible to issue and transfer simultaneously
+ "in": (
+ ADDR[0],
+ ADDR[1],
+ "BSSET",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 50000000, "", True, False, False, False, None),
+ },
+ {
+ "in": (
+ ADDR[2],
+ None,
+ "BSSET",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["insufficient funds"],
+ 50000000,
+ "",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "BSSET",
+ 2**63,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["total quantity overflow", "integer overflow"],
+ 50000000,
+ "",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ # Now it's possible to issue and transfer simultaneously
+ "in": (
+ ADDR[0],
+ ADDR[1],
+ "DIVISIBLE",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "Divisible asset",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 0, "Divisible asset", True, False, False, True, None),
+ },
+ {
+ "in": (
+ ADDR[0],
+ None,
+ "MAXIMUM",
+ 2**63 - 1,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "Maximum quantity",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ [],
+ 50000000,
+ "Maximum quantity",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "comment": "total + quantity has to be lower than MAX_INT",
+ "in": (
+ ADDR[0],
+ None,
+ "DIVISIBLE",
+ 2**63 - 1,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "Maximum quantity",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["total quantity overflow"],
+ 0,
+ "Maximum quantity",
+ True,
+ False,
+ False,
+ True,
+ None,
+ ),
+ },
+ {
+ "mock_protocol_changes": {"free_subassets": False},
+ "in": (
+ ADDR[0],
+ None,
+ f"A{26 ** 12 + 1}",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "description",
+ "NOTFOUND",
+ "NOTFOUND.child1",
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["parent asset not found"],
+ 25000000,
+ "description",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "mock_protocol_changes": {"free_subassets": False},
+ "in": (
+ ADDR[1],
+ None,
+ f"A{26 ** 12 + 1}",
+ 100000000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "description",
+ "PARENT",
+ "PARENT.child1",
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["parent asset owned by another address"],
+ 25000000,
+ "description",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "mock_protocol_changes": {"free_subassets": False},
+ "in": (
+ ADDR[0],
+ None,
+ f"A{26 ** 12 + 1}",
+ 100000000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "description",
+ "NOTFOUND",
+ "NOTFOUND.child1",
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["parent asset not found"],
+ 25000000,
+ "description",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "mock_protocol_changes": {"free_subassets": False},
+ "comment": "A subasset name must be unique",
+ "in": (
+ ADDR[0],
+ None,
+ f"A{26 ** 12 + 1}",
+ 100000000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "description",
+ "PARENT",
+ "PARENT.already.issued",
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["subasset already exists"],
+ 25000000,
+ "description",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "comment": "cannot change subasset name through a reissuance description modification",
+ "in": (
+ ADDR[0],
+ None,
+ f"A{26 ** 12 + 101}",
+ 200000000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "description",
+ "PARENT",
+ "PARENT.changed.name",
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ [],
+ 0,
+ "description",
+ True,
+ False,
+ False,
+ True,
+ "PARENT.already.issued",
+ ),
+ },
+ {
+ "mock_protocol_changes": {"free_subassets": False},
+ "in": (
+ ADDR[0],
+ None,
+ "UNRELATED",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "description",
+ "PARENT",
+ "PARENT.child1",
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["a subasset must be a numeric asset"],
+ 25000000,
+ "description",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ "comment": "subassets are free after protocol change",
+ "in": (
+ ADDR[0],
+ None,
+ "UNRELATED",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "description",
+ "PARENT",
+ "PARENT.child1",
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["a subasset must be a numeric asset"],
+ 0,
+ "description",
+ True,
+ False,
+ False,
+ False,
+ None,
+ ),
+ },
+ {
+ # before protocol change, reissuing a quantity of a locked asset was allowed if the description was changed
+ "comment": "allow reissuance of locked asset before fix",
+ "mock_protocol_changes": {"issuance_lock_fix": False},
+ "in": (
+ ADDR[6],
+ None,
+ "LOCKEDPREV",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "Locked prev",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (0, 0.0, [], 0, "Locked prev", True, False, False, True, None),
+ },
+ {
+ # after protocol change, reissuing quantities for a locked asset is never allowed
+ "comment": "disallow reissuance of locked asset after fix",
+ "mock_protocol_changes": {"issuance_lock_fix": True},
+ "in": (
+ ADDR[6],
+ None,
+ "LOCKEDPREV",
+ 1000,
+ True,
+ None,
+ None,
+ False,
+ None,
+ None,
+ "Locked prev",
+ None,
+ None,
+ DP["default_block_index"],
+ ),
+ "out": (
+ 0,
+ 0.0,
+ ["locked asset and non‐zero quantity"],
+ 0,
+ "Locked prev",
+ True,
+ False,
+ False,
+ True,
+ None,
+ ),
+ },
+ ],
+ # compose (db, source, transfer_destination, asset, quantity, divisible, lock, reset=None, description=None)
+ "compose": [
+ {
+ "in": (ADDR[0], "ASSET", 1000, None, True, False, None, ""),
+ "error": (exceptions.AssetNameError, "non‐numeric asset name starts with ‘A’"),
+ },
+ {
+ "in": (ADDR[0], "BSSET1", 1000, None, True, False, None, ""),
+ "error": (exceptions.AssetNameError, "invalid character:"),
+ },
+ {
+ "in": (ADDR[0], "SET", 1000, None, True, False, None, ""),
+ "error": (exceptions.AssetNameError, "too short"),
+ },
+ {
+ "comment": "disallow subassets on numerics",
+ "mock_protocol_changes": {"allow_subassets_on_numerics": False},
+ "in": (
+ ADDR[0],
+ "A9542895.subasset",
+ 1000,
+ None,
+ True,
+ False,
+ None,
+ "",
+ ),
+ "error": (exceptions.AssetNameError, "parent asset name starts with 'A'"),
+ },
+ {
+ "comment": "allow subassets on numerics",
+ "in": (
+ ADDR[0],
+ "A95428956661682177.subasset",
+ 1000,
+ None,
+ True,
+ False,
+ None,
+ "",
+ ),
+ "error": (exceptions.ComposeError, ["parent asset not found"]),
+ },
+ {
+ "in": (ADDR[0], "BSSET", 1000, None, True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (ADDR[0], "BASSET", 1000, None, True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\xbaOs\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (P2SH_ADDR[0], "BSSET", 1000, None, True, False, None, ""),
+ "out": (
+ P2SH_ADDR[0],
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "BSSET",
+ 1000,
+ None,
+ True,
+ False,
+ None,
+ "description much much much longer than 42 letters",
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00description much much much longer than 42 letters",
+ ),
+ },
+ {
+ "in": (ADDR[0], "DIVISIBLE", 0, ADDR[1], True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (MULTISIGADDR[0], "BSSET", 1000, None, True, False, None, ""),
+ "out": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (ADDR[0], "DIVISIBLE", 0, MULTISIGADDR[0], True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "MAXIMUM",
+ 2**63 - 1,
+ None,
+ True,
+ False,
+ None,
+ "Maximum quantity",
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00Maximum quantity",
+ ),
+ },
+ {
+ "in": (ADDR[0], f"A{2 ** 64 - 1}", 1000, None, None, False, None, None),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ ),
+ },
+ {
+ "in": (ADDR[0], f"A{2 ** 64}", 1000, None, True, False, None, ""),
+ "error": (exceptions.AssetNameError, "numeric asset name not in range"),
+ },
+ {
+ "in": (ADDR[0], f"A{26 ** 12}", 1000, None, True, False, None, ""),
+ "error": (exceptions.AssetNameError, "numeric asset name not in range"),
+ },
+ {
+ "comment": "basic child asset",
+ "in": (ADDR[0], "PARENT.child1", 100000000, None, True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "0000001701530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
+ ),
+ ),
+ # 00000017|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46
+ # 00000015|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46
+ },
+ {
+ "comment": "basic child asset with description",
+ "in": (
+ ADDR[0],
+ "PARENT.child1",
+ 100000000,
+ None,
+ True,
+ False,
+ None,
+ "hello world",
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "0000001701530821671b10010000000005f5e100010a57c6f36de23a1f5f4c4668656c6c6f20776f726c64"
+ ),
+ ),
+ # 00000017|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46|68656c6c6f20776f726c64
+ # 00000015|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46|68656c6c6f20776f726c64
+ # | | | | | | |
+ # | | | | | | └─── Description - "hello world"
+ # | | | | | └─── Subasset (compacted) - "PARENT.child1"
+ # | | | | └─── Length of the subasset data (up to 255) - 10
+ # | | | └─── divisible (1 byte)
+ # | | └───── quantity (8 bytes) - 100000000
+ # | └────────────────── asset name (8 bytes) - Numeric asset A95428956661682177 (26**12 + 1)
+ # └────────────────── Type ID (4 bytes) - type 21/subasset
+ },
+ {
+ "in": (ADDR[0], "PARENT.a.b.c", 1000, None, True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "0000001701530821671b100100000000000003e8010a014a74856171ca3c559f"
+ ),
+ ),
+ # 00000017|01530821671b1001|00000000000003e8|01|0a|014a74856171ca3c559f
+ # 00000015|01530821671b1001|00000000000003e8|01|0a|014a74856171ca3c559f
+ },
+ {
+ "in": (ADDR[0], "PARENT.a-zA-Z0-9.-_@!", 1000, None, True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "0000001701530821671b100100000000000003e801108e90a57dba99d3a77b0a2470b1816edb"
+ ),
+ ),
+ # 00000017|01530821671b1001|00000000000003e8|01|10|8e90a57dba99d3a77b0a2470b1816edb
+ },
+ {
+ "comment": "make sure compose catches asset name syntax errors",
+ "in": (ADDR[0], "BADASSETx.child1", 1000, None, True, False, None, ""),
+ "error": (
+ exceptions.AssetNameError,
+ "parent asset name contains invalid character:",
+ ),
+ },
+ {
+ "comment": "make sure compose catches validation errors",
+ "in": (ADDR[1], "PARENT.child1", 1000, None, True, False, None, ""),
+ "error": (exceptions.ComposeError, ["parent asset owned by another address"]),
+ },
+ {
+ "comment": "referencing parent asset by name composes a reissuance",
+ "in": (ADDR[0], "PARENT.already.issued", 1000, None, True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "comment": "basic child asset with compact message type id",
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (ADDR[0], "PARENT.child1", 100000000, None, True, False, None, ""),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "1701530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
+ ),
+ ),
+ # 17|01530821671b1001|0000000005f5e100|01|0a|57c6f36de23a1f5f4c46
+ },
+ {
+ "in": (
+ ADDR[0],
+ f"A{26 ** 12 + 101}",
+ 200000000,
+ None,
+ True,
+ None,
+ None,
+ "description",
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x0b\xeb\xc2\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00description",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLEB",
+ 0,
+ ADDR[1],
+ True,
+ False,
+ None,
+ "second divisible asset",
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8]\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00second divisible asset",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLEC",
+ 0,
+ None,
+ True,
+ True,
+ None,
+ "third divisible asset",
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8^\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00third divisible asset",
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "comment": "first",
+ "in": (
+ {
+ "supported": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "data": b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\xbaOs\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ "btc_amount": None,
+ "destination": None,
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "block_hash": DP["default_block_hash"],
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": "BASSET",
+ "block_index": DP["default_block_index"],
+ "description": "",
+ "divisible": 1,
+ "fee_paid": 50000000,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": 1000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "asset_longname": None,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "BASSET",
+ "block_index": DP["default_block_index"],
+ "calling_function": "issuance",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 1000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "issuance fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 50000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_time": 155409000,
+ "btc_amount": 7800,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "block_index": DP["default_block_index"],
+ "data": b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8]\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00second divisible asset",
+ "block_hash": DP["default_block_hash"],
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "fee": 10000,
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": "DIVISIBLEB",
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": "second divisible asset",
+ "divisible": 1,
+ "fee_paid": 50000000,
+ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "locked": 0,
+ "quantity": 0,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "in": (
+ {
+ "tx_index": DP["default_tx_index"],
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "data": b"\x00\x00\x00\x16\x00\x00\x10}U\x15\xa8^\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00third divisible asset",
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "fee": 10000,
+ "destination": None,
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "btc_amount": None,
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": "DIVISIBLEC",
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": "third divisible asset",
+ "divisible": 1,
+ "fee_paid": 50000000,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0, # lock arg ignored
+ "quantity": 0,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "in": (
+ {
+ "data": b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ "supported": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_index": DP["default_block_index"],
+ "destination": "",
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "btc_amount": 0,
+ "tx_index": DP["default_tx_index"],
+ "block_hash": DP["default_block_hash"],
+ "block_time": 155409000,
+ "fee": 10000,
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": "BSSET",
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": "",
+ "divisible": 1,
+ "fee_paid": 50000000,
+ "issuer": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "locked": 0,
+ "quantity": 1000,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "valid",
+ "transfer": 0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "BSSET",
+ "block_index": DP["default_block_index"],
+ "calling_function": "issuance",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 1000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "issuance fee",
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 50000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "fee": 10000,
+ "block_time": 155409000,
+ "data": b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00",
+ "block_index": DP["default_block_index"],
+ "block_hash": DP["default_block_hash"],
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "btc_amount": 7800,
+ "tx_index": DP["default_tx_index"],
+ "destination": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "supported": 1,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": "DIVISIBLE",
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": "",
+ "divisible": 1,
+ "fee_paid": 0,
+ "issuer": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "locked": 0,
+ "quantity": 0,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "issuance fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 0,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "data": b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00Maximum quantity",
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": "MAXIMUM",
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": "Maximum quantity",
+ "fee_paid": 50000000,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": 9223372036854775807,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 0,
+ "divisible": 1,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "MAXIMUM",
+ "block_index": DP["default_block_index"],
+ "calling_function": "issuance",
+ "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "quantity": 9223372036854775807,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "issuance fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "quantity": 50000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "data": b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
+ "destination": "",
+ "fee": 10000,
+ "btc_amount": 0,
+ "block_time": 2815010000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "block_hash": "8e80b430efbe3e1b7cc13d7ec51c1e47a16b0fa23d6dd3c939fb6c4d4cfa311e1f25072500f5f9872373b54c72424b3557fccd68915d00c0afb6523702e11b6a",
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": "A18446744073709551615",
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": "",
+ "divisible": 1,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": 1000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 0,
+ "tx_hash": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "A18446744073709551615",
+ "block_index": DP["default_block_index"],
+ "calling_function": "issuance",
+ "event": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
+ "quantity": 1000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "issuance fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "4188c1f7aaae56ce3097ef256cdbcb644dd43c84e237b4add4f24fd4848cb2c7",
+ "quantity": 0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "too short asset length",
+ # 00000014|00000000000002bf|0000000005f5e100|01
+ # | | | |
+ # | | | └─── divisible (1 byte)
+ # | | └───── quantity (8 bytes) - 100000000
+ # | └────────────────── asset name (8 bytes) - BBB (invalid)
+ # └────────────────── Type ID (4 bytes) - type 20/issuance
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001400000000000002bf0000000005f5e10001"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": None,
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": None,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: bad asset name",
+ "transfer": 0,
+ "divisible": None,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "mock_protocol_changes": {"free_subassets": False},
+ "comment": "first time issuance of subasset",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": f"A{26 ** 12 + 1}",
+ "asset_longname": "PARENT.child1",
+ "block_index": DP["default_block_index"],
+ "description": "",
+ "fee_paid": 25000000,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": 100000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 0,
+ "divisible": 1,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": f"A{26 ** 12 + 1}",
+ "block_index": DP["default_block_index"],
+ "calling_function": "issuance",
+ "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "issuance fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "quantity": 25000000,
+ },
+ },
+ {
+ "table": "assets",
+ "values": {
+ "asset_id": int(26**12 + 1),
+ "asset_name": f"A{26 ** 12 + 1}",
+ "block_index": DP["default_block_index"],
+ "asset_longname": "PARENT.child1",
+ },
+ },
+ ],
+ },
+ {
+ "mock_protocol_changes": {"free_subassets": False},
+ "comment": "first time issuance of subasset with description",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e100010a57c6f36de23a1f5f4c4668656c6c6f20776f726c64"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": f"A{26 ** 12 + 1}",
+ "asset_longname": "PARENT.child1",
+ "block_index": DP["default_block_index"],
+ "description": "hello world",
+ "fee_paid": 25000000,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": 100000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 0,
+ "divisible": 1,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": f"A{26 ** 12 + 1}",
+ "block_index": DP["default_block_index"],
+ "calling_function": "issuance",
+ "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "issuance fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "quantity": 25000000,
+ },
+ },
+ {
+ "table": "assets",
+ "values": {
+ "asset_id": int(26**12 + 1),
+ "asset_name": f"A{26 ** 12 + 1}",
+ "block_index": DP["default_block_index"],
+ "asset_longname": "PARENT.child1",
+ },
+ },
+ ],
+ },
+ {
+ "comment": "subassets not enabled yet",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e100010a57c6f36de23a1f5f4c46"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "mock_protocol_changes": {"subassets": False},
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": None,
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": None,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: could not unpack",
+ "transfer": 0,
+ "divisible": None,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "comment": "invalid subasset length",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e10001f057c6f36de23a1f5f4c46"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": None,
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": None,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: could not unpack",
+ "transfer": 0,
+ "divisible": None,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "comment": "first time issuance of subasset with description",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e100010c0631798cf0c65f1507f66fdf"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": None,
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": None,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: bad subasset name",
+ "transfer": 0,
+ "divisible": None,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "comment": "missing subasset name",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e100010c"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": None,
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": None,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: could not unpack",
+ "transfer": 0,
+ "divisible": None,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "comment": "subasset length of zero",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e1000100"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": None,
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": None,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: bad subasset name",
+ "transfer": 0,
+ "divisible": None,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "comment": "bad subasset B.bad",
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "0000001501530821671b10010000000005f5e100010509cad71adf"
+ ),
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ },
+ issuance.SUBASSET_ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": None,
+ "asset_longname": None,
+ "block_index": DP["default_block_index"],
+ "description": None,
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: bad subasset name",
+ "transfer": 0,
+ "divisible": None,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "comment": "reissuance of subasset adds asset_longname to issuances table",
+ "in": (
+ {
+ "data": b"\x00\x00\x00\x16\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x0b\xeb\xc2\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00description",
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "destination": "",
"tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "invalid subasset length",
- "in": (
- {
- "data": binascii.unhexlify(
- "0000001501530821671b10010000000005f5e10001f057c6f36de23a1f5f4c46"
+ },
+ issuance.ID,
+ ),
+ "records": [
+ {
+ "table": "issuances",
+ "values": {
+ "asset": f"A{26 ** 12 + 101}",
+ "asset_longname": "PARENT.already.issued",
+ "block_index": DP["default_block_index"],
+ "description": "description",
+ "fee_paid": 0,
+ "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "locked": 0,
+ "quantity": 200000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "transfer": 0,
+ "divisible": 1,
+ "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ ],
+ },
+ ],
+ },
+ "dividend": {
+ "validate": [
+ {
+ "in": (
+ ADDR[0],
+ DP["quantity"] * 1000,
+ "DIVISIBLE",
+ "XCP",
+ DP["default_block_index"],
+ ),
+ "out": (None, None, ["insufficient funds (XCP)"], 0),
+ },
+ {
+ "in": (
+ ADDR[0],
+ DP["quantity"] * -1000,
+ "DIVISIBLE",
+ "XCP",
+ DP["default_block_index"],
+ ),
+ "out": (None, None, ["non‐positive quantity per unit"], 0),
+ },
+ {
+ "comment": "cannot pay dividends to holders of BTC",
+ "in": (ADDR[0], DP["quantity"], "BTC", "XCP", DP["default_block_index"]),
+ "out": (
+ None,
+ None,
+ ["cannot pay dividends to holders of BTC", "only issuer can pay dividends"],
+ 0,
+ ),
+ },
+ {
+ "comment": "cannot pay dividends to holders of XCP",
+ "in": (ADDR[0], DP["quantity"], "XCP", "XCP", DP["default_block_index"]),
+ "out": (
+ None,
+ None,
+ [
+ "cannot pay dividends to holders of XCP",
+ "only issuer can pay dividends",
+ "insufficient funds (XCP)",
+ ],
+ 0,
+ ),
+ },
+ {
+ "comment": "no such asset, NOASSET",
+ "in": (ADDR[0], DP["quantity"], "NOASSET", "XCP", DP["default_block_index"]),
+ "out": (None, None, ["no such asset, NOASSET."], 0),
+ },
+ {
+ "comment": "non‐positive quantity per unit",
+ "in": (ADDR[0], 0, "DIVISIBLE", "XCP", DP["default_block_index"]),
+ "out": (None, None, ["non‐positive quantity per unit", "zero dividend"], 0),
+ },
+ {
+ "in": (ADDR[1], DP["quantity"], "DIVISIBLE", "XCP", DP["default_block_index"]),
+ "out": (
+ None,
+ None,
+ ["only issuer can pay dividends", "insufficient funds (XCP)"],
+ 0,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ DP["quantity"],
+ "DIVISIBLE",
+ "NOASSET",
+ DP["default_block_index"],
+ ),
+ "out": (None, None, ["no such dividend asset, NOASSET."], 0),
+ },
+ {
+ "in": (ADDR[0], 8359090909, "DIVISIBLE", "XCP", DP["default_block_index"]),
+ "out": (None, None, ["insufficient funds (XCP)"], 0),
+ },
+ {
+ "in": (ADDR[2], 100000000, "DIVIDEND", "DIVIDEND", DP["default_block_index"]),
+ "out": (None, None, ["insufficient funds (XCP)"], 0),
+ },
+ {
+ "in": (ADDR[2], 2**63, "DIVIDEND", "DIVIDEND", DP["default_block_index"]),
+ "out": (None, None, ["integer overflow", "insufficient funds (DIVIDEND)"], 0),
+ },
+ ],
+ "compose": [
+ {
+ "in": (ADDR[0], DP["quantity"], "DIVISIBLE", "XCP"),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01",
+ ),
+ },
+ {
+ "in": (ADDR[0], 1, "DIVISIBLE", "PARENT.already.issued"),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "000000320000000000000001000000a25be34b6601530821671b1065"
+ ),
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "comment": "dividend 1",
+ "in": (
+ {
+ "tx_hash": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
+ "supported": 1,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "data": b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01",
+ "tx_index": DP["default_tx_index"],
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "block_index": DP["default_block_index"],
+ "btc_amount": 0,
+ "fee": 10000,
+ "destination": "",
+ "block_time": 155409000,
+ },
+ ),
+ "records": [
+ {
+ "table": "dividends",
+ "values": {
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "dividend_asset": "XCP",
+ "fee_paid": 80000,
+ "quantity_per_unit": 100000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "dividend",
+ "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "dividend",
+ "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
+ "quantity": 1000000000,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "dividend",
+ "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "dividend",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
+ "quantity": 1200000001,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "dividend fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
+ "quantity": 80000,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "dividend 2",
+ "in": (
+ {
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 0,
+ "block_time": 155409000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx_hash": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
+ "fee": 10000,
+ "block_index": DP["default_block_index"],
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "supported": 1,
+ "destination": "",
+ "data": b"\x00\x00\x002\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x00\x01",
+ },
+ ),
+ "records": [
+ {
+ "table": "dividends",
+ "values": {
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "dividend_asset": "XCP",
+ "fee_paid": 40000,
+ "quantity_per_unit": 1,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "dividend",
+ "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
+ "quantity": 5,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "dividend",
+ "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
+ "quantity": 10,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "dividend",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
+ "quantity": 15,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "dividend fee",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
+ "quantity": 40000,
+ },
+ },
+ ],
+ },
+ ],
+ },
+ "order": {
+ "validate": [
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ DP["quantity"],
+ "XCP",
+ DP["quantity"],
+ 2000,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ P2SH_ADDR[0],
+ "DIVISIBLE",
+ DP["quantity"],
+ "XCP",
+ DP["quantity"],
+ 2000,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ DP["quantity"],
+ "XCP",
+ DP["quantity"],
+ 2000,
+ 0.5,
+ DP["default_block_index"],
+ ),
+ "out": (["fee_required must be in satoshis"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "BTC",
+ DP["quantity"],
+ "BTC",
+ DP["quantity"],
+ 2000,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": (["cannot trade BTC for itself"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ DP["quantity"] / 3,
+ "XCP",
+ DP["quantity"],
+ 2000,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": (["give_quantity must be in satoshis"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ DP["quantity"],
+ "XCP",
+ DP["quantity"] / 3,
+ 2000,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": (["get_quantity must be in satoshis"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ DP["quantity"],
+ "XCP",
+ DP["quantity"],
+ 1.5,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": (["expiration must be expressed as an integer block delta"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ -DP["quantity"],
+ "XCP",
+ -DP["quantity"],
+ -2000,
+ -10000,
+ DP["default_block_index"],
+ ),
+ "out": (
+ [
+ "non‐positive give quantity",
+ "non‐positive get quantity",
+ "negative fee_required",
+ "negative expiration",
+ ]
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ 0,
+ "XCP",
+ DP["quantity"],
+ 2000,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": (["non‐positive give quantity", "zero give or zero get"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "NOASSETA",
+ DP["quantity"],
+ "NOASSETB",
+ DP["quantity"],
+ 2000,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": (
+ ["no such asset to give (NOASSETA)", "no such asset to get (NOASSETB)"]
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "DIVISIBLE",
+ 2**63 + 10,
+ "XCP",
+ DP["quantity"],
+ 4 * 2016 + 10,
+ 0,
+ DP["default_block_index"],
+ ),
+ "out": (["integer overflow", "expiration overflow"]),
+ },
+ ],
+ "compose": [
+ {
+ "in": (
+ ADDR[0],
+ "BTC",
+ DP["small"],
+ "XCP",
+ DP["small"] * 2,
+ DP["expiration"],
+ 0,
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (
+ P2SH_ADDR[0],
+ "BTC",
+ DP["small"],
+ "XCP",
+ DP["small"] * 2,
+ DP["expiration"],
+ 0,
+ ),
+ "out": (
+ P2SH_ADDR[0],
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "XCP",
+ round(DP["small"] * 2.1),
+ "BTC",
+ DP["small"],
+ DP["expiration"],
+ DP["fee_required"],
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ ),
+ },
+ {
+ "in": (
+ MULTISIGADDR[0],
+ "BTC",
+ DP["small"],
+ "XCP",
+ DP["small"] * 2,
+ DP["expiration"],
+ 0,
+ ),
+ "out": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ },
+ {
+ "in": (
+ MULTISIGADDR[0],
+ "XCP",
+ round(DP["small"] * 2.1),
+ "BTC",
+ DP["small"],
+ DP["expiration"],
+ DP["fee_required"],
+ ),
+ "out": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "MAXI",
+ 2**63 - 1,
+ "XCP",
+ DP["quantity"],
+ DP["expiration"],
+ DP["fee_required"],
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "MAXI",
+ 2**63 - 1,
+ "XCP",
+ DP["quantity"],
+ DP["expiration"],
+ 2**63,
+ ),
+ "error": (exceptions.ComposeError, ["integer overflow"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ "MAXI",
+ 2**63,
+ "XCP",
+ DP["quantity"],
+ DP["expiration"],
+ DP["fee_required"],
+ ),
+ "error": (exceptions.ComposeError, "insufficient funds"),
+ },
+ {
+ "comment": "give subasset",
+ "in": (
+ ADDR[0],
+ "PARENT.already.issued",
+ 100000000,
+ "XCP",
+ DP["small"],
+ DP["expiration"],
+ DP["fee_required"],
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "0000000a01530821671b10650000000005f5e10000000000000000010000000002faf080000a00000000000dbba0"
+ ),
+ ),
+ },
+ {
+ "comment": "get subasset",
+ "in": (
+ ADDR[0],
+ "XCP",
+ DP["small"],
+ "PARENT.already.issued",
+ 100000000,
+ DP["expiration"],
+ DP["fee_required"],
+ ),
+ "out": (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ binascii.unhexlify(
+ "0000000a00000000000000010000000002faf08001530821671b10650000000005f5e100000a00000000000dbba0"
+ ),
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "comment": "order 1",
+ "in": (
+ {
+ "destination": None,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\n\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "fee": 10000,
+ "btc_amount": None,
+ "supported": 1,
+ "block_hash": DP["default_block_hash"],
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 2000,
+ "expire_index": DP["default_block_index"] + 2000,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": 0,
+ "give_asset": "DIVISIBLE",
+ "give_quantity": 100000000,
+ "give_remaining": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "filled",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "order_matches",
+ "values": {
+ "backward_asset": "DIVISIBLE",
+ "backward_quantity": 100000000,
+ "block_index": DP["default_block_index"],
+ "fee_paid": 0,
+ "forward_asset": "XCP",
+ "forward_quantity": 100000000,
+ "id": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "match_expire_index": DP["default_block_index"] + 20,
+ "status": "completed",
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx0_block_index": 310006,
+ "tx0_expiration": 2000,
+ "tx0_hash": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
+ "tx0_index": 7,
+ "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx1_block_index": DP["default_block_index"],
+ "tx1_expiration": 2000,
+ "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx1_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "order match",
+ "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open order",
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "calling_function": "order match",
+ "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "filled",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 0,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "calling_function": "filled",
+ "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
+ "quantity": 0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "P2SH order",
+ "in": (
+ {
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "block_index": DP["default_block_index"],
+ "block_time": 155409000,
+ "btc_amount": None,
+ "data": b"\x00\x00\x00\n\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "destination": None,
+ "fee": 10000,
+ "source": P2SH_ADDR[0],
+ "supported": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 2000,
+ "expire_index": DP["default_block_index"] + 2000,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": 0,
+ "give_asset": "DIVISIBLE",
+ "give_quantity": 100000000,
+ "give_remaining": 0,
+ "source": P2SH_ADDR[0],
+ "status": "filled",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "order_matches",
+ "values": {
+ "backward_asset": "DIVISIBLE",
+ "backward_quantity": 100000000,
+ "block_index": DP["default_block_index"],
+ "fee_paid": 0,
+ "forward_asset": "XCP",
+ "forward_quantity": 100000000,
+ "id": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "match_expire_index": DP["default_block_index"] + 20,
+ "status": "completed",
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx0_block_index": 310006,
+ "tx0_expiration": 2000,
+ "tx0_hash": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
+ "tx0_index": 7,
+ "tx1_address": P2SH_ADDR[0],
+ "tx1_block_index": DP["default_block_index"],
+ "tx1_expiration": 2000,
+ "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx1_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": P2SH_ADDR[0],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "order match",
+ "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open order",
+ "address": P2SH_ADDR[0],
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "calling_function": "order match",
+ "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "filled",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 0,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": P2SH_ADDR[0],
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "calling_function": "filled",
+ "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
+ "quantity": 0,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order 2",
+ "in": (
+ {
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "btc_amount": None,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0fB@\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "destination": None,
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 2000,
+ "expire_index": DP["default_block_index"] + 2000,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 1000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": -20000000,
+ "give_asset": "BTC",
+ "give_quantity": 1000000,
+ "give_remaining": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "order_matches",
+ "values": {
+ "backward_asset": "BTC",
+ "backward_quantity": 200000,
+ "block_index": DP["default_block_index"],
+ "fee_paid": 1800,
+ "forward_asset": "XCP",
+ "forward_quantity": 20000000,
+ "id": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "match_expire_index": DP["default_block_index"] + 20,
+ "status": "pending",
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx0_block_index": 310010,
+ "tx0_expiration": 2000,
+ "tx0_hash": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a",
+ "tx0_index": 11,
+ "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx1_block_index": DP["default_block_index"],
+ "tx1_expiration": 2000,
+ "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx1_index": DP["default_tx_index"],
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order 2bis",
+ "in": (
+ {
+ "fee": 10000,
+ "block_time": 155409000,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "destination": None,
+ "supported": 1,
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n,+\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": None,
+ "block_index": DP["default_block_index"],
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 2000,
+ "expire_index": DP["default_block_index"] + 2000,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "BTC",
+ "get_quantity": 666666,
+ "get_remaining": -133333,
+ "give_asset": "XCP",
+ "give_quantity": 99999990,
+ "give_remaining": 115,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "order_matches",
+ "values": {
+ "backward_asset": "XCP",
+ "backward_quantity": 99999875,
+ "block_index": DP["default_block_index"],
+ "fee_paid": 0,
+ "forward_asset": "BTC",
+ "forward_quantity": 799999,
+ "id": "1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "match_expire_index": DP["default_block_index"] + 20,
+ "status": "pending",
+ "tx0_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx0_block_index": 310513,
+ "tx0_expiration": 2000,
+ "tx0_hash": "1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
+ "tx0_index": 493,
+ "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx1_block_index": DP["default_block_index"],
+ "tx1_expiration": 2000,
+ "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx1_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open order",
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 99999990,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order 3",
+ "in": (
+ {
+ "block_time": 155409000,
+ "destination": None,
+ "btc_amount": None,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x84\x80\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "supported": 1,
+ "fee": 10000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "tx_index": DP["default_tx_index"],
+ "block_index": DP["default_block_index"],
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 2000,
+ "expire_index": DP["default_block_index"] + 2000,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "BTC",
+ "get_quantity": 1999999,
+ "get_remaining": 1999999,
+ "give_asset": "XCP",
+ "give_quantity": 99999990,
+ "give_remaining": 99999990,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open order",
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 99999990,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "5",
+ "in": (
+ {
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xa1 \x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "tx_index": DP["default_tx_index"],
+ "destination": None,
+ "block_index": DP["default_block_index"],
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "btc_amount": None,
+ "block_time": 155409000,
+ "supported": 1,
+ "fee": 1000000,
+ "block_hash": DP["default_block_hash"],
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 2000,
+ "expire_index": DP["default_block_index"] + 2000,
+ "fee_provided": 1000000,
+ "fee_provided_remaining": 1000000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": 100000000,
+ "give_asset": "BTC",
+ "give_quantity": 500000,
+ "give_remaining": 500000,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "comment": "order 4",
+ "in": (
+ {
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "btc_amount": None,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00 foo\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "destination": None,
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 0,
+ "expire_index": DP["default_block_index"],
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "0",
+ "get_quantity": 0,
+ "get_remaining": 0,
+ "give_asset": "0",
+ "give_quantity": 0,
+ "give_remaining": 0,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "status": "invalid: could not unpack",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ ],
+ },
+ {
+ "comment": "7",
+ "in": (
+ {
+ "btc_amount": None,
+ "block_time": 155409000,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "block_hash": DP["default_block_hash"],
+ "destination": None,
+ "block_index": DP["default_block_index"],
+ "data": b"\x00\x00\x00\n\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x01\xf4\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
+ "fee": 10000,
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 2000,
+ "expire_index": DP["default_block_index"] + 2000,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": 100000000,
+ "give_asset": "NODIVISIBLE",
+ "give_quantity": 500,
+ "give_remaining": 500,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open order",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 500,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order 5",
+ "in": (
+ {
+ "block_index": DP["default_block_index"],
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "destination": "",
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "block_time": 155409000,
+ "btc_amount": 0,
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 10,
+ "expire_index": DP["default_block_index"] + 10,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 2800,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": 0,
+ "give_asset": "BTC",
+ "give_quantity": 50000000,
+ "give_remaining": 49200000,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "order_matches",
+ "values": {
+ "backward_asset": "BTC",
+ "backward_quantity": 800000,
+ "block_index": DP["default_block_index"],
+ "fee_paid": 7200,
+ "forward_asset": "XCP",
+ "forward_quantity": 100000000,
+ "id": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "match_expire_index": DP["default_block_index"] + 20,
+ "status": "pending",
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx0_block_index": 310513,
+ "tx0_expiration": 2000,
+ "tx0_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
+ "tx0_index": 492,
+ "tx1_address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "tx1_block_index": DP["default_block_index"],
+ "tx1_expiration": 10,
+ "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx1_index": DP["default_tx_index"],
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order 6",
+ "in": (
+ {
+ "block_index": DP["default_block_index"],
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "destination": "",
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "block_time": 155409000,
+ "btc_amount": 0,
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 10,
+ "expire_index": DP["default_block_index"] + 10,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 2800,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": 0,
+ "give_asset": "BTC",
+ "give_quantity": 50000000,
+ "give_remaining": 49200000,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "order_matches",
+ "values": {
+ "backward_asset": "BTC",
+ "backward_quantity": 800000,
+ "block_index": DP["default_block_index"],
+ "fee_paid": 7200,
+ "forward_asset": "XCP",
+ "forward_quantity": 100000000,
+ "id": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "match_expire_index": DP["default_block_index"] + 20,
+ "status": "pending",
+ "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "tx0_block_index": 310513,
+ "tx0_expiration": 2000,
+ "tx0_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
+ "tx0_index": 492,
+ "tx1_address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "tx1_block_index": DP["default_block_index"],
+ "tx1_expiration": 10,
+ "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx1_index": DP["default_tx_index"],
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order 7",
+ "in": (
+ {
+ "fee": 10000,
+ "btc_amount": 0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "supported": 1,
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ "destination": "",
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expire_index": DP["default_block_index"] + 10,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 900000,
+ "fee_required_remaining": 900000,
+ "get_asset": "BTC",
+ "get_quantity": 50000000,
+ "get_remaining": 50000000,
+ "give_asset": "XCP",
+ "give_quantity": 105000000,
+ "give_remaining": 105000000,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "open",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "expiration": 10,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open order",
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "quantity": 105000000,
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order 8",
+ "in": (
+ {
+ "btc_amount": 0,
+ "fee": 10000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "",
+ "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "supported": 1,
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ },
+ ),
+ "records": [
+ {
+ "table": "orders",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "expiration": 10,
+ "expire_index": DP["default_block_index"] + 10,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 900000,
+ "fee_required_remaining": 900000,
+ "get_asset": "XCP",
+ "get_quantity": 100000000,
+ "get_remaining": 100000000,
+ "give_asset": "MAXI",
+ "give_quantity": 9223372036854775807,
+ "give_remaining": 9223372036854775807,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "open",
+ "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "open order",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "MAXI",
+ "block_index": DP["default_block_index"],
+ "event": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
+ "quantity": 9223372036854775807,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "order shouldn't be inserted because fee_required is > MAX_INT",
+ "in": (
+ {
+ "btc_amount": 0,
+ "fee": 10000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "",
+ "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
+ "tx_index": DP["default_tx_index"],
+ "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x80\x00\x00\x00\x00\x00\x00\x00",
+ "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
+ "supported": 1,
+ "block_time": 155409000,
+ "block_index": DP["default_block_index"],
+ },
+ ),
+ "records": [
+ {
+ "not": True, # NOT
+ "table": "orders",
+ "values": {
+ "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5"
+ },
+ },
+ ],
+ },
+ ],
+ "expire": [{"in": (DP["default_block_index"] - 1,), "out": None}],
+ },
+ "sweep": {
+ "validate": [
+ {"in": (ADDR[6], ADDR[5], 1, None, DP["burn_start"]), "out": ([], 50000000.0)},
+ {"in": (ADDR[6], ADDR[5], 2, None, DP["burn_start"]), "out": ([], 50000000.0)},
+ {"in": (ADDR[6], ADDR[5], 3, None, DP["burn_start"]), "out": ([], 50000000.0)},
+ {"in": (ADDR[6], ADDR[5], 1, "test", DP["burn_start"]), "out": ([], 50000000.0)},
+ {"in": (ADDR[6], ADDR[5], 1, b"test", DP["burn_start"]), "out": ([], 50000000.0)},
+ {
+ "in": (ADDR[6], ADDR[5], 0, None, DP["burn_start"]),
+ "out": (["must specify which kind of transfer in flags"], 50000000.0),
+ },
+ {
+ "in": (ADDR[6], ADDR[6], 1, None, DP["burn_start"]),
+ "out": (["destination cannot be the same as source"], 50000000.0),
+ },
+ {
+ "in": (ADDR[6], ADDR[5], 8, None, DP["burn_start"]),
+ "out": (["invalid flags 8"], 50000000.0),
+ },
+ {
+ "in": (
+ ADDR[6],
+ ADDR[5],
+ 1,
+ "012345678900123456789001234567890012345",
+ DP["burn_start"],
+ ),
+ "out": (["memo too long"], 50000000.0),
+ },
+ {
+ "in": (ADDR[7], ADDR[5], 1, None, DP["burn_start"]),
+ "out": (
+ ["insufficient XCP balance for sweep. Need 0.5 XCP for antispam fee"],
+ 50000000.0,
+ ),
+ },
+ {
+ "in": (ADDR[8], ADDR[5], 1, None, DP["burn_start"]),
+ "out": (
+ ["insufficient XCP balance for sweep. Need 0.5 XCP for antispam fee"],
+ 50000000.0,
+ ),
+ },
+ ],
+ "compose": [
+ {
+ "in": (ADDR[6], ADDR[5], 1, None),
+ "out": (
+ "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ [],
+ b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x01",
+ ),
+ },
+ {
+ "in": (ADDR[6], ADDR[5], 2, None),
+ "out": (
+ "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ [],
+ b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x02",
+ ),
+ },
+ {
+ "in": (ADDR[6], ADDR[5], 3, None),
+ "out": (
+ "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ [],
+ b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x03",
+ ),
+ },
+ {
+ "in": (ADDR[6], ADDR[5], 3, "test"),
+ "out": (
+ "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ [],
+ b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x03test",
+ ),
+ },
+ {
+ "in": (ADDR[6], ADDR[5], 7, "cafebabe"),
+ "out": (
+ "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
+ [],
+ b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x07\xca\xfe\xba\xbe",
+ ),
+ },
+ {
+ "in": (ADDR[8], ADDR[5], 1, None),
+ "error": (
+ exceptions.ComposeError,
+ ["insufficient XCP balance for sweep. Need 0.5 XCP for antispam fee"],
+ ),
+ },
+ ],
+ "unpack": [
+ {
+ "in": (
+ b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x01",
+ ),
+ "out": {"destination": ADDR[5], "flags": 1, "memo": None},
+ },
+ {
+ "in": (
+ b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x02",
+ ),
+ "out": {"destination": ADDR[5], "flags": 2, "memo": None},
+ },
+ {
+ "in": (
+ b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x03test",
+ ),
+ "out": {"destination": ADDR[5], "flags": 3, "memo": "test"},
+ },
+ {
+ "in": (
+ b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x07\xca\xfe\xba\xbe",
+ ),
+ "out": {"destination": ADDR[5], "flags": 7, "memo": b"\xca\xfe\xba\xbe"},
+ },
+ ],
+ "parse": [
+ {
+ "mock_protocol_changes": {"sweep_send": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[6],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 17630,
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[5],
+ "data": b"\x00\x00\x00\x03o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x01",
+ },
+ ),
+ "records": [
+ {
+ "table": "sweeps",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[5],
+ "source": ADDR[6],
+ "status": "valid",
+ "flags": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[5],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "sweep",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 92899122099,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "sweep",
+ "address": ADDR[6],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 92899122099,
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[5],
+ "asset": "LOCKEDPREV",
+ "block_index": DP["default_block_index"],
+ "calling_function": "sweep",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 1000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "sweep",
+ "address": ADDR[6],
+ "asset": "LOCKEDPREV",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 1000,
+ },
+ },
+ ],
+ },
+ {
+ "mock_protocol_changes": {"sweep_send": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": ADDR[6],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 17630,
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[5],
+ "data": b"\x00\x00\x00\x03o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x02",
+ },
+ ),
+ "records": [
+ {
+ "table": "sweeps",
+ "values": {
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[5],
+ "source": ADDR[6],
+ "status": "valid",
+ "flags": 2,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "issuances",
+ "values": {
+ "quantity": 0,
+ "asset_longname": None,
+ "issuer": ADDR[5],
+ "status": "valid",
+ "locked": 0,
+ "asset": "LOCKEDPREV",
+ "fee_paid": 0,
+ "callable": 0,
+ "call_date": 0,
+ "call_price": 0.0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "description": "changed",
+ "divisible": 1,
+ "source": ADDR[6],
+ "block_index": DP["default_block_index"],
+ "tx_index": DP["default_tx_index"],
+ "transfer": True,
+ },
+ },
+ ],
+ },
+ ],
+ },
+ "transaction_helper.serializer": {
+ "var_int": [
+ {"in": (252,), "out": b"\xfc"},
+ {"in": (65535,), "out": b"\xfd\xff\xff"},
+ {"in": (4294967295,), "out": b"\xfe\xff\xff\xff\xff"},
+ {"in": (4294967296,), "out": b"\xff\x00\x00\x00\x00\x01\x00\x00\x00"},
+ ],
+ "op_push": [
+ {"in": (75,), "out": b"K"},
+ {"in": (255,), "out": b"L\xff"},
+ {"in": (65535,), "out": b"M\xff\xff"},
+ {"in": (65536,), "out": b"N\x00\x00\x01\x00"},
+ ],
+ "get_multisig_script": [
+ {
+ "in": (
+ "1_0282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0_0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977_2",
+ ),
+ "out": (
+ b"Q!\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0!\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9wR\xae",
+ None,
+ ),
+ }
+ ],
+ "get_monosig_script": [
+ {
+ "in": (ADDR[1],),
+ "out": (
+ b"v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac",
+ None,
+ ),
+ }
+ ],
+ "get_p2sh_script": [
+ {
+ "in": (P2SH_ADDR[0],),
+ "out": (
+ b"\xa9\x14Bd\xcf\xd7\xebe\xf8\xcb\xbd\xba\x98\xbd\x98\x15\xd5F\x1f\xad\x8d~\x87",
+ None,
+ ),
+ }
+ ],
+ "get_script": [
+ {
+ "in": (
+ "1_0282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0_0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977_2",
+ ),
+ "out": (
+ b"Q!\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0!\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9wR\xae",
+ None,
+ ),
+ },
+ {
+ "in": (ADDR[1],),
+ "out": (
+ b"v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac",
+ None,
+ ),
+ },
+ {
+ "in": (P2SH_ADDR[0],),
+ "out": (
+ b"\xa9\x14Bd\xcf\xd7\xebe\xf8\xcb\xbd\xba\x98\xbd\x98\x15\xd5F\x1f\xad\x8d~\x87",
+ None,
+ ),
+ },
+ {
+ "in": (P2WPKH_ADDR[0],),
+ "out": (
+ b"\x00\x14u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6",
+ b"\xa9\x14u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6\x87",
+ ),
+ },
+ ],
+ "make_fully_valid": [
+ {
+ "in": (
+ b"T\xdaT\x0f\xb2f;u\xe6\xc3\xcca\x19\n\xd0\xc2C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$",
+ ),
+ "out": b"\x02T\xdaT\x0f\xb2f;u\xe6\xc3\xcca\x19\n\xd0\xc2C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$G",
+ }
+ ],
+ "serialise": [
+ {
+ "in": (
+ "multisig",
+ [
+ {
+ "confirmations": 74,
+ "amount": 1.9990914,
+ "vout": 0,
+ "account": "",
+ "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac",
+ "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000",
+ }
+ ],
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 5430)],
+ (
+ [
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80"
+ ],
+ 7800,
+ ),
+ ("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", 199885910),
+ b"\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0",
+ ),
+ "out": b"\x01\x00\x00\x00\x01\xc1\xd8\xc0u\x93l4\x95\xf6\xd6S\xc5\x0fs\xd9\x87\xf7TH\xd9zu\x02I\xb1\xeb\x83\xbe\xe7\x1b$\xae\x00\x00\x00\x00\x19v\xa9\x14H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607\x88\xac\xff\xff\xff\xff\x036\x15\x00\x00\x00\x00\x00\x00\x19v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xacx\x1e\x00\x00\x00\x00\x00\x00iQ!\x02bA[\xf0J\xf84B==\xd7\xad\xa4\xdcrz\x03\x08eu\x9f\x9f\xbaZ\xeex\xc9\xeaq\xe5\x87\x98!\x02T\xdaT\x0f\xb2f;u\xe6\xc3\xcca\x19\n\xd0\xc2C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$G!\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0S\xaeV\x04\xea\x0b\x00\x00\x00\x00\x19v\xa9\x14H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607\x88\xac\x00\x00\x00\x00",
+ },
+ {
+ "in": (
+ "multisig",
+ [
+ {
+ "txid": "e43c357b78baf473fd21cbc1481ac450746b60cf1d2702ce3a73a8811811e3eb",
+ "txhex": "0100000001980b1a29634f263b00e5301519c153edd65c9149445c9dfdf175b07782388a84000000006a4730440220438f0878ec34cbb676ad8d8badcf81d93a7748a7b85c5841c5bed024b0ad287602203bd635a7d15ccabe235da9cf5086e9a2611242b0e894bd2f9f66a1d4de3fff3d01210276e73c0c0b5af814085f9a9bec7421bc97bc84c4f5bbdf4f6973bd04e16765e7ffffffff0100e1f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ "amount": 1.0,
+ "vout": 0,
+ "script_pub_key": "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac",
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "confirmations": 2,
+ }
+ ],
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ None,
+ ("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 37990000),
+ None,
+ ),
+ "out": b"\x01\x00\x00\x00\x01\xeb\xe3\x11\x18\x81\xa8s:\xce\x02'\x1d\xcf`ktP\xc4\x1aH\xc1\xcb!\xfds\xf4\xbax{5<\xe4\x00\x00\x00\x00\x19v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac\xff\xff\xff\xff\x02\x80\x0b\xb2\x03\x00\x00\x00\x00\x19v\xa9\x14\xa1\x1bf\xa6{?\xf6\x96q\xc8\xf8\"T\t\x9f\xaf7K\x80\x0e\x88\xacp\xaeC\x02\x00\x00\x00\x00\x19v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac\x00\x00\x00\x00",
+ },
+ ],
+ },
+ "transaction": {
+ "get_dust_return_pubkey": [
+ {"in": (ADDR[1], None, "multisig"), "out": None},
+ {
+ "in": (ADDR[1], [], "multisig"),
+ "out": b"\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9w",
+ },
+ ],
+ "construct": [
+ {
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ None,
+ ),
+ {"encoding": "multisig", "exact_fee": 1.0},
+ ),
+ "error": (exceptions.TransactionError, "Exact fees must be in satoshis."),
+ },
+ {
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ None,
+ ),
+ {"encoding": "multisig", "fee_provided": 1.0},
+ ),
+ "error": (exceptions.TransactionError, "Fee provided must be in satoshis."),
+ },
+ {
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [
+ (
+ "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
+ config.DEFAULT_REGULAR_DUST_SIZE - 1,
+ )
+ ],
+ None,
+ ),
+ {"encoding": "singlesig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "error": (exceptions.TransactionError, "Destination output is dust."),
+ },
+ {
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ config.DEFAULT_MULTISIG_DUST_SIZE - 1,
+ )
+ ],
+ None,
+ ),
+ {"encoding": "multisig"},
+ ),
+ "error": (exceptions.TransactionError, "Destination output is dust."),
+ },
+ {
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {"encoding": "foobar"},
+ ),
+ "error": (exceptions.TransactionError, "Unknown encoding‐scheme."),
+ },
+ {
+ "comment": "opreturn encoding with more data that fits in 80 bytes opreturn (73 bytes of data + 8 bytes for PREFIX)",
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ b"\x00" * 73,
+ ),
+ {"encoding": "opreturn"},
+ ),
+ "error": (
+ exceptions.TransactionError,
+ "One `OP_RETURN` output per transaction.",
+ ),
+ },
+ {
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 2**30)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "error": (
+ exceptions.BalanceError,
+ "Insufficient BTC at address mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. Need: 10.73754999 BTC (Including fee: 0.00012175 BTC), available: 1.11121663 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)",
+ ),
+ },
+ {
+ "comment": "opreturn encoding with maximum possible data that fits in 80 bytes opreturn (72 bytes of data + 8 bytes for PREFIX)",
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ b"\x00" * 72,
),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": None,
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": None,
- "fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": None,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: could not unpack",
- "transfer": 0,
- "divisible": None,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "first time issuance of subasset with description",
- "in": (
- {
- "data": binascii.unhexlify(
- "0000001501530821671b10010000000005f5e100010c0631798cf0c65f1507f66fdf"
+ {"encoding": "opreturn"},
+ ),
+ "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac0000000000000000536a4c503ab408a679f108a19e35886815c4c468ca75a06799f864a1fad6bc0813f5fe3260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea9fadc20c0b453de6676872c9e41fad801e8bbdb64302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ },
+ {
+ "comment": "burn",
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ None,
),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": None,
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": None,
- "fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": None,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: bad subasset name",
- "transfer": 0,
- "divisible": None,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "missing subasset name",
- "in": (
- {
- "data": binascii.unhexlify("0000001501530821671b10010000000005f5e100010c"),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": None,
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": None,
- "fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": None,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: could not unpack",
- "transfer": 0,
- "divisible": None,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "subasset length of zero",
- "in": (
- {
- "data": binascii.unhexlify("0000001501530821671b10010000000005f5e1000100"),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": None,
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": None,
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf4302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ },
+ {
+ "comment": "burn P2SH",
+ "in": (
+ (P2SH_ADDR[0], [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], None),
+ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf43020000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000",
+ },
+ {
+ "comment": "multisig burn",
+ "in": (
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 50000000)],
+ None,
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87dafa02000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "comment": "send",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send with custom input which is too low",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {
+ "encoding": "multisig",
+ "regular_dust_size": DP["regular_dust_size"],
+ "custom_inputs": [
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000",
+ "confirmations": 74,
+ "vout": 0,
+ "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac",
+ "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1",
+ "amount": 0.00001,
+ "account": "",
+ }
+ ],
+ },
+ ),
+ "error": (
+ exceptions.BalanceError,
+ "Insufficient BTC at address mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. Need: 0.0001408 BTC (Including fee: 0.0000765 BTC), available: 0.00001 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)",
+ ),
+ },
+ {
+ "comment": "send with custom input",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {
+ "encoding": "multisig",
+ "regular_dust_size": DP["regular_dust_size"],
+ "custom_inputs": [
+ {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000",
+ "confirmations": 74,
+ "vout": 0,
+ "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac",
+ "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1",
+ "amount": 1.9990914,
+ "account": "",
+ }
+ ],
+ },
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send with multisig encoding and bytespersigop enabled for address with multiple UTXOs",
+ "mock_protocol_changes": {"bytespersigop": True},
+ "in": (
+ (
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff85497c27fbc3ecfbfb41f49cbf983e252a91636ec92f2863cb7eb755a33afcb9000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210372a51ea175f108a1c635886815c4c468ca75a06798f864a1fad446f893f5fef121023260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea66210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae524c9f06000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ },
+ {
+ "comment": "send, different dust pubkey",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {
+ "encoding": "multisig",
+ "regular_dust_size": DP["regular_dust_size"],
+ "dust_return_pubkey": "0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977",
+ },
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send, burn dust pubkey",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {
+ "encoding": "multisig",
+ "regular_dust_size": DP["regular_dust_size"],
+ "dust_return_pubkey": False,
+ },
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724472111111111111111111111111111111111111111111111111111111111111111111153ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send from P2SH address, multsig encoding, no dust pubkey",
+ "in": (
+ (
+ P2SH_ADDR[0],
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {
+ "encoding": "multisig",
+ "dust_return_pubkey": False,
+ "regular_dust_size": DP["regular_dust_size"],
+ },
+ ),
+ "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210397b51de78b0f3a171f5ed27fff56d17dcba739c8b00035c8bbb9c380fdc4ed1321036932bcbeac2a4d8846b7feb4bf93b2b88efd02f2d8dc1fc0067bcc972257e3912111111111111111111111111111111111111111111111111111111111111111111153ae00aaf5050000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000",
+ },
+ {
+ "comment": "send to P2SH address",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [(P2SH_ADDR[0], None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ ),
+ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87e8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send dest multisig",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send dest multisig exact_fee",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ {"encoding": "multisig", "exact_fee": 1},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4357ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send dest opreturn",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ {"encoding": "opreturn"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000000000001e6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aeb8fd21a7d41ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send dest pubkeyhash",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ {"encoding": "pubkeyhash", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae36150000000000001976a9146d415bf04af834423d3dd7ada4dc727a0308657588ac36150000000000001976a9146f415bf04af834423d3cd7ada4dc778fe208657588ac2314ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "send dest 1-of-1",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_1", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "error": (script.MultiSigAddressError, "Invalid signatures_possible."),
+ },
+ {
+ "comment": "send source multisig",
+ "in": (
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae00aaf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "comment": "send source and dest multisig",
+ "in": (
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [
+ (
+ "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff03e8030000000000004751210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977210378ee11c3fb97054877a809ce083db292b16d971bcdc6aa4c8f92087133729d8b52aee8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4ebbf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "comment": "maximum quantity send",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff",
+ ),
+ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210362415bf04af834423d3dd7ada4dc727a0308664fa0e045a51185cce50ee58717210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "issuance",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03086e897d9fba5aee7a331919e48780210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "issuance",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
+ b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ ),
+ {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "multisig issuance",
+ "in": (
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e8030000000000006951210203caf7ca87f0fd78a01d9a0d7e221e55beef3cde388be72d254826b32a6008b62103bc14528340c27d009ae7b7dd73d8c032ffa94625307a450077125d580099b55a210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "comment": "maximum quantity issuance",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03d5f3a7eae045a51185cce50ee487c2210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "transfer asset to multisig",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ None,
+ )
+ ],
+ b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "order",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ {"encoding": "multisig", "fee_provided": DP["fee_provided"]},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210348415bf04af834423d3dd7adaedc727a030865759e9fba5aee78c9ea71e5870f210354da540fb2673b75e6c3c994f80ad0c8431643bab28ced783cd94079bbe72445210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeec18db0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "multisig order",
+ "in": (
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ ),
+ {"encoding": "multisig", "fee_provided": DP["fee_provided"]},
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121021ecaf7ca87f0fd78a01d9a0d62221e55beef3722db8be72d254adc40426108d02103bc14528340c37d005aa9e764ded8c038ffa94625307a450077125d580099b53b210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aed89ae605000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "comment": "multisig order",
+ "in": (
+ (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121031ecaf7ca87f0fd78a01d9a0d62221e55beef3722da8be72d254e649c8261083d2102bc14528340c27d005aa9e06bcf58c038ffa946253077fea077125d580099b5bb210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "comment": "maximum quantity order",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210248415bf04af834423d3dd7adaedc727a0308664fa0e045a51185cce50ee58759210354da540fb2673b75e6c3c994f80ad0c8431643bab28156d83cd94079bbe72452210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "dividend",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121035a415bf04af834423d3dd7ad96dc727a030d90949e9fba5a4c21d05197e58735210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "dividend",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x002\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x00\x01",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121025a415bf04af834423d3dd7ad96dc727a030865759f9fbc9036a64c1197e587c8210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "free issuance",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ ),
+ {"encoding": "multisig"},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210255415bf04af834423d3dd7adb2238d85fcf79a8a619fba5aee7a331919e4870d210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "large broadcast",
+ "in": (
+ (
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ [],
+ b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@lOver 80 characters test test test test test test test test test test test test test test test test test test",
+ ),
+ {},
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000006951210343415bf04af834423d3dd7adba82d48f033795759e9fba5aee7a7f51b189c8c0210322bf262f8a561b168ea2be007a7eb5b0303637dfc1f8cd0c59aa3459cf825784210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210343415bf04af834423d49f7d9c1af065a776d1601beebdf299a5a477f8291a7c4210220bf277b92125e0692e3b8046a7ef0b62665379ac6e99e0c1cad250acfc750c9210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210361415bf04af834423d58a4d984a8170977281110edeb9a2e8b09473a8580f45d210220da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724dc210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aefa28ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ ],
+ },
+ "api_v1": {
+ "get_rows": [
+ {
+ "in": ("balances", None, "AND", None, None, None, None, None, 1000, 0, True),
+ "out": None,
+ },
+ {
+ "in": ("balances", None, "barfoo", None, None, None, None, None, 1000, 0, True),
+ "error": (APIError, "Invalid filter operator (OR, AND)"),
+ },
+ {
+ "in": (None, None, "AND", None, None, None, None, None, 1000, 0, True),
+ "error": (APIError, "Unknown table"),
+ },
+ {
+ "in": (
+ "balances",
+ None,
+ "AND",
+ None,
+ "barfoo",
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "error": (APIError, "Invalid order direction (ASC, DESC)"),
+ },
+ {
+ "in": ("balances", None, "AND", None, None, None, None, None, 1000.0, 0, True),
+ "error": (APIError, "Invalid limit"),
+ },
+ {
+ "in": ("balances", None, "AND", None, None, None, None, None, 1001, 0, True),
+ "error": (APIError, "Limit should be lower or equal to 1000"),
+ },
+ {
+ "in": ("balances", None, "AND", None, None, None, None, None, 1000, 0.0, True),
+ "error": (APIError, "Invalid offset"),
+ },
+ {
+ "in": ("balances", None, "AND", "*", None, None, None, None, 1000, 0, True),
+ "error": (APIError, "Invalid order_by, must be a field name"),
+ },
+ {
+ "in": ("balances", [0], "AND", None, None, None, None, None, 1000, 0, True),
+ "error": (APIError, "Unknown filter type"),
+ },
+ {
+ "in": (
+ "balances",
+ {"field": "bar", "op": "="},
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "error": (APIError, "A specified filter is missing the 'value' field"),
+ },
+ {
+ "in": (
+ "balances",
+ {"field": "bar", "op": "=", "value": {}},
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "error": (APIError, "Invalid value for the field 'bar'"),
+ },
+ {
+ "in": (
+ "balances",
+ {"field": "bar", "op": "=", "value": [0, 2]},
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "error": (APIError, "Invalid value for the field 'bar'"),
+ },
+ {
+ "in": (
+ "balances",
+ {"field": "bar", "op": "AND", "value": 0},
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "error": (APIError, "Invalid operator for the field 'bar'"),
+ },
+ {
+ "in": (
+ "balances",
+ {"field": "bar", "op": "=", "value": 0, "case_sensitive": 0},
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "error": (APIError, "case_sensitive must be a boolean"),
+ },
+ {
+ "comment": "standard send with no memo",
+ "in": (
+ "sends",
+ [{"field": "block_index", "op": "=", "value": "310496"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "out": [
+ {
+ "tx_index": 497,
+ "tx_hash": "a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba",
+ "block_index": 310496,
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "asset": "XCP",
+ "quantity": 92945878046,
+ "status": "valid",
+ "memo": None,
+ "memo_hex": None,
+ "msg_index": 0,
"fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": None,
+ }
+ ],
+ },
+ {
+ "comment": "with memo",
+ "in": (
+ "sends",
+ [{"field": "block_index", "op": "=", "value": "310481"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "out": [
+ {
+ "tx_index": 482,
+ "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
+ "block_index": 310481,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: bad subasset name",
- "transfer": 0,
- "divisible": None,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "bad subasset B.bad",
- "in": (
- {
- "data": binascii.unhexlify(
- "0000001501530821671b10010000000005f5e100010509cad71adf"
- ),
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.SUBASSET_ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": None,
- "asset_longname": None,
- "block_index": DP["default_block_index"],
- "description": None,
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "quantity": 100000000,
+ "status": "valid",
+ "memo": "hello",
+ "memo_hex": "68656c6c6f",
+ "msg_index": 0,
"fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": None,
+ }
+ ],
+ },
+ {
+ "comment": "search by memo (text)",
+ "in": (
+ "sends",
+ [{"field": "memo", "op": "=", "value": "hello"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "out": [
+ {
+ "tx_index": 482,
+ "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
+ "block_index": 310481,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: bad subasset name",
- "transfer": 0,
- "divisible": None,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "reissuance of subasset adds asset_longname to issuances table",
- "in": (
- {
- "data": b"\x00\x00\x00\x16\x01S\x08!g\x1b\x10e\x00\x00\x00\x00\x0b\xeb\xc2\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00description",
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "supported": 1,
- "tx_index": 502,
- "destination": "",
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- },
- issuance.ID,
- ),
- "records": [
- {
- "table": "issuances",
- "values": {
- "asset": f"A{26 ** 12 + 101}",
- "asset_longname": "PARENT.already.issued",
- "block_index": DP["default_block_index"],
- "description": "description",
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "quantity": 100000000,
+ "status": "valid",
+ "memo": "hello",
+ "memo_hex": "68656c6c6f",
+ "msg_index": 0,
"fee_paid": 0,
- "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "locked": 0,
- "quantity": 200000000,
+ }
+ ],
+ },
+ {
+ "comment": "search by memo (LIKE text)",
+ "in": (
+ "sends",
+ [{"field": "memo", "op": "LIKE", "value": "%ell%"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "out": [
+ {
+ "tx_index": 482,
+ "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
+ "block_index": 310481,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "quantity": 100000000,
"status": "valid",
- "transfer": 0,
- "divisible": 1,
- "tx_hash": "71da4fac29d6442ef3ff13f291860f512a888161ae9e574f313562851912aace",
- "tx_index": 502,
- },
- },
- ],
- },
- ],
- },
- "dividend": {
- "validate": [
- {
- "in": (
- ADDR[0],
- DP["quantity"] * 1000,
- "DIVISIBLE",
- "XCP",
- DP["default_block_index"],
- ),
- "out": (None, None, ["insufficient funds (XCP)"], 0),
- },
- {
- "in": (
- ADDR[0],
- DP["quantity"] * -1000,
- "DIVISIBLE",
- "XCP",
- DP["default_block_index"],
- ),
- "out": (None, None, ["non‐positive quantity per unit"], 0),
- },
- {
- "comment": "cannot pay dividends to holders of BTC",
- "in": (ADDR[0], DP["quantity"], "BTC", "XCP", DP["default_block_index"]),
- "out": (
- None,
- None,
- ["cannot pay dividends to holders of BTC", "only issuer can pay dividends"],
- 0,
- ),
- },
- {
- "comment": "cannot pay dividends to holders of XCP",
- "in": (ADDR[0], DP["quantity"], "XCP", "XCP", DP["default_block_index"]),
- "out": (
- None,
- None,
- [
- "cannot pay dividends to holders of XCP",
- "only issuer can pay dividends",
- "insufficient funds (XCP)",
+ "memo": "hello",
+ "memo_hex": "68656c6c6f",
+ "msg_index": 0,
+ "fee_paid": 0,
+ }
],
- 0,
- ),
- },
- {
- "comment": "no such asset, NOASSET",
- "in": (ADDR[0], DP["quantity"], "NOASSET", "XCP", DP["default_block_index"]),
- "out": (None, None, ["no such asset, NOASSET."], 0),
- },
- {
- "comment": "non‐positive quantity per unit",
- "in": (ADDR[0], 0, "DIVISIBLE", "XCP", DP["default_block_index"]),
- "out": (None, None, ["non‐positive quantity per unit", "zero dividend"], 0),
- },
- {
- "in": (ADDR[1], DP["quantity"], "DIVISIBLE", "XCP", DP["default_block_index"]),
- "out": (
- None,
- None,
- ["only issuer can pay dividends", "insufficient funds (XCP)"],
- 0,
- ),
- },
- {
- "in": (ADDR[0], DP["quantity"], "DIVISIBLE", "NOASSET", DP["default_block_index"]),
- "out": (None, None, ["no such dividend asset, NOASSET."], 0),
- },
- {
- "in": (ADDR[0], 8359090909, "DIVISIBLE", "XCP", DP["default_block_index"]),
- "out": (None, None, ["insufficient funds (XCP)"], 0),
- },
- {
- "in": (ADDR[2], 100000000, "DIVIDEND", "DIVIDEND", DP["default_block_index"]),
- "out": (None, None, ["insufficient funds (XCP)"], 0),
- },
- {
- "in": (ADDR[2], 2**63, "DIVIDEND", "DIVIDEND", DP["default_block_index"]),
- "out": (None, None, ["integer overflow", "insufficient funds (DIVIDEND)"], 0),
- },
- ],
- "compose": [
- {
- "in": (ADDR[0], DP["quantity"], "DIVISIBLE", "XCP"),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01",
- ),
- },
- {
- "in": (ADDR[0], 1, "DIVISIBLE", "PARENT.already.issued"),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify("000000320000000000000001000000a25be34b6601530821671b1065"),
- ),
- },
- ],
- "parse": [
- {
- "comment": "dividend 1",
- "in": (
- {
- "tx_hash": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
- "supported": 1,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "data": b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01",
- "tx_index": 502,
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "block_index": DP["default_block_index"],
- "btc_amount": 0,
- "fee": 10000,
- "destination": "",
- "block_time": 155409000,
- },
- ),
- "records": [
- {
- "table": "dividends",
- "values": {
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "dividend_asset": "XCP",
- "fee_paid": 60000,
- "quantity_per_unit": 100000000,
+ },
+ {
+ "comment": "search by memo hex",
+ "in": (
+ "sends",
+ [{"field": "memo_hex", "op": "=", "value": "68656C6C6F"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "out": [
+ {
+ "tx_index": 482,
+ "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
+ "block_index": 310481,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "tx_hash": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "dividend",
- "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
"quantity": 100000000,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "dividend",
- "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
- "quantity": 1000000000,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ "status": "valid",
+ "memo": "hello",
+ "memo_hex": "68656c6c6f",
+ "msg_index": 0,
+ "fee_paid": 0,
+ }
+ ],
+ },
+ {
+ "comment": "search by memo hex",
+ "in": (
+ "sends",
+ [{"field": "memo_hex", "op": "=", "value": "68656c6c6f"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "out": [
+ {
+ "tx_index": 482,
+ "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
+ "block_index": 310481,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "dividend",
- "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
"quantity": 100000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "dividend",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
- "quantity": 1200000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "dividend fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "450c4ced564fa52a84746ecd79d64db6f124bddee19ff2c3cd926adea673ce4c",
- "quantity": 60000,
- },
- },
- ],
- },
- {
- "comment": "dividend 2",
- "in": (
- {
- "tx_index": 502,
- "btc_amount": 0,
- "block_time": 155409000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx_hash": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
- "fee": 10000,
- "block_index": DP["default_block_index"],
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "supported": 1,
- "destination": "",
- "data": b"\x00\x00\x002\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x00\x01",
- },
- ),
- "records": [
- {
- "table": "dividends",
- "values": {
- "asset": "NODIVISIBLE",
- "block_index": DP["default_block_index"],
- "dividend_asset": "XCP",
- "fee_paid": 40000,
- "quantity_per_unit": 1,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"status": "valid",
- "tx_hash": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "dividend",
- "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
- "quantity": 5,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "dividend",
- "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
- "quantity": 10,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "dividend",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
- "quantity": 15,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "dividend fee",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "5a36e9d939e70917695065b11b728f7ccbc7b828ae3baca1115885d8889e67c7",
- "quantity": 40000,
- },
- },
- ],
- },
- ],
- },
- "order": {
- "validate": [
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- DP["quantity"],
- "XCP",
- DP["quantity"],
- 2000,
- 0,
- DP["default_block_index"],
- ),
- "out": ([]),
- },
- {
- "in": (
- P2SH_ADDR[0],
- "DIVISIBLE",
- DP["quantity"],
- "XCP",
- DP["quantity"],
- 2000,
- 0,
- DP["default_block_index"],
- ),
- "out": ([]),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- DP["quantity"],
- "XCP",
- DP["quantity"],
- 2000,
- 0.5,
- DP["default_block_index"],
- ),
- "out": (["fee_required must be in satoshis"]),
- },
- {
- "in": (
- ADDR[0],
- "BTC",
- DP["quantity"],
- "BTC",
- DP["quantity"],
- 2000,
- 0,
- DP["default_block_index"],
- ),
- "out": (["cannot trade BTC for itself"]),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- DP["quantity"] / 3,
- "XCP",
- DP["quantity"],
- 2000,
- 0,
- DP["default_block_index"],
- ),
- "out": (["give_quantity must be in satoshis"]),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- DP["quantity"],
- "XCP",
- DP["quantity"] / 3,
- 2000,
- 0,
- DP["default_block_index"],
- ),
- "out": (["get_quantity must be in satoshis"]),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- DP["quantity"],
- "XCP",
- DP["quantity"],
- 1.5,
- 0,
- DP["default_block_index"],
- ),
- "out": (["expiration must be expressed as an integer block delta"]),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- -DP["quantity"],
- "XCP",
- -DP["quantity"],
- -2000,
- -10000,
- DP["default_block_index"],
- ),
- "out": (
- [
- "non‐positive give quantity",
- "non‐positive get quantity",
- "negative fee_required",
- "negative expiration",
- ]
- ),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- 0,
- "XCP",
- DP["quantity"],
- 2000,
- 0,
- DP["default_block_index"],
- ),
- "out": (["non‐positive give quantity", "zero give or zero get"]),
- },
- {
- "in": (
- ADDR[0],
- "NOASSETA",
- DP["quantity"],
- "NOASSETB",
- DP["quantity"],
- 2000,
- 0,
- DP["default_block_index"],
- ),
- "out": (["no such asset to give (NOASSETA)", "no such asset to get (NOASSETB)"]),
- },
- {
- "in": (
- ADDR[0],
- "DIVISIBLE",
- 2**63 + 10,
- "XCP",
- DP["quantity"],
- 4 * 2016 + 10,
- 0,
- DP["default_block_index"],
- ),
- "out": (["integer overflow", "expiration overflow"]),
- },
- ],
- "compose": [
- {
- "in": (ADDR[0], "BTC", DP["small"], "XCP", DP["small"] * 2, DP["expiration"], 0),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (
- P2SH_ADDR[0],
- "BTC",
- DP["small"],
- "XCP",
- DP["small"] * 2,
- DP["expiration"],
- 0,
- ),
- "out": (
- P2SH_ADDR[0],
- [],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (
- ADDR[0],
- "XCP",
- round(DP["small"] * 2.1),
- "BTC",
- DP["small"],
- DP["expiration"],
- DP["fee_required"],
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
- ),
- },
- {
- "in": (
- MULTISIGADDR[0],
- "BTC",
- DP["small"],
- "XCP",
- DP["small"] * 2,
- DP["expiration"],
- 0,
- ),
- "out": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- },
- {
- "in": (
- MULTISIGADDR[0],
- "XCP",
- round(DP["small"] * 2.1),
- "BTC",
- DP["small"],
- DP["expiration"],
- DP["fee_required"],
- ),
- "out": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
- ),
- },
- {
- "in": (
- ADDR[0],
- "MAXI",
- 2**63 - 1,
- "XCP",
- DP["quantity"],
- DP["expiration"],
- DP["fee_required"],
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
- ),
- },
- {
- "in": (ADDR[0], "MAXI", 2**63 - 1, "XCP", DP["quantity"], DP["expiration"], 2**63),
- "error": (exceptions.ComposeError, ["integer overflow"]),
- },
- {
- "in": (
- ADDR[0],
- "MAXI",
- 2**63,
- "XCP",
- DP["quantity"],
- DP["expiration"],
- DP["fee_required"],
- ),
- "error": (exceptions.ComposeError, "insufficient funds"),
- },
- {
- "comment": "give subasset",
- "in": (
- ADDR[0],
- "PARENT.already.issued",
- 100000000,
- "XCP",
- DP["small"],
- DP["expiration"],
- DP["fee_required"],
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "0000000a01530821671b10650000000005f5e10000000000000000010000000002faf080000a00000000000dbba0"
- ),
- ),
- },
- {
- "comment": "get subasset",
- "in": (
- ADDR[0],
- "XCP",
- DP["small"],
- "PARENT.already.issued",
- 100000000,
- DP["expiration"],
- DP["fee_required"],
- ),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "0000000a00000000000000010000000002faf08001530821671b10650000000005f5e100000a00000000000dbba0"
- ),
- ),
- },
- ],
- "parse": [
- {
- "comment": "1",
- "in": (
- {
- "destination": None,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- "tx_index": 502,
- "data": b"\x00\x00\x00\n\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "fee": 10000,
- "btc_amount": None,
- "supported": 1,
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 2000,
- "expire_index": DP["default_block_index"] + 2000,
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 0,
- "give_asset": "DIVISIBLE",
- "give_quantity": 100000000,
- "give_remaining": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "filled",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "order_matches",
- "values": {
- "backward_asset": "DIVISIBLE",
- "backward_quantity": 100000000,
- "block_index": DP["default_block_index"],
+ "memo": "hello",
+ "memo_hex": "68656c6c6f",
+ "msg_index": 0,
"fee_paid": 0,
- "forward_asset": "XCP",
- "forward_quantity": 100000000,
- "id": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "match_expire_index": DP["default_block_index"] + 20,
- "status": "completed",
- "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx0_block_index": DP["default_block_index"] - 495,
- "tx0_expiration": 2000,
- "tx0_hash": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
- "tx0_index": 7,
- "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx1_block_index": DP["default_block_index"],
- "tx1_expiration": 2000,
- "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx1_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ }
+ ],
+ },
+ {
+ "comment": "search with invalid memo hex",
+ "in": (
+ "sends",
+ [{"field": "memo_hex", "op": "=", "value": "badx"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "error": (APIError, "Invalid memo_hex value"),
+ },
+ {
+ "comment": "search by memo hex",
+ "in": (
+ "sends",
+ [{"field": "memo_hex", "op": "=", "value": "fade0001"}],
+ "AND",
+ None,
+ None,
+ None,
+ None,
+ None,
+ 1000,
+ 0,
+ True,
+ ),
+ "out": [
+ {
+ "tx_index": 483,
+ "tx_hash": "c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34",
+ "block_index": 310482,
+ "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "order match",
- "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "open order",
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "calling_function": "order match",
- "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
"quantity": 100000000,
+ "status": "valid",
+ "memo": "",
+ "memo_hex": "fade0001",
+ "msg_index": 0,
+ "fee_paid": 0,
+ }
+ ],
+ },
+ ],
+ },
+ "script": {
+ "validate": [
+ {
+ "comment": "valid bitcoin address",
+ "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",),
+ "out": None,
+ },
+ {"comment": "valid bitcoin P2SH address", "in": (P2SH_ADDR[0],), "out": None},
+ {
+ "comment": "invalid bitcoin address: bad checksum",
+ "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP7",),
+ "error": (script.Base58Error, "invalid base58 string"),
+ },
+ {
+ "comment": "valid multi‐sig",
+ "in": (
+ "1_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
+ ),
+ "out": None,
+ },
+ {
+ "comment": "invalid multi‐sig with P2SH addres",
+ "in": ("1_" + P2SH_ADDR[0] + "_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",),
+ "error": (
+ script.MultiSigAddressError,
+ "Invalid PubKeyHashes. Multi‐signature address must use PubKeyHashes, not public keys.",
+ ),
+ },
+ ],
+ "scriptpubkey_to_address": [
+ # "OP_DUP OP_HASH160 4838d8b3588c4c7ba7c1d06f866e9b3739c63037 OP_EQUALVERIFY OP_CHECKSIG"
+ {
+ "in": (
+ bitcoinlib.core.CScript(
+ bitcoinlib.core.x("76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac")
+ ),
+ ),
+ "out": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ # "OP_DUP OP_HASH160 8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec OP_EQUALVERIFY OP_CHECKSIG"
+ {
+ "in": (
+ bitcoinlib.core.CScript(
+ bitcoinlib.core.x("76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac")
+ ),
+ ),
+ "out": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ },
+ # "1 035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe35 02309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17 0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977 3 OP_CHECKMULTISIG"
+ {
+ "in": (
+ bitcoinlib.core.CScript(
+ bitcoinlib.core.x(
+ "5121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae"
+ )
+ ),
+ ),
+ "out": "1_mjH9amw2tJrsrw76PVvCkCQ18V4pZCVtm5_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_mvgph5nejRWUVvbzyq7TU9ENpJyV97ua37_3",
+ },
+ {
+ "in": ("mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",),
+ "error": (exceptions.DecodeError, "invalid script"),
+ },
+ {
+ "in": (
+ [
+ "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ ],
+ ),
+ "error": (exceptions.DecodeError, "invalid script"),
+ },
+ {
+ "in": (
+ bitcoinlib.core.CScript(
+ bitcoinlib.core.x("6a53657466697665207361797320686921")
+ ),
+ ),
+ "error": (exceptions.DecodeError, "invalid script"),
+ },
+ {
+ "comment": "p2pkh",
+ "in": (
+ bitcoinlib.core.CScript(
+ bitcoinlib.core.x("76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac")
+ ),
+ ),
+ "out": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ {
+ "comment": "p2sh",
+ "in": (
+ bitcoinlib.core.CScript(
+ bitcoinlib.core.x("a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87")
+ ),
+ ),
+ "out": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
+ },
+ ],
+ "get_asm": [{"in": (b"",), "error": (exceptions.DecodeError, "empty output")}],
+ "base58_encode": [
+ {
+ "comment": "random bytes",
+ "in": (b"\x82\xe3\x069\x16\x17I\x12S\x81\xeaQC\xa6J\xac",),
+ "out": "HARXEpbq7gJQGcSVUtubYo",
+ },
+ {
+ "in": (b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee",),
+ "out": "qb3y62fmEEVTPySXPQ77WXok6H",
+ },
+ ],
+ "base58_check_encode": [
+ {
+ "comment": "valid mainnet bitcoin address",
+ "in": ("010966776006953d5567439e5e39f86a0d273bee", b"\x00"),
+ "out": "16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",
+ },
+ {
+ "comment": "valid mainnet bitcoin P2SH address",
+ "in": ("010966776006953d5567439e5e39f86a0d273bee", b"\x05"),
+ "out": "31nVrspaydBz8aMpxH9WkS2DuhgqS1fCuG",
+ # TODO }, {
+ # 'invalid mainnet bitcoin address: leading zero byte,
+ # 'in': ('SOMETHING', b'\x00'),
+ # 'error': (script.AddressError, 'encoded address does not decode properly')
+ },
+ ],
+ "base58_check_decode": [
+ {
+ "comment": "valid mainnet bitcoin address",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM", b"\x00"),
+ "out": b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee",
+ },
+ {
+ "comment": "valid mainnet bitcoin address that contains a padding byte",
+ "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC", b"\x00"),
+ "out": b"\x1a&jGxV\xea\xd2\x9e\xcb\xe6\xaeQ\xad:,\x8dG<\xf4",
+ },
+ {
+ "comment": "valid mainnet bitcoin P2SH address",
+ "in": ("31nVrspaydBz8aMpxH9WkS2DuhgqS1fCuG", b"\x05"),
+ "out": b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee",
+ },
+ {
+ "comment": "valid mainnet bitcoin address that contains a padding byte, checked against incorrect version byte",
+ "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC", b"\x05"),
+ "error": (script.VersionByteError, "incorrect version byte"),
+ },
+ {
+ "comment": "valid mainnet bitcoin P2SH address, checked against incorrect version byte",
+ "in": ("31nVrspaydBz8aMpxH9WkS2DuhgqS1fCuG", b"\x00"),
+ "error": (script.VersionByteError, "incorrect version byte"),
+ },
+ {
+ "comment": "wrong version byte",
+ "in": ("26UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM", b"\x00"),
+ "error": (script.Base58Error, "invalid base58 string"),
+ },
+ {
+ "comment": "invalid mainnet bitcoin address: bad checksum",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvN", b"\x00"),
+ "error": (script.Base58Error, "invalid base58 string"),
+ },
+ {
+ "comment": "valid testnet bitcoin address that we use in many tests",
+ "in": (ADDR[0], b"\x6f"),
+ "out": b"H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607",
+ },
+ {
+ "comment": "invalid mainnet bitcoin address: invalid character",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjv0", b"\x00"),
+ "error": (script.Base58Error, "invalid base58 string"),
+ },
+ ],
+ # base58_decode is the raw decoding, we use the test cases from base58_check_decode
+ "base58_decode": [
+ {
+ "comment": "valid mainnet bitcoin address",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
+ "out": b"\x00\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee\xd6\x19g\xf6",
+ },
+ {
+ "comment": "valid mainnet bitcoin address that contains a padding byte",
+ "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC",),
+ "out": b"\x00\x1a&jGxV\xea\xd2\x9e\xcb\xe6\xaeQ\xad:,\x8dG<\xf4\x07eG#",
+ },
+ {
+ "comment": "wrong version byte",
+ "in": ("26UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
+ "out": b"\x0c\x01\x86\xaa\xbd\xa1\xd2\xdaJ\xf2\xd4\xbb\xe5=N\xe2\x08\xa6\x8eo\xd6\x19g\xf6",
+ },
+ {
+ "comment": "invalid mainnet bitcoin address: bad checksum",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvN",),
+ "out": b"\x00\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee\xd6\x19g\xf7",
+ },
+ {
+ "comment": "valid testnet bitcoin address that we use in many tests",
+ "in": (ADDR[0],),
+ "out": b"oH8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607\x98!\xc4U",
+ },
+ {
+ "comment": "invalid mainnet bitcoin address: invalid character",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjv0",),
+ "error": (script.Base58Error, "Not a valid Base58 character: ‘0’"),
+ },
+ ],
+ # base58_check_decode_parts is the raw decoding and splitting, we use the test cases from base58_check_decode
+ "base58_check_decode_parts": [
+ {
+ "comment": "valid mainnet bitcoin address",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
+ "out": (b"\x00", b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee", b"\xd6\x19g\xf6"),
+ },
+ {
+ "comment": "valid mainnet bitcoin address that contains a padding byte",
+ "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC",),
+ "out": (
+ b"\x00",
+ b"\x1a&jGxV\xea\xd2\x9e\xcb\xe6\xaeQ\xad:,\x8dG<\xf4",
+ b"\x07eG#",
+ ),
+ },
+ {
+ "comment": "wrong version byte",
+ "in": ("26UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
+ "out": (
+ b"\x0c",
+ b"\x01\x86\xaa\xbd\xa1\xd2\xdaJ\xf2\xd4\xbb\xe5=N\xe2\x08\xa6\x8eo",
+ b"\xd6\x19g\xf6",
+ ),
+ },
+ {
+ "comment": "invalid mainnet bitcoin address: bad checksum",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvN",),
+ "out": (b"\x00", b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee", b"\xd6\x19g\xf7"),
+ },
+ {
+ "comment": "valid testnet bitcoin address that we use in many tests",
+ "in": (ADDR[0],),
+ "out": (
+ b"o",
+ b"H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607",
+ b"\x98!\xc4U",
+ ),
+ },
+ {
+ "comment": "invalid mainnet bitcoin address: invalid character",
+ "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjv0",),
+ "error": (script.Base58Error, "Not a valid Base58 character: ‘0’"),
+ },
+ ],
+ "is_multisig": [
+ {"comment": "mono‐sig", "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",), "out": False},
+ {
+ "comment": "multi‐sig",
+ "in": (
+ "1_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
+ ),
+ "out": True,
+ },
+ ],
+ "is_fully_valid": [
+ {
+ "comment": "fully valid compressed public key",
+ "in": (
+ b"\x03T\xdaT\x0f\xb2g;u\xe6\xc3\xc9\x94\xf8\n\xd0\xc8C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$E",
+ ),
+ "out": True,
+ },
+ {
+ "comment": "not fully valid compressed public key: last byte decremented; not on curve",
+ "in": (
+ b"\x03T\xdaT\x0f\xb2g;u\xe6\xc3\xc9\x94\xf8\n\xd0\xc8C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$D",
+ ),
+ "out": False,
+ },
+ {
+ "comment": "invalid compressed public key: first byte not `\x02` or `\x03`",
+ "in": (
+ b"\x01T\xdaT\x0f\xb2g;u\xe6\xc3\xc9\x94\xf8\n\xd0\xc8C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$E",
+ ),
+ "out": False,
+ },
+ ],
+ "make_canonical": [
+ {
+ "in": (
+ "1_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_2",
+ ), # TODO: Pubkeys out of order
+ "out": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ },
+ {
+ "in": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ ), # TODO: Pubkeys out of order
+ "out": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ },
+ {
+ "comment": "mono‐sig",
+ "in": ("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",),
+ "out": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ {"comment": "mono‐sig P2SH", "in": (P2SH_ADDR[0],), "out": P2SH_ADDR[0]},
+ {
+ "in": (
+ "1_02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
+ ),
+ "error": (
+ script.MultiSigAddressError,
+ "Multi‐signature address must use PubKeyHashes, not public keys.",
+ ),
+ },
+ ],
+ "test_array": [
+ {
+ "in": (
+ "1",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 2,
+ ),
+ "out": None,
+ },
+ {
+ "in": (
+ "Q",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 2,
+ ),
+ "error": (script.MultiSigAddressError, "Signature values not integers."),
+ },
+ {
+ "in": (
+ "1",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ None,
+ ),
+ "error": (script.MultiSigAddressError, "Signature values not integers."),
+ },
+ {
+ "in": (
+ "0",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 2,
+ ),
+ "error": (script.MultiSigAddressError, "Invalid signatures_required."),
+ },
+ {
+ "in": (
+ "4",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 2,
+ ),
+ "error": (script.MultiSigAddressError, "Invalid signatures_required."),
+ },
+ {
+ "in": (
+ "1",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 1,
+ ),
+ "error": (script.MultiSigAddressError, "Invalid signatures_possible."),
+ },
+ {
+ "in": (
+ "2",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 4,
+ ),
+ "error": (script.MultiSigAddressError, "Invalid signatures_possible."),
+ },
+ {
+ "in": (
+ "1",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_2",
+ ],
+ 2,
+ ),
+ "error": (
+ script.MultiSigAddressError,
+ "Invalid characters in pubkeys/pubkeyhashes.",
+ ),
+ },
+ {
+ "in": (
+ "3",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 3,
+ ),
+ "error": (
+ script.InputError,
+ "Incorrect number of pubkeys/pubkeyhashes in multi‐signature address.",
+ ),
+ },
+ ],
+ "construct_array": [
+ {
+ "in": (
+ "1",
+ [
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ],
+ 2,
+ ),
+ "out": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ }
+ ],
+ "extract_array": [
+ {
+ "in": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ ),
+ "out": (
+ 1,
+ [
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ ],
+ 2,
+ ),
+ }
+ ],
+ "pubkeyhash_array": [
+ {
+ "in": (
+ "1_xxxxxxxxxxxWRONGxxxxxxxxxxxxxxxxxx_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ ),
+ "error": (
+ script.MultiSigAddressError,
+ "Invalid PubKeyHashes. Multi‐signature address must use PubKeyHashes, not public keys.",
+ ),
+ },
+ {
+ "in": (
+ "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ ),
+ "out": [
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ ],
+ },
+ ],
+ "is_pubkeyhash": [
+ {
+ "comment": "valid bitcoin address",
+ "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",),
+ "out": True,
+ },
+ {
+ "comment": "valid P2SH bitcoin address, but is_pubkeyhash specifically checks for valid P2PKH address",
+ "in": (P2SH_ADDR[0],),
+ "out": False,
+ },
+ {
+ "comment": "invalid checksum",
+ "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP7",),
+ "out": False,
+ },
+ {
+ "comment": "invalid version byte",
+ "in": ("LnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",),
+ "out": False,
+ },
+ ],
+ "make_pubkeyhash": [
+ {
+ "comment": "mono‐sig",
+ "in": ("02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558",),
+ "out": "mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",
+ },
+ {
+ "comment": "multi‐sig, with pubkey in first position and pubkeyhash in second",
+ "in": (
+ "1_02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
+ ),
+ "out": "1_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
+ },
+ ],
+ "extract_pubkeys": [
+ {"comment": "pubkeyhash", "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",), "out": []},
+ {"comment": "p2sh", "in": (P2SH_ADDR[0],), "out": []},
+ {
+ "comment": "mono‐sig",
+ "in": ("02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558",),
+ "out": ["02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558"],
+ },
+ {
+ "comment": "multi‐sig, with pubkey in first position and pubkeyhash in second",
+ "in": (
+ "1_02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
+ ),
+ "out": ["02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558"],
+ },
+ ],
+ },
+ "util": {
+ "api": [
+ {
+ "in": (
+ "create_burn",
+ {
+ "source": ADDR[1],
+ "quantity": DP["burn_quantity"],
+ "encoding": "multisig",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ ),
+ "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf4302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
+ },
+ {
+ "in": (
+ "create_send",
+ {
+ "source": ADDR[0],
+ "destination": ADDR[1],
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "filled",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 0,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "calling_function": "filled",
- "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
- "quantity": 0,
+ "quantity": DP["small"],
+ "encoding": "multisig",
},
- },
- ],
- },
- {
- "comment": "P2SH order",
- "in": (
- {
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "block_index": DP["default_block_index"],
- "block_time": 155409000,
- "btc_amount": None,
- "data": b"\x00\x00\x00\n\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "destination": None,
- "fee": 10000,
- "source": P2SH_ADDR[0],
- "supported": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 2000,
- "expire_index": DP["default_block_index"] + 2000,
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 0,
- "give_asset": "DIVISIBLE",
- "give_quantity": 100000000,
- "give_remaining": 0,
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0322020000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae283bea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_send",
+ {
"source": P2SH_ADDR[0],
- "status": "filled",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "order_matches",
- "values": {
- "backward_asset": "DIVISIBLE",
- "backward_quantity": 100000000,
- "block_index": DP["default_block_index"],
- "fee_paid": 0,
- "forward_asset": "XCP",
- "forward_quantity": 100000000,
- "id": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "match_expire_index": DP["default_block_index"] + 20,
- "status": "completed",
- "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx0_block_index": DP["default_block_index"] - 495,
- "tx0_expiration": 2000,
- "tx0_hash": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
- "tx0_index": 7,
- "tx1_address": P2SH_ADDR[0],
- "tx1_block_index": DP["default_block_index"],
- "tx1_expiration": 2000,
- "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx1_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": P2SH_ADDR[0],
+ "destination": ADDR[1],
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "order match",
- "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "open order",
- "address": P2SH_ADDR[0],
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "calling_function": "order match",
- "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ "quantity": DP["small"],
+ "encoding": "multisig",
+ "dust_return_pubkey": False,
+ "regular_dust_size": DP["regular_dust_size"],
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "filled",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 0,
+ ),
+ "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210397b51de78b0f3a171f5ed27fff56d17dcba739c8b00035c8bbb9c380fdc4ed1321036932bcbeac2a4d8846b7feb4bf93b2b88efd02f2d8dc1fc0067bcc972257e3912111111111111111111111111111111111111111111111111111111111111111111153ae00aaf5050000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000",
+ },
+ {
+ "in": (
+ "create_issuance",
+ {
+ "source": ADDR[0],
+ "transfer_destination": None,
+ "asset": "BSSET",
+ "quantity": 1000,
+ "divisible": True,
+ "description": "",
+ "encoding": "multisig",
},
- },
- {
- "table": "credits",
- "values": {
- "address": P2SH_ADDR[0],
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210358415bf04af834423d3dd7adb2dc727a03086e897d9fba5aee7a331919e487d6210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_issuance",
+ {
+ "source": ADDR[0],
+ "transfer_destination": ADDR[1],
"asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "calling_function": "filled",
- "event": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
"quantity": 0,
+ "divisible": True,
+ "description": "",
+ "encoding": "multisig",
},
- },
- ],
- },
- {
- "comment": "order 2",
- "in": (
- {
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "btc_amount": None,
- "tx_index": 502,
- "supported": 1,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "fee": 10000,
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0fB@\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "destination": None,
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 2000,
- "expire_index": DP["default_block_index"] + 2000,
- "fee_provided": 10000,
- "fee_provided_remaining": 1000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 0,
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0322020000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210258415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e4874b210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae283bea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_order",
+ {
+ "source": ADDR[0],
"give_asset": "BTC",
- "give_quantity": 1000000,
- "give_remaining": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "order_matches",
- "values": {
- "backward_asset": "BTC",
- "backward_quantity": 1000000,
- "block_index": DP["default_block_index"],
- "fee_paid": 9000,
- "forward_asset": "XCP",
- "forward_quantity": 100000000,
- "id": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "match_expire_index": DP["default_block_index"] + 20,
- "status": "pending",
- "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx0_block_index": DP["default_block_index"] - 491,
- "tx0_expiration": 2000,
- "tx0_hash": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a",
- "tx0_index": 11,
- "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx1_block_index": DP["default_block_index"],
- "tx1_expiration": 2000,
- "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx1_index": 502,
- },
- },
- ],
- },
- {
- "comment": "3",
- "in": (
- {
- "fee": 10000,
- "block_time": 155409000,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "destination": None,
- "supported": 1,
- "tx_index": 502,
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n,+\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "block_hash": DP["default_block_hash"],
- "btc_amount": None,
- "block_index": DP["default_block_index"],
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 2000,
- "expire_index": 312501,
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
+ "give_quantity": DP["small"],
+ "get_asset": "XCP",
+ "get_quantity": DP["small"] * 2,
+ "expiration": DP["expiration"],
"fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "BTC",
- "get_quantity": 666666,
- "get_remaining": 0,
+ "fee_provided": DP["fee_provided"],
+ "encoding": "multisig",
+ },
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210348415bf04af834423d3dd7adaedc727a030865759e9fba5aee78c9ea71e5870f210354da540fb2673b75e6c3c994f80ad0c8431643bab28ced783cd94079bbe72445210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeec18db0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_order",
+ {
+ "source": ADDR[0],
"give_asset": "XCP",
- "give_quantity": 99999990,
- "give_remaining": 140,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "give_quantity": round(DP["small"] * 2.1),
+ "get_asset": "BTC",
+ "get_quantity": DP["small"],
+ "expiration": DP["expiration"],
+ "fee_required": DP["fee_required"],
+ "encoding": "multisig",
},
- },
- {
- "table": "order_matches",
- "values": {
- "backward_asset": "XCP",
- "backward_quantity": 99999850,
- "block_index": DP["default_block_index"],
- "fee_paid": 0,
- "forward_asset": "BTC",
- "forward_quantity": 666666,
- "id": "a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "match_expire_index": DP["default_block_index"] + 20,
- "status": "pending",
- "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx0_block_index": 310011,
- "tx0_expiration": 2000,
- "tx0_hash": "a1768d7db2db3b9732b26df8c04db4b9a8535a1e5cf684a680e81e7c06f394b6",
- "tx0_index": 12,
- "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx1_block_index": DP["default_block_index"],
- "tx1_expiration": 2000,
- "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx1_index": 502,
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210248415bf04af834423d3dd7adaedc727a030865759f9fba5aee7c7136b1e58715210354da540fb2663b75e6c3ce9be98ad0c8431643bab28156d83cd94079bbe72460210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_burn",
+ {
+ "source": MULTISIGADDR[0],
+ "quantity": int(DP["quantity"] / 2),
+ "encoding": "multisig",
},
- },
- {
- "table": "debits",
- "values": {
- "action": "open order",
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87dafa02000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "in": (
+ "create_send",
+ {
+ "source": ADDR[0],
+ "destination": MULTISIGADDR[0],
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 99999990,
- },
- },
- ],
- },
- {
- "comment": "order 3",
- "in": (
- {
- "block_time": 155409000,
- "destination": None,
- "btc_amount": None,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x84\x80\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "supported": 1,
- "fee": 10000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "tx_index": 502,
- "block_index": DP["default_block_index"],
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 2000,
- "expire_index": 312501,
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "BTC",
- "get_quantity": 1999999,
- "get_remaining": 1999999,
- "give_asset": "XCP",
- "give_quantity": 99999990,
- "give_remaining": 99999990,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "quantity": DP["quantity"],
+ "encoding": "multisig",
},
- },
- {
- "table": "debits",
- "values": {
- "action": "open order",
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_send",
+ {
+ "source": MULTISIGADDR[0],
+ "destination": ADDR[0],
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 99999990,
- },
- },
- ],
- },
- {
- "comment": "5",
- "in": (
- {
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xa1 \x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "tx_index": 502,
- "destination": None,
- "block_index": DP["default_block_index"],
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "btc_amount": None,
- "block_time": 155409000,
- "supported": 1,
- "fee": 1000000,
- "block_hash": DP["default_block_hash"],
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 2000,
- "expire_index": DP["default_block_index"] + 2000,
- "fee_provided": 1000000,
- "fee_provided_remaining": 1000000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 100000000,
- "give_asset": "BTC",
- "give_quantity": 500000,
- "give_remaining": 500000,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "comment": "order 4",
- "in": (
- {
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "btc_amount": None,
- "tx_index": 502,
- "supported": 1,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "fee": 10000,
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00 foo\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "destination": None,
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 0,
- "expire_index": DP["default_block_index"],
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "0",
- "get_quantity": 0,
- "get_remaining": 0,
- "give_asset": "0",
- "give_quantity": 0,
- "give_remaining": 0,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "status": "invalid: could not unpack",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- ],
- },
- {
- "comment": "7",
- "in": (
- {
- "btc_amount": None,
- "block_time": 155409000,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "supported": 1,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "block_hash": DP["default_block_hash"],
- "destination": None,
- "block_index": DP["default_block_index"],
- "data": b"\x00\x00\x00\n\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x01\xf4\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x07\xd0\x00\x00\x00\x00\x00\x00\x00\x00",
- "fee": 10000,
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 2000,
- "expire_index": DP["default_block_index"] + 2000,
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 100000000,
- "give_asset": "NODIVISIBLE",
- "give_quantity": 500,
- "give_remaining": 500,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "open order",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "NODIVISIBLE",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 500,
- },
- },
- ],
- },
- {
- "comment": "order 5",
- "in": (
- {
- "block_index": DP["default_block_index"],
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "destination": "",
- "fee": 10000,
- "tx_index": 502,
- "supported": 1,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "block_time": 155409000,
- "btc_amount": 0,
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 10,
- "expire_index": DP["default_block_index"] + 10,
- "fee_provided": 10000,
- "fee_provided_remaining": 1000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 0,
- "give_asset": "BTC",
- "give_quantity": 50000000,
- "give_remaining": 49000000,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "order_matches",
- "values": {
- "backward_asset": "BTC",
- "backward_quantity": 1000000,
- "block_index": DP["default_block_index"],
- "fee_paid": 9000,
- "forward_asset": "XCP",
- "forward_quantity": 100000000,
- "id": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "match_expire_index": DP["default_block_index"] + 20,
- "status": "pending",
- "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx0_block_index": DP["default_block_index"] - 491,
- "tx0_expiration": 2000,
- "tx0_hash": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a",
- "tx0_index": 11,
- "tx1_address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "tx1_block_index": DP["default_block_index"],
- "tx1_expiration": 10,
- "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx1_index": 502,
+ "quantity": DP["quantity"],
+ "encoding": "multisig",
},
- },
- ],
- },
- {
- "comment": "order 6",
- "in": (
- {
- "block_index": DP["default_block_index"],
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "destination": "",
- "fee": 10000,
- "tx_index": 502,
- "supported": 1,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "block_time": 155409000,
- "btc_amount": 0,
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 10,
- "expire_index": DP["default_block_index"] + 10,
- "fee_provided": 10000,
- "fee_provided_remaining": 1000,
- "fee_required": 0,
- "fee_required_remaining": 0,
- "get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 0,
- "give_asset": "BTC",
- "give_quantity": 50000000,
- "give_remaining": 49000000,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0322020000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae14bdf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "in": (
+ "create_send",
+ {
+ "source": MULTISIGADDR[0],
+ "destination": MULTISIGADDR[1],
+ "asset": "XCP",
+ "quantity": DP["quantity"],
+ "encoding": "multisig",
},
- },
- {
- "table": "order_matches",
- "values": {
- "backward_asset": "BTC",
- "backward_quantity": 1000000,
- "block_index": DP["default_block_index"],
- "fee_paid": 9000,
- "forward_asset": "XCP",
- "forward_quantity": 100000000,
- "id": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a_db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "match_expire_index": DP["default_block_index"] + 20,
- "status": "pending",
- "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "tx0_block_index": DP["default_block_index"] - 491,
- "tx0_expiration": 2000,
- "tx0_hash": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a",
- "tx0_index": 11,
- "tx1_address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "tx1_block_index": DP["default_block_index"],
- "tx1_expiration": 10,
- "tx1_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx1_index": 502,
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff03e8030000000000004751210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977210378ee11c3fb97054877a809ce083db292b16d971bcdc6aa4c8f92087133729d8b52aee8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4ebbf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "in": (
+ "create_issuance",
+ {
+ "source": MULTISIGADDR[0],
+ "transfer_destination": None,
+ "asset": "BSSET",
+ "quantity": 1000,
+ "divisible": True,
+ "description": "",
+ "encoding": "multisig",
},
- },
- ],
- },
- {
- "comment": "order 7",
- "in": (
- {
- "fee": 10000,
- "btc_amount": 0,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "supported": 1,
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
- "destination": "",
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expire_index": DP["default_block_index"] + 10,
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
- "fee_required": 900000,
- "fee_required_remaining": 900000,
- "get_asset": "BTC",
- "get_quantity": 50000000,
- "get_remaining": 50000000,
- "give_asset": "XCP",
- "give_quantity": 105000000,
- "give_remaining": 105000000,
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "open",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "expiration": 10,
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121020ecaf7ca87f0fd78a01d9a0d7e221e55beef3cde388be72d254826b32a6008382102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "in": (
+ "create_issuance",
+ {
+ "source": ADDR[0],
+ "transfer_destination": MULTISIGADDR[0],
+ "asset": "DIVISIBLE",
+ "quantity": 0,
+ "divisible": True,
+ "description": "",
+ "encoding": "multisig",
},
- },
- {
- "table": "debits",
- "values": {
- "action": "open order",
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "quantity": 105000000,
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210258415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e4874b210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_issuance",
+ {
+ "source": ADDR[0],
+ "asset": f"A{2 ** 64 - 1}",
+ "quantity": 1000,
+ "encoding": "multisig",
},
- },
- ],
- },
- {
- "comment": "order 8",
- "in": (
- {
- "btc_amount": 0,
- "fee": 10000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "",
- "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
- "tx_index": 502,
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "supported": 1,
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- },
- ),
- "records": [
- {
- "table": "orders",
- "values": {
- "block_index": DP["default_block_index"],
- "expiration": 10,
- "expire_index": DP["default_block_index"] + 10,
- "fee_provided": 10000,
- "fee_provided_remaining": 10000,
- "fee_required": 900000,
- "fee_required_remaining": 900000,
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210255415bf04af834423d3dd7adb2238d85fcf79a8a619fba5aee7a331919e4870d210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "comment": "1",
+ "in": (
+ "create_order",
+ {
+ "source": MULTISIGADDR[0],
+ "give_asset": "BTC",
+ "give_quantity": DP["small"],
"get_asset": "XCP",
- "get_quantity": 100000000,
- "get_remaining": 100000000,
- "give_asset": "MAXI",
- "give_quantity": 9223372036854775807,
- "give_remaining": 9223372036854775807,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "open",
- "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
- "tx_index": 502,
+ "get_quantity": DP["small"] * 2,
+ "expiration": DP["expiration"],
+ "fee_required": 0,
+ "fee_provided": DP["fee_provided"],
+ "encoding": "multisig",
},
- },
- {
- "table": "debits",
- "values": {
- "action": "open order",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "MAXI",
- "block_index": DP["default_block_index"],
- "event": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
- "quantity": 9223372036854775807,
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121021ecaf7ca87f0fd78a01d9a0d62221e55beef3722db8be72d254adc40426108d02103bc14528340c37d005aa9e764ded8c038ffa94625307a450077125d580099b53b210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aed89ae605000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "in": (
+ "create_order",
+ {
+ "source": MULTISIGADDR[0],
+ "give_asset": "XCP",
+ "give_quantity": round(DP["small"] * 2.1),
+ "get_asset": "BTC",
+ "get_quantity": DP["small"],
+ "expiration": DP["expiration"],
+ "fee_required": DP["fee_required"],
+ "encoding": "multisig",
},
- },
- ],
- },
- {
- "comment": "order shouldn't be inserted because fee_required is > MAX_INT",
- "in": (
- {
- "btc_amount": 0,
- "fee": 10000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "",
- "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5",
- "tx_index": 502,
- "data": b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x80\x00\x00\x00\x00\x00\x00\x00",
- "block_hash": "2d62095b10a709084b1854b262de77cb9f4f7cd76ba569657df8803990ffbfc6c12bca3c18a44edae9498e1f0f054072e16eef32dfa5e3dd4be149009115b4b8",
- "supported": 1,
- "block_time": 155409000,
- "block_index": DP["default_block_index"],
- },
- ),
- "records": [
- {
- "not": True, # NOT
- "table": "orders",
- "values": {
- "tx_hash": "0ec7da68a67e165693afd6c97566f8f509d302bceec8d1be0100335718a40fe5"
+ ),
+ "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121031ecaf7ca87f0fd78a01d9a0d62221e55beef3722da8be72d254e649c8261083d2102bc14528340c27d005aa9e06bcf58c038ffa946253077fea077125d580099b5bb210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
+ },
+ {
+ "in": (
+ "create_dividend",
+ {
+ "source": ADDR[0],
+ "quantity_per_unit": DP["quantity"],
+ "asset": "DIVISIBLE",
+ "dividend_asset": "XCP",
+ "encoding": "multisig",
},
- },
- ],
- },
- ],
- "expire": [{"in": (DP["default_block_index"] - 1,), "out": None}],
- },
- "sweep": {
- "validate": [
- {"in": (ADDR[6], ADDR[5], 1, None, DP["burn_start"]), "out": ([], 50000000.0)},
- {"in": (ADDR[6], ADDR[5], 2, None, DP["burn_start"]), "out": ([], 50000000.0)},
- {"in": (ADDR[6], ADDR[5], 3, None, DP["burn_start"]), "out": ([], 50000000.0)},
- {"in": (ADDR[6], ADDR[5], 1, "test", DP["burn_start"]), "out": ([], 50000000.0)},
- {"in": (ADDR[6], ADDR[5], 1, b"test", DP["burn_start"]), "out": ([], 50000000.0)},
- {
- "in": (ADDR[6], ADDR[5], 0, None, DP["burn_start"]),
- "out": (["must specify which kind of transfer in flags"], 50000000.0),
- },
- {
- "in": (ADDR[6], ADDR[6], 1, None, DP["burn_start"]),
- "out": (["destination cannot be the same as source"], 50000000.0),
- },
- {
- "in": (ADDR[6], ADDR[5], 8, None, DP["burn_start"]),
- "out": (["invalid flags 8"], 50000000.0),
- },
- {
- "in": (
- ADDR[6],
- ADDR[5],
- 1,
- "012345678900123456789001234567890012345",
- DP["burn_start"],
- ),
- "out": (["memo too long"], 50000000.0),
- },
- {
- "in": (ADDR[7], ADDR[5], 1, None, DP["burn_start"]),
- "out": (
- ["insufficient XCP balance for sweep. Need 0.5 XCP for antispam fee"],
- 50000000.0,
- ),
- },
- {
- "in": (ADDR[8], ADDR[5], 1, None, DP["burn_start"]),
- "out": (
- ["insufficient XCP balance for sweep. Need 0.5 XCP for antispam fee"],
- 50000000.0,
- ),
- },
- ],
- "compose": [
- {
- "in": (ADDR[6], ADDR[5], 1, None),
- "out": (
- "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
- [],
- b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x01",
- ),
- },
- {
- "in": (ADDR[6], ADDR[5], 2, None),
- "out": (
- "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
- [],
- b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x02",
- ),
- },
- {
- "in": (ADDR[6], ADDR[5], 3, None),
- "out": (
- "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
- [],
- b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x03",
- ),
- },
- {
- "in": (ADDR[6], ADDR[5], 3, "test"),
- "out": (
- "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
- [],
- b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x03test",
- ),
- },
- {
- "in": (ADDR[6], ADDR[5], 7, "cafebabe"),
- "out": (
- "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
- [],
- b"\x00\x00\x00\x04o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x07\xca\xfe\xba\xbe",
- ),
- },
- {
- "in": (ADDR[8], ADDR[5], 1, None),
- "error": (
- exceptions.ComposeError,
- ["insufficient XCP balance for sweep. Need 0.5 XCP for antispam fee"],
- ),
- },
- ],
- "unpack": [
- {
- "in": (
- b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x01",
- ),
- "out": {"destination": ADDR[5], "flags": 1, "memo": None},
- },
- {
- "in": (
- b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x02",
- ),
- "out": {"destination": ADDR[5], "flags": 2, "memo": None},
- },
- {
- "in": (
- b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x03test",
- ),
- "out": {"destination": ADDR[5], "flags": 3, "memo": "test"},
- },
- {
- "in": (
- b"o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x07\xca\xfe\xba\xbe",
- ),
- "out": {"destination": ADDR[5], "flags": 7, "memo": b"\xca\xfe\xba\xbe"},
- },
- ],
- "parse": [
- {
- "mock_protocol_changes": {"sweep_send": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[6],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 17630,
- "tx_index": 503,
- "destination": ADDR[5],
- "data": b"\x00\x00\x00\x03o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x01",
- },
- ),
- "records": [
- {
- "table": "sweeps",
- "values": {
- "block_index": DP["default_block_index"],
- "destination": ADDR[5],
- "source": ADDR[6],
- "status": "valid",
- "flags": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 503,
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121035a415bf04af834423d3dd7ad96dc727a030d90949e9fba5a4c21d05197e58735210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ },
+ {
+ "in": (
+ "create_dividend",
+ {
+ "source": ADDR[0],
+ "quantity_per_unit": 1,
+ "asset": "NODIVISIBLE",
+ "dividend_asset": "XCP",
+ "encoding": "multisig",
},
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[5],
+ ),
+ "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121025a415bf04af834423d3dd7ad96dc727a030865759f9fbc9036a64c1197e587c8210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
+ # CIP 9 enhanced_send tests
+ },
+ {
+ "comment": "standard op return send",
+ "mock_protocol_changes": {"enhanced_sends": False},
+ "in": (
+ "create_send",
+ {
+ "source": ADDR[0],
+ "destination": ADDR[1],
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "sweep",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 92899122099,
+ "quantity": DP["small"],
},
- },
- {
- "table": "debits",
- "values": {
- "action": "sweep",
- "address": ADDR[6],
+ ),
+ "out": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "03"
+ + "2202000000000000"
+ + "19"
+ + "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac"
+ + "0000000000000000"
+ + "1e"
+ + "6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aec80c39a"
+ + "4343ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000",
+ },
+ {
+ "comment": "standard op return send (with API parameter)",
+ "mock_protocol_changes": {"enhanced_sends": True},
+ "in": (
+ "create_send",
+ {
+ "use_enhanced_send": False,
+ "source": ADDR[0],
+ "destination": ADDR[1],
"asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 92899122099,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[5],
- "asset": "LOCKEDPREV",
- "block_index": DP["default_block_index"],
- "calling_function": "sweep",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 1000,
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "sweep",
- "address": ADDR[6],
- "asset": "LOCKEDPREV",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 1000,
+ "quantity": DP["small"],
},
- },
- ],
- },
- {
- "mock_protocol_changes": {"sweep_send": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[6],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 17630,
- "tx_index": 503,
- "destination": ADDR[5],
- "data": b"\x00\x00\x00\x03o\x9c\x8d\x1fT\x05E\x1d\xe6\x07\x0b\xf1\xdb\x86\xabj\xcc\xb4\x95\xb6%\x02",
- },
- ),
- "records": [
- {
- "table": "sweeps",
- "values": {
- "block_index": DP["default_block_index"],
- "destination": ADDR[5],
- "source": ADDR[6],
- "status": "valid",
- "flags": 2,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 503,
+ ),
+ "out": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "03"
+ + "2202000000000000"
+ + "19"
+ + "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac"
+ + "0000000000000000"
+ + "1e"
+ + "6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aec80c39a"
+ + "4343ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000",
+ },
+ {
+ "comment": "CIP 9 enhanced_send (op_return)",
+ "mock_protocol_changes": {"enhanced_sends": True},
+ "in": (
+ "create_send",
+ {
+ "source": ADDR[0],
+ "destination": ADDR[1],
+ "asset": "XCP",
+ "quantity": DP["small"],
},
- },
- {
- "table": "issuances",
- "values": {
- "quantity": 0,
- "asset_longname": None,
- "issuer": ADDR[5],
- "status": "valid",
- "locked": 0,
- "asset": "LOCKEDPREV",
- "fee_paid": 0,
- "callable": 0,
- "call_date": 0,
- "call_price": 0.0,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "description": "changed",
- "divisible": 1,
- "source": ADDR[6],
- "block_index": 310501,
- "tx_index": 503,
- "transfer": True,
+ ),
+ "out": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "02"
+ + "0000000000000000"
+ + "33"
+ + "6a312a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa"
+ + "aa46ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000",
+ },
+ {
+ "comment": "CIP 9 enhanced_send with memo",
+ "mock_protocol_changes": {"enhanced_sends": True},
+ "in": (
+ "create_send",
+ {
+ "memo": "hello",
+ "source": ADDR[0],
+ "destination": ADDR[1],
+ "asset": "XCP",
+ "quantity": DP["small"],
},
- },
- ],
- },
- ],
- },
- "dispenser": {
- "validate": [
- {
- "in": (ADDR[0], config.XCP, 100, 100, 100, 0, None, DP["burn_start"], None),
- "out": (1, None),
- },
- {
- "in": (ADDR[0], config.XCP, 200, 100, 100, 0, None, DP["burn_start"], None),
- "out": (None, ["escrow_quantity must be greater or equal than give_quantity"]),
- },
- {
- "in": (ADDR[0], config.BTC, 100, 100, 100, 0, None, DP["burn_start"], None),
- "out": (None, [f"cannot dispense {config.BTC}"]),
- },
- {
- "in": (ADDR[0], config.XCP, 100, 100, 100, 5, None, DP["burn_start"], None),
- "out": (None, ["invalid status 5"]),
- },
- {
- "in": (ADDR[0], "PARENT", 100, 1000000000, 100, 0, None, DP["burn_start"], None),
- "out": (
- None,
- ["address doesn't has enough balance of PARENT (100000000 < 1000000000)"],
- ),
- },
- {
- "in": (ADDR[5], config.XCP, 100, 100, 120, 0, None, DP["burn_start"], None),
- "out": (
- None,
- [
- f"address has a dispenser already opened for asset {config.XCP} with a different mainchainrate"
- ],
- ),
- },
- {
- "in": (ADDR[5], config.XCP, 120, 120, 100, 0, None, DP["burn_start"], None),
- "out": (
- None,
- [
- f"address has a dispenser already opened for asset {config.XCP} with a different give_quantity"
- ],
- ),
- },
- {
- "in": (ADDR[0], "PARENT", 0, 0, 0, 10, None, DP["burn_start"], None),
- "out": (None, ["address doesnt has an open dispenser for asset PARENT"]),
- },
- {
- "in": (
- ADDR[0],
- config.XCP,
- config.MAX_INT + 1,
- 100,
- 100,
- 0,
- None,
- DP["burn_start"],
- None,
- ),
- "out": (
- None,
- [
- "escrow_quantity must be greater or equal than give_quantity",
- "integer overflow",
- ],
- ),
- },
- {
- "in": (
- ADDR[0],
- config.XCP,
- 100,
- config.MAX_INT + 1,
- 100,
- 0,
- None,
- DP["burn_start"],
- None,
- ),
- "out": (
- None,
- [
- "address doesn't has enough balance of XCP (91875000000 < 9223372036854775808)",
- "integer overflow",
- ],
- ),
- },
- {
- "in": (
- ADDR[0],
- config.XCP,
- 100,
- 100,
- config.MAX_INT + 1,
- 0,
- None,
- DP["burn_start"],
- None,
- ),
- "out": (None, ["integer overflow"]),
- },
- ],
- "compose": [
- {
- "in": (ADDR[0], config.XCP, 100, 100, 100, 0),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00",
- ),
- },
- {
- "in": (ADDR[5], config.XCP, 0, 0, 0, 10),
- "out": (
- ADDR[5],
- [],
- b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n",
- ),
- },
- {
- "in": (ADDR[0], "PARENT", 100, 10000, 2345, 0),
- "out": (
- ADDR[0],
- [],
- b"\x00\x00\x00\x0c\x00\x00\x00\x00\n\xa4\t}\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00'\x10\x00\x00\x00\x00\x00\x00\t)\x00",
- ),
- },
- {
- "in": (ADDR[0], config.XCP, config.MAX_INT + 1, 100, 100, 0),
- "error": (
- exceptions.ComposeError,
- [
- "escrow_quantity must be greater or equal than give_quantity",
- "integer overflow",
- ],
- ),
- },
- ],
- "parse": [
- {
- "mock_protocol_changes": {"dispensers": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[0],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 17630,
- "tx_index": 503,
- "destination": ADDR[0],
- "data": b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x00",
- },
- ),
- "records": [
- {
- "table": "dispensers",
- "values": {
- "tx_index": 503,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_index": DP["default_block_index"],
+ ),
+ "out": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "02"
+ + "0000000000000000"
+ + "38"
+ + "6a36"
+ + "2a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa2bdfdee082"
+ + "2d46ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000",
+ },
+ {
+ "comment": "CIP 9 enhanced_send with memo as hex",
+ "mock_protocol_changes": {"enhanced_sends": True},
+ "in": (
+ "create_send",
+ {
+ "memo": "0102030405",
+ "memo_is_hex": True,
"source": ADDR[0],
- "asset": config.XCP,
- "give_quantity": 100,
- "escrow_quantity": 100,
- "satoshirate": 100,
- "status": 0,
- "give_remaining": 100,
+ "destination": ADDR[1],
+ "asset": "XCP",
+ "quantity": DP["small"],
},
- },
- {
- "table": "debits",
- "values": {
- "action": "open dispenser",
- "address": ADDR[0],
- "asset": config.XCP,
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100,
+ ),
+ "out": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "02"
+ + "0000000000000000"
+ + "38"
+ + "6a36"
+ + "2a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa42b8b188e8"
+ + "2d46ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000",
+ },
+ {
+ "comment": "CIP 9 enhanced_send before enabled",
+ "mock_protocol_changes": {"enhanced_sends": False},
+ "in": (
+ "create_send",
+ {
+ "memo": "0102030405",
+ "memo_is_hex": True,
+ "source": ADDR[0],
+ "destination": ADDR[1],
+ "asset": "XCP",
+ "quantity": DP["small"],
},
- },
- ],
- },
- {
- "mock_protocol_changes": {"dispensers": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[5],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 17630,
- "tx_index": 503,
- "destination": ADDR[5],
- "data": b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n",
- },
- ),
- "records": [
- {
- "table": "dispensers",
- "values": { # Some values here correspond to the original TX that opened the dispenser
- "tx_index": 108,
- "tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
- "block_index": DP["default_block_index"],
- "source": ADDR[5],
- "asset": config.XCP,
- "give_quantity": 100,
- "escrow_quantity": 100,
- "satoshirate": 100,
- "status": 10,
- "give_remaining": 0,
+ ),
+ "error": (
+ RPCError,
+ "Error composing send transaction via API: enhanced sends are not enabled (-32001)",
+ ),
+ },
+ {
+ "comment": "CIP 9 enhanced send to a REQUIRE_MEMO address without memo",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ "create_send",
+ {
+ "source": ADDR[0],
+ "destination": ADDR[6],
+ "asset": "XCP",
+ "quantity": DP["small"],
},
- },
- {
- "table": "credits",
- "values": {
- "calling_function": "close dispenser",
- "address": ADDR[5],
- "asset": config.XCP,
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100,
+ ),
+ "error": (
+ RPCError,
+ "Error composing send transaction via API: ['destination requires memo'] (-32001)",
+ ),
+ },
+ {
+ "comment": "CIP 9 enhanced send to a REQUIRE_MEMO address with memo",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ "create_send",
+ {
+ "memo": "0102030405",
+ "memo_is_hex": True,
+ "source": ADDR[0],
+ "destination": ADDR[6],
+ "asset": "XCP",
+ "quantity": DP["small"],
},
- },
- ],
- },
- {
- "mock_protocol_changes": {"dispensers": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[5],
- "supported": 1,
- "block_index": 2344638,
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 0,
- "tx_index": 503,
- "destination": "",
- # compose(ADDR[0], config.XCP, 100, 100, config.MAX_INT + 1, 0)
- # generated with overflow checking commented out
- "data": b"\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00d\x00\x00\x00\x00\x00\x00\x00d\x80\x00\x00\x00\x00\x00\x00\x00\x00",
- },
- ),
- #'error': ("Warning", "Not storing [dispenser] tx [db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d]: invalid: address has a dispenser already opened for asset XCP with a different mainchainrate; integer overflow")
- "out": None,
- },
- ],
- "is_dispensable": [
- {"mock_protocol_changes": {"dispensers": True}, "in": (ADDR[5], 200), "out": True},
- {"mock_protocol_changes": {"dispensers": True}, "in": (ADDR[0], 200), "out": False},
- ],
- "dispense": [
- {
- "mock_protocol_changes": {"dispensers": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[0],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 100,
- "tx_index": 503,
- "destination": ADDR[5],
- "data": b"",
- },
- ),
- "records": [
- {
- "table": "dispensers",
- "values": { # Some values here correspond to the original TX that opened the dispenser
- "tx_index": 108,
- "tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
- "block_index": DP["default_block_index"],
- "source": ADDR[5],
- "asset": config.XCP,
- "give_quantity": 100,
- "escrow_quantity": 100,
- "satoshirate": 100,
- "status": 10,
- "give_remaining": 0,
+ ),
+ "out": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "02"
+ + "0000000000000000"
+ + "38"
+ + "6a36"
+ + "2a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e56174ca4a68af644972baced7a9ef02e467cb63542b8b188e8"
+ + "2d46ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000",
+ # get_tx_info API method
+ },
+ {
+ "comment": "get_tx_info for a legacy send",
+ "in": (
+ "get_tx_info",
+ {
+ "tx_hex": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "03"
+ + "2202000000000000"
+ + "19"
+ + "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac"
+ + "0000000000000000"
+ + "1e"
+ + "6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aec80c39a"
+ + "4343ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000"
},
+ ),
+ "out": [
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ 546,
+ 6575,
+ "0000000000000000000000010000000002faf080",
+ ],
+ },
+ {
+ "comment": "get_tx_info for an enhanced send",
+ "mock_protocol_changes": {
+ "enhanced_sends": True,
},
- {
- "table": "credits",
- "values": {
- "calling_function": "dispense",
- "address": ADDR[0],
- "asset": config.XCP,
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100,
+ "in": (
+ "get_tx_info",
+ {
+ "tx_hex": "01000000"
+ + "01"
+ + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
+ + "00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "ffffffff"
+ + "02"
+ + "0000000000000000"
+ + "33"
+ + "6a312a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa"
+ + "aa46ea0b00000000"
+ + "19"
+ + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
+ + "00000000"
},
- },
- ],
- },
- {
- "mock_protocol_changes": {
- "dispensers": True
- }, # Same test as above, but with excess BTC, should give out the same amount of XCP
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[0],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 300,
- "tx_index": 503,
- "destination": ADDR[5],
- "data": b"",
- },
- ),
- "records": [
- {
- "table": "dispensers",
- "values": { # Some values here correspond to the original TX that opened the dispenser
- "tx_index": 108,
- "tx_hash": "9834219d2825b4d85ca7ee0d75a5372d9d42ce75eb9144951fca1af5a25915ec",
- "block_index": DP["default_block_index"],
- "source": ADDR[5],
- "asset": config.XCP,
- "give_quantity": 100,
- "escrow_quantity": 100,
- "satoshirate": 100,
- "status": 10,
- "give_remaining": 0,
+ ),
+ "out": [
+ "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "",
+ 0,
+ 6250,
+ "0000000200000000000000010000000002faf0806f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec",
+ ],
+ # unpack API method
+ },
+ {
+ "comment": "Unpack a data hex for a legacy send",
+ "in": ("unpack", {"data_hex": "0000000000000000000000010000000002faf080"}),
+ "out": [0, {"asset": "XCP", "quantity": 50000000}],
+ },
+ {
+ "comment": "Unpack a data hex for an enahcned send",
+ "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
+ "in": (
+ "unpack",
+ {
+ "data_hex": "0000000200000000000000010000000002faf0806f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec"
},
- },
- {
- "table": "credits",
- "values": {
- "calling_function": "dispense",
- "address": ADDR[0],
- "asset": config.XCP,
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100,
+ ),
+ "out": [
+ 2,
+ {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "memo": None,
+ "quantity": 50000000,
},
- },
- ],
- },
- ],
- },
- "transaction_helper.serializer": {
- "var_int": [
- {"in": (252,), "out": b"\xfc"},
- {"in": (65535,), "out": b"\xfd\xff\xff"},
- {"in": (4294967295,), "out": b"\xfe\xff\xff\xff\xff"},
- {"in": (4294967296,), "out": b"\xff\x00\x00\x00\x00\x01\x00\x00\x00"},
- ],
- "op_push": [
- {"in": (75,), "out": b"K"},
- {"in": (255,), "out": b"L\xff"},
- {"in": (65535,), "out": b"M\xff\xff"},
- {"in": (65536,), "out": b"N\x00\x00\x01\x00"},
- ],
- "get_multisig_script": [
- {
- "in": (
- "1_0282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0_0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977_2",
- ),
- "out": (
- b"Q!\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0!\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9wR\xae",
- None,
- ),
- }
- ],
- "get_monosig_script": [
- {
- "in": (ADDR[1],),
- "out": (
- b"v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac",
- None,
- ),
- }
- ],
- "get_p2sh_script": [
- {
- "in": (P2SH_ADDR[0],),
- "out": (
- b"\xa9\x14Bd\xcf\xd7\xebe\xf8\xcb\xbd\xba\x98\xbd\x98\x15\xd5F\x1f\xad\x8d~\x87",
- None,
- ),
- }
- ],
- "get_script": [
- {
- "in": (
- "1_0282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0_0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977_2",
- ),
- "out": (
- b"Q!\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0!\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9wR\xae",
- None,
- ),
- },
- {
- "in": (ADDR[1],),
- "out": (
- b"v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac",
- None,
- ),
- },
- {
- "in": (P2SH_ADDR[0],),
- "out": (
- b"\xa9\x14Bd\xcf\xd7\xebe\xf8\xcb\xbd\xba\x98\xbd\x98\x15\xd5F\x1f\xad\x8d~\x87",
- None,
- ),
- },
- {
- "in": (P2WPKH_ADDR[0],),
- "out": (
- b"\x00\x14u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6",
- b"\xa9\x14u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6\x87",
- ),
- },
- ],
- "make_fully_valid": [
- {
- "in": (
- b"T\xdaT\x0f\xb2f;u\xe6\xc3\xcca\x19\n\xd0\xc2C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$",
- ),
- "out": b"\x02T\xdaT\x0f\xb2f;u\xe6\xc3\xcca\x19\n\xd0\xc2C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$G",
- }
- ],
- "serialise": [
- {
- "in": (
- "multisig",
- [
- {
- "confirmations": 74,
- "amount": 1.9990914,
- "vout": 0,
- "account": "",
- "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac",
- "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000",
- }
],
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 5430)],
- (
- [
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80"
- ],
- 7800,
- ),
- ("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", 199885910),
- b"\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0",
- ),
- "out": b"\x01\x00\x00\x00\x01\xc1\xd8\xc0u\x93l4\x95\xf6\xd6S\xc5\x0fs\xd9\x87\xf7TH\xd9zu\x02I\xb1\xeb\x83\xbe\xe7\x1b$\xae\x00\x00\x00\x00\x19v\xa9\x14H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607\x88\xac\xff\xff\xff\xff\x036\x15\x00\x00\x00\x00\x00\x00\x19v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xacx\x1e\x00\x00\x00\x00\x00\x00iQ!\x02bA[\xf0J\xf84B==\xd7\xad\xa4\xdcrz\x03\x08eu\x9f\x9f\xbaZ\xeex\xc9\xeaq\xe5\x87\x98!\x02T\xdaT\x0f\xb2f;u\xe6\xc3\xcca\x19\n\xd0\xc2C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$G!\x02\x82\xb8\x86\xc0\x87\xeb7\xdc\x81\x82\xf1K\xa6\xcc>\x94\x85\xeda\x8b\x95\x80MD\xae\xcc\x17\xc3\x00\xb5\x85\xb0S\xaeV\x04\xea\x0b\x00\x00\x00\x00\x19v\xa9\x14H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607\x88\xac\x00\x00\x00\x00",
- },
- {
- "in": (
- "multisig",
- [
- {
- "txid": "e43c357b78baf473fd21cbc1481ac450746b60cf1d2702ce3a73a8811811e3eb",
- "txhex": "0100000001980b1a29634f263b00e5301519c153edd65c9149445c9dfdf175b07782388a84000000006a4730440220438f0878ec34cbb676ad8d8badcf81d93a7748a7b85c5841c5bed024b0ad287602203bd635a7d15ccabe235da9cf5086e9a2611242b0e894bd2f9f66a1d4de3fff3d01210276e73c0c0b5af814085f9a9bec7421bc97bc84c4f5bbdf4f6973bd04e16765e7ffffffff0100e1f505000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- "amount": 1.0,
- "vout": 0,
- "script_pub_key": "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac",
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "confirmations": 2,
+ },
+ ],
+ "dhash_string": [
+ {
+ "in": ("foobar",),
+ "out": "3f2c7ccae98af81e44c0ec419659f50d8b7d48c681e5d57fc747d0461e42dda1",
+ }
+ ],
+ "hexlify": [
+ {
+ "in": (b"\x00\x00\x00\x14\x00\x00\x00\x00\x00\x0b\xfc\xe3",),
+ "out": "0000001400000000000bfce3",
+ }
+ ],
+ "date_passed": [
+ {
+ "comment": "date in the past, mock function overrides this one and always returns `False` in the test suite",
+ "in": ("1020720007",),
+ "out": False,
+ },
+ {
+ "comment": "date far in the future, mock function overrides this one and always returns `False` in the test suite",
+ "in": ("5520720007",),
+ "out": False,
+ },
+ ],
+ "parse_subasset_from_asset_name": [
+ {
+ "in": ("BADASSETx.child1",),
+ "error": (
+ exceptions.AssetNameError,
+ "parent asset name contains invalid character:",
+ ),
+ },
+ {
+ "in": ("TOOLONGASSETNAME.child1",),
+ "error": (exceptions.AssetNameError, "parent asset name too long"),
+ },
+ {
+ "in": ("BAD.child1",),
+ "error": (exceptions.AssetNameError, "parent asset name too short"),
+ },
+ {
+ "in": ("ABADPARENT.child1",),
+ "error": (exceptions.AssetNameError, "parent asset name starts with 'A'"),
+ },
+ {
+ "in": ("BTC.child1",),
+ "error": (exceptions.AssetNameError, "parent asset cannot be BTC"),
+ },
+ {
+ "in": ("XCP.child1",),
+ "error": (exceptions.AssetNameError, "parent asset cannot be XCP"),
+ },
+ {
+ "in": ("PARENT.",),
+ "error": (exceptions.AssetNameError, "subasset name too short"),
+ },
+ {
+ "in": ("PARENT." + ("1234567890" * 24) + "12345",),
+ "error": (exceptions.AssetNameError, "subasset name too long"),
+ },
+ {
+ "in": ("PARENT.child1&",),
+ "error": (
+ exceptions.AssetNameError,
+ "subasset name contains invalid character:",
+ ),
+ },
+ {
+ "in": ("PARENT.child1..foo",),
+ "error": (
+ exceptions.AssetNameError,
+ "subasset name contains consecutive periods",
+ ),
+ },
+ {
+ "comment": "numerics disallowed",
+ "in": ("A95428956661682177.subasset",),
+ "error": (
+ exceptions.AssetNameError,
+ "parent asset name too long",
+ ),
+ },
+ {
+ "comment": "numerics allowed",
+ "in": ("A95428956661682177.subasset", True),
+ "out": ("A95428956661682177", "A95428956661682177.subasset"),
+ },
+ {
+ "comment": "numerics allowed but too long",
+ "in": ("A123456789012345678901.subasset", True),
+ "error": (
+ exceptions.AssetNameError,
+ "parent asset name too long",
+ ),
+ },
+ ],
+ "compact_subasset_longname": [
+ {
+ "in": ("a.very.long.name",),
+ "out": binascii.unhexlify("132de2e856f9a630c2e2bc09"),
+ },
+ {"in": ("aaaa",), "out": binascii.unhexlify("04de95")},
+ {"in": ("a",), "out": b"\x01"},
+ {"in": ("b",), "out": b"\x02"},
+ ],
+ "expand_subasset_longname": [
+ {
+ "in": (binascii.unhexlify("132de2e856f9a630c2e2bc09"),),
+ "out": "a.very.long.name",
+ },
+ {"in": (binascii.unhexlify("04de95"),), "out": "aaaa"},
+ {"in": (b"\x01",), "out": "a"},
+ {"in": (b"\x02",), "out": "b"},
+ {
+ "in": (binascii.unhexlify("8e90a57dba99d3a77b0a2470b1816edb"),),
+ "out": "PARENT.a-zA-Z0-9.-_@!",
+ },
+ ],
+ "enabled": [
+ {"in": ("numeric_asset_names",), "out": True},
+ {"in": ("foobar",), "error": (KeyError, "foobar")},
+ {
+ "mock_protocol_changes": {"numeric_asset_names": False},
+ "in": ("numeric_asset_names",),
+ "out": False,
+ },
+ ],
+ },
+ "database": {
+ "version": [{"in": (), "out": (config.VERSION_MAJOR, config.VERSION_MINOR)}],
+ "update_version": [
+ {
+ "in": (),
+ "records": [
+ {
+ "table": "pragma",
+ "field": "user_version",
+ "value": (config.VERSION_MAJOR * 1000) + config.VERSION_MINOR,
}
],
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
- None,
- ("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 37990000),
- None,
- ),
- "out": b"\x01\x00\x00\x00\x01\xeb\xe3\x11\x18\x81\xa8s:\xce\x02'\x1d\xcf`ktP\xc4\x1aH\xc1\xcb!\xfds\xf4\xbax{5<\xe4\x00\x00\x00\x00\x19v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac\xff\xff\xff\xff\x02\x80\x0b\xb2\x03\x00\x00\x00\x00\x19v\xa9\x14\xa1\x1bf\xa6{?\xf6\x96q\xc8\xf8\"T\t\x9f\xaf7K\x80\x0e\x88\xacp\xaeC\x02\x00\x00\x00\x00\x19v\xa9\x14\x8dj\xe8\xa3\xb3\x81f1\x18\xb4\xe1\xef\xf4\xcf\xc7\xd0\x95M\xd6\xec\x88\xac\x00\x00\x00\x00",
- },
- ],
- },
- "transaction": {
- "get_dust_return_pubkey": [
- {"in": (ADDR[1], None, "multisig"), "out": None},
- {
- "in": (ADDR[1], [], "multisig"),
- "out": b"\x03\x19\xf6\xe0{\x0b\x8duaV9K\x9d\xcf;\x01\x1f\xe9\xac\x19\xf2p\x0b\xd6\xb6\x9aj\x17\x83\xdb\xb8\xb9w",
- },
- ],
- "construct": [
- {
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
- None,
+ }
+ ],
+ },
+ "message_type": {
+ "unpack": [
+ {
+ "in": (binascii.unhexlify("01deadbeef"), 310502),
+ "out": (1, binascii.unhexlify("deadbeef")),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ },
+ {
+ "in": (binascii.unhexlify("02deadbeef"), 310502),
+ "out": (2, binascii.unhexlify("deadbeef")),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ },
+ {
+ "in": (binascii.unhexlify("00000001deadbeef"), 310502),
+ "out": (1, binascii.unhexlify("deadbeef")),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ },
+ {
+ "in": (binascii.unhexlify("00000000deadbeef"), 310502),
+ "out": (0, binascii.unhexlify("deadbeef")),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ },
+ {
+ "in": (binascii.unhexlify("00"), 310502),
+ "out": (None, None),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ },
+ ],
+ "pack": [
+ {"in": (0, 300000), "out": binascii.unhexlify("00000000")},
+ {"in": (1, 300000), "out": binascii.unhexlify("00000001")},
+ {"in": (0, 310502), "out": binascii.unhexlify("00000000")},
+ {
+ "in": (1, 310502),
+ "out": binascii.unhexlify("01"),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ },
+ {
+ "in": (2, 310502),
+ "out": binascii.unhexlify("02"),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ },
+ ],
+ },
+ "address": {
+ "pack": [
+ {
+ "config_context": {"ADDRESSVERSION": config.ADDRESSVERSION_MAINNET},
+ "in": ("1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",),
+ "out": binascii.unhexlify("006474849fc9ac0f5bd6b49fe144d14db7d32e2445"),
+ },
+ {
+ "config_context": {"ADDRESSVERSION": config.ADDRESSVERSION_MAINNET},
+ "in": ("1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",),
+ "out": binascii.unhexlify("00647484b055e2101927e50aba74957ba134d501d7"),
+ },
+ {
+ "config_context": {"P2SH_ADDRESSVERSION": config.P2SH_ADDRESSVERSION_MAINNET},
+ "in": ("3AAAA1111xxxxxxxxxxxxxxxxxxy3SsDsZ",),
+ "out": binascii.unhexlify("055ce31be63403fa7b19f2614272547c15c8df86b9"),
+ },
+ {
+ "config_context": {"P2SH_ADDRESSVERSION": config.P2SH_ADDRESSVERSION_TESTNET},
+ "in": ("2MtAV7xpAzU69E8GxRF2Vd2xt79kDnif6F5",),
+ "out": binascii.unhexlify("C40A12AD889AECC8F6213BFD6BD47911CAB1C30E5F"),
+ },
+ {
+ "in": ("BADBASE58III",),
+ "error": (
+ Exception,
+ "The address BADBASE58III is not a valid bitcoin address (testnet)",
),
- {"encoding": "multisig", "exact_fee": 1.0},
- ),
- "error": (exceptions.TransactionError, "Exact fees must be in satoshis."),
- },
- {
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
- None,
+ },
+ ],
+ "unpack": [
+ {
+ "in": (binascii.unhexlify("006474849fc9ac0f5bd6b49fe144d14db7d32e2445"),),
+ "out": "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
+ },
+ {
+ "in": (binascii.unhexlify("00647484b055e2101927e50aba74957ba134d501d7"),),
+ "out": "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
+ },
+ {
+ "in": (binascii.unhexlify("055ce31be63403fa7b19f2614272547c15c8df86b9"),),
+ "out": "3AAAA1111xxxxxxxxxxxxxxxxxxy3SsDsZ",
+ },
+ {
+ "in": (binascii.unhexlify("C40A12AD889AECC8F6213BFD6BD47911CAB1C30E5F"),),
+ "out": "2MtAV7xpAzU69E8GxRF2Vd2xt79kDnif6F5",
+ },
+ ],
+ },
+ "versions.enhanced_send": {
+ "unpack": [
+ {
+ "in": (
+ binascii.unhexlify(
+ "000000000004fadf"
+ + "000000174876e800"
+ + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
+ ),
+ DP["default_block_index"],
),
- {"encoding": "multisig", "fee_provided": 1.0},
- ),
- "error": (exceptions.TransactionError, "Fee provided must be in satoshis."),
- },
- {
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [
- (
- "mvCounterpartyXXXXXXXXXXXXXXW24Hef",
- config.DEFAULT_REGULAR_DUST_SIZE - 1,
- )
- ],
- None,
+ "out": (
+ {
+ "asset": "SOUP",
+ "quantity": 100000000000,
+ "address": "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
+ "memo": None,
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "0000000000000001"
+ + "000000000000007b"
+ + "00647484b055e2101927e50aba74957ba134d501d7"
+ + "0deadbeef123"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "asset": "XCP",
+ "quantity": 123,
+ "address": "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
+ "memo": binascii.unhexlify("0deadbeef123"),
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify("0000000000000001" + "000000000000007b" + "0001"),
+ DP["default_block_index"],
+ ),
+ "error": (exceptions.UnpackError, "invalid message length"),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "0000000000000001"
+ + "000000000000007b"
+ + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
+ + "9999999999999999999999999999999999999999999999999999999999999999999999"
+ ),
+ DP["default_block_index"],
+ ),
+ "error": (exceptions.UnpackError, "memo too long"),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "0000000000000000"
+ + "000000000000007b"
+ + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
+ ),
+ DP["default_block_index"],
+ ),
+ "error": (exceptions.UnpackError, "asset id invalid"),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "0000000000000003"
+ + "000000000000007b"
+ + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
+ ),
+ DP["default_block_index"],
+ ),
+ "error": (exceptions.UnpackError, "asset id invalid"),
+ },
+ {
+ "in": (
+ b"\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x86\xa0\x80u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6segwit",
+ DP["default_block_index"],
),
- {"encoding": "singlesig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "error": (exceptions.TransactionError, "Destination output is dust."),
- },
- {
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- config.DEFAULT_MULTISIG_DUST_SIZE - 1,
- )
- ],
- None,
+ "out": (
+ {
+ "address": P2WPKH_ADDR[0],
+ "asset": "XCP",
+ "quantity": 100000,
+ "memo": b"segwit",
+ }
),
- {"encoding": "multisig"},
- ),
- "error": (exceptions.TransactionError, "Destination output is dust."),
- },
- {
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- {"encoding": "foobar"},
- ),
- "error": (exceptions.TransactionError, "Unknown encoding‐scheme."),
- },
- {
- "comment": "opreturn encoding with more data that fits in 80 bytes opreturn (73 bytes of data + 8 bytes for PREFIX)",
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
- b"\x00" * 73,
- ),
- {"encoding": "opreturn"},
- ),
- "error": (exceptions.TransactionError, "One `OP_RETURN` output per transaction."),
- },
- {
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 2**30)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- {"encoding": "multisig"},
- ),
- "error": (
- exceptions.BalanceError,
- "Insufficient BTC at address mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns. Need: 10.73754999 BTC (Including fee: 0.00012175 BTC), available: 1.11121663 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)",
- ),
- },
- {
- "comment": "opreturn encoding with maximum possible data that fits in 80 bytes opreturn (72 bytes of data + 8 bytes for PREFIX)",
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
- b"\x00" * 72,
- ),
- {"encoding": "opreturn"},
- ),
- "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff03800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac0000000000000000536a4c503ab408a679f108a19e35886815c4c468ca75a06799f864a1fad6bc0813f5fe3260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea9fadc20c0b453de6676872c9e41fad801e8bbdb64302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- },
- {
- "comment": "burn",
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)],
+ },
+ ],
+ "validate": [
+ # ----- tests copied from regular send -----
+ {"in": (ADDR[0], ADDR[1], "XCP", DP["quantity"], None, 1), "out": ([])},
+ {"in": (ADDR[0], P2SH_ADDR[0], "XCP", DP["quantity"], None, 1), "out": ([])},
+ {"in": (P2SH_ADDR[0], ADDR[1], "XCP", DP["quantity"], None, 1), "out": ([])},
+ {
+ "in": (ADDR[0], ADDR[1], "BTC", DP["quantity"], None, 1),
+ "out": ([f"cannot send {config.BTC}"]),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3, None, 1),
+ "out": (["quantity must be in satoshis"]),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", -1 * DP["quantity"], None, 1),
+ "out": (["negative quantity"]),
+ },
+ {"in": (ADDR[0], MULTISIGADDR[0], "XCP", DP["quantity"], None, 1), "out": ([])},
+ {"in": (ADDR[0], ADDR[1], "MAXI", 2**63 - 1, None, 1), "out": ([])},
+ {"in": (ADDR[0], ADDR[1], "MAXI", 2**63, None, 1), "out": (["integer overflow"])},
+ {
+ "in": (ADDR[0], ADDR[6], "XCP", DP["quantity"], None, 1),
+ "out": (["destination requires memo"]),
+ },
+ {
+ # ----- tests specific to enhanced send -----
+ "in": (
+ "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
+ "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
+ "SOUP",
+ 100000000,
None,
+ DP["default_block_index"],
),
- {"encoding": "multisig"},
- ),
- "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf4302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- },
- {
- "comment": "burn P2SH",
- "in": (
- (P2SH_ADDR[0], [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 62000000)], None),
- {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf43020000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000",
- },
- {
- "comment": "multisig burn",
- "in": (
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [("mvCounterpartyXXXXXXXXXXXXXXW24Hef", 50000000)],
- None,
+ "out": ([]),
+ },
+ {
+ "in": (
+ "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
+ "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
+ "SOUP",
+ 100000000,
+ binascii.unhexlify("01ff"),
+ DP["default_block_index"],
),
- {"encoding": "multisig"},
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87dafa02000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "comment": "send",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send with custom input which is too low",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ "out": ([]),
+ },
+ {
+ "in": (
+ "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
+ "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
+ "SOUP",
+ 0,
+ binascii.unhexlify("01ff"),
+ DP["default_block_index"],
),
- {
- "encoding": "multisig",
- "regular_dust_size": DP["regular_dust_size"],
- "custom_inputs": [
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000",
- "confirmations": 74,
- "vout": 0,
- "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac",
- "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1",
- "amount": 0.00001,
- "account": "",
- }
- ],
- },
- ),
- "error": (
- exceptions.BalanceError,
- "Insufficient BTC at address mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc. Need: 0.0001408 BTC (Including fee: 0.0000765 BTC), available: 0.00001 BTC. These fees are estimated for a confirmation target of 3 blocks, you can reduce them by using the `confirmation_target` parameter with a higher value or by manually setting the fees with the `fee` parameter. To spend unconfirmed coins, use the flag `--unconfirmed`. (Unconfirmed coins cannot be spent from multi‐sig addresses.)",
- ),
- },
- {
- "comment": "send with custom input",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ "out": (["zero quantity"]),
+ },
+ {
+ "in": (
+ "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
+ "",
+ "SOUP",
+ 100000000,
+ binascii.unhexlify("01ff"),
+ DP["default_block_index"],
),
- {
- "encoding": "multisig",
- "regular_dust_size": DP["regular_dust_size"],
- "custom_inputs": [
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "txhex": "0100000002eff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b000000006c493046022100ec6fa8316a4f5cfd69816e31011022acce0933bd3b01248caa8b49e60de1b98a022100987ba974b2a4f9976a8d61d94009cb7f7986a827dc5730e999de1fb748d2046c01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffffeff195acdf2bbd215daa8aca24eb667b563a731d34a9ab75c8d8df5df08be29b010000006a47304402201f8fb2d62df22592cb8d37c68ab26563dbb8e270f7f8409ac0f6d7b24ddb5c940220314e5c767fd12b20116528c028eab2bfbad30eb963bd849993410049cf14a83d01210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0ffffffff02145fea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac0000000000000000346a32544553540000000a00000000000000010000000005f5e1000000000000000000000000000bebc2000032000000000000271000000000",
- "confirmations": 74,
- "vout": 0,
- "script_pub_key": "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac",
- "txid": "ae241be7be83ebb14902757ad94854f787d9730fc553d6f695346c9375c0d8c1",
- "amount": 1.9990914,
- "account": "",
- }
- ],
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send with multisig encoding and bytespersigop enabled for address with multiple UTXOs",
- "mock_protocol_changes": {"bytespersigop": True},
- "in": (
- (
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "0100000002ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff85497c27fbc3ecfbfb41f49cbf983e252a91636ec92f2863cb7eb755a33afcb9000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210372a51ea175f108a1c635886815c4c468ca75a06798f864a1fad446f893f5fef121023260e421a30202f2e76f46acdb292c652371ca48b97460f7928ade8ecb02ea66210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae524c9f06000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- },
- {
- "comment": "send, different dust pubkey",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ "out": (["destination is required"]),
+ },
+ {
+ "in": (
+ "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
+ "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
+ "SOUP",
+ 100000000,
+ binascii.unhexlify(
+ "9999999999999999999999999999999999999999999999999999999999999999999999"
+ ),
+ DP["default_block_index"],
),
- {
- "encoding": "multisig",
- "regular_dust_size": DP["regular_dust_size"],
- "dust_return_pubkey": "0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send, burn dust pubkey",
- "in": (
- (
+ "out": (["memo is too long"]),
+ },
+ ],
+ "compose": [
+ # ----- tests copied from regular send -----
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] * 10000000, None, False),
+ "error": (exceptions.ComposeError, "insufficient funds"),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3, None, False),
+ "error": (exceptions.ComposeError, "quantity must be an int (in satoshi)"),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "MAXI", 2**63 + 1, None, False),
+ "error": (exceptions.ComposeError, "insufficient funds"),
+ },
+ {
+ "in": (ADDR[0], ADDR[1], "BTC", DP["quantity"], None, False),
+ "out": (
"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- {
- "encoding": "multisig",
- "regular_dust_size": DP["regular_dust_size"],
- "dust_return_pubkey": False,
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724472111111111111111111111111111111111111111111111111111111111111111111153ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send from P2SH address, multsig encoding, no dust pubkey",
- "in": (
- (
- P2SH_ADDR[0],
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
+ [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 100000000)],
+ None,
),
- {
- "encoding": "multisig",
- "dust_return_pubkey": False,
- "regular_dust_size": DP["regular_dust_size"],
- },
- ),
- "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210397b51de78b0f3a171f5ed27fff56d17dcba739c8b00035c8bbb9c380fdc4ed1321036932bcbeac2a4d8846b7feb4bf93b2b88efd02f2d8dc1fc0067bcc972257e3912111111111111111111111111111111111111111111111111111111111111111111153ae00aaf5050000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000",
- },
- {
- "comment": "send to P2SH address",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [(P2SH_ADDR[0], None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80",
- ),
- {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03361500000000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87e8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send dest multisig",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
- ],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send dest multisig exact_fee",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
- ],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- {"encoding": "multisig", "exact_fee": 1},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4357ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send dest opreturn",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
- ],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- {"encoding": "opreturn"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000000000001e6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aeb8fd21a7d41ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send dest pubkeyhash",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
- ],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- {"encoding": "pubkeyhash", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae36150000000000001976a9146d415bf04af834423d3dd7ada4dc727a0308657588ac36150000000000001976a9146f415bf04af834423d3cd7ada4dc778fe208657588ac2314ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "send dest 1-of-1",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_1", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00",
- ),
- {"encoding": "multisig"},
- ),
- "error": (script.MultiSigAddressError, "Invalid signatures_possible."),
- },
- {
- "comment": "send source multisig",
- "in": (
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0336150000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae00aaf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "comment": "send source and dest multisig",
- "in": (
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [
- (
- "1_mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
- ],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00",
- ),
- {"encoding": "multisig"},
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff03e8030000000000004751210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977210378ee11c3fb97054877a809ce083db292b16d971bcdc6aa4c8f92087133729d8b52aee8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4ebbf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "comment": "maximum quantity send",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff",
- ),
- {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210362415bf04af834423d3dd7ada4dc727a0308664fa0e045a51185cce50ee58717210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "issuance",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- ),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03086e897d9fba5aee7a331919e48780210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "issuance",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", None)],
- b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- ),
- {"encoding": "multisig", "regular_dust_size": DP["regular_dust_size"]},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae1428ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "multisig issuance",
- "in": (
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\x00\x0b\xfc\xe3\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- ),
- {"encoding": "multisig"},
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e8030000000000006951210203caf7ca87f0fd78a01d9a0d7e221e55beef3cde388be72d254826b32a6008b62103bc14528340c27d009ae7b7dd73d8c032ffa94625307a450077125d580099b55a210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "comment": "maximum quantity issuance",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x00\x16\x00\x00\x00\x00\xdd\x96\xd2t\x7f\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- ),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210355415bf04af834423d3dd7adb2dc727a03d5f3a7eae045a51185cce50ee487c2210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "transfer asset to multisig",
- "in": (
- (
+ },
+ {
+ "in": (ADDR[0], P2SH_ADDR[0], "BTC", DP["quantity"], None, False),
+ "out": (
"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- None,
- )
- ],
- b"\x00\x00\x00\x16\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
- ),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210355415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e48750210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "order",
- "in": (
- (
+ [("2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy", 100000000)],
+ None,
+ ),
+ },
+ {
+ "comment": "resolve subasset to numeric asset",
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (ADDR[0], ADDR[1], "PARENT.already.issued", 100000000, None, False),
+ "out": (
"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
[],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ binascii.unhexlify(
+ "02"
+ + "01530821671b1065"
+ + "0000000005f5e100"
+ + "6f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec"
+ ),
),
- {"encoding": "multisig", "fee_provided": DP["fee_provided"]},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210348415bf04af834423d3dd7adaedc727a030865759e9fba5aee78c9ea71e5870f210354da540fb2673b75e6c3c994f80ad0c8431643bab28ced783cd94079bbe72445210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeec18db0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "multisig order",
- "in": (
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ },
+ # ----- tests specific to enhanced send -----
+ {
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (ADDR[1], ADDR[0], "XCP", DP["small"], None, None),
+ "out": (
+ ADDR[1],
[],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00",
+ binascii.unhexlify(
+ "02"
+ + "0000000000000001"
+ + "0000000002faf080"
+ + "6f4838d8b3588c4c7ba7c1d06f866e9b3739c63037"
+ ),
),
- {"encoding": "multisig", "fee_provided": DP["fee_provided"]},
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121021ecaf7ca87f0fd78a01d9a0d62221e55beef3722db8be72d254adc40426108d02103bc14528340c37d005aa9e764ded8c038ffa94625307a450077125d580099b53b210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aed89ae605000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "comment": "multisig order",
- "in": (
- (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ },
+ {
+ # memo as hex
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (ADDR[1], ADDR[0], "XCP", DP["small"], "12345abcde", True),
+ "out": (
+ ADDR[1],
[],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x06B,@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xfa\xf0\x80\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ binascii.unhexlify(
+ "02"
+ + "0000000000000001"
+ + "0000000002faf080"
+ + "6f4838d8b3588c4c7ba7c1d06f866e9b3739c63037"
+ + "12345abcde"
+ ),
),
- {"encoding": "multisig"},
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121031ecaf7ca87f0fd78a01d9a0d62221e55beef3722da8be72d254e649c8261083d2102bc14528340c27d005aa9e06bcf58c038ffa946253077fea077125d580099b5bb210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "comment": "maximum quantity order",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ {
+ # pack a string into bytes
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (ADDR[1], ADDR[0], "XCP", DP["small"], "hello", False),
+ "out": (
+ ADDR[1],
[],
- b"\x00\x00\x00\n\x00\x00\x00\x00\x00\x03:>\x7f\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\n\x00\x00\x00\x00\x00\r\xbb\xa0",
+ binascii.unhexlify(
+ "02"
+ + "0000000000000001"
+ + "0000000002faf080"
+ + "6f4838d8b3588c4c7ba7c1d06f866e9b3739c63037"
+ + "68656c6c6f"
+ ),
),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210248415bf04af834423d3dd7adaedc727a0308664fa0e045a51185cce50ee58759210354da540fb2673b75e6c3c994f80ad0c8431643bab28156d83cd94079bbe72452210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "dividend",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b"\x00\x00\x002\x00\x00\x00\x00\x05\xf5\xe1\x00\x00\x00\x00\xa2[\xe3Kf\x00\x00\x00\x00\x00\x00\x00\x01",
+ },
+ {
+ # memo too long
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (
+ ADDR[1],
+ ADDR[0],
+ "XCP",
+ DP["small"],
+ "12345678901234567890123456789012345",
+ False,
),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121035a415bf04af834423d3dd7ad96dc727a030d90949e9fba5a4c21d05197e58735210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "dividend",
- "in": (
- (
+ "error": (exceptions.ComposeError, ["memo is too long"]),
+ },
+ {
+ "comment": "enhanced_send to a REQUIRE_MEMO address, without memo",
+ "in": (ADDR[0], ADDR[6], "XCP", DP["small"], None, False),
+ "error": (exceptions.ComposeError, ["destination requires memo"]),
+ },
+ {
+ "comment": "enhanced_send to a REQUIRE_MEMO address, with memo text",
+ "in": (ADDR[0], ADDR[6], "XCP", DP["small"], "12345", False),
+ "out": (
"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
[],
- b"\x00\x00\x002\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\xca\xd8\xdc\x7f\x0bf\x00\x00\x00\x00\x00\x00\x00\x01",
- ),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121025a415bf04af834423d3dd7ad96dc727a030865759f9fbc9036a64c1197e587c8210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "free issuance",
- "in": (
- (
+ b'\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80o\xb3\x90\x18~\xf2\x85D"\xac^J.\xb6\xff\xe9$\x96\xbe\xf5#12345',
+ ),
+ },
+ {
+ "comment": "enhanced_send to a REQUIRE_MEMO address, with memo hex",
+ "in": (ADDR[0], ADDR[6], "XCP", DP["small"], "deadbeef", True),
+ "out": (
"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
[],
- b"\x00\x00\x00\x16\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0NULL",
+ b'\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80o\xb3\x90\x18~\xf2\x85D"\xac^J.\xb6\xff\xe9$\x96\xbe\xf5#\xde\xad\xbe\xef',
),
- {"encoding": "multisig"},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210255415bf04af834423d3dd7adb2238d85fcf79a8a619fba5aee7a331919e4870d210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "large broadcast",
- "in": (
- (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ },
+ {
+ "comment": "send from a P2WPKH address to a P2PKH one",
+ "in": (P2WPKH_ADDR[0], ADDR[0], "XCP", DP["small"], None, False),
+ "out": (
+ P2WPKH_ADDR[0],
[],
- b"\x00\x00\x00\x1e^\xa6\xf5\x00?\xf0\x00\x00\x00\x00\x00\x00\x00LK@lOver 80 characters test test test test test test test test test test test test test test test test test test",
+ b"\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80oH8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607",
),
- {},
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff04e8030000000000006951210343415bf04af834423d3dd7adba82d48f033795759e9fba5aee7a7f51b189c8c0210322bf262f8a561b168ea2be007a7eb5b0303637dfc1f8cd0c59aa3459cf825784210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210343415bf04af834423d49f7d9c1af065a776d1601beebdf299a5a477f8291a7c4210220bf277b92125e0692e3b8046a7ef0b62665379ac6e99e0c1cad250acfc750c9210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aee8030000000000006951210361415bf04af834423d58a4d984a8170977281110edeb9a2e8b09473a8580f45d210220da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe724dc210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aefa28ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- ],
- },
- "api_v1": {
- "get_rows": [
- {
- "in": ("balances", None, "AND", None, None, None, None, None, 1000, 0, True),
- "out": None,
- },
- {
- "in": ("balances", None, "barfoo", None, None, None, None, None, 1000, 0, True),
- "error": (APIError, "Invalid filter operator (OR, AND)"),
- },
- {
- "in": (None, None, "AND", None, None, None, None, None, 1000, 0, True),
- "error": (APIError, "Unknown table"),
- },
- {
- "in": ("balances", None, "AND", None, "barfoo", None, None, None, 1000, 0, True),
- "error": (APIError, "Invalid order direction (ASC, DESC)"),
- },
- {
- "in": ("balances", None, "AND", None, None, None, None, None, 1000.0, 0, True),
- "error": (APIError, "Invalid limit"),
- },
- {
- "in": ("balances", None, "AND", None, None, None, None, None, 1001, 0, True),
- "error": (APIError, "Limit should be lower or equal to 1000"),
- },
- {
- "in": ("balances", None, "AND", None, None, None, None, None, 1000, 0.0, True),
- "error": (APIError, "Invalid offset"),
- },
- {
- "in": ("balances", None, "AND", "*", None, None, None, None, 1000, 0, True),
- "error": (APIError, "Invalid order_by, must be a field name"),
- },
- {
- "in": ("balances", [0], "AND", None, None, None, None, None, 1000, 0, True),
- "error": (APIError, "Unknown filter type"),
- },
- {
- "in": (
- "balances",
- {"field": "bar", "op": "="},
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "error": (APIError, "A specified filter is missing the 'value' field"),
- },
- {
- "in": (
- "balances",
- {"field": "bar", "op": "=", "value": {}},
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "error": (APIError, "Invalid value for the field 'bar'"),
- },
- {
- "in": (
- "balances",
- {"field": "bar", "op": "=", "value": [0, 2]},
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "error": (APIError, "Invalid value for the field 'bar'"),
- },
- {
- "in": (
- "balances",
- {"field": "bar", "op": "AND", "value": 0},
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "error": (APIError, "Invalid operator for the field 'bar'"),
- },
- {
- "in": (
- "balances",
- {"field": "bar", "op": "=", "value": 0, "case_sensitive": 0},
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "error": (APIError, "case_sensitive must be a boolean"),
- },
- {
- "comment": "standard send with no memo",
- "in": (
- "sends",
- [{"field": "block_index", "op": "=", "value": "310496"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "out": [
- {
- "tx_index": 497,
- "tx_hash": "a35ab1736565aceddbd1d71f92fc7f39d1361006aa9099f731e54e762964d5ba",
- "block_index": 310496,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "asset": "XCP",
- "quantity": 92945878046,
- "status": "valid",
- "memo": None,
- "memo_hex": None,
- "msg_index": 0,
- }
- ],
- },
- {
- "comment": "with memo",
- "in": (
- "sends",
- [{"field": "block_index", "op": "=", "value": "310481"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "out": [
- {
- "tx_index": 482,
- "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
- "block_index": 310481,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "quantity": 100000000,
- "status": "valid",
- "memo": "hello",
- "memo_hex": "68656c6c6f",
- "msg_index": 0,
- }
- ],
- },
- {
- "comment": "search by memo (text)",
- "in": (
- "sends",
- [{"field": "memo", "op": "=", "value": "hello"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "out": [
- {
- "tx_index": 482,
- "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
- "block_index": 310481,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "quantity": 100000000,
- "status": "valid",
- "memo": "hello",
- "memo_hex": "68656c6c6f",
- "msg_index": 0,
- }
- ],
- },
- {
- "comment": "search by memo (LIKE text)",
- "in": (
- "sends",
- [{"field": "memo", "op": "LIKE", "value": "%ell%"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "out": [
- {
- "tx_index": 482,
- "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
- "block_index": 310481,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "quantity": 100000000,
- "status": "valid",
- "memo": "hello",
- "memo_hex": "68656c6c6f",
- "msg_index": 0,
- }
- ],
- },
- {
- "comment": "search by memo hex",
- "in": (
- "sends",
- [{"field": "memo_hex", "op": "=", "value": "68656C6C6F"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "out": [
- {
- "tx_index": 482,
- "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
- "block_index": 310481,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "quantity": 100000000,
- "status": "valid",
- "memo": "hello",
- "memo_hex": "68656c6c6f",
- "msg_index": 0,
- }
- ],
- },
- {
- "comment": "search by memo hex",
- "in": (
- "sends",
- [{"field": "memo_hex", "op": "=", "value": "68656c6c6f"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "out": [
- {
- "tx_index": 482,
- "tx_hash": "b00bdf03402d81a2cbdbeac4b0df90cff5ab6bf9688f653383d49fe42b8422a5",
- "block_index": 310481,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "quantity": 100000000,
- "status": "valid",
- "memo": "hello",
- "memo_hex": "68656c6c6f",
- "msg_index": 0,
- }
- ],
- },
- {
- "comment": "search with invalid memo hex",
- "in": (
- "sends",
- [{"field": "memo_hex", "op": "=", "value": "badx"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "error": (APIError, "Invalid memo_hex value"),
- },
- {
- "comment": "search by memo hex",
- "in": (
- "sends",
- [{"field": "memo_hex", "op": "=", "value": "fade0001"}],
- "AND",
- None,
- None,
- None,
- None,
- None,
- 1000,
- 0,
- True,
- ),
- "out": [
- {
- "tx_index": 483,
- "tx_hash": "c8716524f33646b9af94d6f5e52494ff3b34466497094b1db2ab920e4f79bc34",
- "block_index": 310482,
- "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "quantity": 100000000,
- "status": "valid",
- "memo": "",
- "memo_hex": "fade0001",
- "msg_index": 0,
- }
- ],
- },
- ],
- },
- "script": {
- "validate": [
- {
- "comment": "valid bitcoin address",
- "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",),
- "out": None,
- },
- {"comment": "valid bitcoin P2SH address", "in": (P2SH_ADDR[0],), "out": None},
- {
- "comment": "invalid bitcoin address: bad checksum",
- "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP7",),
- "error": (script.Base58Error, "invalid base58 string"),
- },
- {
- "comment": "valid multi‐sig",
- "in": (
- "1_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
- ),
- "out": None,
- },
- {
- "comment": "invalid multi‐sig with P2SH addres",
- "in": ("1_" + P2SH_ADDR[0] + "_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",),
- "error": (
- script.MultiSigAddressError,
- "Invalid PubKeyHashes. Multi‐signature address must use PubKeyHashes, not public keys.",
- ),
- },
- ],
- "scriptpubkey_to_address": [
- # "OP_DUP OP_HASH160 4838d8b3588c4c7ba7c1d06f866e9b3739c63037 OP_EQUALVERIFY OP_CHECKSIG"
- {
- "in": (
- bitcoinlib.core.CScript(
- bitcoinlib.core.x("76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac")
- ),
- ),
- "out": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- },
- # "OP_DUP OP_HASH160 8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec OP_EQUALVERIFY OP_CHECKSIG"
- {
- "in": (
- bitcoinlib.core.CScript(
- bitcoinlib.core.x("76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac")
- ),
- ),
- "out": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- # "1 035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe35 02309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17 0319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977 3 OP_CHECKMULTISIG"
- {
- "in": (
- bitcoinlib.core.CScript(
- bitcoinlib.core.x(
- "5121035ca51ea175f108a1c63588683dc4c43a7146c46799f864a300263c0813f5fe352102309a14a1a30202f2e76f46acdb2917752371ca42b97460f7928ade8ecb02ea17210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97753ae"
- )
- ),
- ),
- "out": "1_mjH9amw2tJrsrw76PVvCkCQ18V4pZCVtm5_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_mvgph5nejRWUVvbzyq7TU9ENpJyV97ua37_3",
- },
- {
- "in": ("mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",),
- "error": (exceptions.DecodeError, "invalid script"),
- },
- {
- "in": (
- ["mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH", "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH"],
- ),
- "error": (exceptions.DecodeError, "invalid script"),
- },
- {
- "in": (
- bitcoinlib.core.CScript(
- bitcoinlib.core.x("6a53657466697665207361797320686921")
- ),
- ),
- "error": (exceptions.DecodeError, "invalid script"),
- },
- {
- "comment": "p2pkh",
- "in": (
- bitcoinlib.core.CScript(
- bitcoinlib.core.x("76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac")
- ),
- ),
- "out": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- },
- {
- "comment": "p2sh",
- "in": (
- bitcoinlib.core.CScript(
- bitcoinlib.core.x("a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87")
- ),
- ),
- "out": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- },
- ],
- "get_asm": [{"in": (b"",), "error": (exceptions.DecodeError, "empty output")}],
- "base58_encode": [
- {
- "comment": "random bytes",
- "in": (b"\x82\xe3\x069\x16\x17I\x12S\x81\xeaQC\xa6J\xac",),
- "out": "HARXEpbq7gJQGcSVUtubYo",
- },
- {
- "in": (b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee",),
- "out": "qb3y62fmEEVTPySXPQ77WXok6H",
- },
- ],
- "base58_check_encode": [
- {
- "comment": "valid mainnet bitcoin address",
- "in": ("010966776006953d5567439e5e39f86a0d273bee", b"\x00"),
- "out": "16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",
- },
- {
- "comment": "valid mainnet bitcoin P2SH address",
- "in": ("010966776006953d5567439e5e39f86a0d273bee", b"\x05"),
- "out": "31nVrspaydBz8aMpxH9WkS2DuhgqS1fCuG",
- # TODO }, {
- # 'invalid mainnet bitcoin address: leading zero byte,
- # 'in': ('SOMETHING', b'\x00'),
- # 'error': (script.AddressError, 'encoded address does not decode properly')
- },
- ],
- "base58_check_decode": [
- {
- "comment": "valid mainnet bitcoin address",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM", b"\x00"),
- "out": b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee",
- },
- {
- "comment": "valid mainnet bitcoin address that contains a padding byte",
- "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC", b"\x00"),
- "out": b"\x1a&jGxV\xea\xd2\x9e\xcb\xe6\xaeQ\xad:,\x8dG<\xf4",
- },
- {
- "comment": "valid mainnet bitcoin P2SH address",
- "in": ("31nVrspaydBz8aMpxH9WkS2DuhgqS1fCuG", b"\x05"),
- "out": b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee",
- },
- {
- "comment": "valid mainnet bitcoin address that contains a padding byte, checked against incorrect version byte",
- "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC", b"\x05"),
- "error": (script.VersionByteError, "incorrect version byte"),
- },
- {
- "comment": "valid mainnet bitcoin P2SH address, checked against incorrect version byte",
- "in": ("31nVrspaydBz8aMpxH9WkS2DuhgqS1fCuG", b"\x00"),
- "error": (script.VersionByteError, "incorrect version byte"),
- },
- {
- "comment": "wrong version byte",
- "in": ("26UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM", b"\x00"),
- "error": (script.Base58Error, "invalid base58 string"),
- },
- {
- "comment": "invalid mainnet bitcoin address: bad checksum",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvN", b"\x00"),
- "error": (script.Base58Error, "invalid base58 string"),
- },
- {
- "comment": "valid testnet bitcoin address that we use in many tests",
- "in": (ADDR[0], b"\x6f"),
- "out": b"H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607",
- },
- {
- "comment": "invalid mainnet bitcoin address: invalid character",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjv0", b"\x00"),
- "error": (script.Base58Error, "invalid base58 string"),
- },
- ],
- # base58_decode is the raw decoding, we use the test cases from base58_check_decode
- "base58_decode": [
- {
- "comment": "valid mainnet bitcoin address",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
- "out": b"\x00\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee\xd6\x19g\xf6",
- },
- {
- "comment": "valid mainnet bitcoin address that contains a padding byte",
- "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC",),
- "out": b"\x00\x1a&jGxV\xea\xd2\x9e\xcb\xe6\xaeQ\xad:,\x8dG<\xf4\x07eG#",
- },
- {
- "comment": "wrong version byte",
- "in": ("26UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
- "out": b"\x0c\x01\x86\xaa\xbd\xa1\xd2\xdaJ\xf2\xd4\xbb\xe5=N\xe2\x08\xa6\x8eo\xd6\x19g\xf6",
- },
- {
- "comment": "invalid mainnet bitcoin address: bad checksum",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvN",),
- "out": b"\x00\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee\xd6\x19g\xf7",
- },
- {
- "comment": "valid testnet bitcoin address that we use in many tests",
- "in": (ADDR[0],),
- "out": b"oH8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607\x98!\xc4U",
- },
- {
- "comment": "invalid mainnet bitcoin address: invalid character",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjv0",),
- "error": (script.Base58Error, "Not a valid Base58 character: ‘0’"),
- },
- ],
- # base58_check_decode_parts is the raw decoding and splitting, we use the test cases from base58_check_decode
- "base58_check_decode_parts": [
- {
- "comment": "valid mainnet bitcoin address",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
- "out": (b"\x00", b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee", b"\xd6\x19g\xf6"),
- },
- {
- "comment": "valid mainnet bitcoin address that contains a padding byte",
- "in": ("13PGb7v3nmTDugLDStRJWXw6TzsNLUKJKC",),
- "out": (b"\x00", b"\x1a&jGxV\xea\xd2\x9e\xcb\xe6\xaeQ\xad:,\x8dG<\xf4", b"\x07eG#"),
- },
- {
- "comment": "wrong version byte",
- "in": ("26UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",),
- "out": (
- b"\x0c",
- b"\x01\x86\xaa\xbd\xa1\xd2\xdaJ\xf2\xd4\xbb\xe5=N\xe2\x08\xa6\x8eo",
- b"\xd6\x19g\xf6",
- ),
- },
- {
- "comment": "invalid mainnet bitcoin address: bad checksum",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvN",),
- "out": (b"\x00", b"\x01\tfw`\x06\x95=UgC\x9e^9\xf8j\r';\xee", b"\xd6\x19g\xf7"),
- },
- {
- "comment": "valid testnet bitcoin address that we use in many tests",
- "in": (ADDR[0],),
- "out": (b"o", b"H8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607", b"\x98!\xc4U"),
- },
- {
- "comment": "invalid mainnet bitcoin address: invalid character",
- "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjv0",),
- "error": (script.Base58Error, "Not a valid Base58 character: ‘0’"),
- },
- ],
- "is_multisig": [
- {"comment": "mono‐sig", "in": ("16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM",), "out": False},
- {
- "comment": "multi‐sig",
- "in": (
- "1_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
- ),
- "out": True,
- },
- ],
- "is_fully_valid": [
- {
- "comment": "fully valid compressed public key",
- "in": (
- b"\x03T\xdaT\x0f\xb2g;u\xe6\xc3\xc9\x94\xf8\n\xd0\xc8C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$E",
- ),
- "out": True,
- },
- {
- "comment": "not fully valid compressed public key: last byte decremented; not on curve",
- "in": (
- b"\x03T\xdaT\x0f\xb2g;u\xe6\xc3\xc9\x94\xf8\n\xd0\xc8C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$D",
- ),
- "out": False,
- },
- {
- "comment": "invalid compressed public key: first byte not `\x02` or `\x03`",
- "in": (
- b"\x01T\xdaT\x0f\xb2g;u\xe6\xc3\xc9\x94\xf8\n\xd0\xc8C\x16C\xba\xb2\x8c\xedx<\xd9@y\xbb\xe7$E",
- ),
- "out": False,
- },
- ],
- "make_canonical": [
- {
- "in": (
- "1_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_2",
- ), # TODO: Pubkeys out of order
- "out": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- },
- {
- "in": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- ), # TODO: Pubkeys out of order
- "out": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- },
- {
- "comment": "mono‐sig",
- "in": ("mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",),
- "out": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- },
- {"comment": "mono‐sig P2SH", "in": (P2SH_ADDR[0],), "out": P2SH_ADDR[0]},
- {
- "in": (
- "1_02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
- ),
- "error": (
- script.MultiSigAddressError,
- "Multi‐signature address must use PubKeyHashes, not public keys.",
- ),
- },
- ],
- "test_array": [
- {
- "in": (
- "1",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 2,
- ),
- "out": None,
- },
- {
- "in": (
- "Q",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 2,
- ),
- "error": (script.MultiSigAddressError, "Signature values not integers."),
- },
- {
- "in": (
- "1",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- None,
- ),
- "error": (script.MultiSigAddressError, "Signature values not integers."),
- },
- {
- "in": (
- "0",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 2,
- ),
- "error": (script.MultiSigAddressError, "Invalid signatures_required."),
- },
- {
- "in": (
- "4",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 2,
- ),
- "error": (script.MultiSigAddressError, "Invalid signatures_required."),
- },
- {
- "in": (
- "1",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 1,
- ),
- "error": (script.MultiSigAddressError, "Invalid signatures_possible."),
- },
- {
- "in": (
- "2",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 4,
- ),
- "error": (script.MultiSigAddressError, "Invalid signatures_possible."),
- },
- {
- "in": (
- "1",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_2"],
- 2,
- ),
- "error": (
- script.MultiSigAddressError,
- "Invalid characters in pubkeys/pubkeyhashes.",
- ),
- },
- {
- "in": (
- "3",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 3,
- ),
- "error": (
- script.InputError,
- "Incorrect number of pubkeys/pubkeyhashes in multi‐signature address.",
- ),
- },
- ],
- "construct_array": [
- {
- "in": (
- "1",
- ["mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"],
- 2,
- ),
- "out": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- }
- ],
- "extract_array": [
- {
- "in": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- ),
- "out": (
- 1,
- ["mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"],
- 2,
- ),
- }
- ],
- "pubkeyhash_array": [
- {
- "in": (
- "1_xxxxxxxxxxxWRONGxxxxxxxxxxxxxxxxxx_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- ),
- "error": (
- script.MultiSigAddressError,
- "Invalid PubKeyHashes. Multi‐signature address must use PubKeyHashes, not public keys.",
- ),
- },
- {
- "in": (
- "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- ),
- "out": ["mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"],
- },
- ],
- "is_pubkeyhash": [
- {
- "comment": "valid bitcoin address",
- "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",),
- "out": True,
- },
- {
- "comment": "valid P2SH bitcoin address, but is_pubkeyhash specifically checks for valid P2PKH address",
- "in": (P2SH_ADDR[0],),
- "out": False,
- },
- {
- "comment": "invalid checksum",
- "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP7",),
- "out": False,
- },
- {
- "comment": "invalid version byte",
- "in": ("LnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",),
- "out": False,
- },
- ],
- "make_pubkeyhash": [
- {
- "comment": "mono‐sig",
- "in": ("02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558",),
- "out": "mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",
- },
- {
- "comment": "multi‐sig, with pubkey in first position and pubkeyhash in second",
- "in": (
- "1_02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
- ),
- "out": "1_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
- },
- ],
- "extract_pubkeys": [
- {"comment": "pubkeyhash", "in": ("mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6",), "out": []},
- {"comment": "p2sh", "in": (P2SH_ADDR[0],), "out": []},
- {
- "comment": "mono‐sig",
- "in": ("02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558",),
- "out": ["02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558"],
- },
- {
- "comment": "multi‐sig, with pubkey in first position and pubkeyhash in second",
- "in": (
- "1_02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558_mnMrocns5kBjPZxRxXb5A1gx7gAoRZWPP6_2",
- ),
- "out": ["02513522cbf07b0bd553b0d8f8414c476c9275334fd3edfa368386412e3a193558"],
- },
- ],
- },
- "ledger": {
- "generate_asset_id": [
- {"in": ("BTC", DP["default_block_index"]), "out": 0},
- {"in": ("XCP", DP["default_block_index"]), "out": 1},
- {"in": ("BCD", 308000), "error": (exceptions.AssetNameError, "too short")},
- {
- "in": ("ABCD", 308000),
- "error": (exceptions.AssetNameError, "non‐numeric asset name starts with ‘A’"),
- },
- {
- "in": (f"A{26 ** 12}", 308000),
- "error": (exceptions.AssetNameError, "numeric asset name not in range"),
- },
- {
- "in": (f"A{2 ** 64}", 308000),
- "error": (exceptions.AssetNameError, "numeric asset name not in range"),
- },
- {"in": (f"A{26 ** 12 + 1}", 308000), "out": 26**12 + 1},
- {"in": (f"A{2 ** 64 - 1}", 308000), "out": 2**64 - 1},
- {
- "in": ("LONGASSETNAMES", 308000),
- "error": (exceptions.AssetNameError, "long asset names must be numeric"),
- },
- {"in": ("BCDE_F", 308000), "error": (exceptions.AssetNameError, "invalid character:")},
- {"in": ("BAAA", 308000), "out": 26**3},
- {"in": ("ZZZZZZZZZZZZ", 308000), "out": 26**12 - 1},
- ],
- "generate_asset_name": [
- {"in": (0, DP["default_block_index"]), "out": "BTC"},
- {"in": (1, DP["default_block_index"]), "out": "XCP"},
- {"in": (26**12 - 1, 308000), "out": "ZZZZZZZZZZZZ"},
- {"in": (26**3, 308000), "out": "BAAA"},
- {"in": (2**64 - 1, 308000), "out": f"A{2 ** 64 - 1}"},
- {"in": (26**12 + 1, 308000), "out": f"A{26 ** 12 + 1}"},
- {"in": (26**3 - 1, 308000), "error": (exceptions.AssetIDError, "too low")},
- {"in": (2**64, 308000), "error": (exceptions.AssetIDError, "too high")},
- ],
- "price": [{"in": (1, 10), "out": Fraction(1, 10)}],
- "last_message": [
- {
- "in": (),
- "out": {
- "message_index": 1239,
- "block_index": 310500,
- "command": "parse",
- "category": "blocks",
- "bindings": '{"block_index":310500,"ledger_hash":"5ffefc7a2724be6bd697796bb82638ec913c5cbb73627153d1a13b48c7a6c02d","messages_hash":"4cff3b25733ea80f00f94f56e8a14e66e1f65b6588041a084e633a32ae72ea96","transaction_count":0,"txlist_hash":"35f4a33840d002ab4e0e44f11c1749ae95b41376927fb346140508b32518edd1"}',
- "timestamp": 0,
- "event": "BLOCK_PARSED",
- "tx_hash": None,
- "event_hash": "0ce34415dfacbe1fcea7c7d629e170305dd1a7fcb196e7e6ff0d033afdabda31",
- },
- }
- ],
- "get_asset_id": [
- {"in": ("XCP", DP["default_block_index"]), "out": 1},
- {"in": ("BTC", DP["default_block_index"]), "out": 0},
- {
- "in": ("foobar", DP["default_block_index"]),
- "error": (exceptions.AssetError, "No such asset: foobar"),
- },
- ],
- "resolve_subasset_longname": [
- {"in": ("XCP",), "out": "XCP"},
- {"in": ("PARENT",), "out": "PARENT"},
- {"in": ("PARENT.nonexistent.subasset",), "out": "PARENT.nonexistent.subasset"},
- {"in": ("PARENT.ILEGAL^^^",), "out": "PARENT.ILEGAL^^^"},
- {"in": ("PARENT.already.issued",), "out": f"A{26 ** 12 + 101}"},
- ],
- "debit": [
- {"in": (ADDR[0], "XCP", 1, 0), "out": None},
- {
- "in": (ADDR[0], "BTC", DP["quantity"], 0),
- "error": (DebitError, "Cannot debit bitcoins."),
- },
- {
- "in": (ADDR[0], "BTC", -1 * DP["quantity"], 0),
- "error": (DebitError, "Negative quantity."),
- },
- {
- "in": (ADDR[0], "BTC", 1.1 * DP["quantity"], 0),
- "error": (DebitError, "Quantity must be an integer."),
- },
- {"in": (ADDR[0], "XCP", 2**40, 0), "error": (DebitError, "Insufficient funds.")},
- ],
- "credit": [
- {"in": (ADDR[0], "XCP", 1, 0), "out": None},
- {
- "in": (ADDR[0], "BTC", DP["quantity"], 0),
- "error": (CreditError, "Cannot debit bitcoins."),
- },
- {
- "in": (ADDR[0], "BTC", -1 * DP["quantity"], 0),
- "error": (CreditError, "Negative quantity."),
- },
- {
- "in": (ADDR[0], "BTC", 1.1 * DP["quantity"], 0),
- "error": (CreditError, "Quantity must be an integer."),
- },
- ],
- "is_divisible": [
- {"in": ("XCP",), "out": True},
- {"in": ("BTC",), "out": True},
- {"in": ("DIVISIBLE",), "out": True},
- {"in": ("NODIVISIBLE",), "out": False},
- {"in": ("foobar",), "error": (exceptions.AssetError, "No such asset: foobar")},
- ],
- "value_in": [
- {
- "in": (
- 1.1,
- "leverage",
- ),
- "out": 1,
- },
- {
- "in": (
- 1 / 10,
- "fraction",
- ),
- "out": 0.1,
- },
- {
- "in": (
- 1,
- "NODIVISIBLE",
- ),
- "out": 1,
- },
- {
- "in": (
- 1.111111111111,
- "DIVISIBLE",
- ),
- "error": (
- QuantityError,
- "Divisible assets have only eight decimal places of precision.",
- ),
- },
- {
- "in": (
- 1.1,
- "NODIVISIBLE",
- ),
- "error": (QuantityError, "Fractional quantities of indivisible assets."),
- },
- ],
- "value_out": [
- {
- "in": (
- 1.1,
- "leverage",
- ),
- "out": "1.1",
- },
- {
- "in": (
- 1 / 10,
- "fraction",
- ),
- "out": "10.0%",
- },
- {
- "in": (
- 1,
- "NODIVISIBLE",
- ),
- "out": 1,
- },
- {
- "in": (
- 1.1,
- "NODIVISIBLE",
- ),
- "error": (QuantityError, "Fractional quantities of indivisible assets."),
- },
- ],
- "xcp_created": [{"in": (), "out": 604506847920}],
- "xcp_destroyed": [{"in": (), "out": 475000000}],
- "xcp_supply": [
- {
- "in": (),
- "out": 604031847920,
- }
- ],
- "creations": [
- {
- "in": (),
- "out": {
- "XCP": 604506847920,
- "CALLABLE": 1000,
- "DIVIDEND": 100,
- "DIVISIBLE": 100000000000,
- "LOCKED": 1000,
- "LOCKEDPREV": 1000,
- "MAXI": 9223372036854775807,
- "NODIVISIBLE": 1000,
- "PAYTOSCRIPT": 1000,
- "A95428956661682277": 100000000,
- "PARENT": 100000000,
- },
- }
- ],
- "destructions": [{"in": (), "out": {"XCP": 475000000}}],
- "asset_supply": [
- {
- "in": ("DIVISIBLE",),
- "out": 100000000000,
- }
- ],
- "supplies": [
- {
- "in": (),
- "out": {
- "XCP": 604031847920,
- "CALLABLE": 1000,
- "DIVIDEND": 100,
- "DIVISIBLE": 100000000000,
- "LOCKED": 1000,
- "LOCKEDPREV": 1000,
- "MAXI": 9223372036854775807,
- "NODIVISIBLE": 1000,
- "PAYTOSCRIPT": 1000,
- "A95428956661682277": 100000000,
- "PARENT": 100000000,
- },
- }
- ],
- "get_balance": [
- {"in": (ADDR[0], "XCP"), "out": 91875000000},
- {"in": (ADDR[0], "foobar"), "out": 0},
- ],
- "get_asset_name": [
- {"in": (1, DP["default_block_index"]), "out": "XCP"},
- {"in": (0, DP["default_block_index"]), "out": "BTC"},
- {"in": (453, DP["default_block_index"]), "out": 0},
- ],
- "holders": [
- {
- "in": ("XCP",),
- "out": [
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "address_quantity": 91875000000,
- "escrow": None,
- },
- {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "address_quantity": 99999990,
- "escrow": None,
- },
- {
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "address_quantity": 300000000,
- "escrow": None,
- },
- {
- "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
- "address_quantity": 92999138812,
- "escrow": None,
- },
- {
- "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
- "address_quantity": 92999130360,
- "escrow": None,
- },
- {
- "address": "mwtPsLQxW9xpm7gdLmwWvJK5ABdPUVJm42",
- "address_quantity": 92949122099,
- "escrow": None,
- },
- {
- "address": "mrPk7hTeZWjjSCrMTC2ET4SAUThQt7C4uK",
- "address_quantity": 14999857,
- "escrow": None,
- },
- {
- "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- "address_quantity": 46449548498,
- "escrow": None,
- },
- {
- "address": "tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx",
- "address_quantity": 92999030129,
- "escrow": None,
- },
- {
- "address": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "address_quantity": 0,
- "escrow": None,
- },
- {
- "address": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "address_quantity": 92945878046,
- "escrow": None,
- },
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "address_quantity": 100000000,
- "escrow": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8",
- },
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "address_quantity": 100000000,
- "escrow": "21460d5c07284f9be9baf824927d0d4e4eb790e297f3162305841607b672349b",
- },
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "address_quantity": 100000000,
- "escrow": "1899b2e6ec36ba4bc9d035e6640b0a62b08c3a147c77c89183a77d9ed9081b3a",
- },
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "address_quantity": 0,
- "escrow": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498",
- },
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "address_quantity": 100000000,
- "escrow": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81",
- },
- {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "address_quantity": 10,
- "escrow": "db4ea092bea6036e3d1e5f6ec863db9b900252b4f4d6d9faa6165323f433c51e",
- },
- {
- "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- "address_quantity": 10,
- "escrow": "d79b590e4ec3e74cbc3eb4d0f956ce7abb0e3af2ccac85ff90ed8acf13f2e048",
- },
- {
- "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM",
- "address_quantity": 9,
- "escrow": "41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef",
- },
- {
- "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b",
- "address_quantity": 100,
- "escrow": None,
- },
- ],
- },
- {
- "in": ("DIVISIBLE",),
- "out": [
- {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "address_quantity": 98800000000,
- "escrow": None,
- },
- {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "address_quantity": 100000000,
- "escrow": None,
- },
- {
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "address_quantity": 1000000000,
- "escrow": None,
- },
- {
- "address": "2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy",
- "address_quantity": 100000000,
- "escrow": None,
- },
- ],
- },
- ],
- "last_db_index": [{"in": (), "out": DP["default_block_index"] - 1}],
- },
- "util": {
- "api": [
- {
- "in": (
- "create_burn",
- {"source": ADDR[1], "quantity": DP["burn_quantity"], "encoding": "multisig"},
- ),
- "out": "0100000001ebe3111881a8733ace02271dcf606b7450c41a48c1cb21fd73f4ba787b353ce4000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88acffffffff02800bb203000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87bf4302000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac00000000",
- },
- {
- "in": (
- "create_send",
- {
- "source": ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0322020000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210262415bf04af834423d3dd7ada4dc727a030865759f9fba5aee78c9ea71e58798210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae283bea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_send",
- {
- "source": P2SH_ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- "encoding": "multisig",
- "dust_return_pubkey": False,
- "regular_dust_size": DP["regular_dust_size"],
- },
- ),
- "out": "01000000015001af2c4c3bc2c43b6233261394910d10fb157a082d9b3038c65f2d01e4ff200000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e87ffffffff0336150000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210397b51de78b0f3a171f5ed27fff56d17dcba739c8b00035c8bbb9c380fdc4ed1321036932bcbeac2a4d8846b7feb4bf93b2b88efd02f2d8dc1fc0067bcc972257e3912111111111111111111111111111111111111111111111111111111111111111111153ae00aaf5050000000017a9144264cfd7eb65f8cbbdba98bd9815d5461fad8d7e8700000000",
- },
- {
- "in": (
- "create_issuance",
- {
- "source": ADDR[0],
- "transfer_destination": None,
- "asset": "BSSET",
- "quantity": 1000,
- "divisible": True,
- "description": "",
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210358415bf04af834423d3dd7adb2dc727a03086e897d9fba5aee7a331919e487d6210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_issuance",
- {
- "source": ADDR[0],
- "transfer_destination": ADDR[1],
- "asset": "DIVISIBLE",
- "quantity": 0,
- "divisible": True,
- "description": "",
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff0322020000000000001976a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ace8030000000000006951210258415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e4874b210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae283bea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_order",
- {
- "source": ADDR[0],
- "give_asset": "BTC",
- "give_quantity": DP["small"],
- "get_asset": "XCP",
- "get_quantity": DP["small"] * 2,
- "expiration": DP["expiration"],
- "fee_required": 0,
- "fee_provided": DP["fee_provided"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210348415bf04af834423d3dd7adaedc727a030865759e9fba5aee78c9ea71e5870f210354da540fb2673b75e6c3c994f80ad0c8431643bab28ced783cd94079bbe72445210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aeec18db0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_order",
- {
- "source": ADDR[0],
- "give_asset": "XCP",
- "give_quantity": round(DP["small"] * 2.1),
- "get_asset": "BTC",
- "get_quantity": DP["small"],
- "expiration": DP["expiration"],
- "fee_required": DP["fee_required"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210248415bf04af834423d3dd7adaedc727a030865759f9fba5aee7c7136b1e58715210354da540fb2663b75e6c3ce9be98ad0c8431643bab28156d83cd94079bbe72460210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_burn",
- {
- "source": MULTISIGADDR[0],
- "quantity": int(DP["quantity"] / 2),
- "encoding": "multisig",
- },
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac87dafa02000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "in": (
- "create_send",
- {
- "source": ADDR[0],
- "destination": MULTISIGADDR[0],
- "asset": "XCP",
- "quantity": DP["quantity"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210362415bf04af834423d3dd7ada4dc727a030865759f9fba5aee7fc6fbf1e5875a210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_send",
- {
- "source": MULTISIGADDR[0],
- "destination": ADDR[0],
- "asset": "XCP",
- "quantity": DP["quantity"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff0322020000000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ace8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae14bdf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "in": (
- "create_send",
- {
- "source": MULTISIGADDR[0],
- "destination": MULTISIGADDR[1],
- "asset": "XCP",
- "quantity": DP["quantity"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff03e8030000000000004751210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b977210378ee11c3fb97054877a809ce083db292b16d971bcdc6aa4c8f92087133729d8b52aee8030000000000006951210334caf7ca87f0fd78a01d9a0d68221e55beef3722da8be72d254dd351c26108892102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae4ebbf505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "in": (
- "create_issuance",
- {
- "source": MULTISIGADDR[0],
- "transfer_destination": None,
- "asset": "BSSET",
- "quantity": 1000,
- "divisible": True,
- "description": "",
- "encoding": "multisig",
- },
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121020ecaf7ca87f0fd78a01d9a0d7e221e55beef3cde388be72d254826b32a6008382102bc14528340c27d005aa9e2913fd8c032ffa94625307a450077125d580099b57d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "in": (
- "create_issuance",
- {
- "source": ADDR[0],
- "transfer_destination": MULTISIGADDR[0],
- "asset": "DIVISIBLE",
- "quantity": 0,
- "divisible": True,
- "description": "",
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff03e8030000000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aee8030000000000006951210258415bf04af834423d3dd7adb2dc727aa153863ef89fba5aee7a331af1e4874b210254da540fb2663b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe72447210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae6239ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_issuance",
- {
- "source": ADDR[0],
- "asset": f"A{2 ** 64 - 1}",
- "quantity": 1000,
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e8030000000000006951210255415bf04af834423d3dd7adb2238d85fcf79a8a619fba5aee7a331919e4870d210254da540fb2663b75268d992d550ad0c2431643bab28ced783cd94079bbe7244d210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "comment": "1",
- "in": (
- "create_order",
- {
- "source": MULTISIGADDR[0],
- "give_asset": "BTC",
- "give_quantity": DP["small"],
- "get_asset": "XCP",
- "get_quantity": DP["small"] * 2,
- "expiration": DP["expiration"],
- "fee_required": 0,
- "fee_provided": DP["fee_provided"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121021ecaf7ca87f0fd78a01d9a0d62221e55beef3722db8be72d254adc40426108d02103bc14528340c37d005aa9e764ded8c038ffa94625307a450077125d580099b53b210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053aed89ae605000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "in": (
- "create_order",
- {
- "source": MULTISIGADDR[0],
- "give_asset": "XCP",
- "give_quantity": round(DP["small"] * 2.1),
- "get_asset": "BTC",
- "get_quantity": DP["small"],
- "expiration": DP["expiration"],
- "fee_required": DP["fee_required"],
- "encoding": "multisig",
- },
- ),
- "out": "0100000001051511b66ba309e3dbff1fde22aefaff4190675235a010a5c6acb1e43da8005f000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752aeffffffff02e803000000000000695121031ecaf7ca87f0fd78a01d9a0d62221e55beef3722da8be72d254e649c8261083d2102bc14528340c27d005aa9e06bcf58c038ffa946253077fea077125d580099b5bb210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae88c2f505000000004751210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b0210319f6e07b0b8d756156394b9dcf3b011fe9ac19f2700bd6b69a6a1783dbb8b97752ae00000000",
- },
- {
- "in": (
- "create_dividend",
- {
- "source": ADDR[0],
- "quantity_per_unit": DP["quantity"],
- "asset": "DIVISIBLE",
- "dividend_asset": "XCP",
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121035a415bf04af834423d3dd7ad96dc727a030d90949e9fba5a4c21d05197e58735210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- },
- {
- "in": (
- "create_dividend",
- {
- "source": ADDR[0],
- "quantity_per_unit": 1,
- "asset": "NODIVISIBLE",
- "dividend_asset": "XCP",
- "encoding": "multisig",
- },
- ),
- "out": "0100000001c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788acffffffff02e803000000000000695121025a415bf04af834423d3dd7ad96dc727a030865759f9fbc9036a64c1197e587c8210254da540fb2673b75e6c3cc61190ad0c2431643bab28ced783cd94079bbe7246f210282b886c087eb37dc8182f14ba6cc3e9485ed618b95804d44aecc17c300b585b053ae9c40ea0b000000001976a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac00000000",
- # CIP 9 enhanced_send tests
- },
- {
- "comment": "standard op return send",
- "mock_protocol_changes": {"enhanced_sends": False},
- "in": (
- "create_send",
- {
- "source": ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "out": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "03"
- + "2202000000000000"
- + "19"
- + "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac"
- + "0000000000000000"
- + "1e"
- + "6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aec80c39a"
- + "4343ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000",
- },
- {
- "comment": "standard op return send (with API parameter)",
- "mock_protocol_changes": {"enhanced_sends": True},
- "in": (
- "create_send",
- {
- "use_enhanced_send": False,
- "source": ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "out": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "03"
- + "2202000000000000"
- + "19"
- + "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac"
- + "0000000000000000"
- + "1e"
- + "6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aec80c39a"
- + "4343ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000",
- },
- {
- "comment": "CIP 9 enhanced_send (op_return)",
- "mock_protocol_changes": {"enhanced_sends": True},
- "in": (
- "create_send",
- {
- "source": ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "out": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "02"
- + "0000000000000000"
- + "33"
- + "6a312a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa"
- + "aa46ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000",
- },
- {
- "comment": "CIP 9 enhanced_send with memo",
- "mock_protocol_changes": {"enhanced_sends": True},
- "in": (
- "create_send",
- {
- "memo": "hello",
- "source": ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "out": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "02"
- + "0000000000000000"
- + "38"
- + "6a36"
- + "2a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa2bdfdee082"
- + "2d46ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000",
- },
- {
- "comment": "CIP 9 enhanced_send with memo as hex",
- "mock_protocol_changes": {"enhanced_sends": True},
- "in": (
- "create_send",
- {
- "memo": "0102030405",
- "memo_is_hex": True,
- "source": ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "out": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "02"
- + "0000000000000000"
- + "38"
- + "6a36"
- + "2a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa42b8b188e8"
- + "2d46ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000",
- },
- {
- "comment": "CIP 9 enhanced_send before enabled",
- "mock_protocol_changes": {"enhanced_sends": False},
- "in": (
- "create_send",
- {
- "memo": "0102030405",
- "memo_is_hex": True,
- "source": ADDR[0],
- "destination": ADDR[1],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "error": (
- RPCError,
- "Error composing send transaction via API: enhanced sends are not enabled (-32001)",
- ),
- },
- {
- "comment": "CIP 9 enhanced send to a REQUIRE_MEMO address without memo",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- "create_send",
- {
- "source": ADDR[0],
- "destination": ADDR[6],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "error": (
- RPCError,
- "Error composing send transaction via API: ['destination requires memo'] (-32001)",
- ),
- },
- {
- "comment": "CIP 9 enhanced send to a REQUIRE_MEMO address with memo",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- "create_send",
- {
- "memo": "0102030405",
- "memo_is_hex": True,
- "source": ADDR[0],
- "destination": ADDR[6],
- "asset": "XCP",
- "quantity": DP["small"],
- },
- ),
- "out": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "02"
- + "0000000000000000"
- + "38"
- + "6a36"
- + "2a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e56174ca4a68af644972baced7a9ef02e467cb63542b8b188e8"
- + "2d46ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000",
- # get_tx_info API method
- },
- {
- "comment": "get_tx_info for a legacy send",
- "in": (
- "get_tx_info",
- {
- "tx_hex": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "03"
- + "2202000000000000"
- + "19"
- + "76a9148d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec88ac"
- + "0000000000000000"
- + "1e"
- + "6a1c2a504df746f83442653dd7ada4dc727a030865749e9fba5aec80c39a"
- + "4343ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000"
- },
- ),
- "out": [
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- 546,
- 6575,
- "0000000000000000000000010000000002faf080",
- ],
- },
- {
- "comment": "get_tx_info for an enhanced send",
- "mock_protocol_changes": {
- "enhanced_sends": True,
- },
- "in": (
- "get_tx_info",
- {
- "tx_hex": "01000000"
- + "01"
- + "c1d8c075936c3495f6d653c50f73d987f75448d97a750249b1eb83bee71b24ae"
- + "00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "ffffffff"
- + "02"
- + "0000000000000000"
- + "33"
- + "6a312a504df746f83442653dd7afa4dc727a030865749e9fba5aec80c39a9e68edbc79e78ed45723c1072c38aededa458f95fa"
- + "aa46ea0b00000000"
- + "19"
- + "76a9144838d8b3588c4c7ba7c1d06f866e9b3739c6303788ac"
- + "00000000"
- },
- ),
- "out": [
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "",
- 0,
- 6250,
- "0000000200000000000000010000000002faf0806f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec",
- ],
- # unpack API method
- },
- {
- "comment": "Unpack a data hex for a legacy send",
- "in": ("unpack", {"data_hex": "0000000000000000000000010000000002faf080"}),
- "out": [0, {"asset": "XCP", "quantity": 50000000}],
- },
- {
- "comment": "Unpack a data hex for an enahcned send",
- "mock_protocol_changes": {"enhanced_sends": True, "options_require_memo": True},
- "in": (
- "unpack",
- {
- "data_hex": "0000000200000000000000010000000002faf0806f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec"
- },
- ),
- "out": [
- 2,
- {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "memo": None,
- "quantity": 50000000,
- },
- ],
- },
- ],
- "dhash_string": [
- {
- "in": ("foobar",),
- "out": "3f2c7ccae98af81e44c0ec419659f50d8b7d48c681e5d57fc747d0461e42dda1",
- }
- ],
- "hexlify": [
- {
- "in": (b"\x00\x00\x00\x14\x00\x00\x00\x00\x00\x0b\xfc\xe3",),
- "out": "0000001400000000000bfce3",
- }
- ],
- "date_passed": [
- {
- "comment": "date in the past, mock function overrides this one and always returns `False` in the test suite",
- "in": ("1020720007",),
- "out": False,
- },
- {
- "comment": "date far in the future, mock function overrides this one and always returns `False` in the test suite",
- "in": ("5520720007",),
- "out": False,
- },
- ],
- "parse_subasset_from_asset_name": [
- {
- "in": ("BADASSETx.child1",),
- "error": (
- exceptions.AssetNameError,
- "parent asset name contains invalid character:",
- ),
- },
- {
- "in": ("TOOLONGASSETNAME.child1",),
- "error": (exceptions.AssetNameError, "parent asset name too long"),
- },
- {
- "in": ("BAD.child1",),
- "error": (exceptions.AssetNameError, "parent asset name too short"),
- },
- {
- "in": ("ABADPARENT.child1",),
- "error": (exceptions.AssetNameError, "parent asset name starts with ‘A’"),
- },
- {
- "in": ("BTC.child1",),
- "error": (exceptions.AssetNameError, "parent asset cannot be BTC"),
- },
- {
- "in": ("XCP.child1",),
- "error": (exceptions.AssetNameError, "parent asset cannot be XCP"),
- },
- {"in": ("PARENT.",), "error": (exceptions.AssetNameError, "subasset name too short")},
- {
- "in": ("PARENT." + ("1234567890" * 24) + "12345",),
- "error": (exceptions.AssetNameError, "subasset name too long"),
- },
- {
- "in": ("PARENT.child1&",),
- "error": (exceptions.AssetNameError, "subasset name contains invalid character:"),
- },
- {
- "in": ("PARENT.child1..foo",),
- "error": (exceptions.AssetNameError, "subasset name contains consecutive periods"),
- },
- ],
- "compact_subasset_longname": [
- {"in": ("a.very.long.name",), "out": binascii.unhexlify("132de2e856f9a630c2e2bc09")},
- {"in": ("aaaa",), "out": binascii.unhexlify("04de95")},
- {"in": ("a",), "out": b"\x01"},
- {"in": ("b",), "out": b"\x02"},
- ],
- "expand_subasset_longname": [
- {"in": (binascii.unhexlify("132de2e856f9a630c2e2bc09"),), "out": "a.very.long.name"},
- {"in": (binascii.unhexlify("04de95"),), "out": "aaaa"},
- {"in": (b"\x01",), "out": "a"},
- {"in": (b"\x02",), "out": "b"},
- {
- "in": (binascii.unhexlify("8e90a57dba99d3a77b0a2470b1816edb"),),
- "out": "PARENT.a-zA-Z0-9.-_@!",
- },
- ],
- "enabled": [
- {"in": ("numeric_asset_names",), "out": True},
- {"in": ("foobar",), "error": (KeyError, "foobar")},
- {
- "mock_protocol_changes": {"numeric_asset_names": False},
- "in": ("numeric_asset_names",),
- "out": False,
- },
- ],
- },
- "database": {
- "version": [{"in": (), "out": (config.VERSION_MAJOR, config.VERSION_MINOR)}],
- "update_version": [
- {
- "in": (),
- "records": [
- {
- "table": "pragma",
- "field": "user_version",
- "value": (config.VERSION_MAJOR * 1000) + config.VERSION_MINOR,
- }
- ],
- }
- ],
- },
- "message_type": {
- "unpack": [
- {
- "in": (binascii.unhexlify("01deadbeef"), 310502),
- "out": (1, binascii.unhexlify("deadbeef")),
- },
- {
- "in": (binascii.unhexlify("02deadbeef"), 310502),
- "out": (2, binascii.unhexlify("deadbeef")),
- },
- {
- "in": (binascii.unhexlify("00000001deadbeef"), 310502),
- "out": (1, binascii.unhexlify("deadbeef")),
- },
- {
- "in": (binascii.unhexlify("00000000deadbeef"), 310502),
- "out": (0, binascii.unhexlify("deadbeef")),
- },
- {"in": (binascii.unhexlify("00"), 310502), "out": (None, None)},
- ],
- "pack": [
- {"in": (0, 300000), "out": binascii.unhexlify("00000000")},
- {"in": (1, 300000), "out": binascii.unhexlify("00000001")},
- {"in": (0, 310502), "out": binascii.unhexlify("00000000")},
- {"in": (1, 310502), "out": binascii.unhexlify("01")},
- {"in": (2, 310502), "out": binascii.unhexlify("02")},
- ],
- },
- "address": {
- "pack": [
- {
- "config_context": {"ADDRESSVERSION": config.ADDRESSVERSION_MAINNET},
- "in": ("1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",),
- "out": binascii.unhexlify("006474849fc9ac0f5bd6b49fe144d14db7d32e2445"),
- },
- {
- "config_context": {"ADDRESSVERSION": config.ADDRESSVERSION_MAINNET},
- "in": ("1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",),
- "out": binascii.unhexlify("00647484b055e2101927e50aba74957ba134d501d7"),
- },
- {
- "config_context": {"P2SH_ADDRESSVERSION": config.P2SH_ADDRESSVERSION_MAINNET},
- "in": ("3AAAA1111xxxxxxxxxxxxxxxxxxy3SsDsZ",),
- "out": binascii.unhexlify("055ce31be63403fa7b19f2614272547c15c8df86b9"),
- },
- {
- "config_context": {"P2SH_ADDRESSVERSION": config.P2SH_ADDRESSVERSION_TESTNET},
- "in": ("2MtAV7xpAzU69E8GxRF2Vd2xt79kDnif6F5",),
- "out": binascii.unhexlify("C40A12AD889AECC8F6213BFD6BD47911CAB1C30E5F"),
- },
- {
- "in": ("BADBASE58III",),
- "error": (
- Exception,
- "The address BADBASE58III is not a valid bitcoin address (testnet)",
- ),
- },
- ],
- "unpack": [
- {
- "in": (binascii.unhexlify("006474849fc9ac0f5bd6b49fe144d14db7d32e2445"),),
- "out": "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
- },
- {
- "in": (binascii.unhexlify("00647484b055e2101927e50aba74957ba134d501d7"),),
- "out": "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
- },
- {
- "in": (binascii.unhexlify("055ce31be63403fa7b19f2614272547c15c8df86b9"),),
- "out": "3AAAA1111xxxxxxxxxxxxxxxxxxy3SsDsZ",
- },
- {
- "in": (binascii.unhexlify("C40A12AD889AECC8F6213BFD6BD47911CAB1C30E5F"),),
- "out": "2MtAV7xpAzU69E8GxRF2Vd2xt79kDnif6F5",
- },
- ],
- },
- "versions.enhanced_send": {
- "unpack": [
- {
- "in": (
- binascii.unhexlify(
- "000000000004fadf"
- + "000000174876e800"
- + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "asset": "SOUP",
- "quantity": 100000000000,
- "address": "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
- "memo": None,
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify(
- "0000000000000001"
- + "000000000000007b"
- + "00647484b055e2101927e50aba74957ba134d501d7"
- + "0deadbeef123"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "asset": "XCP",
- "quantity": 123,
- "address": "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
- "memo": binascii.unhexlify("0deadbeef123"),
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify("0000000000000001" + "000000000000007b" + "0001"),
- DP["default_block_index"],
- ),
- "error": (exceptions.UnpackError, "invalid message length"),
- },
- {
- "in": (
- binascii.unhexlify(
- "0000000000000001"
- + "000000000000007b"
- + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
- + "9999999999999999999999999999999999999999999999999999999999999999999999"
- ),
- DP["default_block_index"],
- ),
- "error": (exceptions.UnpackError, "memo too long"),
- },
- {
- "in": (
- binascii.unhexlify(
- "0000000000000000"
- + "000000000000007b"
- + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
- ),
- DP["default_block_index"],
- ),
- "error": (exceptions.UnpackError, "asset id invalid"),
- },
- {
- "in": (
- binascii.unhexlify(
- "0000000000000003"
- + "000000000000007b"
- + "006474849fc9ac0f5bd6b49fe144d14db7d32e2445"
- ),
- DP["default_block_index"],
- ),
- "error": (exceptions.UnpackError, "asset id invalid"),
- },
- {
- "in": (
- b"\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x86\xa0\x80u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6segwit",
- DP["default_block_index"],
- ),
- "out": (
- {
- "address": P2WPKH_ADDR[0],
- "asset": "XCP",
- "quantity": 100000,
- "memo": b"segwit",
- }
- ),
- },
- ],
- "validate": [
- # ----- tests copied from regular send -----
- {"in": (ADDR[0], ADDR[1], "XCP", DP["quantity"], None, 1), "out": ([])},
- {"in": (ADDR[0], P2SH_ADDR[0], "XCP", DP["quantity"], None, 1), "out": ([])},
- {"in": (P2SH_ADDR[0], ADDR[1], "XCP", DP["quantity"], None, 1), "out": ([])},
- {
- "in": (ADDR[0], ADDR[1], "BTC", DP["quantity"], None, 1),
- "out": ([f"cannot send {config.BTC}"]),
- },
- {
- "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3, None, 1),
- "out": (["quantity must be in satoshis"]),
- },
- {
- "in": (ADDR[0], ADDR[1], "XCP", -1 * DP["quantity"], None, 1),
- "out": (["negative quantity"]),
- },
- {"in": (ADDR[0], MULTISIGADDR[0], "XCP", DP["quantity"], None, 1), "out": ([])},
- {"in": (ADDR[0], ADDR[1], "MAXI", 2**63 - 1, None, 1), "out": ([])},
- {"in": (ADDR[0], ADDR[1], "MAXI", 2**63, None, 1), "out": (["integer overflow"])},
- {
- "in": (ADDR[0], ADDR[6], "XCP", DP["quantity"], None, 1),
- "out": (["destination requires memo"]),
- },
- {
- # ----- tests specific to enhanced send -----
- "in": (
- "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
- "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
- "SOUP",
- 100000000,
- None,
- DP["default_block_index"],
- ),
- "out": ([]),
- },
- {
- "in": (
- "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
- "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
- "SOUP",
- 100000000,
- binascii.unhexlify("01ff"),
- DP["default_block_index"],
- ),
- "out": ([]),
- },
- {
- "in": (
- "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
- "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
- "SOUP",
- 0,
- binascii.unhexlify("01ff"),
- DP["default_block_index"],
- ),
- "out": (["zero quantity"]),
- },
- {
- "in": (
- "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
- "",
- "SOUP",
- 100000000,
- binascii.unhexlify("01ff"),
- DP["default_block_index"],
- ),
- "out": (["destination is required"]),
- },
- {
- "in": (
- "1AAAA1111xxxxxxxxxxxxxxxxxxy43CZ9j",
- "1AAAA2222xxxxxxxxxxxxxxxxxxy4pQ3tU",
- "SOUP",
- 100000000,
- binascii.unhexlify(
- "9999999999999999999999999999999999999999999999999999999999999999999999"
- ),
- DP["default_block_index"],
- ),
- "out": (["memo is too long"]),
- },
- ],
- "compose": [
- # ----- tests copied from regular send -----
- {
- "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] * 10000000, None, False),
- "error": (exceptions.ComposeError, "insufficient funds"),
- },
- {
- "in": (ADDR[0], ADDR[1], "XCP", DP["quantity"] / 3, None, False),
- "error": (exceptions.ComposeError, "quantity must be an int (in satoshi)"),
- },
- {
- "in": (ADDR[0], ADDR[1], "MAXI", 2**63 + 1, None, False),
- "error": (exceptions.ComposeError, "insufficient funds"),
- },
- {
- "in": (ADDR[0], ADDR[1], "BTC", DP["quantity"], None, False),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", 100000000)],
- None,
- ),
- },
- {
- "in": (ADDR[0], P2SH_ADDR[0], "BTC", DP["quantity"], None, False),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [("2MyJHMUenMWonC35Yi6PHC7i2tkS7PuomCy", 100000000)],
- None,
- ),
- },
- {
- "comment": "resolve subasset to numeric asset",
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (ADDR[0], ADDR[1], "PARENT.already.issued", 100000000, None, False),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- binascii.unhexlify(
- "02"
- + "01530821671b1065"
- + "0000000005f5e100"
- + "6f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec"
- ),
- ),
- },
- # ----- tests specific to enhanced send -----
- {
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (ADDR[1], ADDR[0], "XCP", DP["small"], None, None),
- "out": (
- ADDR[1],
- [],
- binascii.unhexlify(
- "02"
- + "0000000000000001"
- + "0000000002faf080"
- + "6f4838d8b3588c4c7ba7c1d06f866e9b3739c63037"
- ),
- ),
- },
- {
- # memo as hex
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (ADDR[1], ADDR[0], "XCP", DP["small"], "12345abcde", True),
- "out": (
- ADDR[1],
- [],
- binascii.unhexlify(
- "02"
- + "0000000000000001"
- + "0000000002faf080"
- + "6f4838d8b3588c4c7ba7c1d06f866e9b3739c63037"
- + "12345abcde"
- ),
- ),
- },
- {
- # pack a string into bytes
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (ADDR[1], ADDR[0], "XCP", DP["small"], "hello", False),
- "out": (
- ADDR[1],
- [],
- binascii.unhexlify(
- "02"
- + "0000000000000001"
- + "0000000002faf080"
- + "6f4838d8b3588c4c7ba7c1d06f866e9b3739c63037"
- + "68656c6c6f"
- ),
- ),
- },
- {
- # memo too long
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (
- ADDR[1],
- ADDR[0],
- "XCP",
- DP["small"],
- "12345678901234567890123456789012345",
- False,
- ),
- "error": (exceptions.ComposeError, ["memo is too long"]),
- },
- {
- "comment": "enhanced_send to a REQUIRE_MEMO address, without memo",
- "in": (ADDR[0], ADDR[6], "XCP", DP["small"], None, False),
- "error": (exceptions.ComposeError, ["destination requires memo"]),
- },
- {
- "comment": "enhanced_send to a REQUIRE_MEMO address, with memo text",
- "in": (ADDR[0], ADDR[6], "XCP", DP["small"], "12345", False),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b'\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80o\xb3\x90\x18~\xf2\x85D"\xac^J.\xb6\xff\xe9$\x96\xbe\xf5#12345',
- ),
- },
- {
- "comment": "enhanced_send to a REQUIRE_MEMO address, with memo hex",
- "in": (ADDR[0], ADDR[6], "XCP", DP["small"], "deadbeef", True),
- "out": (
- "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- [],
- b'\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80o\xb3\x90\x18~\xf2\x85D"\xac^J.\xb6\xff\xe9$\x96\xbe\xf5#\xde\xad\xbe\xef',
- ),
- },
- {
- "comment": "send from a P2WPKH address to a P2PKH one",
- "in": (P2WPKH_ADDR[0], ADDR[0], "XCP", DP["small"], None, False),
- "out": (
- P2WPKH_ADDR[0],
- [],
- b"\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80oH8\xd8\xb3X\x8cL{\xa7\xc1\xd0o\x86n\x9b79\xc607",
- ),
- },
- ],
- "parse": [
- # ----- tests copied from regular send -----
- {
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000000001"
- + "0000000005f5e100"
- + SHORT_ADDR_BYTES[1]
- ),
- "tx_index": 502,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 100000000,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
+ },
+ ],
+ "parse": [
+ # ----- tests copied from regular send -----
+ {
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (
+ {
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "memo": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000000001"
+ + "0000000005f5e100"
+ + SHORT_ADDR_BYTES[1]
+ ),
+ "tx_index": DP["default_tx_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "quantity": 100000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "memo": None,
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
},
- },
- ],
- },
- {
- "comment": "zero quantity send",
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "block_index": DP["default_block_index"],
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000000001"
- + "0000000000000000"
- + SHORT_ADDR_BYTES[0]
- ),
- "block_time": 155409000,
- "fee": 10000,
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "tx_index": 502,
- "supported": 1,
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ ],
+ },
+ {
+ "comment": "zero quantity send",
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
"block_index": DP["default_block_index"],
"destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 0,
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000000001"
+ + "0000000000000000"
+ + SHORT_ADDR_BYTES[0]
+ ),
+ "block_time": 155409000,
+ "fee": 10000,
"source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "status": "invalid: zero quantity",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "in": (
- {
- "block_index": DP["default_block_index"],
- "btc_amount": 7800,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "data": binascii.unhexlify(
- "00000002"
- + "0006cad8dc7f0b66"
- + "00000000000001f4"
- + SHORT_ADDR_BYTES[1]
- ),
- "block_hash": DP["default_block_hash"],
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "NODIVISIBLE",
+ "tx_index": DP["default_tx_index"],
+ "supported": 1,
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "quantity": 0,
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "status": "invalid: zero quantity",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "in": (
+ {
"block_index": DP["default_block_index"],
+ "btc_amount": 7800,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0006cad8dc7f0b66"
+ + "00000000000001f4"
+ + SHORT_ADDR_BYTES[1]
+ ),
+ "block_hash": DP["default_block_hash"],
"destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 500,
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "supported": 1,
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "NODIVISIBLE",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 500,
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "quantity": 500,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "NODIVISIBLE",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 500,
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 500,
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000000001"
- + "0000000005f5e100"
- + SHORT_ADDR_BYTES[0]
- ),
- "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "supported": 1,
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "btc_amount": 7800,
- "block_hash": DP["default_block_hash"],
- "block_index": DP["default_block_index"],
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "quantity": 100000000,
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "NODIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 500,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000000001"
+ + "0000000005f5e100"
+ + SHORT_ADDR_BYTES[0]
+ ),
"source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "status": "valid",
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
+ "supported": 1,
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "btc_amount": 7800,
+ "block_hash": DP["default_block_hash"],
"block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "quantity": 100000000,
+ "source": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "block_index": DP["default_block_index"],
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "btc_amount": 7800,
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000033a3e"
- + "7fffffffffffffff"
- + SHORT_ADDR_BYTES[1]
- ),
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "supported": 1,
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "MAXI",
+ {
+ "table": "credits",
+ "values": {
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "1_mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc_mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns_2",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
"block_index": DP["default_block_index"],
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 9223372036854775807,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
"tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "tx_index": 502,
+ "btc_amount": 7800,
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000033a3e"
+ + "7fffffffffffffff"
+ + SHORT_ADDR_BYTES[1]
+ ),
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "supported": 1,
+ "block_hash": DP["default_block_hash"],
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "MAXI",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "quantity": 9223372036854775807,
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "MAXI",
+ "block_index": DP["default_block_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "quantity": 9223372036854775807,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "MAXI",
- "block_index": DP["default_block_index"],
- "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "quantity": 9223372036854775807,
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "MAXI",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "quantity": 9223372036854775807,
+ },
},
- },
- ],
- },
- # ----- tests specific to enhanced send -----
- {
- "comment": "instead of auto-correcting the quantity to the amount the address holds return invalid: insufficient funds",
- "in": (
- {
- "tx_index": 502,
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000000001"
- + "0000000058b11400"
- + SHORT_ADDR_BYTES[3]
- ),
- "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "block_time": 310501000,
- "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
- "tx_hash": "736ecc18f9f41b3ccf67dded1252969e4929404d6ad657b2039b937a7785cf3e",
- "supported": 1,
- "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "btc_amount": 5430,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
- "quantity": 1488000000,
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "MAXI",
+ "block_index": DP["default_block_index"],
+ "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "quantity": 9223372036854775807,
+ },
+ },
+ ],
+ },
+ # ----- tests specific to enhanced send -----
+ {
+ "comment": "instead of auto-correcting the quantity to the amount the address holds return invalid: insufficient funds",
+ "in": (
+ {
+ "tx_index": DP["default_tx_index"],
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000000001"
+ + "0000000058b11400"
+ + SHORT_ADDR_BYTES[3]
+ ),
"source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
- "status": "invalid: insufficient funds",
+ "block_time": 310501000,
+ "block_hash": "46ac6d09237c7961199068fdd13f1508d755483e07c57a4c8f7ff18eb33a05c93ca6a86fa2e2af82fb77a5c337146bb37e279797a3d11970aec4693c46ea5a58",
"tx_hash": "736ecc18f9f41b3ccf67dded1252969e4929404d6ad657b2039b937a7785cf3e",
- "tx_index": 502,
- },
- }
- ],
- },
- {
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000000001"
- + "0000000005f5e100"
- + SHORT_ADDR_BYTES[1]
- + "beefbeef"
- ),
- "tx_index": 502,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
+ "supported": 1,
+ "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "btc_amount": 5430,
"block_index": DP["default_block_index"],
+ "fee": 10000,
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mqPCfvqTfYctXMUfmniXeG2nyaN8w6tPmj",
+ "quantity": 1488000000,
+ "source": "mnfAHmddVibnZNSkh8DvKaQoiEfNsxjXzH",
+ "status": "invalid: insufficient funds",
+ "tx_hash": "736ecc18f9f41b3ccf67dded1252969e4929404d6ad657b2039b937a7785cf3e",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ {
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000000001"
+ + "0000000005f5e100"
+ + SHORT_ADDR_BYTES[1]
+ + "beefbeef"
+ ),
+ "tx_index": DP["default_tx_index"],
"destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "quantity": 100000000,
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "quantity": 100000000,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "valid",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "memo": binascii.unhexlify("beefbeef"),
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": 100000000,
+ },
+ },
+ ],
+ },
+ {
+ # invalid memo (too long)
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (
+ {
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
"source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "valid",
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000000001"
+ + "0000000005f5e100"
+ + SHORT_ADDR_BYTES[1]
+ + "9999999999999999999999999999999999999999999999999999999999999999999999"
+ ),
+ "tx_index": DP["default_tx_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
+ },
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": None,
+ "block_index": DP["default_block_index"],
+ "destination": None,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: could not unpack (memo too long)",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "memo": None,
+ },
+ }
+ ],
+ },
+ {
+ # invalid: quantity (too large)
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "in": (
+ {
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "memo": binascii.unhexlify("beefbeef"),
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": binascii.unhexlify(
+ "00000002"
+ + "0000000000000001"
+ + "ffffffffffffffff"
+ + SHORT_ADDR_BYTES[1]
+ + "beefbeef"
+ ),
+ "tx_index": DP["default_tx_index"],
+ "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
},
- },
- {
- "table": "credits",
- "values": {
- "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- "asset": "XCP",
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": None,
+ "block_index": DP["default_block_index"],
+ "destination": None,
+ "quantity": None,
+ "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
+ "status": "invalid: quantity is too large",
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ "memo": None,
+ },
+ }
+ ],
+ },
+ {
+ "comment": "Send a valid enhanced_send to destination address with REQUIRE_MEMO",
+ "in": (
+ {
"block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "btc_amount": 7800,
+ "data": b'\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80o\xb3\x90\x18~\xf2\x85D"\xac^J.\xb6\xff\xe9$\x96\xbe\xf5#12345',
+ "source": ADDR[0],
+ "destination": ADDR[6],
+ "supported": 1,
+ "block_hash": DP["default_block_hash"],
},
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "asset": "XCP",
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[6],
+ "quantity": DP["small"],
+ "source": ADDR[0],
+ "status": "valid",
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "tx_index": DP["default_tx_index"],
+ },
+ },
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[6],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "send",
+ "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "quantity": DP["small"],
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "send",
+ "address": ADDR[0],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "quantity": DP["small"],
+ },
+ },
+ ],
+ },
+ {
+ "comment": "Parse a send from a P2PKH address to a P2WPKH one",
+ "mock_protocol_changes": {"enhanced_sends": True, "segwit_support": True},
+ "in": (
+ {
"block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": 100000000,
+ "block_time": 155409000,
+ "fee": 10000,
+ "tx_index": DP["default_tx_index"],
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "btc_amount": 7800,
+ "data": b"\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x86\xa0\x80u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6segwit",
+ "source": ADDR[0],
+ "destination": P2WPKH_ADDR[0],
+ "supported": 1,
+ "block_hash": DP["default_block_hash"],
},
- },
- ],
- },
- {
- # invalid memo (too long)
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000000001"
- + "0000000005f5e100"
- + SHORT_ADDR_BYTES[1]
- + "9999999999999999999999999999999999999999999999999999999999999999999999"
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": P2WPKH_ADDR[0],
+ "quantity": 100000,
+ "source": ADDR[0],
+ "status": "valid",
+ "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
+ "tx_index": DP["default_tx_index"],
+ },
+ }
+ ],
+ },
+ ],
+ },
+ "versions.mpma": {
+ "unpack": [
+ {
+ "comment": "Should throw on empty data",
+ "in": (binascii.unhexlify(""), DP["default_block_index"]),
+ "error": (exceptions.UnpackError, "could not unpack"),
+ },
+ {
+ "comment": "0 addresses in a send is an error",
+ "in": (binascii.unhexlify("0000"), DP["default_block_index"]),
+ "error": (exceptions.DecodeError, "address list can't be empty"),
+ },
+ {
+ "comment": "Should throw on incomplete data",
+ "in": (binascii.unhexlify("0001ffff"), DP["default_block_index"]),
+ "error": (exceptions.UnpackError, "truncated data"),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e10040000000017d78400"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": ({"XCP": [(ADDR[2], DP["quantity"]), (ADDR[1], DP["quantity"])]}),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e100c4deadbeef8000000002faf0800"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "XCP": [
+ (ADDR[2], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
+ (ADDR[1], DP["quantity"]),
+ ]
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e1008844454144424545468000000002faf0800"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "XCP": [
+ (ADDR[2], DP["quantity"], "DEADBEEF", False),
+ (ADDR[1], DP["quantity"]),
+ ]
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000000000000000640000000017d784000000000002faf08020000000005f5e1000"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "XCP": [
+ (ADDR[3], DP["quantity"]),
+ (ADDR[2], DP["quantity"]),
+ (ADDR[1], DP["quantity"]),
+ ]
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d9800000000017d784010006cad8dc7f0b66200000000000000014000000000000000440000000017d784000"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "XCP": [(ADDR[3], DP["quantity"])],
+ "NODIVISIBLE": [(ADDR[1], 1)],
+ "DIVISIBLE": [(ADDR[2], DP["quantity"])],
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc2008000000002faf0800"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "XCP": [
+ (ADDR[2], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
+ (ADDR[1], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
+ ]
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc201897ddfbd5b0000000005f5e1000"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "XCP": [
+ (ADDR[2], DP["quantity"], binascii.unhexlify("BEEFDEAD"), True),
+ (ADDR[1], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
+ ]
+ }
+ ),
+ },
+ {
+ "in": (
+ binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e100000300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e10000"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "DIVISIBLE": [(ADDR[1], DP["quantity"])],
+ "XCP": [(ADDR[2], DP["quantity"])],
+ }
+ ),
+ },
+ {
+ # Test derived from block 618232 on BTC mainnet
+ "in": (
+ binascii.unhexlify(
+ "0004002e9943921a473dee1e04a579c1762ff6e9ac34e4006c7beeb1af092be778a2c0b8df639f2f8e9c987600a9055398b92818794b38b15794096f752167e25f00f3a6b6e4a093e5a5b9da76977a5270fd4d62553e40000091f59f36daf0000000271d94900180000004e3b29200200000009c76524002000000138eca4800806203d0c908232420000000000000000b000000000000000140024a67f0f279952000000000000000058000000000000000a00000000000000014000000908a3200cb000000000000000058000000000000000a000000000000000120000000000000002075410426156245525daa71f2e84a40797bcf28099a2c508662a8a33324a703597b9aa2661a79a82ffb4caaa9b15f4094622fbfa85f8b9dc7381f991f5a265421391cc3ad0075740087"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "MAFIACASH": [
+ ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 42000000000),
+ ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 42000000000),
+ ("1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD", 42000000000),
+ ("1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh", 42000000000),
+ ],
+ "PAWNTHELAMBO": [
+ ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 1),
+ ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 1),
+ ],
+ "SHADILOUNGE": [
+ ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 1),
+ ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 1),
+ ("1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD", 1),
+ ],
+ "TIKIPEPE": [
+ ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 1),
+ ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 1),
+ ("1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD", 1),
+ ("1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh", 1),
+ ],
+ }
+ ),
+ },
+ {
+ # Test derived from block 647547 on BTC mainnet
+ "in": (
+ binascii.unhexlify(
+ "00010042276049e5518791be2ffe2c301f5dfe9ef85dd0400001720034b0410000000000000001500000006a79811e000000000000000054000079cec1665f4800000000000000050000000ca91f2d660000000000000005402736c8de6e34d54000000000000001500c5e4c71e081ceb00000000000000054000000045dc03ec4000000000000000500004af1271cf5fc00000000000000054001e71f8464432780000000000000015000002e1e4191f0d0000000000000005400012bc4aaac2a54000000000000001500079c7e774e411c00000000000000054000000045dc0a6f00000000000000015000002e1e486f661000000000000000540001c807abe13908000000000000000475410426156245525daa71f2e84a40797bcf28099a2c508662a8a33324a703597b9aa2661a79a82ffb4caaa9b15f4094622fbfa85f8b9dc7381f991f5a265421391cc3ad0075740087"
+ ),
+ DP["default_block_index"],
+ ),
+ "out": (
+ {
+ "BELLAMAFIA": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "DONPABLO": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "GEISHAPEPE": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 1)],
+ "GUARDDOG": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "MATRYOSHKAPP": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEACIDTRIP": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEAIR": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 1)],
+ "PEPECIGARS": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEDRACULA": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEHEMAN": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEHITMAN": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEJERICHO": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEKFC": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "PEPEWYATT": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
+ "XCHAINPEPE": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 1)],
+ }
+ ),
+ },
+ ],
+ "validate": [
+ {"in": (ADDR[0], [], 1), "out": (["send list cannot be empty"])},
+ {
+ "in": (ADDR[0], [("XCP", ADDR[1], DP["quantity"])], 1),
+ "out": (["send list cannot have only one element"]),
+ },
+ {
+ "in": (ADDR[0], [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], 0.1)], 1),
+ "out": ([f"quantities must be an int (in satoshis) for XCP to {ADDR[1]}"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], -DP["quantity"])],
+ 1,
+ ),
+ "out": ([f"negative quantity for XCP to {ADDR[1]}"]),
+ },
+ {
+ "in": (ADDR[0], [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], 0)], 1),
+ "out": ([f"zero quantity for XCP to {ADDR[1]}"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], config.MAX_INT + 1)],
+ 1,
+ ),
+ "out": ([f"integer overflow for XCP to {ADDR[1]}"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", None, DP["quantity"])],
+ 1,
+ ),
+ "out": (["destination is required for XCP"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("BTC", ADDR[1], DP["quantity"])],
+ 1,
+ ),
+ "out": ([f"cannot send BTC to {ADDR[1]}"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[6], DP["quantity"])],
+ 1,
+ ),
+ "out": ([f"destination {ADDR[6]} requires memo"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
+ 1,
+ ),
+ "out": ([]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[2], DP["quantity"] + 1)],
+ 1,
+ ),
+ "out": (["cannot specify more than once a destination per asset"]),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [
+ ("XCP", ADDR[2], DP["quantity"]),
+ ("XCP", ADDR[6], DP["quantity"], "DEADBEEF", True),
+ ],
+ 1,
+ ),
+ "out": ([]),
+ },
+ ],
+ "compose": [
+ {
+ "in": (ADDR[0], [("XCP", ADDR[1], DP["quantity"] * 1000000)], None, None),
+ "error": (exceptions.ComposeError, "insufficient funds for XCP"),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], 0.1)],
+ None,
+ None,
+ ),
+ "error": (
+ exceptions.ComposeError,
+ "quantities must be an int (in satoshis) for XCP",
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [
+ ("XCP", ADDR[2], DP["quantity"]),
+ ("XCP", ADDR[1], DP["quantity"] * 10000),
+ ],
+ None,
+ None,
+ ),
+ "error": (exceptions.ComposeError, "insufficient funds for XCP"),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
+ None,
+ None,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e10040000000017d78400"
),
- "tx_index": 502,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": None,
- "block_index": DP["default_block_index"],
- "destination": None,
- "quantity": None,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: could not unpack (memo too long)",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "memo": None,
- },
- }
- ],
- },
- {
- # invalid: quantity (too large)
- "mock_protocol_changes": {"short_tx_type_id": True},
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": binascii.unhexlify(
- "00000002"
- + "0000000000000001"
- + "ffffffffffffffff"
- + SHORT_ADDR_BYTES[1]
- + "beefbeef"
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [
+ ("XCP", ADDR[2], DP["quantity"], "DEADBEEF", True),
+ ("XCP", ADDR[1], DP["quantity"]),
+ ],
+ None,
+ None,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e100c4deadbeef8000000002faf0800"
),
- "tx_index": 502,
- "destination": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns",
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": None,
- "block_index": DP["default_block_index"],
- "destination": None,
- "quantity": None,
- "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc",
- "status": "invalid: quantity is too large",
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- "memo": None,
- },
- }
- ],
- },
- {
- "comment": "Send a valid enhanced_send to destination address with REQUIRE_MEMO",
- "in": (
- {
- "block_index": DP["default_block_index"],
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "btc_amount": 7800,
- "data": b'\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x02\xfa\xf0\x80o\xb3\x90\x18~\xf2\x85D"\xac^J.\xb6\xff\xe9$\x96\xbe\xf5#12345',
- "source": ADDR[0],
- "destination": ADDR[6],
- "supported": 1,
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": ADDR[6],
- "quantity": DP["small"],
- "source": ADDR[0],
- "status": "valid",
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "tx_index": 502,
- },
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[6],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "send",
- "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "quantity": DP["small"],
- },
- },
- {
- "table": "debits",
- "values": {
- "action": "send",
- "address": ADDR[0],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "quantity": DP["small"],
- },
- },
- ],
- },
- {
- "comment": "Parse a send from a P2PKH address to a P2WPKH one",
- "mock_protocol_changes": {"enhanced_sends": True, "segwit_support": True},
- "in": (
- {
- "block_index": DP["default_block_index"],
- "block_time": 155409000,
- "fee": 10000,
- "tx_index": 502,
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "btc_amount": 7800,
- "data": b"\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x86\xa0\x80u\x1ev\xe8\x19\x91\x96\xd4T\x94\x1cE\xd1\xb3\xa3#\xf1C;\xd6segwit",
- "source": ADDR[0],
- "destination": P2WPKH_ADDR[0],
- "supported": 1,
- "block_hash": DP["default_block_hash"],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": P2WPKH_ADDR[0],
- "quantity": 100000,
- "source": ADDR[0],
- "status": "valid",
- "tx_hash": "8fc698cf1fcd51e3d685511185c67c0a73e7b72954c6abbd29fbbbe560e043a0",
- "tx_index": 502,
- },
- }
- ],
- },
- ],
- },
- "versions.mpma": {
- "unpack": [
- {
- "comment": "Should throw on empty data",
- "in": (binascii.unhexlify(""), DP["default_block_index"]),
- "error": (exceptions.UnpackError, "could not unpack"),
- },
- {
- "comment": "0 addresses in a send is an error",
- "in": (binascii.unhexlify("0000"), DP["default_block_index"]),
- "error": (exceptions.DecodeError, "address list can't be empty"),
- },
- {
- "comment": "Should throw on incomplete data",
- "in": (binascii.unhexlify("0001ffff"), DP["default_block_index"]),
- "error": (exceptions.UnpackError, "truncated data"),
- },
- {
- "in": (
- binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e10040000000017d78400"
- ),
- DP["default_block_index"],
- ),
- "out": ({"XCP": [(ADDR[2], DP["quantity"]), (ADDR[1], DP["quantity"])]}),
- },
- {
- "in": (
- binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e100c4deadbeef8000000002faf0800"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "XCP": [
- (ADDR[2], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
- (ADDR[1], DP["quantity"]),
- ]
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e1008844454144424545468000000002faf0800"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "XCP": [
- (ADDR[2], DP["quantity"], "DEADBEEF", False),
- (ADDR[1], DP["quantity"]),
- ]
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify(
- "00036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000000000000000640000000017d784000000000002faf08020000000005f5e1000"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "XCP": [
- (ADDR[3], DP["quantity"]),
- (ADDR[2], DP["quantity"]),
- (ADDR[1], DP["quantity"]),
- ]
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify(
- "00036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d9800000000017d784010006cad8dc7f0b66200000000000000014000000000000000440000000017d784000"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "XCP": [(ADDR[3], DP["quantity"])],
- "NODIVISIBLE": [(ADDR[1], 1)],
- "DIVISIBLE": [(ADDR[2], DP["quantity"])],
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc2008000000002faf0800"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "XCP": [
- (ADDR[2], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
- (ADDR[1], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
- ]
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc201897ddfbd5b0000000005f5e1000"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "XCP": [
- (ADDR[2], DP["quantity"], binascii.unhexlify("BEEFDEAD"), True),
- (ADDR[1], DP["quantity"], binascii.unhexlify("DEADBEEF"), True),
- ]
- }
- ),
- },
- {
- "in": (
- binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e100000300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e10000"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {"DIVISIBLE": [(ADDR[1], DP["quantity"])], "XCP": [(ADDR[2], DP["quantity"])]}
- ),
- },
- {
- # Test derived from block 618232 on BTC mainnet
- "in": (
- binascii.unhexlify(
- "0004002e9943921a473dee1e04a579c1762ff6e9ac34e4006c7beeb1af092be778a2c0b8df639f2f8e9c987600a9055398b92818794b38b15794096f752167e25f00f3a6b6e4a093e5a5b9da76977a5270fd4d62553e40000091f59f36daf0000000271d94900180000004e3b29200200000009c76524002000000138eca4800806203d0c908232420000000000000000b000000000000000140024a67f0f279952000000000000000058000000000000000a00000000000000014000000908a3200cb000000000000000058000000000000000a000000000000000120000000000000002075410426156245525daa71f2e84a40797bcf28099a2c508662a8a33324a703597b9aa2661a79a82ffb4caaa9b15f4094622fbfa85f8b9dc7381f991f5a265421391cc3ad0075740087"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "MAFIACASH": [
- ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 42000000000),
- ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 42000000000),
- ("1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD", 42000000000),
- ("1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh", 42000000000),
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [
+ ("XCP", ADDR[2], DP["quantity"], "DEADBEEF", False),
+ ("XCP", ADDR[1], DP["quantity"]),
],
- "PAWNTHELAMBO": [
- ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 1),
- ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 1),
+ None,
+ None,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e1008844454144424545468000000002faf0800"
+ ),
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [
+ ("XCP", ADDR[3], DP["quantity"]),
+ ("XCP", ADDR[2], DP["quantity"]),
+ ("XCP", ADDR[1], DP["quantity"]),
],
- "SHADILOUNGE": [
- ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 1),
- ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 1),
- ("1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD", 1),
+ None,
+ None,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000000000000000640000000017d784000000000002faf08020000000005f5e1000"
+ ),
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [
+ ("XCP", ADDR[3], DP["quantity"]),
+ ("DIVISIBLE", ADDR[2], DP["quantity"]),
+ ("NODIVISIBLE", ADDR[1], 1),
],
- "TIKIPEPE": [
- ("15FPgnpZuNyZLVLsyB6UdFicsVvWFJXNve", 1),
- ("1PDJv8u8zw4Fgqr4uCb2yim9fgTs5zfM4s", 1),
- ("1GQhaWqejcGJ4GhQar7SjcCfadxvf5DNBD", 1),
- ("1AtcSh7uxenQ6AR5xqr6agAegWRUF5N4uh", 1),
+ None,
+ None,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d9800000000017d784010006cad8dc7f0b66200000000000000014000000000000000440000000017d784000"
+ ),
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
+ "DEADBEEF",
+ True,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc2008000000002faf0800"
+ ),
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
+ "DEADBEEF",
+ False,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec8844454144424545468000000000000000c000000000bebc2008000000002faf0800"
+ ),
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [
+ ("XCP", ADDR[2], DP["quantity"], "BEEFDEAD", True),
+ ("XCP", ADDR[1], DP["quantity"]),
],
- }
- ),
- },
- {
- # Test derived from block 647547 on BTC mainnet
- "in": (
- binascii.unhexlify(
- "00010042276049e5518791be2ffe2c301f5dfe9ef85dd0400001720034b0410000000000000001500000006a79811e000000000000000054000079cec1665f4800000000000000050000000ca91f2d660000000000000005402736c8de6e34d54000000000000001500c5e4c71e081ceb00000000000000054000000045dc03ec4000000000000000500004af1271cf5fc00000000000000054001e71f8464432780000000000000015000002e1e4191f0d0000000000000005400012bc4aaac2a54000000000000001500079c7e774e411c00000000000000054000000045dc0a6f00000000000000015000002e1e486f661000000000000000540001c807abe13908000000000000000475410426156245525daa71f2e84a40797bcf28099a2c508662a8a33324a703597b9aa2661a79a82ffb4caaa9b15f4094622fbfa85f8b9dc7381f991f5a265421391cc3ad0075740087"
- ),
- DP["default_block_index"],
- ),
- "out": (
- {
- "BELLAMAFIA": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "DONPABLO": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "GEISHAPEPE": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 1)],
- "GUARDDOG": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "MATRYOSHKAPP": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEACIDTRIP": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEAIR": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 1)],
- "PEPECIGARS": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEDRACULA": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEHEMAN": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEHITMAN": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEJERICHO": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEKFC": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "PEPEWYATT": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 5)],
- "XCHAINPEPE": [("172nmZbxDR6erc5PqNqV28fnMj7g6besru", 1)],
- }
- ),
- },
- ],
- "validate": [
- {"in": (ADDR[0], [], 1), "out": (["send list cannot be empty"])},
- {
- "in": (ADDR[0], [("XCP", ADDR[1], DP["quantity"])], 1),
- "out": (["send list cannot have only one element"]),
- },
- {
- "in": (ADDR[0], [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], 0.1)], 1),
- "out": ([f"quantities must be an int (in satoshis) for XCP to {ADDR[1]}"]),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], -DP["quantity"])],
- 1,
- ),
- "out": ([f"negative quantity for XCP to {ADDR[1]}"]),
- },
- {
- "in": (ADDR[0], [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], 0)], 1),
- "out": ([f"zero quantity for XCP to {ADDR[1]}"]),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], config.MAX_INT + 1)],
- 1,
- ),
- "out": ([f"integer overflow for XCP to {ADDR[1]}"]),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", None, DP["quantity"])],
- 1,
- ),
- "out": (["destination is required for XCP"]),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("BTC", ADDR[1], DP["quantity"])],
- 1,
- ),
- "out": ([f"cannot send BTC to {ADDR[1]}"]),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[6], DP["quantity"])],
- 1,
- ),
- "out": ([f"destination {ADDR[6]} requires memo"]),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
- 1,
- ),
- "out": ([]),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[2], DP["quantity"] + 1)],
- 1,
- ),
- "out": (["cannot specify more than once a destination per asset"]),
- },
- {
- "in": (
- ADDR[0],
- [
- ("XCP", ADDR[2], DP["quantity"]),
- ("XCP", ADDR[6], DP["quantity"], "DEADBEEF", True),
- ],
- 1,
- ),
- "out": ([]),
- },
- ],
- "compose": [
- {
- "in": (ADDR[0], [("XCP", ADDR[1], DP["quantity"] * 1000000)], None, None),
- "error": (exceptions.ComposeError, "insufficient funds for XCP"),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], 0.1)],
- None,
- None,
- ),
- "error": (
- exceptions.ComposeError,
- "quantities must be an int (in satoshis) for XCP",
- ),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"] * 10000)],
- None,
- None,
- ),
- "error": (exceptions.ComposeError, "insufficient funds for XCP"),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
- None,
- None,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e10040000000017d78400"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [
- ("XCP", ADDR[2], DP["quantity"], "DEADBEEF", True),
- ("XCP", ADDR[1], DP["quantity"]),
- ],
- None,
- None,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e100c4deadbeef8000000002faf0800"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [
- ("XCP", ADDR[2], DP["quantity"], "DEADBEEF", False),
- ("XCP", ADDR[1], DP["quantity"]),
- ],
- None,
- None,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e1008844454144424545468000000002faf0800"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [
- ("XCP", ADDR[3], DP["quantity"]),
- ("XCP", ADDR[2], DP["quantity"]),
- ("XCP", ADDR[1], DP["quantity"]),
- ],
- None,
- None,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000000000000000640000000017d784000000000002faf08020000000005f5e1000"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [
- ("XCP", ADDR[3], DP["quantity"]),
- ("DIVISIBLE", ADDR[2], DP["quantity"]),
- ("NODIVISIBLE", ADDR[1], 1),
- ],
- None,
- None,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300036f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f6c39ee7c8f3a5ffa6121b0304a7a0de9d3d9a1526f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d9800000000017d784010006cad8dc7f0b66200000000000000014000000000000000440000000017d784000"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
- "DEADBEEF",
- True,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc2008000000002faf0800"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("XCP", ADDR[1], DP["quantity"])],
- "DEADBEEF",
- False,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec8844454144424545468000000000000000c000000000bebc2008000000002faf0800"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [
- ("XCP", ADDR[2], DP["quantity"], "BEEFDEAD", True),
- ("XCP", ADDR[1], DP["quantity"]),
- ],
- "DEADBEEF",
- True,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc201897ddfbd5b0000000005f5e1000"
- ),
- ),
- },
- {
- "in": (
- ADDR[0],
- [("XCP", ADDR[2], DP["quantity"]), ("DIVISIBLE", ADDR[1], DP["quantity"])],
- None,
- None,
- ),
- "mock_protocol_changes": {"short_tx_type_id": True},
- "out": (
- ADDR[0],
- [],
- binascii.unhexlify(
- "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e10000"
- ),
- ),
- },
- ],
- "parse": [
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[0],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": binascii.unhexlify("00000000")
- + binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e10040000000017d78400"
+ "DEADBEEF",
+ True,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc201897ddfbd5b0000000005f5e1000"
),
- "tx_index": 502,
- "destination": ADDR[0],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": ADDR[2],
- "quantity": DP["quantity"],
- "source": ADDR[0],
- "status": "valid",
- "memo": None,
- "msg_index": 0,
+ ),
+ },
+ {
+ "in": (
+ ADDR[0],
+ [("XCP", ADDR[2], DP["quantity"]), ("DIVISIBLE", ADDR[1], DP["quantity"])],
+ None,
+ None,
+ ),
+ "mock_protocol_changes": {"short_tx_type_id": True},
+ "out": (
+ ADDR[0],
+ [],
+ binascii.unhexlify(
+ "0300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e10000"
+ ),
+ ),
+ },
+ ],
+ "parse": [
+ {
+ "in": (
+ {
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
- },
- },
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": ADDR[1],
- "quantity": DP["quantity"],
"source": ADDR[0],
- "status": "valid",
- "memo": None,
- "msg_index": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": binascii.unhexlify("00000000")
+ + binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec400000000000000060000000005f5e10040000000017d78400"
+ ),
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[0],
},
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[1],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "mpma send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[2],
+ "quantity": DP["quantity"],
+ "source": ADDR[0],
+ "status": "valid",
+ "memo": None,
+ "msg_index": 0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[2],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "mpma send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[1],
+ "quantity": DP["quantity"],
+ "source": ADDR[0],
+ "status": "valid",
+ "memo": None,
+ "msg_index": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "mpma send",
- "address": ADDR[0],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"] * 2,
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[1],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "mpma send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[0],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": binascii.unhexlify("00000000")
- + binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc201897ddfbd5b0000000005f5e1000"
- ),
- "tx_index": 502,
- "destination": ADDR[0],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": ADDR[2],
- "quantity": DP["quantity"],
- "source": ADDR[0],
- "status": "valid",
- "memo": binascii.unhexlify("BEEFDEAD"),
- "msg_index": 0,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[2],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "mpma send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
},
- },
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": ADDR[1],
- "quantity": DP["quantity"],
- "source": ADDR[0],
- "status": "valid",
- "memo": binascii.unhexlify("DEADBEEF"),
- "msg_index": 1,
+ {
+ "table": "debits",
+ "values": {
+ "action": "mpma send",
+ "address": ADDR[0],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"] * 2,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "source": ADDR[0],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": binascii.unhexlify("00000000")
+ + binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ecc4deadbeef8000000000000000c000000000bebc201897ddfbd5b0000000005f5e1000"
+ ),
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[0],
},
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[1],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "mpma send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[2],
+ "quantity": DP["quantity"],
+ "source": ADDR[0],
+ "status": "valid",
+ "memo": binascii.unhexlify("BEEFDEAD"),
+ "msg_index": 0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[2],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "mpma send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[1],
+ "quantity": DP["quantity"],
+ "source": ADDR[0],
+ "status": "valid",
+ "memo": binascii.unhexlify("DEADBEEF"),
+ "msg_index": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "mpma send",
- "address": ADDR[0],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"] * 2,
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[1],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "mpma send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
},
- },
- ],
- },
- {
- "in": (
- {
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "source": ADDR[0],
- "supported": 1,
- "block_index": DP["default_block_index"],
- "fee": 10000,
- "block_time": 155409000,
- "block_hash": DP["default_block_hash"],
- "btc_amount": 7800,
- "data": binascii.unhexlify("00000000")
- + binascii.unhexlify(
- "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e100000300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e10000"
- ),
- "tx_index": 502,
- "destination": ADDR[0],
- },
- ),
- "records": [
- {
- "table": "sends",
- "values": {
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "destination": ADDR[2],
- "quantity": DP["quantity"],
- "source": ADDR[0],
- "status": "valid",
- "memo": None,
- "msg_index": 1,
- "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[2],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "mpma send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
},
- },
- {
- "table": "sends",
- "values": {
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "destination": ADDR[1],
- "quantity": DP["quantity"],
- "source": ADDR[0],
- "status": "valid",
- "memo": None,
- "msg_index": 0,
+ {
+ "table": "debits",
+ "values": {
+ "action": "mpma send",
+ "address": ADDR[0],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"] * 2,
+ },
+ },
+ ],
+ },
+ {
+ "in": (
+ {
"tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "tx_index": 502,
+ "source": ADDR[0],
+ "supported": 1,
+ "block_index": DP["default_block_index"],
+ "fee": 10000,
+ "block_time": 155409000,
+ "block_hash": DP["default_block_hash"],
+ "btc_amount": 7800,
+ "data": binascii.unhexlify("00000000")
+ + binascii.unhexlify(
+ "00026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e100000300026f4e5638a01efbb2f292481797ae1dcfcdaeb98d006f8d6ae8a3b381663118b4e1eff4cfc7d0954dd6ec4000002896f8d2d990000000005f5e100400000000000000040000000005f5e10000"
+ ),
+ "tx_index": DP["default_tx_index"],
+ "destination": ADDR[0],
},
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[1],
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "calling_function": "mpma send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ ),
+ "records": [
+ {
+ "table": "sends",
+ "values": {
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[2],
+ "quantity": DP["quantity"],
+ "source": ADDR[0],
+ "status": "valid",
+ "memo": None,
+ "msg_index": 1,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "credits",
- "values": {
- "address": ADDR[2],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "calling_function": "mpma send",
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ {
+ "table": "sends",
+ "values": {
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "destination": ADDR[1],
+ "quantity": DP["quantity"],
+ "source": ADDR[0],
+ "status": "valid",
+ "memo": None,
+ "msg_index": 0,
+ "tx_hash": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "tx_index": DP["default_tx_index"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "mpma send",
- "address": ADDR[0],
- "asset": "XCP",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[1],
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "calling_function": "mpma send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
},
- },
- {
- "table": "debits",
- "values": {
- "action": "mpma send",
- "address": ADDR[0],
- "asset": "DIVISIBLE",
- "block_index": DP["default_block_index"],
- "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
- "quantity": DP["quantity"],
+ {
+ "table": "credits",
+ "values": {
+ "address": ADDR[2],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "calling_function": "mpma send",
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
},
- },
- ],
- },
- ],
- },
-}
+ {
+ "table": "debits",
+ "values": {
+ "action": "mpma send",
+ "address": ADDR[0],
+ "asset": "XCP",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
+ },
+ {
+ "table": "debits",
+ "values": {
+ "action": "mpma send",
+ "address": ADDR[0],
+ "asset": "DIVISIBLE",
+ "block_index": DP["default_block_index"],
+ "event": "db6d9052b576d973196363e11163d492f50926c2f1d1efd67b3d999817b0d04d",
+ "quantity": DP["quantity"],
+ },
+ },
+ ],
+ },
+ ],
+ },
+ }
+)
diff --git a/counterparty-core/counterpartycore/test/indexer_test.py b/counterparty-core/counterpartycore/test/indexer_test.py
index 589398d3fa..1def3b90e3 100644
--- a/counterparty-core/counterpartycore/test/indexer_test.py
+++ b/counterparty-core/counterpartycore/test/indexer_test.py
@@ -15,6 +15,7 @@
"db_dir": TEST_DB_PATH,
"log_file": "/Users/wilfred/Desktop/indexer_test.log",
"log_level": "debug",
+ "json_format": False,
# "consume_blocks": True,
}
diff --git a/counterparty-core/counterpartycore/test/mainnet_test.py b/counterparty-core/counterpartycore/test/mainnet_test.py
index 31e8d374e8..cafb40a35a 100644
--- a/counterparty-core/counterpartycore/test/mainnet_test.py
+++ b/counterparty-core/counterpartycore/test/mainnet_test.py
@@ -14,9 +14,9 @@
# [server_url, api_version, server_version]
CHECK_SERVERS = [
["http://rpc:rpc@api1.counterparty.io:4000", "v1", "v9.61.1"],
- ["https://api.counterparty.io:4000", "v2", "v10.3.1"],
+ ["https://api.counterparty.io:4000", "v2", "v10.3.2"],
["https://dev.counterparty.io:4000", "v2", "v10.3.2"],
- ["https://api.counterparty.info", "v2", "v10.3.1"],
+ ["https://api.counterparty.info", "v2", "v10.3.2"],
["http://rpc:1234@public.coindaddy.io:4000", "v1", "v9.61.3"],
["https://api.xcp.dev/v9_61/", "xcpdev", "v9.61.3"],
["https://api.xcp.dev/v10_1/", "xcpdev", "v10.1.2.CNTRPRTY"],
diff --git a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py
index 01301ec1f1..00fc599b11 100644
--- a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py
+++ b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py
@@ -68,12 +68,15 @@ def test_p2sh_encoding(server_db):
with util_test.ConfigContext(
DISABLE_ARC4_MOCKING=True, OLD_STYLE_API=True
- ), util_test.MockProtocolChangesContext(enhanced_sends=True, p2sh_encoding=True):
+ ), util_test.MockProtocolChangesContext(
+ enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False
+ ):
utxos = dict(
((utxo["txid"], utxo["vout"]), utxo)
for utxo in backend.addrindexrs.get_unspent_txouts(source)
)
+ transaction.initialise()
fee = 20000
fee_per_kb = 50000
result = transaction.compose_transaction(
@@ -245,7 +248,7 @@ def test_p2sh_encoding_long_data(server_db):
destination = ADDR[1] # noqa: F841
with util_test.ConfigContext(OLD_STYLE_API=True), util_test.MockProtocolChangesContext(
- enhanced_sends=True, p2sh_encoding=True
+ enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False
):
utxos = dict(
((utxo["txid"], utxo["vout"]), utxo)
@@ -431,7 +434,7 @@ def test_p2sh_encoding_p2sh_source_not_supported(server_db):
destination = ADDR[1]
with util_test.ConfigContext(OLD_STYLE_API=True), util_test.MockProtocolChangesContext(
- enhanced_sends=True, p2sh_encoding=True
+ enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False
):
fee = 20000
fee_per_kb = 50000
@@ -456,7 +459,7 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db):
destination = ADDR[1]
with util_test.ConfigContext(OLD_STYLE_API=True), util_test.MockProtocolChangesContext(
- enhanced_sends=True, p2sh_encoding=True
+ enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False
):
p2sh_source_multisig_pubkeys_binary = [
binascii.unhexlify(p)
diff --git a/counterparty-core/counterpartycore/test/parse_block_test.py b/counterparty-core/counterpartycore/test/parse_block_test.py
index 8d8087796d..42cd7ceacb 100644
--- a/counterparty-core/counterpartycore/test/parse_block_test.py
+++ b/counterparty-core/counterpartycore/test/parse_block_test.py
@@ -18,9 +18,9 @@
def test_parse_block(server_db):
test_outputs = blocks.parse_block(server_db, DP["default_block_index"], 1420914478)
outputs = (
- "44cf374045f44caf86c7b7de61de3e712f4ba3c39523ab95bc68149ef8aede18",
- "9c2c0940e0a2a8f4c6dde1cfd69efe8e3b467fac0950b385554044ab1f863bf5",
- "5001b5e04961f63348ce3b04a62b44351e865ea7ca44018e2c3140e5f9bbf114",
+ "43a41365f86dad22e5fd750f826435564f637d284edef60771239d3110a85625",
+ "4faefbcea82c4bea47a948e61f544290ad80aae7786afe521c57e0ab007cea5b",
+ "05ca82e4a22957241bf9282f943334393a6c26c114f623e3c4b9a86283398f33",
)
try:
assert outputs == test_outputs
diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json
new file mode 100644
index 0000000000..6e744f2a6d
--- /dev/null
+++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json
@@ -0,0 +1,9885 @@
+{
+ "/v2/blocks": {
+ "result": [
+ {
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "difficulty": 545259519,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 192,
+ "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "block_time": 1726509908,
+ "previous_block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "difficulty": 545259519,
+ "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e",
+ "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea",
+ "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 191,
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_time": 1726509903,
+ "previous_block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "difficulty": 545259519,
+ "ledger_hash": "20f305d9381284d270d7c1d22ba897f66d072d2f1df42dfeeffdf903e9627921",
+ "txlist_hash": "57455bb363a21c6f49fa641f5bedf87e9eedc785270ddc90711b98f54eb0f113",
+ "messages_hash": "2f8a089ba7d158feab1cd9daea1fc5a85d43e2de099feb80f384f9fafe9efbb5",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 190,
+ "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "block_time": 1726509899,
+ "previous_block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "difficulty": 545259519,
+ "ledger_hash": "5dac3b61245453c5448b8e8ef6eaf53e9ca0a371d3b6524ca97ef99e40551036",
+ "txlist_hash": "5caba1ce46d6c7e9d5a7cb1c794b331dd473323683be48d62b3e03fef3a9cb75",
+ "messages_hash": "a3d30ea5b4343aac41752e3cbe083b2f9a5070adb3e28d3cf3b586d60b13f937",
+ "transaction_count": 1,
+ "confirmed": true
+ },
+ {
+ "block_index": 189,
+ "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "block_time": 1726509894,
+ "previous_block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780",
+ "difficulty": 545259519,
+ "ledger_hash": "3f97c50ca5edc66440c05c58badb6d8f26237669ef20c001a05e476404900c94",
+ "txlist_hash": "ed6472060345e91ae8e05a0f6d7a9a0e657098f47eae73e2e644fc7e455e67d3",
+ "messages_hash": "9f629d60ea05b595361922207a4b99e144e342dcc0cef5755d71e920ec551ba7",
+ "transaction_count": 1,
+ "confirmed": true
+ }
+ ],
+ "next_cursor": 188,
+ "result_count": 93
+ },
+ "/v2/blocks/": {
+ "result": {
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "difficulty": 545259519,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "confirmed": true
+ }
+ },
+ "/v2/blocks/": {
+ "result": {
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "previous_block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "difficulty": 545259519,
+ "ledger_hash": "260bca5241d162936ae20e643b78cd69f7c3d74370745be7447cbaae1dde9a9c",
+ "txlist_hash": "1ecd81dbebae4723fab572ad7f59f8712a540b524662de521ea50631e83b7e7b",
+ "messages_hash": "a5b39b3745218a45506fcbd2397ab67628c6263f2173159bdf4b259978114bde",
+ "transaction_count": 1,
+ "confirmed": true
+ }
+ },
+ "/v2/blocks//transactions": {
+ "result": [
+ {
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
+ "supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "destroy",
+ "message_type_id": 110,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/blocks//events": {
+ "result": [
+ {
+ "event_index": 529,
+ "event": "BLOCK_PARSED",
+ "params": {
+ "block_index": 192,
+ "ledger_hash": "a352fa09b0c8621cb30776de9b016c7b433da3453f51a01610e0d8a706b94c7e",
+ "messages_hash": "3172cc5949c44703a36181b1b938faf388d0cf72e686932ee5ee218ee893e4a6",
+ "transaction_count": 1,
+ "txlist_hash": "83367c52c5808cc55d9902d446542239ae36c22d7b7d92678f128ad83f58aaea",
+ "block_time": 1726509908
+ },
+ "tx_hash": null
+ },
+ {
+ "event_index": 528,
+ "event": "TRANSACTION_PARSED",
+ "params": {
+ "supported": true,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 527,
+ "event": "SWEEP",
+ "params": {
+ "block_index": 192,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fee_paid": 600000,
+ "flags": 1,
+ "memo": "sweep my assets",
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "status": "valid",
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 525,
+ "event": "DEBIT",
+ "params": {
+ "action": "sweep",
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 192,
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ }
+ ],
+ "next_cursor": 524,
+ "result_count": 12
+ },
+ "/v2/blocks//events/counts": {
+ "result": [
+ {
+ "event": "TRANSACTION_PARSED",
+ "event_count": 1
+ },
+ {
+ "event": "NEW_TRANSACTION",
+ "event_count": 1
+ },
+ {
+ "event": "NEW_BLOCK",
+ "event_count": 1
+ },
+ {
+ "event": "DEBIT",
+ "event_count": 1
+ },
+ {
+ "event": "BLOCK_PARSED",
+ "event_count": 1
+ }
+ ],
+ "next_cursor": "ASSET_DESTRUCTION",
+ "result_count": 6
+ },
+ "/v2/blocks//events/": {
+ "result": [
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ },
+ {
+ "event_index": 522,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 500000000,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ },
+ "/v2/blocks//credits": {
+ "result": [
+ {
+ "block_index": 192,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 74499387833,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ {
+ "block_index": 192,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "block_index": 192,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "quantity": 500000000,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ },
+ "/v2/blocks//debits": {
+ "result": [
+ {
+ "block_index": 193,
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 1,
+ "action": "destroy",
+ "event": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "tx_index": 59,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/blocks//expirations": {
+ "result": [
+ {
+ "type": "order",
+ "object_id": "afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "block_index": 182,
+ "confirmed": true,
+ "block_time": 1726509796
+ },
+ {
+ "type": "order",
+ "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "block_index": 182,
+ "confirmed": true,
+ "block_time": 1726509796
+ },
+ {
+ "type": "order_match",
+ "object_id": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d_afd6eab5bb50283dc170ad276157e78db2dc90cb330d559320b9adc3721a1fbc",
+ "block_index": 182,
+ "confirmed": true,
+ "block_time": 1726509796
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ },
+ "/v2/blocks//cancels": {
+ "result": [
+ {
+ "tx_index": 56,
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509899
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/blocks//destructions": {
+ "result": [
+ {
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/blocks//issuances": {
+ "result": [
+ {
+ "tx_index": 46,
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "msg_index": 0,
+ "block_index": 159,
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "A subnumeric asset",
+ "fee_paid": 0,
+ "status": "valid",
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509780,
+ "quantity_normalized": "1000.00000000",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/blocks//sends": {
+ "result": [
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 2,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ },
+ "/v2/blocks//dispenses": {
+ "result": [
+ {
+ "tx_index": 33,
+ "dispense_index": 0,
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
+ "asset": "XCP",
+ "dispense_quantity": 666,
+ "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "btc_amount": 10000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 32,
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "last_status_tx_hash": null,
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "dispense_count": 1,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
+ },
+ "block_time": 1726509701,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00000666",
+ "btc_amount_normalized": "0.00010000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/blocks//sweeps": {
+ "result": [
+ {
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
+ "status": "valid",
+ "memo": "sweep my assets",
+ "fee_paid": 600000,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/transactions": {
+ "result": [
+ {
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
+ "supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "destroy",
+ "message_type_id": 110,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_hash": "356d63b3ac8ed95b008257f61aee3850ec360d8ac8d808d0b0e0ceab8de6ee1e",
+ "block_time": 1726509908,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0480ae2b0c1095bbdf23747f76b242be716817701b78017377656570206d7920617373657473",
+ "supported": true,
+ "utxos_info": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "sweep",
+ "message_type_id": 4,
+ "message_data": {
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
+ "memo": "sweep my assets"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": 57,
+ "result_count": 60
+ },
+ "/v2/transactions/info": {
+ "result": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
+ "decoded_tx": {
+ "version": 2,
+ "segwit": true,
+ "coinbase": false,
+ "vin": [
+ {
+ "hash": "13f4625e1516c944a8463d27d826a53f0fcbba50aced60bf5eb00888663ce56e",
+ "n": 0,
+ "script_sig": "",
+ "sequence": 4294967295,
+ "coinbase": false
+ }
+ ],
+ "vout": [
+ {
+ "value": 0,
+ "script_pub_key": "6a332354da0a2986e439d6bf246d84f86ee1f3d79bd9604d9ff8543c944eead26bc52dcc129be40851375a2c04808350b9e7608862"
+ },
+ {
+ "value": 4999990000,
+ "script_pub_key": "00147ed28f21558ee8ecd78a339105e7756213901b6e"
+ }
+ ],
+ "vtxinwit": [
+ "30440220192675f05c9144776192e2c92db009e8ed5fcedd0c45fbcda89a84a2320f2af30220196bac09bfaedbea9e4458ec76ad50697d0cb659327702787f2ceb8f11832daf01",
+ "038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a9387076169"
+ ],
+ "lock_time": 0,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_id": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232"
+ },
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ },
+ "/v2/transactions/unpack": {
+ "result": {
+ "message_type": "enhanced_send",
+ "message_type_id": 2,
+ "message_data": {
+ "error": "memo too long"
+ }
+ }
+ },
+ "/v2/transactions/": {
+ "result": {
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
+ "supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "destroy",
+ "message_type_id": 110,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ },
+ "/v2/transactions/": {
+ "result": {
+ "tx_index": 59,
+ "tx_hash": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce",
+ "block_index": 193,
+ "block_hash": "0c078dccb9971fd739e4646df2613ddf86bea7f006a0ec0aabf2253f9f835f58",
+ "block_time": 1726509912,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "6e0000000000000001000000000000000164657374726f79",
+ "supported": true,
+ "utxos_info": "f79c39d2a2896a86ef0bb2370101c664b69f2b9387afcd377d8226b839d419ce:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "destroy",
+ "message_type_id": 110,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 1,
+ "tag": "64657374726f79",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000001"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ },
+ "/v2/transactions//events": {
+ "result": [
+ {
+ "event_index": 528,
+ "event": "TRANSACTION_PARSED",
+ "params": {
+ "supported": true,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 527,
+ "event": "SWEEP",
+ "params": {
+ "block_index": 192,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fee_paid": 600000,
+ "flags": 1,
+ "memo": "sweep my assets",
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "status": "valid",
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 525,
+ "event": "DEBIT",
+ "params": {
+ "action": "sweep",
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 192,
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ }
+ ],
+ "next_cursor": 523,
+ "result_count": 10
+ },
+ "/v2/transactions//events": {
+ "result": [
+ {
+ "event_index": 528,
+ "event": "TRANSACTION_PARSED",
+ "params": {
+ "supported": true,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 527,
+ "event": "SWEEP",
+ "params": {
+ "block_index": 192,
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "fee_paid": 600000,
+ "flags": 1,
+ "memo": "sweep my assets",
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "status": "valid",
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "tx_index": 58,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 525,
+ "event": "DEBIT",
+ "params": {
+ "action": "sweep",
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 192,
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ }
+ ],
+ "next_cursor": 523,
+ "result_count": 10
+ },
+ "/v2/transactions//sends": {
+ "result": [
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 2,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ },
+ "/v2/transactions//dispenses": {
+ "result": [
+ {
+ "tx_index": 33,
+ "dispense_index": 0,
+ "tx_hash": "516159be9547a87a0ab0ce652ce9daebb10796eb67509fa50780dca28d813535",
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "destination": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
+ "asset": "XCP",
+ "dispense_quantity": 666,
+ "dispenser_tx_hash": "5c8374a3882f222038bbf9a0cce7589e84b790915b9228d66af1a5b0eb61ea2d",
+ "btc_amount": 10000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 32,
+ "block_index": 146,
+ "source": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 9334,
+ "oracle_address": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "last_status_tx_hash": null,
+ "origin": "bcrt1qlm44vh2ynrtqwh8j2mptwrzzfd04czsya4wxcd",
+ "dispense_count": 1,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": 0.01,
+ "oracle_price": 66600.0,
+ "fiat_unit": "USD",
+ "oracle_price_last_updated": 138,
+ "satoshi_price": 16,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00009334",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000016"
+ },
+ "block_time": 1726509701,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00000666",
+ "btc_amount_normalized": "0.00010000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/transactions//events/": {
+ "result": [
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 522,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 500000000,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ },
+ "/v2/transactions//events/": {
+ "result": [
+ {
+ "event_index": 526,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 74499387833,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "744.99388000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 524,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 10,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ },
+ {
+ "event_index": 522,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "FAIRMINTA",
+ "block_index": 192,
+ "calling_function": "sweep",
+ "event": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "quantity": 500000000,
+ "tx_index": 58,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509908,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000"
+ },
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "block_time": 1726509908
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 3
+ },
+ "/v2/addresses/balances": {
+ "result": [
+ {
+ "asset": "A95428956980101314",
+ "total": 100000000000,
+ "addresses": [
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 100000000000,
+ "quantity_normalized": "1000.00000000"
+ }
+ ],
+ "asset_info": {
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "description": "A subnumeric asset",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "total_normalized": "1000.00000000"
+ },
+ {
+ "asset": "MYASSETA",
+ "total": 97999999980,
+ "addresses": [
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 97999999980,
+ "quantity_normalized": "980.00000000"
+ }
+ ],
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "total_normalized": "980.00000000"
+ },
+ {
+ "asset": "FAIRMINTA",
+ "total": 500000000,
+ "addresses": [
+ {
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 500000000,
+ "quantity_normalized": "5.00000000"
+ }
+ ],
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "total_normalized": "5.00000000"
+ },
+ {
+ "asset": "FAIRMINTD",
+ "total": 40,
+ "addresses": [
+ {
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 40,
+ "quantity_normalized": "0.00000040"
+ }
+ ],
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "total_normalized": "0.00000040"
+ },
+ {
+ "asset": "FAIRMINTC",
+ "total": 19,
+ "addresses": [
+ {
+ "address": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "utxo": null,
+ "utxo_address": null,
+ "quantity": 19,
+ "quantity_normalized": "0.00000019"
+ }
+ ],
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "total_normalized": "0.00000019"
+ }
+ ],
+ "next_cursor": "TESTLOCKDESC",
+ "result_count": 7
+ },
+ "/v2/addresses/transactions": {
+ "result": [
+ {
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_time": 1726509903,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
+ "supported": true,
+ "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 56,
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "block_time": 1726509899,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "supported": true,
+ "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "cancel",
+ "message_type_id": 70,
+ "message_data": {
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "status": "valid"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 189,
+ "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "block_time": 1726509894,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
+ "supported": true,
+ "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780",
+ "block_time": 1726509890,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400",
+ "supported": true,
+ "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "mpma_send",
+ "message_type_id": 3,
+ "message_data": [
+ {
+ "asset": "MYASSETA",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "asset": "XCP",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010"
+ }
+ ]
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 51,
+ "tx_hash": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d",
+ "block_index": 185,
+ "block_hash": "7bb18fb36cb1bd5cb99d781fabe17b43d4b67ee7530bd6ab46356fdb3e139fa6",
+ "block_time": 1726509867,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "btc_amount": 2000,
+ "fee": 10000,
+ "data": "0b675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "supported": true,
+ "utxos_info": "d749fed653092a4854ac8c9773d9610edfb2b12db4c962aa3795cc653e8a624d:0",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "btcpay",
+ "message_type_id": 11,
+ "message_data": {
+ "tx0_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx1_hash": "ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_ebe20caac209f665277d0ac456ab451b4934a7d86529e24fd43b97535e62746a",
+ "status": "valid"
+ }
+ },
+ "btc_amount_normalized": "0.00002000"
+ }
+ ],
+ "next_cursor": 50,
+ "result_count": 35
+ },
+ "/v2/addresses/events": {
+ "result": [
+ {
+ "event_index": 515,
+ "event": "OPEN_ORDER",
+ "params": {
+ "block_index": 191,
+ "expiration": 21,
+ "expire_index": 212,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "status": "open",
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "block_time": 1726509903,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_time": 1726509903
+ },
+ {
+ "event_index": 514,
+ "event": "DEBIT",
+ "params": {
+ "action": "open order",
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "block_index": 191,
+ "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "quantity": 1000,
+ "tx_index": 57,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509903,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_time": 1726509903
+ },
+ {
+ "event_index": 513,
+ "event": "NEW_TRANSACTION",
+ "params": {
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_index": 191,
+ "block_time": 1726509903,
+ "btc_amount": 0,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
+ "destination": "",
+ "fee": 10000,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_time": 1726509903
+ },
+ {
+ "event_index": 509,
+ "event": "CANCEL_ORDER",
+ "params": {
+ "block_index": 190,
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "status": "valid",
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "tx_index": 56,
+ "block_time": 1726509899
+ },
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_time": 1726509899
+ },
+ {
+ "event_index": 508,
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "block_index": 190,
+ "calling_function": "cancel order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "quantity": 1000,
+ "tx_index": 56,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509899,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_time": 1726509899
+ }
+ ],
+ "next_cursor": 506,
+ "result_count": 163
+ },
+ "/v2/addresses/mempool": {
+ "result": [
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "ENHANCED_SEND",
+ "params": {
+ "asset": "XCP",
+ "block_index": 9999999,
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "quantity": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "status": "valid",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "CREDIT",
+ "params": {
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "XCP",
+ "block_index": 193,
+ "calling_function": "send",
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "DEBIT",
+ "params": {
+ "action": "send",
+ "address": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "XCP",
+ "block_index": 193,
+ "event": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "quantity": 10000,
+ "tx_index": 60,
+ "utxo": null,
+ "utxo_address": null,
+ "block_time": 1726509912,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ {
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "event": "NEW_TRANSACTION",
+ "params": {
+ "block_hash": "mempool",
+ "block_index": 9999999,
+ "block_time": 1726509917.0831685,
+ "btc_amount": 0,
+ "data": "0200000000000000010000000000002710808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f92",
+ "destination": "",
+ "fee": 10000,
+ "source": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "tx_hash": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6",
+ "tx_index": 60,
+ "utxos_info": "adc699f3b9af2a586a913343701a26c494a8fd637e66e50840936b8ef7bf10b6:1",
+ "unpacked_data": {
+ "message_type": "enhanced_send",
+ "message_type_id": 2,
+ "message_data": {
+ "asset": "XCP",
+ "quantity": 10000,
+ "address": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "memo": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 4
+ },
+ "/v2/addresses//balances": {
+ "result": [
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "description": "A subnumeric asset",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "1000.00000000"
+ },
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "quantity": 97999999980,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "980.00000000"
+ },
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 82699937176,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "826.99937000"
+ },
+ {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "TESTLOCKDESC",
+ "quantity": 10000000000,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Test Locking Description",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "100.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 4
+ },
+ "/v2/addresses//balances/": {
+ "result": {
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 82699937176,
+ "utxo": null,
+ "utxo_address": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "826.99937000"
+ }
+ },
+ "/v2/addresses//credits": {
+ "result": [
+ {
+ "block_index": 190,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "calling_function": "cancel order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "tx_index": 56,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509899,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ {
+ "block_index": 182,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "calling_function": "cancel order",
+ "event": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "tx_index": 0,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509796,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ {
+ "block_index": 159,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "calling_function": "issuance",
+ "event": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "tx_index": 46,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509780,
+ "asset_info": {
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "description": "A subnumeric asset",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "1000.00000000"
+ },
+ {
+ "block_index": 156,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "TESTLOCKDESC",
+ "quantity": 10000000000,
+ "calling_function": "issuance",
+ "event": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f",
+ "tx_index": 43,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509746,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "Test Locking Description",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "100.00000000"
+ },
+ {
+ "block_index": 151,
+ "address": null,
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "calling_function": "attach to utxo",
+ "event": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "tx_index": 38,
+ "utxo": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1",
+ "utxo_address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "confirmed": true,
+ "block_time": 1726509724,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000"
+ }
+ ],
+ "next_cursor": 42,
+ "result_count": 14
+ },
+ "/v2/addresses//debits": {
+ "result": [
+ {
+ "block_index": 191,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "action": "open order",
+ "event": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "tx_index": 57,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509903,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ {
+ "block_index": 189,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "action": "open order",
+ "event": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "tx_index": 55,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509894,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ {
+ "block_index": 188,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 10,
+ "action": "mpma send",
+ "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "tx_index": 54,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "block_index": 188,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "quantity": 20,
+ "action": "mpma send",
+ "event": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "tx_index": 54,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000020"
+ },
+ {
+ "block_index": 183,
+ "address": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 10000,
+ "action": "open order",
+ "event": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "tx_index": 49,
+ "utxo": null,
+ "utxo_address": null,
+ "confirmed": true,
+ "block_time": 1726509858,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00010000"
+ }
+ ],
+ "next_cursor": 43,
+ "result_count": 20
+ },
+ "/v2/addresses//bets": {
+ "result": [],
+ "next_cursor": null,
+ "result_count": 0
+ },
+ "/v2/addresses//broadcasts": {
+ "result": [
+ {
+ "tx_index": 24,
+ "tx_hash": "1629a61f230d38e661231eeaac724d9336e9413ce0a9f145c49d57030ae05b8d",
+ "block_index": 137,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "timestamp": 4003903983,
+ "value": 999.0,
+ "fee_fraction_int": 0,
+ "text": "Hello, world!",
+ "locked": false,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509652,
+ "fee_fraction_int_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/addresses//burns": {
+ "result": [
+ {
+ "tx_index": 0,
+ "tx_hash": "84cfd2ae481d0a4171e66009619eda93802914d5ccbb4bc52a5b76fd06d2dd79",
+ "block_index": 112,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "burned": 50000000,
+ "earned": 74999998167,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509535,
+ "burned_normalized": "0.50000000",
+ "earned_normalized": "749.99998000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/addresses//sends": {
+ "result": [
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 2,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 38,
+ "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "block_index": 151,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509724,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 35,
+ "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d",
+ "block_index": 148,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509710,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 5
+ },
+ "/v2/addresses//receives": {
+ "result": [
+ {
+ "tx_index": 37,
+ "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba",
+ "block_index": 150,
+ "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0",
+ "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0",
+ "asset": "MYASSETA",
+ "quantity": 500000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509719,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/addresses//sends/": {
+ "result": [
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 1,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "asset": "MYASSETA",
+ "quantity": 10,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509890,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 38,
+ "tx_hash": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a",
+ "block_index": 151,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "a79ea4de3cb6cae0d2b3bbf427028357f9dca64f8d599c93511be263bfda8c8a:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509724,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 35,
+ "tx_hash": "523006a2ff042bd1708eb4642871fe8df38dbb0d40fc0b07f7c4d78ea57fff6d",
+ "block_index": 148,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "d2f3afeb63580aa006eee4e055138c2903f7e8172876f688b7241e2ebbe5f172:1",
+ "asset": "MYASSETA",
+ "quantity": 1000000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509710,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "10.00000000",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 4
+ },
+ "/v2/addresses//receives/": {
+ "result": [
+ {
+ "tx_index": 37,
+ "tx_hash": "05a57c8eb387d6f5e5f5a0ae90eb2873a7750c2f87e65b21b176c88da3be21ba",
+ "block_index": 150,
+ "source": "9d48ae21a1caed318e44591060a2d5873ed0ef5b403a5447046052a111c7dd88:0",
+ "destination": "bcrt1qghqkpk28xhsruvxjphq0ecx2ec35v90uksf2j0",
+ "asset": "MYASSETA",
+ "quantity": 500000000,
+ "status": "valid",
+ "msg_index": 0,
+ "memo": null,
+ "fee_paid": 0,
+ "confirmed": true,
+ "block_time": 1726509719,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "5.00000000",
+ "fee_paid_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/addresses//dispensers": {
+ "result": [
+ {
+ "tx_index": 30,
+ "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "block_index": 144,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 20,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 0,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509693,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000020",
+ "escrow_quantity_normalized": "0.00000010",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ {
+ "tx_index": 26,
+ "tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509680,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 2
+ },
+ "/v2/addresses//dispensers/": {
+ "result": {
+ "tx_index": 30,
+ "tx_hash": "d3713f7f4355cf95ddb00030d4c53655897b901d6827b640ee27cc83efaba2e6",
+ "block_index": 144,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "give_quantity": 1,
+ "escrow_quantity": 10,
+ "satoshirate": 1,
+ "status": 0,
+ "give_remaining": 20,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 0,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "confirmed": true,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "block_time": 1726509693,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000020",
+ "escrow_quantity_normalized": "0.00000010",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ }
+ },
+ "/v2/addresses//dispenses/sends": {
+ "result": [
+ {
+ "tx_index": 28,
+ "dispense_index": 0,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509680,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
+ },
+ {
+ "tx_index": 27,
+ "dispense_index": 0,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509665,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 2
+ },
+ "/v2/addresses//dispenses/receives": {
+ "result": [
+ {
+ "tx_index": 28,
+ "dispense_index": 0,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509680,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
+ },
+ {
+ "tx_index": 27,
+ "dispense_index": 0,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509665,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 2
+ },
+ "/v2/addresses//dispenses/sends/": {
+ "result": [
+ {
+ "tx_index": 28,
+ "dispense_index": 0,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509680,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
+ },
+ {
+ "tx_index": 27,
+ "dispense_index": 0,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509665,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 2
+ },
+ "/v2/addresses//dispenses/receives/": {
+ "result": [
+ {
+ "tx_index": 28,
+ "dispense_index": 0,
+ "tx_hash": "ab0fd3f5a4ce7ef637dfa113da8a1d7ca7f9b7b8ef7bea07721c55ef2aee9d2f",
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 4000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 4000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509680,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00004000",
+ "btc_amount_normalized": "0.00004000"
+ },
+ {
+ "tx_index": 27,
+ "dispense_index": 0,
+ "tx_hash": "54eee03a80a18a6e816f27408ce071f7c7fefac72abc8ade14e835ad5f1563ce",
+ "block_index": 140,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "dispense_quantity": 6000,
+ "dispenser_tx_hash": "e4fcdf91df3b0bbacb56d49f65bba5e59c88e92c829d7c8b3f251d5e20457f4e",
+ "btc_amount": 6000,
+ "confirmed": true,
+ "dispenser": {
+ "tx_index": 26,
+ "block_index": 141,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_quantity": 1,
+ "escrow_quantity": 10000,
+ "satoshirate": 1,
+ "status": 10,
+ "give_remaining": 0,
+ "oracle_address": null,
+ "last_status_tx_hash": null,
+ "origin": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "dispense_count": 2,
+ "last_status_tx_source": null,
+ "close_block_index": null,
+ "fiat_price": null,
+ "oracle_price": null,
+ "fiat_unit": null,
+ "oracle_price_last_updated": null,
+ "satoshi_price": 1,
+ "give_quantity_normalized": "0.00000001",
+ "give_remaining_normalized": "0.00000000",
+ "escrow_quantity_normalized": "0.00010000",
+ "satoshirate_normalized": "0.00000001",
+ "satoshi_price_normalized": "0.00000001"
+ },
+ "block_time": 1726509665,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "dispense_quantity_normalized": "0.00006000",
+ "btc_amount_normalized": "0.00006000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 2
+ },
+ "/v2/addresses//sweeps": {
+ "result": [
+ {
+ "tx_index": 58,
+ "tx_hash": "dba7a5e5bcc1d3d892483a82eeafb64e004cd90c0a18224efca4444c0d5e2d2b",
+ "block_index": 192,
+ "source": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "flags": 1,
+ "status": "valid",
+ "memo": "sweep my assets",
+ "fee_paid": 600000,
+ "confirmed": true,
+ "block_time": 1726509908,
+ "fee_paid_normalized": "0.00600000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/addresses//issuances": {
+ "result": [
+ {
+ "tx_index": 46,
+ "tx_hash": "3f80ba6dc66be4e5b604bbf8e1e2007161960069d871f7cb00b1d24f9f090491",
+ "msg_index": 0,
+ "block_index": 159,
+ "asset": "A95428956980101314",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "A subnumeric asset",
+ "fee_paid": 0,
+ "status": "valid",
+ "asset_longname": "A95428959745315388.SUBNUMERIC",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509780,
+ "quantity_normalized": "1000.00000000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 45,
+ "tx_hash": "99d6840da9077ad147d3cb8e3a527ebcb05445b5e72d0fa4f9429f91a2ed5f9f",
+ "msg_index": 0,
+ "block_index": 158,
+ "asset": "TESTLOCKDESC",
+ "quantity": 0,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "Test Locking Description",
+ "fee_paid": 0,
+ "status": "valid",
+ "asset_longname": null,
+ "locked": false,
+ "reset": false,
+ "description_locked": true,
+ "fair_minting": false,
+ "asset_events": "lock_description reissuance",
+ "confirmed": true,
+ "block_time": 1726509775,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 44,
+ "tx_hash": "edf7eb0a60e46ad53360d769c00fbd350628dff893bb6f1869570c9fdcfc71af",
+ "msg_index": 0,
+ "block_index": 157,
+ "asset": "A95428959745315388",
+ "quantity": 0,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "Test Locking Description",
+ "fee_paid": 0,
+ "status": "valid",
+ "asset_longname": "TESTLOCKDESC.MYSUBASSET",
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509760,
+ "quantity_normalized": "0.00000000",
+ "fee_paid_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 43,
+ "tx_hash": "23d681cb0c9d9310fd8150fcabf440c84cae363db926d0fcde70cbe12373f96f",
+ "msg_index": 0,
+ "block_index": 156,
+ "asset": "TESTLOCKDESC",
+ "quantity": 10000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "Test Locking Description",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": null,
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509746,
+ "quantity_normalized": "100.00000000",
+ "fee_paid_normalized": "0.50000000"
+ },
+ {
+ "tx_index": 34,
+ "tx_hash": "73ed3c167032f8d2648710f1bceb54e23fc9faf80658565c8e897ea0fa7bcf35",
+ "msg_index": 0,
+ "block_index": 147,
+ "asset": "MYASSETA",
+ "quantity": 100000000000,
+ "divisible": true,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "transfer": false,
+ "callable": false,
+ "call_date": 0,
+ "call_price": 0.0,
+ "description": "My super asset A",
+ "fee_paid": 50000000,
+ "status": "valid",
+ "asset_longname": null,
+ "locked": false,
+ "reset": false,
+ "description_locked": false,
+ "fair_minting": false,
+ "asset_events": "creation",
+ "confirmed": true,
+ "block_time": 1726509706,
+ "quantity_normalized": "1000.00000000",
+ "fee_paid_normalized": "0.50000000"
+ }
+ ],
+ "next_cursor": 15,
+ "result_count": 20
+ },
+ "/v2/addresses//assets": {
+ "result": [
+ {
+ "asset": "TESTLOCKDESC",
+ "asset_id": "70403005118950974",
+ "asset_longname": null,
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 10000000000,
+ "description": "Test Locking Description",
+ "first_issuance_block_index": 156,
+ "last_issuance_block_index": 158,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509746,
+ "last_issuance_block_time": 1726509775,
+ "supply_normalized": "100.00000000"
+ },
+ {
+ "asset": "MYASSETA",
+ "asset_id": "103804245870",
+ "asset_longname": null,
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 100000000000,
+ "description": "My super asset A",
+ "first_issuance_block_index": 147,
+ "last_issuance_block_index": 147,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509706,
+ "last_issuance_block_time": 1726509706,
+ "supply_normalized": "1000.00000000"
+ },
+ {
+ "asset": "FAIRMINTD",
+ "asset_id": "1046814266085",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 40,
+ "description": "",
+ "first_issuance_block_index": 135,
+ "last_issuance_block_index": 136,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509644,
+ "last_issuance_block_time": 1726509648,
+ "supply_normalized": "0.00000040"
+ },
+ {
+ "asset": "FAIRMINTC",
+ "asset_id": "1046814266084",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 19,
+ "description": "",
+ "first_issuance_block_index": 131,
+ "last_issuance_block_index": 134,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509617,
+ "last_issuance_block_time": 1726509639,
+ "supply_normalized": "0.00000019"
+ },
+ {
+ "asset": "FAIRMINTB",
+ "asset_id": "1046814266083",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 0,
+ "description": "",
+ "first_issuance_block_index": 126,
+ "last_issuance_block_index": 130,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509596,
+ "last_issuance_block_time": 1726509613,
+ "supply_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": 2,
+ "result_count": 6
+ },
+ "/v2/addresses//transactions": {
+ "result": [
+ {
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "block_hash": "44555f5ae4cd1f61f3df9e675ad106b01fca685a76eff37b685758a1f234afb2",
+ "block_time": 1726509903,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
+ "supported": true,
+ "utxos_info": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 56,
+ "tx_hash": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec",
+ "block_index": 190,
+ "block_hash": "214a1e1ed38b3e555167f5f21d78c8c3e487ea62d748cd8200a3b3e18f2b6017",
+ "block_time": 1726509899,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "465e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "supported": true,
+ "utxos_info": "18a9b72fc9e67470cff556297fa5f3dd95ea7d472693f42d597db7ad598c05ec:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "cancel",
+ "message_type_id": 70,
+ "message_data": {
+ "offer_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "status": "valid"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 189,
+ "block_hash": "4147554b4c1d081b097b1c6278509e7da43fbec27bdb1ad6cb8414e44ba4445b",
+ "block_time": 1726509894,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000",
+ "supported": true,
+ "utxos_info": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 54,
+ "tx_hash": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f",
+ "block_index": 188,
+ "block_hash": "6af6f23af835e0b3e7515a3d98e43a2ff75b7baf8d552fe27cbaf82dc8974780",
+ "block_time": 1726509890,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0300038057841d54055a90ed31a47e9821fd3118e6e78592808b61e9d7e5f2f9b6d9181c584be5f5174d8c9f9280ae2b0c1095bbdf23747f76b242be716817701b78400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400",
+ "supported": true,
+ "utxos_info": "e8fda956958ed7de0a98e42d8d28349b9c7b5e20da375c185c5830526df6594f:0",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "mpma_send",
+ "message_type_id": 3,
+ "message_data": [
+ {
+ "asset": "MYASSETA",
+ "destination": "bcrt1q3ds7n4l97tumdkgcr3vyhe04zaxce8ujr8fmr2",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000010"
+ },
+ {
+ "asset": "XCP",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "quantity": 10,
+ "memo": null,
+ "memo_is_hex": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00000010"
+ }
+ ]
+ },
+ "btc_amount_normalized": "0.00000000"
+ },
+ {
+ "tx_index": 49,
+ "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "block_index": 183,
+ "block_hash": "266c58f4906e9a1c4f81f972d7728ac8f370b75de6c542c61c838013ad48749d",
+ "block_time": 1726509858,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": null,
+ "btc_amount": 0,
+ "fee": 10000,
+ "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000",
+ "supported": true,
+ "utxos_info": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1:1",
+ "confirmed": true,
+ "unpacked_data": {
+ "message_type": "order",
+ "message_type_id": 10,
+ "message_data": {
+ "give_asset": "XCP",
+ "give_quantity": 10000,
+ "get_asset": "BTC",
+ "get_quantity": 10000,
+ "expiration": 21,
+ "fee_required": 0,
+ "status": "open",
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00010000",
+ "get_quantity_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000"
+ }
+ },
+ "btc_amount_normalized": "0.00000000"
+ }
+ ],
+ "next_cursor": 47,
+ "result_count": 23
+ },
+ "/v2/addresses//dividends": {
+ "result": [
+ {
+ "tx_index": 40,
+ "tx_hash": "65e4ec441796883270c7bb0f18ca610e54b1ad0b3ae8a33e572bca985f65ee00",
+ "block_index": 153,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSETA",
+ "dividend_asset": "XCP",
+ "quantity_per_unit": 100000000,
+ "fee_paid": 40000,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509732,
+ "asset_info": {
+ "asset_longname": null,
+ "description": "My super asset A",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "dividend_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_per_unit_normalized": "1.00000000",
+ "fee_paid_normalized": "0.00040000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/addresses//orders": {
+ "result": [
+ {
+ "tx_index": 57,
+ "tx_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232",
+ "block_index": 191,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 212,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509903,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ {
+ "tx_index": 55,
+ "tx_hash": "5e324d551a694d3f6ffc9c67b3db8817d470ba32257047ddee237d3d07c1a1e2",
+ "block_index": 190,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 210,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "cancelled",
+ "confirmed": true,
+ "block_time": 1726509899,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ {
+ "tx_index": 49,
+ "tx_hash": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1",
+ "block_index": 186,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 10000,
+ "give_remaining": 5000,
+ "get_asset": "BTC",
+ "get_quantity": 10000,
+ "get_remaining": 5000,
+ "expiration": 21,
+ "expire_index": 204,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "open",
+ "confirmed": true,
+ "block_time": 1726509871,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00010000",
+ "get_quantity_normalized": "0.00010000",
+ "get_remaining_normalized": "0.00005000",
+ "give_remaining_normalized": "0.00005000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ },
+ {
+ "tx_index": 47,
+ "tx_hash": "e2263719273ed7cbb5496ae9daff21e24a2899e76feea1abbd4e91fa72766b5d",
+ "block_index": 182,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "give_remaining": 1000,
+ "get_asset": "BTC",
+ "get_quantity": 1000,
+ "get_remaining": 1000,
+ "expiration": 21,
+ "expire_index": 181,
+ "fee_required": 0,
+ "fee_required_remaining": 0,
+ "fee_provided": 10000,
+ "fee_provided_remaining": 10000,
+ "status": "expired",
+ "confirmed": true,
+ "block_time": 1726509796,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Bitcoin cryptocurrency",
+ "locked": false,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "get_remaining_normalized": "0.00001000",
+ "give_remaining_normalized": "0.00001000",
+ "fee_provided_normalized": "0.00010000",
+ "fee_required_normalized": "0.00000000",
+ "fee_required_remaining_normalized": "0.00000000",
+ "fee_provided_remaining_normalized": "0.00010000"
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 4
+ },
+ "/v2/addresses//fairminters": {
+ "result": [
+ {
+ "tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "tx_index": 22,
+ "block_index": 135,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTD",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 50,
+ "quantity_by_price": 60,
+ "hard_cap": 0,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "open",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509644
+ },
+ {
+ "tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "tx_index": 18,
+ "block_index": 131,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTC",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 5,
+ "hard_cap": 0,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "open",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509617
+ },
+ {
+ "tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16",
+ "tx_index": 14,
+ "block_index": 130,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTB",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 1,
+ "hard_cap": 10000000000,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 1000000000,
+ "soft_cap_deadline_block": 130,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "closed",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509613
+ },
+ {
+ "tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "tx_index": 10,
+ "block_index": 125,
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTA",
+ "asset_parent": "",
+ "asset_longname": "",
+ "description": "",
+ "price": 1,
+ "quantity_by_price": 1,
+ "hard_cap": 10000000000,
+ "burn_payment": false,
+ "max_mint_per_tx": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "minted_asset_commission_int": 0,
+ "soft_cap": 1000000000,
+ "soft_cap_deadline_block": 124,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "pre_minted": false,
+ "status": "closed",
+ "earned_quantity": null,
+ "commission": null,
+ "paid_quantity": null,
+ "confirmed": true,
+ "block_time": 1726509592
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 4
+ },
+ "/v2/addresses//fairmints": {
+ "result": [
+ {
+ "tx_hash": "a899b1a361e0514262442a4a300d7571606a3462d50819092e649c490fbcb1e6",
+ "tx_index": 23,
+ "block_index": 136,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "d91c1e127adf6010f11ee5d04a4cd804ece0ff8087b450f307ae85b6f5f83137",
+ "asset": "FAIRMINTD",
+ "earn_quantity": 40,
+ "paid_quantity": 34,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509648,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "43b87a7de82b3deb9845abcc6d33d3d9b61c21d58377115c5edefeabc763c9ae",
+ "tx_index": 21,
+ "block_index": 134,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "asset": "FAIRMINTC",
+ "earn_quantity": 11,
+ "paid_quantity": 3,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509639,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "1148cccc0b0535df22ffd1571672abb937ff57bcefafc7af5d797405c8ce0b7f",
+ "tx_index": 20,
+ "block_index": 133,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "asset": "FAIRMINTC",
+ "earn_quantity": 3,
+ "paid_quantity": 1,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509625,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "a82d30ebc85da3571118450b2e29b8230ff34da2ee40ff7df9452727b80de1be",
+ "tx_index": 19,
+ "block_index": 132,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "b8787fa4e26710112ef68030beafe12d09ec601552f130e5f37da63ba73eec12",
+ "asset": "FAIRMINTC",
+ "earn_quantity": 5,
+ "paid_quantity": 1,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509620,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "2fe7ff0c16953b4aff424432759c2e48819f92f9c4440a7047e3c86f9ca21161",
+ "tx_index": 15,
+ "block_index": 127,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "536537382f35f3fc4bf3bcb4f6957228528eaa802dc49361f6339cd575de0a16",
+ "asset": "FAIRMINTB",
+ "earn_quantity": 100000000,
+ "paid_quantity": 100000000,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509599,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ },
+ {
+ "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "tx_index": 11,
+ "block_index": 123,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 500000000,
+ "paid_quantity": 500000000,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509583,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 6
+ },
+ "/v2/addresses//fairmints/": {
+ "result": [
+ {
+ "tx_hash": "320ca07cfa5b9233bd809064f5facf416651c9b1f8a8d06a1ebc57a17a01436c",
+ "tx_index": 11,
+ "block_index": 123,
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "fairminter_tx_hash": "7ae7bb5d540de02fd2b97d7234b6c87c925d0b6b3eac5a55e5ced650ce49eed1",
+ "asset": "FAIRMINTA",
+ "earn_quantity": 500000000,
+ "paid_quantity": 500000000,
+ "commission": 0,
+ "status": "valid",
+ "confirmed": true,
+ "block_time": 1726509583,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ }
+ }
+ ],
+ "next_cursor": null,
+ "result_count": 1
+ },
+ "/v2/addresses//compose/bet": {
+ "error": "['feed doesn\u2019t exist']"
+ },
+ "/v2/addresses//compose/broadcast": {
+ "result": {
+ "rawtransaction": "02000000000101b649c4e7fa40f164c03cd4447f8be4c3bbeb5ab6b102b0040141900933aac6ab000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a298a111578002e35f209d5778a06bfbacec513f992cc18166b895017e5651e3d9a9c8abe27c32de9bd6334b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "timestamp": 4003903985,
+ "value": 100.0,
+ "fee_fraction": 0.05,
+ "text": "\"Hello, world!\""
+ },
+ "name": "broadcast"
+ }
+ },
+ "/v2/addresses//compose/btcpay": {
+ "result": {
+ "rawtransaction": "020000000001014fca2cccbcf61bd93889e6594b5f5676eb7ccec2f792a180f5f069af357b7616000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03b80b0000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e00000000000000004b6a491bea0194c274239cce2dec48099450c2d32bb382ddfb3b81015ad5ec232bd55868ef141b018286e0bca6432cf028cefc16bae7d9d0f81d7cc89e7f1247e0f068e2c07fc713509850fad093052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "order_match_id": "675f8dccad4bdcf4b54ce5aca7ddc442f642d63e518d64ad6068a264fb9894e1_d87f4afa605375256bce3dab7d014314a751d0d998cdc0842ac2dfc8c2fa2b21"
+ },
+ "name": "btcpay"
+ }
+ },
+ "/v2/addresses//compose/burn": {
+ "result": {
+ "rawtransaction": "020000000001016fe1241c086889236a07a814417e56dab847abd58d96050d2ef16d394acb7071000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acdab1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "quantity": 1000,
+ "overburn": false
+ },
+ "name": "burn"
+ }
+ },
+ "/v2/addresses//compose/cancel": {
+ "result": {
+ "rawtransaction": "0200000000010175b4c418d03015dec817aad5fcb40a67eb01ab8c7f9b2434e0aeae3f2c7327e5000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0200000000000000002b6a296a415035fc0e352ad913bcc9368104122e748b6b983f39533d639f2642afa98318345f31fc54c82b4434b1052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "offer_hash": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232"
+ },
+ "name": "cancel"
+ }
+ },
+ "/v2/addresses//compose/destroy": {
+ "result": {
+ "rawtransaction": "02000000000101b6ee35e1324d5089f8d7d56494bef5bcffa8b7c4a7e486d0af9d225461966691000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000226a207b5b354f4bb56aadb60d34352b229414425ea46fd9be1edf6ea98bd29a7472df9db3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "tag": "\"bugs!\"",
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "name": "destroy"
+ }
+ },
+ "/v2/addresses//compose/dispenser": {
+ "result": {
+ "rawtransaction": "020000000001013535818da2dc8007a59f5067eb9607b1ebdae92c65ceb00a7aa84795be59615102000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52ccffffffff0200000000000000002c6a2abf7584d7e313e8d8dd088940a821ea5a8220cba87c96c52763c53a2847b0809129a37280769f24c74047404b0a2701000000160014f8303fb1d45fb1391c65bcbef0035ec2924b52cc02000000000000",
+ "params": {
+ "source": "bcrt1qlqcrlvw5t7cnj8r9hjl0qq67c2fyk5kvfra90p",
+ "asset": "XCP",
+ "give_quantity": 1000,
+ "escrow_quantity": 1000,
+ "mainchainrate": 100,
+ "status": 0,
+ "open_address": null,
+ "oracle_address": null,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "give_quantity_normalized": "0.00001000",
+ "escrow_quantity_normalized": "0.00001000"
+ },
+ "name": "dispenser"
+ }
+ },
+ "/v2/addresses//compose/dividend": {
+ "result": {
+ "rawtransaction": "02000000000101351dc0ca5529e3f5913ab348c8a5b0dab37120eb3a5362bf1edbd938a12afaa9000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a214c12bd38bfe6d74349de8861a285ce801c0df1aea0c2341213c29c0488e3b51bf459b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "quantity_per_unit": 1,
+ "asset": "FAIRMINTA",
+ "dividend_asset": "XCP",
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "dividend_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_per_unit_normalized": "0.00000001"
+ },
+ "name": "dividend"
+ }
+ },
+ "/v2/addresses//compose/issuance": {
+ "result": {
+ "rawtransaction": "020000000001018c2c4aec7dc8917d96c67ca0080178a22f670265ea42df5f51b4cf18143f8d33000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff0322020000000000001600147ed28f21558ee8ecd78a339105e7756213901b6e0000000000000000236a2161361954172494529a3d38abfce581faf126d5f844d56d0f9ff51438a6ee05c1681ca8052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCPTEST",
+ "quantity": 1000,
+ "transfer_destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "lock": false,
+ "reset": false,
+ "description": null,
+ "quantity_normalized": "0.00001000"
+ },
+ "name": "issuance"
+ }
+ },
+ "/v2/addresses//compose/mpma": {
+ "result": {
+ "rawtransaction": "02000000000104408d3617b81bce0c32909fc2def0c597a56244508180e231a57cd368ef04aca6000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff17bda3cda72e5b5f1532ba6749ecd58427332ebcf282c79cd16c8375a9e4a215000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc51fabedc80ce42d8f455f8cc69c88e82938707ddda14f7a68f33094383c23f4000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff6da23b7041e4c4b6b8d7cae88d1b4fbdad16503cf3dcfe3f6c85e0ae150c17a7000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff03e80300000000000069512102c9169a3c7845490a815acdd720f2c894bb916b00b6987b846b31895a38e2814d21027759538aaa3307bc8d576cc9ae8b5cfeb4f89eecb554cbecc42baa629bc084ea21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102c6169a3c7845490a8179babad2e07e3ab844e5e8565a6a3c4d146e2f5af111ab21036c379bdd2e2e53b9d7c789f80af5c4df49c9840a52d15963e663cf0ef7afa8d521038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953ae47d016a8040000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset_dest_quant_list": [
+ [
+ "XCP",
+ "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ 1
+ ],
+ [
+ "MYASSETA",
+ "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ 2
+ ]
+ ],
+ "memo": "\"Hello, world!\"",
+ "memo_is_hex": false
+ },
+ "name": "mpma"
+ }
+ },
+ "/v2/addresses//compose/order": {
+ "result": {
+ "rawtransaction": "02000000000101c07bf8106610b1b623cb978c0aba88af7803750f54a05c0005f982825d88d475000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000356a334143661d91daa75e926ff6d79759f0577584c1a37635e27e463babf031a6b24bdcd4d41d8aebadcc6eb12b58fa950c86172ab287ae052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "give_asset": "XCP",
+ "give_quantity": 1000,
+ "get_asset": "FAIRMINTA",
+ "get_quantity": 1000,
+ "expiration": 100,
+ "fee_required": 100,
+ "give_asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "get_asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "give_quantity_normalized": "0.00001000",
+ "get_quantity_normalized": "0.00001000",
+ "fee_required_normalized": "0.00000100"
+ },
+ "name": "order"
+ }
+ },
+ "/v2/addresses//compose/send": {
+ "result": {
+ "rawtransaction": "02000000000101d1ed4e6a2b26727a08b51181f172b8a5c8dd24188e57f543702dac89c942bd12000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000306a2eb930bb587d4fd62cbc52cc09eacb8b0dfbb418f08631a6360d98cf5ce3120e46955c4c3d48c01ca4c9bbe19f3103deaf052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "asset": "XCP",
+ "quantity": 1000,
+ "memo": null,
+ "memo_is_hex": false,
+ "use_enhanced_send": true,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "name": "send"
+ }
+ },
+ "/v2/addresses//compose/sweep": {
+ "result": {
+ "rawtransaction": "02000000000101b562c0730715780ae991157f93d3a949c1cfaba285b7f621eea8d3dda79da50c000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000236a218a5634f40393d59bc3c1a4c12be1661951369bb953fbb8da7bd34ffdc310d0a1fe59b3052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "flags": 7,
+ "memo": "FFFF"
+ },
+ "name": "sweep"
+ }
+ },
+ "/v2/addresses//compose/dispense": {
+ "result": {
+ "rawtransaction": "020000000001014d628a3e65cc9537aa62c9b42db1b2df0e61d973978cac54482a0953d6fe49d70200000016001457841d54055a90ed31a47e9821fd3118e6e78592ffffffff03e803000000000000160014ae2b0c1095bbdf23747f76b242be716817701b7800000000000000000c6a0ac17afa5cc1158f0972f85fb808270100000016001457841d54055a90ed31a47e9821fd3118e6e7859202000000000000",
+ "params": {
+ "source": "bcrt1q27zp64q9t2gw6vdy06vzrlf3rrnw0pvja32j8t",
+ "destination": "bcrt1q4c4scyy4h00jxarlw6ey90n3dqthqxmc065u30",
+ "quantity": 1000
+ },
+ "name": "dispense"
+ }
+ },
+ "/v2/addresses//compose/fairminter": {
+ "result": {
+ "rawtransaction": "02000000000101fbdb9417de62f10b9120f7e3e29518b3e1b564d76efe4eeb9f5fb40810cb2695000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000316a2f1a876d6cad75159c126a8d28d8dba1389dc8a65bf6ccf9207d08f02f106901dfa932f2675b34d4dd1b20eaa13bd61e99af052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "MYASSET",
+ "asset_parent": "",
+ "price": 10,
+ "quantity_by_price": 1,
+ "max_mint_per_tx": 0,
+ "hard_cap": 0,
+ "premint_quantity": 0,
+ "start_block": 0,
+ "end_block": 0,
+ "soft_cap": 0,
+ "soft_cap_deadline_block": 0,
+ "minted_asset_commission": 0.0,
+ "burn_payment": false,
+ "lock_description": false,
+ "lock_quantity": false,
+ "divisible": true,
+ "description": ""
+ },
+ "name": "fairminter"
+ }
+ },
+ "/v2/addresses//compose/fairmint": {
+ "result": {
+ "rawtransaction": "02000000000101ebc7922edff8bf7972bfbfc17ef1d69520687cb4a252ed0c25bc335b176b630a000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff020000000000000000166a14e8c879a220caa9210c9d86643046c47edc54aa60d4b6052a010000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "FAIRMINTC",
+ "quantity": 1,
+ "asset_info": {
+ "asset_longname": "",
+ "description": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false
+ },
+ "quantity_normalized": "0.00000001"
+ },
+ "name": "fairmint"
+ }
+ },
+ "/v2/addresses//compose/attach": {
+ "result": {
+ "rawtransaction": "02000000000106fe554038ba01c7f82d1ded9634c1ef501e0c316f39b2f6af7d80141bcaca2bd0000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffdc2ead4b27cfb424aa6e8cc185a5e4a96185af16e10e61164e0f07e4c2b5a317000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffc0f4470bf4218838b2ade8b3782b44678183b2e5fe80c83c5b14ec65bf014a89000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffcdf72a8e033e6ffc183a3728a3842c94648a627ae5438f47b8c8f13022d6d1dd000000001600147ed28f21558ee8ecd78a339105e7756213901b6efffffffffecec22cad05d1f474cdd73f8e9ffa05eb64cf664aebe3b08aaf0bb644770738000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffffb9441e2420b5197ae1b9eddcc48ff658d0a1da2e5a5cd889e1fb8c60ea4609e3000000001600147ed28f21558ee8ecd78a339105e7756213901b6effffffff04e803000000000000695121029f655253bae89cf966929abd462a943a4654655b5b0150b83790569507fe3ae3210295b3c028a258fedebd0f039dac617ac2b59e7194e21ac9a98db0f47cd8943e1c21038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee803000000000000695121029f655253bae89cf966c2c8bd0c67962840003b055e0406bc3cc5008756f22bdc2103c5fc8e2de81af98aea4800ccfb2233cdf7d466d9b64d93e38eb4a5798d9d6bb421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aee80300000000000069512102b5655253bae89cf96692caed066494372e7a53405d5652bc04fd63e262ca4fb32103a7cbb74fd12c9bb3897964fbc91002afc2e402e0867ea3d5bad2c34cecac0ec421038cf659b1eef29fa8241c63dfa9eab3e1ef4f14fd7d99ee18746a9a938707616953aec13922fc060000001600147ed28f21558ee8ecd78a339105e7756213901b6e02000002000002000002000002000002000000000000",
+ "params": {
+ "source": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "destination": "7b7048040c893c69892bd088ce48db79b96b9c1d7221b50d903064ff5a1ed232:1",
+ "asset": "XCP",
+ "quantity": 1000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "name": "utxo"
+ }
+ },
+ "/v2/utxos//compose/detach": {
+ "result": {
+ "rawtransaction": "02000000000101a7f3d5ff6cad0216060a55b7ad0a1b032687857cd0e9603223a183e5cd328ff4010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b76ffffffff04e80300000000000069512102d9e4e3e9266c080644ed9f64fec2af0f526747fd0c4bac4dddd10d11f9417b2f2102eb2503919a6e96ca62d48ebfdc837a09e9ba0e366a64d1c0e6b2e3405da3f1b2210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102d9e4e3e9266c080644e89d66a5c2fa59046511a90342fc008d814c57fe002ec22102bf2754919e6497c138d3cfeadbc72a41ffbc1920383cd086e0e4b00013feb4b9210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee80300000000000069512102f3e4e3e9266c080644f38a24a2c0f641694072b40548fd4cefe23e23cf711ea82102d24133a6f956a3f255e6b88fefb2183988db6a545d51e4f08782d5716b93c378210305d4947b8fd51fc782076336b7006bffdd6e0ea462eb4be146901788a6ffdd1153aee8980827010000001600141811a7fe8c4732c201737549ba5dabb9e5ba8b7602000000000000",
+ "params": {
+ "source": "f48f32cde583a1233260e9d07c858726031b0aadb7550a061602ad6cffd5f3a7:1",
+ "destination": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "asset": "XCP",
+ "quantity": 1000,
+ "asset_info": {
+ "divisible": true,
+ "asset_longname": null,
+ "description": "The Counterparty protocol native currency",
+ "locked": true,
+ "issuer": null
+ },
+ "quantity_normalized": "0.00001000"
+ },
+ "name": "utxo"
+ }
+ },
+ "/v2/assets": {
+ "result": [
+ {
+ "asset": "TESTLOCKDESC",
+ "asset_id": "70403005118950974",
+ "asset_longname": null,
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 10000000000,
+ "description": "Test Locking Description",
+ "first_issuance_block_index": 156,
+ "last_issuance_block_index": 158,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509746,
+ "last_issuance_block_time": 1726509775,
+ "supply_normalized": "100.00000000"
+ },
+ {
+ "asset": "MYASSETB",
+ "asset_id": "103804245871",
+ "asset_longname": null,
+ "issuer": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99",
+ "owner": "bcrt1qrqg60l5vguevyqtnw4ym5hdth8jm4zmk0fxn99",
+ "divisible": true,
+ "locked": false,
+ "supply": 100000000000,
+ "description": "My super asset B",
+ "first_issuance_block_index": 155,
+ "last_issuance_block_index": 155,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509741,
+ "last_issuance_block_time": 1726509741,
+ "supply_normalized": "1000.00000000"
+ },
+ {
+ "asset": "MYASSETA",
+ "asset_id": "103804245870",
+ "asset_longname": null,
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 100000000000,
+ "description": "My super asset A",
+ "first_issuance_block_index": 147,
+ "last_issuance_block_index": 147,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509706,
+ "last_issuance_block_time": 1726509706,
+ "supply_normalized": "1000.00000000"
+ },
+ {
+ "asset": "FAIRMINTD",
+ "asset_id": "1046814266085",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 40,
+ "description": "",
+ "first_issuance_block_index": 135,
+ "last_issuance_block_index": 136,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509644,
+ "last_issuance_block_time": 1726509648,
+ "supply_normalized": "0.00000040"
+ },
+ {
+ "asset": "FAIRMINTC",
+ "asset_id": "1046814266084",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 19,
+ "description": "",
+ "first_issuance_block_index": 131,
+ "last_issuance_block_index": 134,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509617,
+ "last_issuance_block_time": 1726509639,
+ "supply_normalized": "0.00000019"
+ }
+ ],
+ "next_cursor": 3,
+ "result_count": 8
+ },
+ "/v2/assets/": {
+ "result": {
+ "asset": "FAIRMINTA",
+ "asset_id": "1046814266082",
+ "asset_longname": "",
+ "issuer": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "owner": "bcrt1q0mfg7g243m5we4u2xwgstem4vgfeqxmwzstddj",
+ "divisible": true,
+ "locked": false,
+ "supply": 10000000000,
+ "description": "",
+ "first_issuance_block_index": 122,
+ "last_issuance_block_index": 125,
+ "confirmed": true,
+ "first_issuance_block_time": 1726509578,
+ "last_issuance_block_time": 1726509592,
+ "supply_normalized": "100.00000000"
+ }
+ },
+ "/v2/assets/