From 118c5e6955d7c1a48d4483e18de3f90f2e202dc1 Mon Sep 17 00:00:00 2001 From: ijanus Date: Sat, 19 Feb 2022 20:48:18 +0100 Subject: [PATCH 01/45] WIP: Trying to solve what causes Clang fuzz compilation fail It fails relocation related issue, and the linker advises to use -fpie --- src/secp256k1/configure.ac | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/secp256k1/configure.ac b/src/secp256k1/configure.ac index 27f86e41f7..59c5d4a57d 100644 --- a/src/secp256k1/configure.ac +++ b/src/secp256k1/configure.ac @@ -387,6 +387,10 @@ SECP_CFLAGS="$SECP_CFLAGS $WERROR_CFLAGS" ### Handle module options ### +### +### Handle module options +### + if test x"$enable_module_ecdh" = x"yes"; then SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DENABLE_MODULE_ECDH=1" fi @@ -418,6 +422,10 @@ fi ### Check for --enable-experimental if necessary ### +### +### Check for --enable-experimental if necessary +### + if test x"$enable_experimental" = x"yes"; then AC_MSG_NOTICE([******]) AC_MSG_NOTICE([WARNING: experimental build]) @@ -483,4 +491,4 @@ echo " CC = $CC" echo " CPPFLAGS = $CPPFLAGS" echo " SECP_CFLAGS = $SECP_CFLAGS" echo " CFLAGS = $CFLAGS" -echo " LDFLAGS = $LDFLAGS" \ No newline at end of file +echo " LDFLAGS = $LDFLAGS" From 5954140b9d63377f595b187106121eafa9b8e8de Mon Sep 17 00:00:00 2001 From: VanOrton <> Date: Sun, 3 Apr 2022 15:20:07 +0200 Subject: [PATCH 02/45] Version bump --- doc/build-windows.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/doc/build-windows.md b/doc/build-windows.md index 71fc900ac8..7efd3ff55a 100644 --- a/doc/build-windows.md +++ b/doc/build-windows.md @@ -43,12 +43,8 @@ To compile for Windows on Linux 18.04: Or follow the steps below: ------------------------------------------------------------ -<<<<<<< HEAD The steps below can be performed on Ubuntu (including in a VM) or WSL. The depends system -======= -The steps below can be performed on Ubuntu or WSL. The depends system ->>>>>>> f58f697c9... doc: remove WSL install instructions and point to upstream will also work on other Linux distributions, however the commands for installing the toolchain will be different. From e87b68ccd023299dec05606eb4399e87d359c2f8 Mon Sep 17 00:00:00 2001 From: VanOrton <> Date: Tue, 5 Apr 2022 15:03:35 +0200 Subject: [PATCH 03/45] Branding updates, version updates, build fixes, package updates --- build_msvc/BGL_config.h | 10 +++++----- build_msvc/libBGL_qt/libBGL_qt.vcxproj | 2 ++ src/deploymentinfo.cpp | 4 ++++ src/qt/platformstyle.cpp | 10 ++-------- src/rpc/blockchain.cpp | 1 + 5 files changed, 14 insertions(+), 13 deletions(-) diff --git a/build_msvc/BGL_config.h b/build_msvc/BGL_config.h index aafd09fa6e..596a84ed71 100644 --- a/build_msvc/BGL_config.h +++ b/build_msvc/BGL_config.h @@ -6,16 +6,16 @@ #define BGL_BGL_CONFIG_H /* Version Build */ -#define CLIENT_VERSION_BUILD 6 +#define CLIENT_VERSION_BUILD 0 /* Version is release */ #define CLIENT_VERSION_IS_RELEASE true /* Major version */ -#define CLIENT_VERSION_MAJOR 22 +#define CLIENT_VERSION_MAJOR 1 /* Minor version */ -#define CLIENT_VERSION_MINOR 1 +#define CLIENT_VERSION_MINOR 8 /* Copyright holder(s) before %s replacement */ #define COPYRIGHT_HOLDERS "The %s developers" @@ -27,7 +27,7 @@ #define COPYRIGHT_HOLDERS_SUBSTITUTION "Bitcoin Core" /* Copyright year */ -#define COPYRIGHT_YEAR 2021 +#define COPYRIGHT_YEAR 2022 /* Define to 1 to enable wallet functions */ #define ENABLE_WALLET 1 @@ -186,7 +186,7 @@ #define PACKAGE_URL "https://github.com/BitgesellOfficial/bitgesell/releases/" /* Define to the version of this package. */ -#define PACKAGE_VERSION "22.99.0" +#define PACKAGE_VERSION "0.1.8" /* Define this symbol if the minimal qt platform exists */ #define QT_QPA_PLATFORM_MINIMAL 1 diff --git a/build_msvc/libBGL_qt/libBGL_qt.vcxproj b/build_msvc/libBGL_qt/libBGL_qt.vcxproj index 60c34c5c20..cd0871ca8f 100644 --- a/build_msvc/libBGL_qt/libBGL_qt.vcxproj +++ b/build_msvc/libBGL_qt/libBGL_qt.vcxproj @@ -35,6 +35,7 @@ + @@ -90,6 +91,7 @@ + diff --git a/src/deploymentinfo.cpp b/src/deploymentinfo.cpp index 185a7dcb54..7555178b87 100644 --- a/src/deploymentinfo.cpp +++ b/src/deploymentinfo.cpp @@ -13,6 +13,10 @@ const struct VBDeploymentInfo VersionBitsDeploymentInfo[Consensus::MAX_VERSION_B /*.name =*/ "testdummy", /*.gbt_force =*/ true, }, + { + /*.name =*/ "taproot_discarded", + /*.gbt_force =*/ true, + }, { /*.name =*/ "taproot", /*.gbt_force =*/ true, diff --git a/src/qt/platformstyle.cpp b/src/qt/platformstyle.cpp index 34944e78c0..724d9cfc4c 100644 --- a/src/qt/platformstyle.cpp +++ b/src/qt/platformstyle.cpp @@ -83,14 +83,8 @@ QColor PlatformStyle::TextColor() const QColor PlatformStyle::SingleColor() const { if (colorizeIcons) { - const QColor colorHighlightBg(QApplication::palette().color(QPalette::Highlight)); - const QColor colorHighlightFg(QApplication::palette().color(QPalette::HighlightedText)); - const QColor colorText(QApplication::palette().color(QPalette::WindowText)); - const int colorTextLightness = colorText.lightness(); - if (abs(colorHighlightBg.lightness() - colorTextLightness) < abs(colorHighlightFg.lightness() - colorTextLightness)) { - return colorHighlightBg; - } - return colorHighlightFg; + // return BGL accent color, it should be contrast enough for both light/dark color schemes + return {111, 57, 229}; } return {0, 0, 0}; } diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index def47a5d68..c6f203d12c 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1276,6 +1276,7 @@ RPCHelpMan getblockchaininfo() } obj.pushKV("warnings", GetWarnings(false).original); + return obj; }, }; From f8989c39615892076eb299618286ad2ff6c4dd10 Mon Sep 17 00:00:00 2001 From: VanOrton <> Date: Tue, 5 Apr 2022 15:56:59 +0200 Subject: [PATCH 04/45] Add missing include file (OSX compilation) --- src/mapport.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mapport.cpp b/src/mapport.cpp index 34d5ffd49a..a5d9307858 100644 --- a/src/mapport.cpp +++ b/src/mapport.cpp @@ -14,8 +14,10 @@ #include #include #include +#include +#include +#include #include -#include #ifdef USE_NATPMP #include From 1403c95fe0105e4f9aa6e24ead2fc97f294db1ad Mon Sep 17 00:00:00 2001 From: nadyka Date: Fri, 8 Jul 2022 11:55:05 +0400 Subject: [PATCH 05/45] actualize functional tests --- test/functional/feature_asmap.py | 1 - test/functional/feature_bind_extra.py | 1 - test/functional/feature_cltv.py | 1 - test/functional/feature_segwit.py | 3 +++ test/functional/interface_BGL_cli.py | 4 ++-- test/functional/mempool_accept.py | 2 +- test/functional/rpc_blockchain.py | 11 +++++++++++ test/functional/rpc_createmultisig.py | 2 +- test/functional/rpc_packages.py | 1 - test/functional/rpc_signmessagewithprivkey.py | 1 - test/functional/wallet_basic.py | 8 ++++---- .../functional/wallet_bumpfee_totalfee_deprecation.py | 4 ++-- 12 files changed, 24 insertions(+), 15 deletions(-) diff --git a/test/functional/feature_asmap.py b/test/functional/feature_asmap.py index 48cd04164a..864109671e 100755 --- a/test/functional/feature_asmap.py +++ b/test/functional/feature_asmap.py @@ -67,7 +67,6 @@ def test_asmap_with_relative_path(self): name = 'ASN_map' filename = os.path.join(self.datadir, name) shutil.copyfile(self.asmap_raw, filename) - with self.node.assert_debug_log(expected_messages(filename)): self.start_node(0, [f'-asmap={name}']) os.remove(filename) diff --git a/test/functional/feature_bind_extra.py b/test/functional/feature_bind_extra.py index a49d80603f..a72a05c18f 100755 --- a/test/functional/feature_bind_extra.py +++ b/test/functional/feature_bind_extra.py @@ -23,7 +23,6 @@ rpc_port, ) - class BindExtraTest(BGLTestFramework): def set_test_params(self): self.setup_clean_chain = True diff --git a/test/functional/feature_cltv.py b/test/functional/feature_cltv.py index 2d3f3e2c9d..948f536fb4 100755 --- a/test/functional/feature_cltv.py +++ b/test/functional/feature_cltv.py @@ -3,7 +3,6 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Test BIP65 (CHECKLOCKTIMEVERIFY). - Test that the CHECKLOCKTIMEVERIFY soft-fork activates. """ diff --git a/test/functional/feature_segwit.py b/test/functional/feature_segwit.py index b3ed542f7f..ec9d8ba8d8 100755 --- a/test/functional/feature_segwit.py +++ b/test/functional/feature_segwit.py @@ -48,6 +48,9 @@ assert_raises_rpc_error, try_rpc, ) +from test_framework.wallet_util import ( + get_generate_key, +) from test_framework.wallet_util import ( get_generate_key, diff --git a/test/functional/interface_BGL_cli.py b/test/functional/interface_BGL_cli.py index 23afc86dbe..945b690c74 100755 --- a/test/functional/interface_BGL_cli.py +++ b/test/functional/interface_BGL_cli.py @@ -168,8 +168,8 @@ def run_test(self): wallet_info = self.nodes[0].getwalletinfo() assert_equal(int(cli_get_info['Keypool size']), wallet_info['keypoolsize']) assert_equal(int(cli_get_info['Unlocked until']), wallet_info['unlocked_until']) - assert_equal(Decimal(cli_get_info['Transaction fee rate (-paytxfee) (BTC/kvB)']), wallet_info['paytxfee']) - assert_equal(Decimal(cli_get_info['Min tx relay fee rate (BTC/kvB)']), network_info['relayfee']) + assert_equal(Decimal(cli_get_info['Transaction fee rate (-paytxfee) (BGL/kvB)']), wallet_info['paytxfee']) + assert_equal(Decimal(cli_get_info['Min tx relay fee rate (BGL/kvB)']), network_info['relayfee']) assert_equal(self.nodes[0].cli.getwalletinfo(), wallet_info) # Setup to test -getinfo, -generate, and -rpcwallet= with multiple wallets. diff --git a/test/functional/mempool_accept.py b/test/functional/mempool_accept.py index 3961536b59..089e944ef9 100755 --- a/test/functional/mempool_accept.py +++ b/test/functional/mempool_accept.py @@ -7,7 +7,7 @@ from copy import deepcopy from decimal import Decimal import math - +from test_framework.key import ECKey from test_framework.test_framework import BGLTestFramework from test_framework.messages import ( MAX_BIP125_RBF_SEQUENCE, diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py index 86815f815d..44db82db3c 100755 --- a/test/functional/rpc_blockchain.py +++ b/test/functional/rpc_blockchain.py @@ -223,6 +223,17 @@ def check_signalling_deploymentinfo_result(self, gdi_result, height, blockhash, }, 'active': False }, + 'taproot_discarded': { + 'type': 'bip9', + 'bip9': { + 'status': 'defined', + 'start_time': 1621589357, + 'timeout': 1623715200, + 'since': 0, + 'min_activation_height': 0 + }, + 'active': False + }, 'taproot': { 'type': 'bip9', 'bip9': { diff --git a/test/functional/rpc_createmultisig.py b/test/functional/rpc_createmultisig.py index 6c3ee436f7..96c6b37cec 100755 --- a/test/functional/rpc_createmultisig.py +++ b/test/functional/rpc_createmultisig.py @@ -144,7 +144,7 @@ def checkbalances(self): height = node0.getblockchaininfo()["blocks"] assert 150 < height < 350 - total = 149 * 200 + (height - 149 - 100) * 100 - decimal.Decimal("0.00038295") + total = 149 * 200 + (height - 149 - 100) * 100 - decimal.Decimal("0.00037504") assert bal1 == 0 assert bal2 == self.moved assert_equal(bal0 + bal1 + bal2 + balw, total) diff --git a/test/functional/rpc_packages.py b/test/functional/rpc_packages.py index 4c3ab52632..71d18f765c 100755 --- a/test/functional/rpc_packages.py +++ b/test/functional/rpc_packages.py @@ -24,7 +24,6 @@ MiniWallet, ) - class RPCPackagesTest(BGLTestFramework): def set_test_params(self): self.num_nodes = 1 diff --git a/test/functional/rpc_signmessagewithprivkey.py b/test/functional/rpc_signmessagewithprivkey.py index 1ef5840f6e..05332f575e 100755 --- a/test/functional/rpc_signmessagewithprivkey.py +++ b/test/functional/rpc_signmessagewithprivkey.py @@ -13,7 +13,6 @@ assert_raises_rpc_error, ) - class SignMessagesWithPrivTest(BGLTestFramework): def set_test_params(self): self.setup_clean_chain = True diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index 6a4fd3c555..379489b367 100755 --- a/test/functional/wallet_basic.py +++ b/test/functional/wallet_basic.py @@ -98,10 +98,10 @@ def run_test(self): assert_equal(txout['value'], 200) # Send 21 BGL from 0 to 2 using sendtoaddress call. - fees=0 + fees = 0 balance=self.nodes[0].getbalance() self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 11) - fees+= balance - self.nodes[0].getbalance()-11 + fees += balance - self.nodes[0].getbalance()-11 balance = self.nodes[0].getbalance() mempool_txid = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 10) fees += balance - self.nodes[0].getbalance() - 10 @@ -212,7 +212,7 @@ def run_test(self): # node0 should end up with 100 BGL in block rewards plus fees, but # minus the 21 plus fees sent to node2 - assert_equal(self.nodes[0].getbalance(), 400 - 21 -fees*Decimal("0.9")) + assert_equal(self.nodes[0].getbalance(), 400 - 21 - fees * Decimal("0.9")) assert_equal(self.nodes[2].getbalance(), 21) # Node0 should have two unspent outputs. @@ -239,7 +239,7 @@ def run_test(self): self.generate(self.nodes[1], 1, sync_fun=lambda: self.sync_all(self.nodes[0:3])) assert_equal(self.nodes[0].getbalance(), 0) - assert_equal(self.nodes[2].getbalance(), 394-fees*Decimal("0.9")) + assert_equal(self.nodes[2].getbalance(), 394 - fees * Decimal("0.9")) # Verify that a spent output cannot be locked anymore spent_0 = {"txid": node0utxos[0]["txid"], "vout": node0utxos[0]["vout"]} diff --git a/test/functional/wallet_bumpfee_totalfee_deprecation.py b/test/functional/wallet_bumpfee_totalfee_deprecation.py index 64f01f7d90..f09b6a8737 100755 --- a/test/functional/wallet_bumpfee_totalfee_deprecation.py +++ b/test/functional/wallet_bumpfee_totalfee_deprecation.py @@ -22,11 +22,11 @@ def skip_test_if_missing_module(self): def run_test(self): peer_node, rbf_node = self.nodes - peer_node.generate(110) + self.generate(peer_node,110) self.sync_all() peer_node.sendtoaddress(rbf_node.getnewaddress(), 0.001) self.sync_all() - peer_node.generate(1) + self.generate(peer_node,1) self.sync_all() rbfid = spend_one_input(rbf_node, peer_node.getnewaddress()) From 571791910757b92d14206d5583eb96dad97c34a7 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 00:20:27 +0100 Subject: [PATCH 06/45] fix broken URLs to the bitgesell repo --- build_msvc/README.md | 2 +- debian.minimal/copyright | 2 +- doc/README_doxygen.md | 2 +- doc/developer-notes.md | 2 +- doc/release-notes/release-notes-0.10.0.md | 4 ++-- doc/release-notes/release-notes-0.10.1.md | 2 +- doc/release-notes/release-notes-0.10.2.md | 2 +- doc/release-notes/release-notes-0.10.3.md | 2 +- doc/release-notes/release-notes-0.10.4.md | 2 +- doc/release-notes/release-notes-0.11.0.md | 2 +- doc/release-notes/release-notes-0.11.2.md | 2 +- doc/release-notes/release-notes-0.12.0.md | 4 ++-- doc/release-notes/release-notes-0.12.1.md | 2 +- doc/release-notes/release-notes-0.13.0.md | 2 +- doc/release-notes/release-notes-0.13.1.md | 2 +- doc/release-notes/release-notes-0.13.2.md | 2 +- doc/release-notes/release-notes-0.14.0.md | 4 ++-- doc/release-notes/release-notes-0.14.1.md | 2 +- doc/release-notes/release-notes-0.14.2.md | 2 +- doc/release-notes/release-notes-0.14.3.md | 2 +- doc/release-notes/release-notes-0.15.0.1.md | 2 +- doc/release-notes/release-notes-0.15.0.md | 2 +- doc/release-notes/release-notes-0.15.1.md | 2 +- doc/release-notes/release-notes-0.15.2.md | 2 +- doc/release-notes/release-notes-0.16.0.md | 2 +- doc/release-notes/release-notes-0.16.1.md | 2 +- doc/release-notes/release-notes-0.16.2.md | 2 +- doc/release-notes/release-notes-0.16.3.md | 2 +- doc/release-notes/release-notes-0.17.0.1.md | 2 +- doc/release-notes/release-notes-0.17.0.md | 2 +- doc/release-notes/release-notes-0.17.1.md | 2 +- doc/release-notes/release-notes-0.18.0.md | 2 +- doc/release-notes/release-notes-0.18.1.md | 2 +- doc/release-notes/release-notes-0.19.0.1.md | 2 +- doc/release-notes/release-notes-0.3.20.md | 4 ++-- doc/release-notes/release-notes-0.4.3.md | 2 +- doc/release-notes/release-notes-0.4.4.md | 2 +- doc/release-notes/release-notes-0.5.0.md | 2 +- doc/release-notes/release-notes-0.5.1.md | 2 +- doc/release-notes/release-notes-0.5.2.md | 2 +- doc/release-notes/release-notes-0.5.3.md | 2 +- doc/release-notes/release-notes-0.5.4.md | 2 +- doc/release-notes/release-notes-0.6.0.md | 2 +- doc/release-notes/release-notes-0.6.2.md | 2 +- doc/release-notes/release-notes-0.6.3.md | 2 +- doc/release-notes/release-notes-0.7.0.md | 2 +- doc/release-notes/release-notes-0.7.1.md | 2 +- doc/release-notes/release-notes-0.7.2.md | 2 +- doc/release-notes/release-notes-0.8.0.md | 2 +- doc/release-notes/release-notes-0.8.1.md | 2 +- doc/release-notes/release-notes-0.8.2.md | 2 +- doc/release-notes/release-notes-0.8.3.md | 2 +- doc/release-notes/release-notes-0.8.4.md | 2 +- doc/release-notes/release-notes-0.8.5.md | 2 +- doc/release-notes/release-notes-0.8.6.md | 2 +- doc/release-notes/release-notes-0.9.0.md | 2 +- doc/release-notes/release-notes-0.9.1.md | 2 +- doc/release-notes/release-notes-0.9.2.1.md | 2 +- doc/release-notes/release-notes-0.9.2.md | 2 +- doc/release-notes/release-notes-0.9.3.md | 2 +- doc/release-notes/release-notes-0.9.4.md | 2 +- doc/release-notes/release-notes-0.9.5.md | 2 +- doc/release-process.md | 11 +++++++++++ 63 files changed, 77 insertions(+), 66 deletions(-) diff --git a/build_msvc/README.md b/build_msvc/README.md index 8137d8f341..4b630cbc19 100644 --- a/build_msvc/README.md +++ b/build_msvc/README.md @@ -5,7 +5,7 @@ Introduction --------------------- Visual Studio 2022 is minimum required to build BGL Core. -Solution and project files to build with `msbuild` or Visual Studio can be found in the `build_msvc` directory. +Building with Visual Studio is an alternative to the Linux based [cross-compiler build](https://github.com/BitgesellOfficial/bitgesell/blob/master/doc/build-windows.md). To build BGL Core from the command-line, it is sufficient to only install the [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/) component. diff --git a/debian.minimal/copyright b/debian.minimal/copyright index 81ed2ad05e..36cd059ff9 100644 --- a/debian.minimal/copyright +++ b/debian.minimal/copyright @@ -1722,7 +1722,7 @@ Copyright: 2009-2019 The Bitcoin Core developers License: __UNKNOWN__ Please contribute if you find BGL Core useful. Visit for further information about the software. - The source code is available from . + The source code is available from . . This is experimental software. Distributed under the MIT software license, see the accompanying file COPYING diff --git a/doc/README_doxygen.md b/doc/README_doxygen.md index 1d0d9975d6..a6b1e81ef9 100644 --- a/doc/README_doxygen.md +++ b/doc/README_doxygen.md @@ -8,7 +8,7 @@ with no central authority: managing transactions and issuing money are carried o The software is a community-driven open source project, released under the MIT license. -See https://github.com/BGL/BGL and https://BGLcore.org/ for further information about the project. +See https://github.com/BitgesellOfficial/bitgesell and https://BGLcore.org/ for further information about the project. \section Navigation Use Modules, Namespaces, Classes, or Files at the top of the page to start navigating the code. diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 0b52fe44f4..1fb5cd4026 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -463,7 +463,7 @@ other input. Valgrind is a programming tool for memory debugging, memory leak detection, and profiling. The repo contains a Valgrind suppressions file -([`valgrind.supp`](https://github.com/BGL/BGL/blob/master/contrib/valgrind.supp)) +([`valgrind.supp`](https://github.com/BitgesellOfficial/bitgesell/blob/master/contrib/valgrind.supp)) which includes known Valgrind warnings in our dependencies that cannot be fixed in-tree. Example use: diff --git a/doc/release-notes/release-notes-0.10.0.md b/doc/release-notes/release-notes-0.10.0.md index c131772de0..85ea0f0731 100644 --- a/doc/release-notes/release-notes-0.10.0.md +++ b/doc/release-notes/release-notes-0.10.0.md @@ -7,7 +7,7 @@ bug fixes. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues Upgrading and downgrading ========================= @@ -230,7 +230,7 @@ bindings such as [python-BGLlib](https://pypi.python.org/pypi/python-BGLlib) or alternative node implementations. This library is called `libBGLconsensus.so` (or, `.dll` for Windows). -Its interface is defined in the C header [BGLconsensus.h](https://github.com/BGL/BGL/blob/0.10/src/script/BGLconsensus.h). +Its interface is defined in the C header [BGLconsensus.h](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/script/BGLconsensus.h). In its initial version the API includes two functions: diff --git a/doc/release-notes/release-notes-0.10.1.md b/doc/release-notes/release-notes-0.10.1.md index 5961b8d49e..8c28320f33 100644 --- a/doc/release-notes/release-notes-0.10.1.md +++ b/doc/release-notes/release-notes-0.10.1.md @@ -7,7 +7,7 @@ updates. It is recommended to upgrade to this version. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= diff --git a/doc/release-notes/release-notes-0.10.2.md b/doc/release-notes/release-notes-0.10.2.md index f29385d92e..b4fee60a9f 100644 --- a/doc/release-notes/release-notes-0.10.2.md +++ b/doc/release-notes/release-notes-0.10.2.md @@ -7,7 +7,7 @@ updates. It is recommended to upgrade to this version. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= diff --git a/doc/release-notes/release-notes-0.10.3.md b/doc/release-notes/release-notes-0.10.3.md index 2c54cf418e..c8cc2319e8 100644 --- a/doc/release-notes/release-notes-0.10.3.md +++ b/doc/release-notes/release-notes-0.10.3.md @@ -7,7 +7,7 @@ updates. It is recommended to upgrade to this version as soon as possible. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= diff --git a/doc/release-notes/release-notes-0.10.4.md b/doc/release-notes/release-notes-0.10.4.md index 36cdd3d74a..e3dff3ca4c 100644 --- a/doc/release-notes/release-notes-0.10.4.md +++ b/doc/release-notes/release-notes-0.10.4.md @@ -8,7 +8,7 @@ recommended to upgrade to this version as soon as possible. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= diff --git a/doc/release-notes/release-notes-0.11.0.md b/doc/release-notes/release-notes-0.11.0.md index 0a6dd955a6..b2756aa40a 100644 --- a/doc/release-notes/release-notes-0.11.0.md +++ b/doc/release-notes/release-notes-0.11.0.md @@ -7,7 +7,7 @@ bug fixes. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= diff --git a/doc/release-notes/release-notes-0.11.2.md b/doc/release-notes/release-notes-0.11.2.md index a1b2199cbc..993be89890 100644 --- a/doc/release-notes/release-notes-0.11.2.md +++ b/doc/release-notes/release-notes-0.11.2.md @@ -8,7 +8,7 @@ recommended to upgrade to this version as soon as possible. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= diff --git a/doc/release-notes/release-notes-0.12.0.md b/doc/release-notes/release-notes-0.12.0.md index 0822636d83..8ec9e83599 100644 --- a/doc/release-notes/release-notes-0.12.0.md +++ b/doc/release-notes/release-notes-0.12.0.md @@ -6,7 +6,7 @@ This is a new major version release, bringing new features and other improvement Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -331,7 +331,7 @@ practice. In future releases, a higher value may also help the network as a whole: stored blocks could be served to other nodes. For further information about pruning, you may also consult the [release -notes of v0.11.0](https://github.com/BGL/BGL/blob/v0.11.0/doc/release-notes.md#block-file-pruning). +notes of v0.11.0](https://github.com/BitgesellOfficial/bitgesell/blob/master/doc/release-notes.md#block-file-pruning). `NODE_BLOOM` service bit ------------------------ diff --git a/doc/release-notes/release-notes-0.12.1.md b/doc/release-notes/release-notes-0.12.1.md index 83d3b08a45..12ffd01bc1 100644 --- a/doc/release-notes/release-notes-0.12.1.md +++ b/doc/release-notes/release-notes-0.12.1.md @@ -7,7 +7,7 @@ softfork, various bugfixes and updated translations. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= diff --git a/doc/release-notes/release-notes-0.13.0.md b/doc/release-notes/release-notes-0.13.0.md index 0bd58b395a..d398261560 100644 --- a/doc/release-notes/release-notes-0.13.0.md +++ b/doc/release-notes/release-notes-0.13.0.md @@ -7,7 +7,7 @@ and performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.13.1.md b/doc/release-notes/release-notes-0.13.1.md index 6c300d510d..5fba8a694a 100644 --- a/doc/release-notes/release-notes-0.13.1.md +++ b/doc/release-notes/release-notes-0.13.1.md @@ -8,7 +8,7 @@ updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.13.2.md b/doc/release-notes/release-notes-0.13.2.md index f8d9cb0bd1..94665cd34e 100644 --- a/doc/release-notes/release-notes-0.13.2.md +++ b/doc/release-notes/release-notes-0.13.2.md @@ -7,7 +7,7 @@ performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.14.0.md b/doc/release-notes/release-notes-0.14.0.md index 6155cd5be2..8769e2b9eb 100644 --- a/doc/release-notes/release-notes-0.14.0.md +++ b/doc/release-notes/release-notes-0.14.0.md @@ -7,7 +7,7 @@ and performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: @@ -96,7 +96,7 @@ ZMQ On Windows Previously the ZeroMQ notification system was unavailable on Windows due to various issues with ZMQ. These have been fixed upstream and -now ZMQ can be used on Windows. Please see [this document](https://github.com/BGL/BGL/blob/master/doc/zmq.md) for +now ZMQ can be used on Windows. Please see [this document](https://github.com/BitgesellOfficial/bitgesell/blob/master/doc/zmq.md) for help with using ZMQ in general. Nested RPC Commands in Debug Console diff --git a/doc/release-notes/release-notes-0.14.1.md b/doc/release-notes/release-notes-0.14.1.md index 2b69c32e14..cfe32b947e 100644 --- a/doc/release-notes/release-notes-0.14.1.md +++ b/doc/release-notes/release-notes-0.14.1.md @@ -7,7 +7,7 @@ performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.14.2.md b/doc/release-notes/release-notes-0.14.2.md index a36318eba2..a4edd585ae 100644 --- a/doc/release-notes/release-notes-0.14.2.md +++ b/doc/release-notes/release-notes-0.14.2.md @@ -7,7 +7,7 @@ performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.14.3.md b/doc/release-notes/release-notes-0.14.3.md index 56ed5f6d24..639e6ac424 100644 --- a/doc/release-notes/release-notes-0.14.3.md +++ b/doc/release-notes/release-notes-0.14.3.md @@ -7,7 +7,7 @@ performance improvements. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.15.0.1.md b/doc/release-notes/release-notes-0.15.0.1.md index 49bb29c870..178f8d5537 100644 --- a/doc/release-notes/release-notes-0.15.0.1.md +++ b/doc/release-notes/release-notes-0.15.0.1.md @@ -10,7 +10,7 @@ This is a minor bug fix for 0.15.0. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.15.0.md b/doc/release-notes/release-notes-0.15.0.md index f2a00aab3b..aaeda737e7 100644 --- a/doc/release-notes/release-notes-0.15.0.md +++ b/doc/release-notes/release-notes-0.15.0.md @@ -7,7 +7,7 @@ and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.15.1.md b/doc/release-notes/release-notes-0.15.1.md index 61a8a5834c..336020c786 100644 --- a/doc/release-notes/release-notes-0.15.1.md +++ b/doc/release-notes/release-notes-0.15.1.md @@ -11,7 +11,7 @@ performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.15.2.md b/doc/release-notes/release-notes-0.15.2.md index 8403de41f5..549de22a62 100644 --- a/doc/release-notes/release-notes-0.15.2.md +++ b/doc/release-notes/release-notes-0.15.2.md @@ -7,7 +7,7 @@ performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.16.0.md b/doc/release-notes/release-notes-0.16.0.md index c3119714c1..9ca20a72df 100644 --- a/doc/release-notes/release-notes-0.16.0.md +++ b/doc/release-notes/release-notes-0.16.0.md @@ -7,7 +7,7 @@ and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.16.1.md b/doc/release-notes/release-notes-0.16.1.md index 58a730cca5..4c855835d7 100644 --- a/doc/release-notes/release-notes-0.16.1.md +++ b/doc/release-notes/release-notes-0.16.1.md @@ -7,7 +7,7 @@ as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.16.2.md b/doc/release-notes/release-notes-0.16.2.md index c20f8a1ce4..ee18ff1d14 100644 --- a/doc/release-notes/release-notes-0.16.2.md +++ b/doc/release-notes/release-notes-0.16.2.md @@ -7,7 +7,7 @@ as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.16.3.md b/doc/release-notes/release-notes-0.16.3.md index 1f8486bab8..12e63f3348 100644 --- a/doc/release-notes/release-notes-0.16.3.md +++ b/doc/release-notes/release-notes-0.16.3.md @@ -6,7 +6,7 @@ This is a new minor version release, with various bugfixes. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.17.0.1.md b/doc/release-notes/release-notes-0.17.0.1.md index 5dcb3dbbc3..1b5645a309 100644 --- a/doc/release-notes/release-notes-0.17.0.1.md +++ b/doc/release-notes/release-notes-0.17.0.1.md @@ -6,7 +6,7 @@ This release provides a minor bug fix for 0.17.0. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.17.0.md b/doc/release-notes/release-notes-0.17.0.md index 52ffad45ab..ebf156a1ec 100644 --- a/doc/release-notes/release-notes-0.17.0.md +++ b/doc/release-notes/release-notes-0.17.0.md @@ -7,7 +7,7 @@ and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.17.1.md b/doc/release-notes/release-notes-0.17.1.md index dce454480e..b428d6c633 100644 --- a/doc/release-notes/release-notes-0.17.1.md +++ b/doc/release-notes/release-notes-0.17.1.md @@ -11,7 +11,7 @@ and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.18.0.md b/doc/release-notes/release-notes-0.18.0.md index 00f3e83ab4..8acee23111 100644 --- a/doc/release-notes/release-notes-0.18.0.md +++ b/doc/release-notes/release-notes-0.18.0.md @@ -7,7 +7,7 @@ fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.18.1.md b/doc/release-notes/release-notes-0.18.1.md index bd8b0fadfc..7d45db39d8 100644 --- a/doc/release-notes/release-notes-0.18.1.md +++ b/doc/release-notes/release-notes-0.18.1.md @@ -7,7 +7,7 @@ fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.19.0.1.md b/doc/release-notes/release-notes-0.19.0.1.md index cc88a3657f..800de83da3 100644 --- a/doc/release-notes/release-notes-0.19.0.1.md +++ b/doc/release-notes/release-notes-0.19.0.1.md @@ -7,7 +7,7 @@ improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/doc/release-notes/release-notes-0.3.20.md b/doc/release-notes/release-notes-0.3.20.md index 12855a5aec..5faaeba131 100644 --- a/doc/release-notes/release-notes-0.3.20.md +++ b/doc/release-notes/release-notes-0.3.20.md @@ -1,6 +1,6 @@ Please checkout the git integration branch from: -https://github.com/BGL/BGL +https://github.com/BitgesellOfficial/bitgesell ... and help test. The new features that need testing are: @@ -19,4 +19,4 @@ Bug fixes that also need testing: This needs more testing on Windows! Please drop me a quick private message, email, or IRC message if you are able to do some testing. If you find bugs, please open an issue at: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues diff --git a/doc/release-notes/release-notes-0.4.3.md b/doc/release-notes/release-notes-0.4.3.md index b3fb4eca5d..81005a2d5d 100644 --- a/doc/release-notes/release-notes-0.4.3.md +++ b/doc/release-notes/release-notes-0.4.3.md @@ -6,7 +6,7 @@ This is a bugfix-only release based on 0.4.0. Please note that the wxBGL GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. Please report bugs for the daemon only using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.4.3#.tar.gz diff --git a/doc/release-notes/release-notes-0.4.4.md b/doc/release-notes/release-notes-0.4.4.md index 3203de8cec..ec4d184e20 100644 --- a/doc/release-notes/release-notes-0.4.4.md +++ b/doc/release-notes/release-notes-0.4.4.md @@ -6,7 +6,7 @@ This is a bugfix-only release based on 0.4.0. Please note that the wxBGL GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. Please report bugs for the daemon only using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.4.4#.tar.gz diff --git a/doc/release-notes/release-notes-0.5.0.md b/doc/release-notes/release-notes-0.5.0.md index 8cdf33f2a8..2c42f08f70 100644 --- a/doc/release-notes/release-notes-0.5.0.md +++ b/doc/release-notes/release-notes-0.5.0.md @@ -7,7 +7,7 @@ This release include German, Spanish, Spanish-Castilian, Norwegian and Dutch tra https://www.transifex.net/projects/p/BGL/ Please report bugs using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues For Ubuntu users, there is a new ppa maintained by Matt Corallo which you can add to your system so that it will automatically keep BGL up-to-date. Just type "sudo apt-add-repository ppa:BGL/BGL" in your terminal, then install the BGL-qt package. diff --git a/doc/release-notes/release-notes-0.5.1.md b/doc/release-notes/release-notes-0.5.1.md index 061c135877..ac996c226d 100644 --- a/doc/release-notes/release-notes-0.5.1.md +++ b/doc/release-notes/release-notes-0.5.1.md @@ -9,7 +9,7 @@ More translations are welcome; join the project at Transifex if you can help: https://www.transifex.net/projects/p/BGL/ Please report bugs using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues Project source code is hosted at github; we are no longer distributing .tar.gz files here, you can get them diff --git a/doc/release-notes/release-notes-0.5.2.md b/doc/release-notes/release-notes-0.5.2.md index 83bc73da6a..eed88b00d8 100644 --- a/doc/release-notes/release-notes-0.5.2.md +++ b/doc/release-notes/release-notes-0.5.2.md @@ -4,7 +4,7 @@ http://sourceforge.net/projects/BGL/files/BGL/BGL-0.5.2/ This is a bugfix-only release based on 0.5.1. Please report bugs using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.5.2#.tar.gz diff --git a/doc/release-notes/release-notes-0.5.3.md b/doc/release-notes/release-notes-0.5.3.md index c5b647fbd1..2d693b49aa 100644 --- a/doc/release-notes/release-notes-0.5.3.md +++ b/doc/release-notes/release-notes-0.5.3.md @@ -5,7 +5,7 @@ This is a bugfix-only release based on 0.5.1. It also includes a few protocol updates. Please report bugs using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.5.3#.tar.gz diff --git a/doc/release-notes/release-notes-0.5.4.md b/doc/release-notes/release-notes-0.5.4.md index 7c60ce7366..0c73f6ec05 100644 --- a/doc/release-notes/release-notes-0.5.4.md +++ b/doc/release-notes/release-notes-0.5.4.md @@ -5,7 +5,7 @@ NOTE: 0.5.4rc3 is being renamed to 0.5.4 final with no changes. This is a bugfix-only release in the 0.5.x series, plus a few protocol updates. Please report bugs using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.5.4#.tar.gz diff --git a/doc/release-notes/release-notes-0.6.0.md b/doc/release-notes/release-notes-0.6.0.md index 96795f6751..21431ddad1 100644 --- a/doc/release-notes/release-notes-0.6.0.md +++ b/doc/release-notes/release-notes-0.6.0.md @@ -7,7 +7,7 @@ project at Transifex to help: https://www.transifex.net/projects/p/BGL/ Please report bugs using the issue tracker at github: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues Project source code is hosted at github; we are no longer distributing .tar.gz files here, you can get them diff --git a/doc/release-notes/release-notes-0.6.2.md b/doc/release-notes/release-notes-0.6.2.md index 16165ec699..cf87d63761 100644 --- a/doc/release-notes/release-notes-0.6.2.md +++ b/doc/release-notes/release-notes-0.6.2.md @@ -4,7 +4,7 @@ http://sourceforge.net/projects/BGL/files/BGL/BGL-0.6.2/ This is a bug-fix and code-cleanup release, with no major new features. Please report bugs using the github issue tracker at: -https://github.com/BGL/BGL/issues +https://github.com/BitgesellOfficial/bitgesell/issues NOTABLE CHANGES diff --git a/doc/release-notes/release-notes-0.6.3.md b/doc/release-notes/release-notes-0.6.3.md index 2ba112e04d..30f441fc99 100644 --- a/doc/release-notes/release-notes-0.6.3.md +++ b/doc/release-notes/release-notes-0.6.3.md @@ -4,7 +4,7 @@ BGL version 0.6.3 is now available for download at: This is a bug-fix release, with no new features. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues CHANGE SUMMARY diff --git a/doc/release-notes/release-notes-0.7.0.md b/doc/release-notes/release-notes-0.7.0.md index e3a76ead9d..c34e3f16f4 100644 --- a/doc/release-notes/release-notes-0.7.0.md +++ b/doc/release-notes/release-notes-0.7.0.md @@ -5,7 +5,7 @@ We recommend that everybody running prior versions of BGLd/BGL-Qt upgrade to this release, except for users running Mac OSX 10.5. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues Project source code is hosted at github; you can get source-only tarballs/zipballs directly from there: diff --git a/doc/release-notes/release-notes-0.7.1.md b/doc/release-notes/release-notes-0.7.1.md index e482b90cf5..b17784700a 100644 --- a/doc/release-notes/release-notes-0.7.1.md +++ b/doc/release-notes/release-notes-0.7.1.md @@ -4,7 +4,7 @@ BGL version 0.7.1 is now available from: This is a bug-fix minor release. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues Project source code is hosted at github; you can get source-only tarballs/zipballs directly from there: diff --git a/doc/release-notes/release-notes-0.7.2.md b/doc/release-notes/release-notes-0.7.2.md index 7b029a08d5..b7cfc53dca 100644 --- a/doc/release-notes/release-notes-0.7.2.md +++ b/doc/release-notes/release-notes-0.7.2.md @@ -4,7 +4,7 @@ BGL version 0.7.2 is now available from: This is a bug-fix minor release. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade -------------- diff --git a/doc/release-notes/release-notes-0.8.0.md b/doc/release-notes/release-notes-0.8.0.md index 548a1905fb..15c3a74647 100644 --- a/doc/release-notes/release-notes-0.8.0.md +++ b/doc/release-notes/release-notes-0.8.0.md @@ -5,7 +5,7 @@ This is a major release designed to improve performance and handle the increasing volume of transactions on the network. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade -------------- diff --git a/doc/release-notes/release-notes-0.8.1.md b/doc/release-notes/release-notes-0.8.1.md index e24ac5721a..3e47c8a8a7 100644 --- a/doc/release-notes/release-notes-0.8.1.md +++ b/doc/release-notes/release-notes-0.8.1.md @@ -5,7 +5,7 @@ This is a maintenance release that adds a new network rule to avoid a chain-forking incompatibility with versions 0.7.2 and earlier. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade diff --git a/doc/release-notes/release-notes-0.8.2.md b/doc/release-notes/release-notes-0.8.2.md index 4e483d40be..a99fea1348 100644 --- a/doc/release-notes/release-notes-0.8.2.md +++ b/doc/release-notes/release-notes-0.8.2.md @@ -5,7 +5,7 @@ This is a maintenance release that fixes many bugs and includes a few small new features. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade diff --git a/doc/release-notes/release-notes-0.8.3.md b/doc/release-notes/release-notes-0.8.3.md index deed4cc27e..507d8ba097 100644 --- a/doc/release-notes/release-notes-0.8.3.md +++ b/doc/release-notes/release-notes-0.8.3.md @@ -5,7 +5,7 @@ This is a maintenance release to fix a denial-of-service attack that can cause nodes to crash. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues 0.8.3 Release notes diff --git a/doc/release-notes/release-notes-0.8.4.md b/doc/release-notes/release-notes-0.8.4.md index 0bc6fae23a..3611be7fc7 100644 --- a/doc/release-notes/release-notes-0.8.4.md +++ b/doc/release-notes/release-notes-0.8.4.md @@ -5,7 +5,7 @@ This is a maintenance release to fix a critical bug and three security issues; we urge all users to upgrade. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade diff --git a/doc/release-notes/release-notes-0.8.5.md b/doc/release-notes/release-notes-0.8.5.md index a9b4026507..c9aa1db5dd 100644 --- a/doc/release-notes/release-notes-0.8.5.md +++ b/doc/release-notes/release-notes-0.8.5.md @@ -5,7 +5,7 @@ This is a maintenance release to fix a critical bug; we urge all users to upgrade. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade diff --git a/doc/release-notes/release-notes-0.8.6.md b/doc/release-notes/release-notes-0.8.6.md index 33fcf0ecd2..d7ffe47ee6 100644 --- a/doc/release-notes/release-notes-0.8.6.md +++ b/doc/release-notes/release-notes-0.8.6.md @@ -6,7 +6,7 @@ This is a maintenance release to fix a critical bug; we urge all users to upgrad Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade -------------- diff --git a/doc/release-notes/release-notes-0.9.0.md b/doc/release-notes/release-notes-0.9.0.md index a30af2958d..10d6201091 100644 --- a/doc/release-notes/release-notes-0.9.0.md +++ b/doc/release-notes/release-notes-0.9.0.md @@ -7,7 +7,7 @@ bug fixes. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade -------------- diff --git a/doc/release-notes/release-notes-0.9.1.md b/doc/release-notes/release-notes-0.9.1.md index c78c15416f..54d3570249 100644 --- a/doc/release-notes/release-notes-0.9.1.md +++ b/doc/release-notes/release-notes-0.9.1.md @@ -13,7 +13,7 @@ hostile hosts. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade -------------- diff --git a/doc/release-notes/release-notes-0.9.2.1.md b/doc/release-notes/release-notes-0.9.2.1.md index bf35e87442..65630d2014 100644 --- a/doc/release-notes/release-notes-0.9.2.1.md +++ b/doc/release-notes/release-notes-0.9.2.1.md @@ -8,7 +8,7 @@ Upgrading to this release is recommended. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade -------------- diff --git a/doc/release-notes/release-notes-0.9.2.md b/doc/release-notes/release-notes-0.9.2.md index 83e66166be..fafb398994 100644 --- a/doc/release-notes/release-notes-0.9.2.md +++ b/doc/release-notes/release-notes-0.9.2.md @@ -8,7 +8,7 @@ Upgrading to this release is recommended. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade -------------- diff --git a/doc/release-notes/release-notes-0.9.3.md b/doc/release-notes/release-notes-0.9.3.md index ac6b333013..92e7551a36 100644 --- a/doc/release-notes/release-notes-0.9.3.md +++ b/doc/release-notes/release-notes-0.9.3.md @@ -7,7 +7,7 @@ translations. Upgrading to this release is recommended. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues Upgrading and downgrading ========================== diff --git a/doc/release-notes/release-notes-0.9.4.md b/doc/release-notes/release-notes-0.9.4.md index 3450fe0db1..b109f5b1bf 100644 --- a/doc/release-notes/release-notes-0.9.4.md +++ b/doc/release-notes/release-notes-0.9.4.md @@ -7,7 +7,7 @@ translations. Upgrading to this release is recommended. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade =============== diff --git a/doc/release-notes/release-notes-0.9.5.md b/doc/release-notes/release-notes-0.9.5.md index 8584ef4276..64f6851ea1 100644 --- a/doc/release-notes/release-notes-0.9.5.md +++ b/doc/release-notes/release-notes-0.9.5.md @@ -8,7 +8,7 @@ recommended. Please report bugs using the issue tracker at github: - https://github.com/BGL/BGL/issues + https://github.com/BitgesellOfficial/bitgesell/issues How to Upgrade =============== diff --git a/doc/release-process.md b/doc/release-process.md index 870cc9a17c..ffa31ab08e 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -87,9 +87,16 @@ Install Guix using one of the installation methods detailed in Check out the source code in the following directory hierarchy. cd /path/to/your/toplevel/build +<<<<<<< HEAD git clone https://github.com/bitcoin-core/guix.sigs.git git clone https://github.com/bitcoin-core/bitcoin-detached-sigs.git git clone https://github.com/bitcoin/bitcoin.git +======= + git clone https://github.com/BGL-core/gitian.sigs.git + git clone https://github.com/BGL-core/BGL-detached-sigs.git + git clone https://github.com/devrandom/gitian-builder.git + git clone https://github.com/BitgesellOfficial/bitgesell.git +>>>>>>> fix broken URLs to the bitgesell repo ### Write the release notes @@ -281,7 +288,11 @@ cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc - Archive the release notes for the new version to `doc/release-notes/` (branch `master` and branch of the release) +<<<<<<< HEAD - Create a [new GitHub release](https://github.com/bitcoin/bitcoin/releases/new) with a link to the archived release notes +======= + - Create a [new GitHub release](https://github.com/BitgesellOfficial/bitgesell/releases/new) with a link to the archived release notes +>>>>>>> fix broken URLs to the bitgesell repo - Announce the release: From 6cbb5e64f7647418d01dc1649dcf0b4bd320ad73 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 00:22:02 +0100 Subject: [PATCH 07/45] reverting Bitcoin pre-fork release notes to their original content - the over-zealous "bitcoin" -> "BGL" search-replace has resulted in these making no sense, and containing many broken links --- doc/release-notes/release-notes-0.10.0.md | 90 +++++------ doc/release-notes/release-notes-0.10.1.md | 16 +- doc/release-notes/release-notes-0.10.2.md | 18 +-- doc/release-notes/release-notes-0.10.3.md | 30 ++-- doc/release-notes/release-notes-0.10.4.md | 34 ++-- doc/release-notes/release-notes-0.11.0.md | 42 ++--- doc/release-notes/release-notes-0.11.1.md | 32 ++-- doc/release-notes/release-notes-0.11.2.md | 38 ++--- doc/release-notes/release-notes-0.12.0.md | 102 ++++++------ doc/release-notes/release-notes-0.12.1.md | 40 ++--- doc/release-notes/release-notes-0.13.0.md | 80 +++++----- doc/release-notes/release-notes-0.13.1.md | 82 +++++----- doc/release-notes/release-notes-0.13.2.md | 20 +-- doc/release-notes/release-notes-0.14.0.md | 60 +++---- doc/release-notes/release-notes-0.14.1.md | 18 +-- doc/release-notes/release-notes-0.14.2.md | 20 +-- doc/release-notes/release-notes-0.14.3.md | 18 +-- doc/release-notes/release-notes-0.15.0.1.md | 20 +-- doc/release-notes/release-notes-0.15.0.md | 128 +++++++-------- doc/release-notes/release-notes-0.15.1.md | 32 ++-- doc/release-notes/release-notes-0.15.2.md | 22 +-- doc/release-notes/release-notes-0.16.0.md | 52 +++---- doc/release-notes/release-notes-0.16.1.md | 22 +-- doc/release-notes/release-notes-0.16.2.md | 18 +-- doc/release-notes/release-notes-0.16.3.md | 20 +-- doc/release-notes/release-notes-0.17.0.1.md | 8 +- doc/release-notes/release-notes-0.17.0.md | 102 ++++++------ doc/release-notes/release-notes-0.17.1.md | 24 +-- doc/release-notes/release-notes-0.18.0.md | 164 ++++++++++---------- doc/release-notes/release-notes-0.18.1.md | 22 +-- doc/release-notes/release-notes-0.19.0.1.md | 106 ++++++------- doc/release-notes/release-notes-0.20.0.md | 6 +- doc/release-notes/release-notes-0.20.1.md | 2 +- doc/release-notes/release-notes-0.21.0.md | 2 +- doc/release-notes/release-notes-0.3.12.md | 4 +- doc/release-notes/release-notes-0.3.13.md | 6 +- doc/release-notes/release-notes-0.3.14.md | 2 +- doc/release-notes/release-notes-0.3.15.md | 2 +- doc/release-notes/release-notes-0.3.18.md | 2 +- doc/release-notes/release-notes-0.3.20.2.md | 8 +- doc/release-notes/release-notes-0.3.20.md | 16 +- doc/release-notes/release-notes-0.3.21.md | 16 +- doc/release-notes/release-notes-0.3.22.md | 4 +- doc/release-notes/release-notes-0.3.23.md | 6 +- doc/release-notes/release-notes-0.3.24.md | 10 +- doc/release-notes/release-notes-0.4.0.md | 48 +++--- doc/release-notes/release-notes-0.4.1.md | 30 ++-- doc/release-notes/release-notes-0.4.3.md | 10 +- doc/release-notes/release-notes-0.4.4.md | 10 +- doc/release-notes/release-notes-0.4.6.md | 22 +-- doc/release-notes/release-notes-0.5.0.md | 38 ++--- doc/release-notes/release-notes-0.5.1.md | 22 +-- doc/release-notes/release-notes-0.5.2.md | 8 +- doc/release-notes/release-notes-0.5.3.md | 20 +-- doc/release-notes/release-notes-0.5.4.md | 12 +- doc/release-notes/release-notes-0.5.5.md | 22 +-- doc/release-notes/release-notes-0.6.0.md | 42 ++--- doc/release-notes/release-notes-0.6.2.md | 6 +- doc/release-notes/release-notes-0.6.3.md | 12 +- doc/release-notes/release-notes-0.7.0.md | 34 ++-- doc/release-notes/release-notes-0.7.1.md | 18 +-- doc/release-notes/release-notes-0.7.2.md | 8 +- doc/release-notes/release-notes-0.8.0.md | 10 +- doc/release-notes/release-notes-0.8.1.md | 6 +- doc/release-notes/release-notes-0.8.2.md | 14 +- doc/release-notes/release-notes-0.8.3.md | 4 +- doc/release-notes/release-notes-0.8.4.md | 14 +- doc/release-notes/release-notes-0.8.5.md | 6 +- doc/release-notes/release-notes-0.8.6.md | 10 +- doc/release-notes/release-notes-0.9.0.md | 48 +++--- doc/release-notes/release-notes-0.9.1.md | 12 +- doc/release-notes/release-notes-0.9.2.1.md | 10 +- doc/release-notes/release-notes-0.9.2.md | 10 +- doc/release-notes/release-notes-0.9.3.md | 12 +- doc/release-notes/release-notes-0.9.4.md | 20 +-- doc/release-notes/release-notes-0.9.5.md | 14 +- 76 files changed, 1059 insertions(+), 1059 deletions(-) diff --git a/doc/release-notes/release-notes-0.10.0.md b/doc/release-notes/release-notes-0.10.0.md index 85ea0f0731..5cb4c09c8f 100644 --- a/doc/release-notes/release-notes-0.10.0.md +++ b/doc/release-notes/release-notes-0.10.0.md @@ -1,6 +1,6 @@ -BGL Core version 0.10.0 is now available from: +Bitcoin Core version 0.10.0 is now available from: - https://BGL.org/bin/0.10.0/ + https://bitcoin.org/bin/0.10.0/ This is a new major version release, bringing both new features and bug fixes. @@ -17,15 +17,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrading warning --------------------- Because release 0.10.0 makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with older versions of BGL Core or other software: +backwards-compatible with older versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -50,7 +50,7 @@ Notable changes Faster synchronization ---------------------- -BGL Core now uses 'headers-first synchronization'. This means that we first +Bitcoin Core now uses 'headers-first synchronization'. This means that we first ask peers for block headers (a total of 27 megabytes, as of December 2014) and validate those. In a second stage, when the headers have been discovered, we download the blocks. However, as we already know about the whole chain in @@ -172,7 +172,7 @@ improved by making the signatures constant time and deterministic. This change is a result of switching signing to use libsecp256k1 instead of OpenSSL. Libsecp256k1 is a cryptographic library -optimized for the curve BGL uses which was created by BGL +optimized for the curve Bitcoin uses which was created by Bitcoin Core developer Pieter Wuille. There exist attacks[1] against most ECC implementations where an @@ -187,7 +187,7 @@ long time, but this functionality has still not made its way into a released version of OpenSSL. Libsecp256k1 achieves significantly stronger protection: As far as we're aware this is the only deployed implementation of constant time signing for -the curve BGL uses and we have reason to believe that +the curve Bitcoin uses and we have reason to believe that libsecp256k1 is better tested and more thoroughly reviewed than the implementation in OpenSSL. @@ -222,21 +222,21 @@ addresses need to added to the wallet before the payment, though. Consensus library ----------------- -Starting from 0.10.0, the BGL Core distribution includes a consensus library. +Starting from 0.10.0, the Bitcoin Core distribution includes a consensus library. The purpose of this library is to make the verification functionality that is -critical to BGL's consensus available to other applications, e.g. to language -bindings such as [python-BGLlib](https://pypi.python.org/pypi/python-BGLlib) or +critical to Bitcoin's consensus available to other applications, e.g. to language +bindings such as [python-bitcoinlib](https://pypi.python.org/pypi/python-bitcoinlib) or alternative node implementations. -This library is called `libBGLconsensus.so` (or, `.dll` for Windows). -Its interface is defined in the C header [BGLconsensus.h](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/script/BGLconsensus.h). +This library is called `libbitcoinconsensus.so` (or, `.dll` for Windows). +Its interface is defined in the C header [bitcoinconsensus.h](https://github.com/bitcoin/bitcoin/blob/0.10/src/script/bitcoinconsensus.h). In its initial version the API includes two functions: -- `BGLconsensus_verify_script` verifies a script. It returns whether the indicated input of the provided serialized transaction +- `bitcoinconsensus_verify_script` verifies a script. It returns whether the indicated input of the provided serialized transaction correctly spends the passed scriptPubKey under additional constraints indicated by flags -- `BGLconsensus_version` returns the API version, currently at an experimental `0` +- `bitcoinconsensus_version` returns the API version, currently at an experimental `0` The functionality is planned to be extended to e.g. UTXO management in upcoming releases, but the interface for existing methods should remain stable. @@ -247,25 +247,25 @@ Standard script rules relaxed for P2SH addresses The IsStandard() rules have been almost completely removed for P2SH redemption scripts, allowing applications to make use of any valid script type, such as "n-of-m OR y", hash-locked oracle addresses, etc. -While the BGL protocol has always supported these types of script, +While the Bitcoin protocol has always supported these types of script, actually using them on mainnet has been previously inconvenient as -standard BGL Core nodes wouldn't relay them to miners, nor would +standard Bitcoin Core nodes wouldn't relay them to miners, nor would most miners include them in blocks they mined. -BGL-tx +bitcoin-tx ---------- -It has been observed that many of the RPC functions offered by BGLd are -"pure functions", and operate independently of the BGLd wallet. This +It has been observed that many of the RPC functions offered by bitcoind are +"pure functions", and operate independently of the bitcoind wallet. This included many of the RPC "raw transaction" API functions, such as createrawtransaction. -BGL-tx is a newly introduced command line utility designed to enable easy -manipulation of BGL transactions. A summary of its operation may be -obtained via "BGL-tx --help" Transactions may be created or signed in a +bitcoin-tx is a newly introduced command line utility designed to enable easy +manipulation of bitcoin transactions. A summary of its operation may be +obtained via "bitcoin-tx --help" Transactions may be created or signed in a manner similar to the RPC raw tx API. Transactions may be updated, deleting inputs or outputs, or appending new inputs and outputs. Custom scripts may be -easily composed using a simple text notation, borrowed from the BGL test +easily composed using a simple text notation, borrowed from the bitcoin test suite. This tool may be used for experimenting with new transaction types, signing @@ -273,16 +273,16 @@ multi-party transactions, and many other uses. Long term, the goal is to deprecate and remove "pure function" RPC API calls, as those do not require a server round-trip to execute. -Other utilities "BGL-key" and "BGL-script" have been proposed, making +Other utilities "bitcoin-key" and "bitcoin-script" have been proposed, making key and script operations easily accessible via command line. Mining and relay policy enhancements ------------------------------------ -BGL Core's block templates are now for version 3 blocks only, and any mining +Bitcoin Core's block templates are now for version 3 blocks only, and any mining software relying on its `getblocktemplate` must be updated in parallel to use libblkmaker either version 0.4.2 or any version from 0.5.1 onward. -If you are solo mining, this will affect you the moment you upgrade BGL +If you are solo mining, this will affect you the moment you upgrade Bitcoin Core, which must be done prior to BIP66 achieving its 951/1001 status. If you are mining with the stratum mining protocol: this does not affect you. If you are mining with the getblocktemplate protocol to a pool: this will affect @@ -292,10 +292,10 @@ achieving its 951/1001 status. The `prioritisetransaction` RPC method has been added to enable miners to manipulate the priority of transactions on an individual basis. -BGL Core now supports BIP 22 long polling, so mining software can be +Bitcoin Core now supports BIP 22 long polling, so mining software can be notified immediately of new templates rather than having to poll periodically. -Support for BIP 23 block proposals is now available in BGL Core's +Support for BIP 23 block proposals is now available in Bitcoin Core's `getblocktemplate` method. This enables miners to check the basic validity of their next block before expending work on it, reducing risks of accidental hardforks or mining invalid blocks. @@ -313,9 +313,9 @@ AllowFreeThreshold(), in which case they are relayed subject to the rate limiter BIP 66: strict DER encoding for signatures ------------------------------------------ -BGL Core 0.10 implements BIP 66, which introduces block version 3, and a new +Bitcoin Core 0.10 implements BIP 66, which introduces block version 3, and a new consensus rule, which prohibits non-DER signatures. Such transactions have been -non-standard since BGL v0.8.0 (released in February 2013), but were +non-standard since Bitcoin v0.8.0 (released in February 2013), but were technically still permitted inside blocks. This change breaks the dependency on OpenSSL's signature parsing, and is @@ -337,10 +337,10 @@ Detailed release notes follow. This overview includes changes that affect extern behavior, not code moves, refactors or string updates. RPC: -- `f923c07` Support IPv6 lookup in BGL-cli even when IPv6 only bound on localhost +- `f923c07` Support IPv6 lookup in bitcoin-cli even when IPv6 only bound on localhost - `b641c9c` Fix addnode "onetry": Connect with OpenNetworkConnection - `171ca77` estimatefee / estimatepriority RPC methods -- `b750cf1` Remove cli functionality from BGLd +- `b750cf1` Remove cli functionality from bitcoind - `f6984e8` Add "chain" to getmininginfo, improve help in getblockchaininfo - `99ddc6c` Add nLocalServices info to RPC getinfo - `cf0c47b` Remove getwork() RPC call @@ -391,7 +391,7 @@ Command-line options: - `4278b1d` Clarify error message when invalid -rpcallowip - `6b407e4` -datadir is now allowed in config files - `bdd5b58` Add option `-sysperms` to disable 077 umask (create new files with system default umask) -- `cbe39a3` Add "BGL-tx" command line utility and supporting modules +- `cbe39a3` Add "bitcoin-tx" command line utility and supporting modules - `dbca89b` Trigger -alertnotify if network is upgrading without you - `ad96e7c` Make -reindex cope with out-of-order blocks - `16d5194` Skip reindexed blocks individually @@ -465,7 +465,7 @@ P2P protocol and network code: - `35e408f` Regard connection failures as attempt for addrman - `a3a7317` Introduce 10 minute block download timeout - `3022e7d` Require sufficent priority for relay of free transactions -- `58fda4d` Update seed IPs, based on BGL.sipa.be crawler data +- `58fda4d` Update seed IPs, based on bitcoin.sipa.be crawler data - `18021d0` Remove bitnodes.io from dnsseeds. Validation: @@ -492,13 +492,13 @@ Build system: - `9ce0774` build: Fix windows configure when using --with-qt-libdir - `ea96475` build: Add mention of --disable-wallet to bdb48 error messages - `1dec09b` depends: add shared dependency builder -- `c101c76` build: Add --with-utils (BGL-cli and BGL-tx, default=yes). Help string consistency tweaks. Target sanity check fix +- `c101c76` build: Add --with-utils (bitcoin-cli and bitcoin-tx, default=yes). Help string consistency tweaks. Target sanity check fix - `e432a5f` build: add option for reducing exports (v2) - `6134b43` Fixing condition 'sabotaging' MSVC build - `af0bd5e` osx: fix signing to make Gatekeeper happy (again) - `a7d1f03` build: fix dynamic boost check when --with-boost= is used - `d5fd094` build: fix qt test build when libprotobuf is in a non-standard path -- `2cf5f16` Add libBGLconsensus library +- `2cf5f16` Add libbitcoinconsensus library - `914868a` build: add a deterministic dmg signer - `2d375fe` depends: bump openssl to 1.0.1k - `b7a4ecc` Build: Only check for boost when building code that requires it @@ -522,7 +522,7 @@ Wallet: GUI: - `c21c74b` osx: Fix missing dock menu with qt5 - `b90711c` Fix Transaction details shows wrong To: -- `516053c` Make links in 'About BGL Core' clickable +- `516053c` Make links in 'About Bitcoin Core' clickable - `bdc83e8` Ensure payment request network matches client network - `65f78a1` Add GUI view of peer information - `06a91d9` VerifyDB progress reporting @@ -539,7 +539,7 @@ GUI: - `7007402` Implement SI-style (thin space) thoudands separator - `91cce17` Use fixed-point arithmetic in amount spinbox - `bdba2dd` Remove an obscure option no-one cares about -- `bd0aa10` Replace the temporary file hack currently used to change BGL-Qt's dock icon (OS X) with a buffer-based solution +- `bd0aa10` Replace the temporary file hack currently used to change Bitcoin-Qt's dock icon (OS X) with a buffer-based solution - `94e1b9e` Re-work overviewpage UI - `8bfdc9a` Better looking trayicon - `b197bf3` disable tray interactions when client model set to 0 @@ -585,8 +585,8 @@ Tests: - `4cac5db` script tests: value with trailing 0x00 is true - `89101c6` script test: test case for 5-byte bools - `d2d9dc0` script tests: add tests for CHECKMULTISIG limits -- `d789386` Add "it works" test for BGL-tx -- `df4d61e` Add BGL-tx tests +- `d789386` Add "it works" test for bitcoin-tx +- `df4d61e` Add bitcoin-tx tests - `aa41ac2` Test IsPushOnly() with invalid push - `6022b5d` Make `script_{valid,invalid}.json` validation flags configurable - `8138cbe` Add automatic script test generation, and actual checksig tests @@ -598,7 +598,7 @@ Tests: - `2b62e17` Clearly separate PUSHDATA and numeric argument MINIMALDATA tests - `16d78bd` Add valid invert of invalid every numeric opcode tests - `f635269` tests: enable alertnotify test for Windows -- `7a41614` tests: allow rpc-tests to get filenames for BGLd and BGL-cli from the environment +- `7a41614` tests: allow rpc-tests to get filenames for bitcoind and bitcoin-cli from the environment - `5122ea7` tests: fix forknotify.py on windows - `fa7f8cd` tests: remove old pull-tester scripts - `7667850` tests: replace the old (unused since Travis) tests with new rpc test scripts @@ -624,7 +624,7 @@ Tests: Miscellaneous: - `122549f` Fix incorrect checkpoint data for testnet3 - `5bd02cf` Log used config file to debug.log on startup -- `68ba85f` Updated Debian example BGL.conf with config from wiki + removed some cruft and updated comments +- `68ba85f` Updated Debian example bitcoin.conf with config from wiki + removed some cruft and updated comments - `e5ee8f0` Remove -beta suffix - `38405ac` Add comment regarding experimental-use service bits - `be873f6` Issue warning if collecting RandSeed data failed @@ -635,7 +635,7 @@ Miscellaneous: - `cd01a5e` Enable paranoid corruption checks in LevelDB >= 1.16 - `9365937` Add comment about never updating nTimeOffset past 199 samples - `403c1bf` contrib: remove getwork-based pyminer (as getwork API call has been removed) -- `0c3e101` contrib: Added systemd .service file in order to help distributions integrate BGLd +- `0c3e101` contrib: Added systemd .service file in order to help distributions integrate bitcoind - `0a0878d` doc: Add new DNSseed policy - `2887bff` Update coding style and add .clang-format - `5cbda4f` Changed LevelDB cursors to use scoped pointers to ensure destruction when going out of scope @@ -758,5 +758,5 @@ Thanks to everyone who contributed to this release: - Yoichi Hirai - Zak Wilcox -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.10.1.md b/doc/release-notes/release-notes-0.10.1.md index 8c28320f33..8f59f1f68c 100644 --- a/doc/release-notes/release-notes-0.10.1.md +++ b/doc/release-notes/release-notes-0.10.1.md @@ -1,13 +1,13 @@ -BGL Core version 0.10.1 is now available from: +Bitcoin Core version 0.10.1 is now available from: - + This is a new minor version release, bringing bug fixes and translation updates. It is recommended to upgrade to this version. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -17,15 +17,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ------------------ Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -48,7 +48,7 @@ Notable changes This is a minor release and hence there are no notable changes. For the notable changes in 0.10, refer to the release notes for the -0.10.0 release at https://github.com/BGL/BGL/blob/v0.10.0/doc/release-notes.md +0.10.0 release at https://github.com/bitcoin/bitcoin/blob/v0.10.0/doc/release-notes.md 0.10.1 Change log ================= @@ -140,4 +140,4 @@ And all those who contributed additional code review and/or security research: - Sergio Demian Lerner - Sharon Goldberg -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.10.2.md b/doc/release-notes/release-notes-0.10.2.md index b4fee60a9f..192ed69d29 100644 --- a/doc/release-notes/release-notes-0.10.2.md +++ b/doc/release-notes/release-notes-0.10.2.md @@ -1,13 +1,13 @@ -BGL Core version 0.10.2 is now available from: +Bitcoin Core version 0.10.2 is now available from: - + This is a new minor version release, bringing minor bug fixes and translation updates. It is recommended to upgrade to this version. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -17,15 +17,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ------------------ Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -47,12 +47,12 @@ Notable changes =============== This fixes a serious problem on Windows with data directories that have non-ASCII -characters (https://github.com/BGL/BGL/issues/6078). +characters (https://github.com/bitcoin/bitcoin/issues/6078). For other platforms there are no notable changes. For the notable changes in 0.10, refer to the release notes -at https://github.com/BGL/BGL/blob/v0.10.0/doc/release-notes.md +at https://github.com/bitcoin/bitcoin/blob/v0.10.0/doc/release-notes.md 0.10.2 Change log ================= @@ -83,4 +83,4 @@ And all those who contributed additional code review and/or security research: - Pieter Wuille - vayvanne -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.10.3.md b/doc/release-notes/release-notes-0.10.3.md index c8cc2319e8..8a110e562c 100644 --- a/doc/release-notes/release-notes-0.10.3.md +++ b/doc/release-notes/release-notes-0.10.3.md @@ -1,13 +1,13 @@ -BGL Core version 0.10.3 is now available from: +Bitcoin Core version 0.10.3 is now available from: - + This is a new minor version release, bringing security fixes and translation updates. It is recommended to upgrade to this version as soon as possible. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -17,15 +17,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ------------------ Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -60,7 +60,7 @@ using distribution provided packages. Additionally, upnp has been disabled by default. This may result in a lower number of reachable nodes on IPv4, however this prevents future libupnpc vulnerabilities from being a structural risk to the network -(see https://github.com/BGL/BGL/pull/6795). +(see https://github.com/bitcoin/bitcoin/pull/6795). Test for LowS signatures before relaying ----------------------------------------- @@ -75,26 +75,26 @@ for nuisance malleability on SIGHASH_ALL P2PKH transactions. On the down-side it will block most transactions made by sufficiently out of date software. Unlike the other avenues to change txids on transactions this -one was randomly violated by all deployed BGL software prior to +one was randomly violated by all deployed bitcoin software prior to its discovery. So, while other malleability vectors where made non-standard as soon as they were discovered, this one has remained permitted. Even BIP62 did not propose applying this rule to old version transactions, but conforming implementations have become much more common since BIP62 was initially written. -BGL Core has produced compatible signatures since a28fb70e in +Bitcoin Core has produced compatible signatures since a28fb70e in September 2013, but this didn't make it into a release until 0.9 -in March 2014; BGLj has done so for a similar span of time. -BGLjs and electrum have been more recently updated. +in March 2014; Bitcoinj has done so for a similar span of time. +Bitcoinjs and electrum have been more recently updated. This does not replace the need for BIP62 or similar, as miners can still cooperate to break transactions. Nor does it replace the need for wallet software to handle malleability sanely[1]. This only eliminates the cheap and irritating DOS attack. -[1] On the Malleability of BGL Transactions +[1] On the Malleability of Bitcoin Transactions Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski, Łukasz Mazurek -http://fc15.ifca.ai/preproceedings/BGL/paper_9.pdf +http://fc15.ifca.ai/preproceedings/bitcoin/paper_9.pdf Minimum relay fee default increase ----------------------------------- @@ -107,7 +107,7 @@ outrageous memory usage on nodes due to the mempool ballooning. This is a temporary measure, bridging the time until a dynamic method for determining this fee is merged (which will be in 0.12). -(see https://github.com/BGL/BGL/pull/6793, as well as the 0.11.0 +(see https://github.com/bitcoin/bitcoin/pull/6793, as well as the 0.11.0 release notes, in which this value was suggested) 0.10.3 Change log @@ -162,4 +162,4 @@ And all those who contributed additional code review and/or security research: - timothy on IRC for reporting the issue - Vulnerability in miniupnp discovered by Aleksandar Nikolic of Cisco Talos -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.10.4.md b/doc/release-notes/release-notes-0.10.4.md index e3dff3ca4c..38a2c1347d 100644 --- a/doc/release-notes/release-notes-0.10.4.md +++ b/doc/release-notes/release-notes-0.10.4.md @@ -1,6 +1,6 @@ -BGL Core version 0.10.4 is now available from: +Bitcoin Core version 0.10.4 is now available from: - + This is a new minor version release, bringing bug fixes, the BIP65 (CLTV) consensus change, and relay policy preparation for BIP113. It is @@ -8,7 +8,7 @@ recommended to upgrade to this version as soon as possible. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -18,15 +18,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ------------------ Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -68,24 +68,24 @@ specified point in the future. blocks if they comply with the BIP65 rules for CLTV. For more information about the soft-forking change, please see - + Graphs showing the progress towards block version 4 adoption may be found at the URLs below: - Block versions over the last 50,000 blocks as progress towards BIP65 - consensus enforcement: + consensus enforcement: - Block versions over the last 2,000 blocks showing the days to the - earliest possible BIP65 consensus-enforced block: + earliest possible BIP65 consensus-enforced block: -**Notice to miners:** BGL Core’s block templates are now for +**Notice to miners:** Bitcoin Core’s block templates are now for version 4 blocks only, and any mining software relying on its getblocktemplate must be updated in parallel to use libblkmaker either version FIXME or any version from FIXME onward. - If you are solo mining, this will affect you the moment you upgrade - BGL Core, which must be done prior to BIP65 achieving its 951/1001 + Bitcoin Core, which must be done prior to BIP65 achieving its 951/1001 status. - If you are mining with the stratum mining protocol: this does not @@ -95,19 +95,19 @@ version FIXME or any version from FIXME onward. will affect you at the pool operator’s discretion, which must be no later than BIP65 achieving its 951/1001 status. -[BIP65]: https://github.com/BGL/bips/blob/master/bip-0065.mediawiki +[BIP65]: https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki Windows bug fix for corrupted UTXO database on unclean shutdowns ---------------------------------------------------------------- Several Windows users reported that they often need to reindex the -entire blockchain after an unclean shutdown of BGL Core on Windows +entire blockchain after an unclean shutdown of Bitcoin Core on Windows (or an unclean shutdown of Windows itself). Although unclean shutdowns remain unsafe, this release no longer relies on memory-mapped files for the UTXO database, which significantly reduced the frequency of unclean shutdowns leading to required reindexes during testing. -For more information, see: +For more information, see: Other fixes for database corruption on Windows are expected in the next major release. @@ -129,8 +129,8 @@ git merge commit are mentioned. - #6953 `a2f2fb6` build: disable -Wself-assign - #6953 `cf67d8b` Bugfix: Allow mining on top of old tip blocks for testnet (fixes testnet-in-a-box use case) - #6953 `b3964e3` Drop "with minimal dependencies" from description -- #6953 `43c2789` Split BGL-tx into its own package -- #6953 `dfe0d4d` Include BGL-tx binary on Debian/Ubuntu +- #6953 `43c2789` Split bitcoin-tx into its own package +- #6953 `dfe0d4d` Include bitcoin-tx binary on Debian/Ubuntu - #6953 `612efe8` [Qt] Raise debug window when requested - #6953 `3ad96bd` Fix locking in GetTransaction - #6953 `9c81005` Fix spelling of Qt @@ -169,4 +169,4 @@ Thanks to everyone who directly contributed to this release: And those who contributed additional code review and/or security research. -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.11.0.md b/doc/release-notes/release-notes-0.11.0.md index b2756aa40a..28e49fb7ea 100644 --- a/doc/release-notes/release-notes-0.11.0.md +++ b/doc/release-notes/release-notes-0.11.0.md @@ -1,13 +1,13 @@ -BGL Core version 0.11.0 is now available from: +Bitcoin Core version 0.11.0 is now available from: - + This is a new major version release, bringing both new features and bug fixes. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -17,15 +17,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ------------------ Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -67,7 +67,7 @@ free transactions (with enough priority) will be accepted. It defaults to 15. Reducing this number reduces the speed at which the mempool can grow due to free transactions. -For example, add the following to `BGL.conf`: +For example, add the following to `bitcoin.conf`: minrelaytxfee=0.00005 limitfreerelay=5 @@ -82,11 +82,11 @@ Block file pruning This release supports running a fully validating node without maintaining a copy of the raw block and undo data on disk. To recap, there are four types of data -related to the blockchain in the BGL system: the raw blocks as received over +related to the blockchain in the bitcoin system: the raw blocks as received over the network (blk???.dat), the undo data (rev???.dat), the block index and the UTXO set (both LevelDB databases). The databases are built from the raw data. -Block pruning allows BGL Core to delete the raw block and undo data once +Block pruning allows Bitcoin Core to delete the raw block and undo data once it's been validated and used to build the databases. At that point, the raw data is used only to relay blocks to other nodes, to handle reorganizations, to look up old transactions (if -txindex is enabled or via the RPC/REST interfaces), or @@ -95,7 +95,7 @@ all blocks in the blockchain. The user specifies how much space to allot for block & undo files. The minimum allowed is 550MB. Note that this is in addition to whatever is required for the -block index and UTXO databases. The minimum was chosen so that BGL Core will +block index and UTXO databases. The minimum was chosen so that Bitcoin Core will be able to maintain at least 288 blocks on disk (two days worth of blocks at 10 minutes per block). In rare instances it is possible that the amount of space used will exceed the pruning target in order to keep the required last 288 @@ -192,7 +192,7 @@ transaction (re)broadcast: One such application is selective Tor usage, where the node runs on the normal internet but transactions are broadcasted over Tor. -For an example script see [BGL-submittx](https://github.com/laanwj/BGL-submittx). +For an example script see [bitcoin-submittx](https://github.com/laanwj/bitcoin-submittx). Privacy: Stream isolation for Tor ---------------------------------- @@ -297,7 +297,7 @@ git merge commit are mentioned. ### Build system - #5501 `c76c9d2` Add mips, mipsel and aarch64 to depends platforms -- #5334 `cf87536` libBGLconsensus: Add pkg-config support +- #5334 `cf87536` libbitcoinconsensus: Add pkg-config support - #5514 `ed11d53` Fix 'make distcheck' - #5505 `a99ef7d` Build winshutdownmonitor.cpp on Windows only - #5582 `e8a6639` Osx toolchain update @@ -309,7 +309,7 @@ git merge commit are mentioned. - #5149 `c7abfa5` Add script to verify all merge commits are signed - #6082 `7abbb7e` qt: disable qt tests when one of the checks for the gui fails - #6244 `0401aa2` configure: Detect (and reject) LibreSSL -- #6269 `95aca44` gitian: Use the new BGL-detached-sigs git repo for OSX signatures +- #6269 `95aca44` gitian: Use the new bitcoin-detached-sigs git repo for OSX signatures - #6285 `ef1d506` Fix scheduler build with some boost versions. - #6280 `25c2216` depends: fix Boost 1.55 build on GCC 5 - #6303 `b711599` gitian: add a gitian-win-signer descriptor @@ -346,8 +346,8 @@ git merge commit are mentioned. - #5626 `ab0d798` Fix icon sizes and column width - #5683 `c7b22aa` add new osx dmg background picture - #5620 `7823598` Payment request expiration bug fix -- #5729 `9c4a5a5` Allow unit changes for read-only BGLAmountField -- #5753 `0f44672` Add BGL logo to about screen +- #5729 `9c4a5a5` Allow unit changes for read-only BitcoinAmountField +- #5753 `0f44672` Add bitcoin logo to about screen - #5629 `a956586` Prevent amount overflow problem with payment requests - #5830 `215475a` Don't save geometry for options and about/help window - #5793 `d26f0b2` Honor current network when creating autostart link @@ -392,11 +392,11 @@ git merge commit are mentioned. - #5366 `47a79bb` No longer check osx compatibility in RenameThread - #5689 `07f4386` openssl: abstract out OPENSSL_cleanse - #5708 `8b298ca` Add list of implemented BIPs -- #5809 `46bfbe7` Add BGL-cli man page +- #5809 `46bfbe7` Add bitcoin-cli man page - #5839 `86eb461` keys: remove libsecp256k1 verification until it's actually supported - #5749 `d734d87` Help messages correctly formatted (79 chars) - #5884 `7077fe6` BUGFIX: Stack around the variable 'rv' was corrupted -- #5849 `41259ca` contrib/init/BGLd.openrc: Compatibility with previous OpenRC init script variables +- #5849 `41259ca` contrib/init/bitcoind.openrc: Compatibility with previous OpenRC init script variables - #5950 `41113e3` Fix locale fallback and guard tests against invalid locale settings - #5965 `7c6bfb1` Add git-subtree-check.sh script - #6033 `1623f6e` FreeBSD, OpenBSD thread renaming @@ -404,9 +404,9 @@ git merge commit are mentioned. - #6104 `3e2559c` Show an init message while activating best chain - #6125 `351f73e` Clean up parsing of bool command line args - #5964 `b4c219b` Lightweight task scheduler -- #6116 `30dc3c1` [OSX] rename BGL-Qt.app to BGL-Core.app +- #6116 `30dc3c1` [OSX] rename Bitcoin-Qt.app to Bitcoin-Core.app - #6168 `b3024f0` contrib/linearize: Support linearization of testnet blocks -- #6098 `7708fcd` Update Windows resource files (and add one for BGL-tx) +- #6098 `7708fcd` Update Windows resource files (and add one for bitcoin-tx) - #6159 `e1412d3` Catch errors on datadir lock and pidfile delete - #6186 `182686c` Fix two problems in CSubnet parsing - #6174 `df992b9` doc: add translation strings policy @@ -427,7 +427,7 @@ Thanks to everyone who directly contributed to this release: - azeteki - Ben Holden-Crowther - bikinibabe -- BGLPRReadingGroup +- BitcoinPRReadingGroup - Blake Jakopovic - BtcDrak - charlescharles @@ -501,5 +501,5 @@ And all those who contributed additional code review and/or security research: - Sergio Demian Lerner -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.11.1.md b/doc/release-notes/release-notes-0.11.1.md index 87d718c1e1..799205691e 100644 --- a/doc/release-notes/release-notes-0.11.1.md +++ b/doc/release-notes/release-notes-0.11.1.md @@ -1,13 +1,13 @@ -BGL Core version 0.11.1 is now available from: +Bitcoin Core version 0.11.1 is now available from: - + This is a new minor version release, bringing security fixes. It is recommended to upgrade to this version as soon as possible. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -17,15 +17,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ------------------ Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -61,7 +61,7 @@ using distribution provided packages. Additionally, upnp has been disabled by default. This may result in a lower number of reachable nodes on IPv4, however this prevents future libupnpc vulnerabilities from being a structural risk to the network -(see https://github.com/BGL/BGL/pull/6795). +(see https://github.com/bitcoin/bitcoin/pull/6795). Test for LowS signatures before relaying ----------------------------------------- @@ -76,26 +76,26 @@ for nuisance malleability on SIGHASH_ALL P2PKH transactions. On the down-side it will block most transactions made by sufficiently out of date software. Unlike the other avenues to change txids on transactions this -one was randomly violated by all deployed BGL software prior to +one was randomly violated by all deployed bitcoin software prior to its discovery. So, while other malleability vectors where made non-standard as soon as they were discovered, this one has remained permitted. Even BIP62 did not propose applying this rule to old version transactions, but conforming implementations have become much more common since BIP62 was initially written. -BGL Core has produced compatible signatures since a28fb70e in +Bitcoin Core has produced compatible signatures since a28fb70e in September 2013, but this didn't make it into a release until 0.9 -in March 2014; BGLj has done so for a similar span of time. -BGLjs and electrum have been more recently updated. +in March 2014; Bitcoinj has done so for a similar span of time. +Bitcoinjs and electrum have been more recently updated. This does not replace the need for BIP62 or similar, as miners can still cooperate to break transactions. Nor does it replace the need for wallet software to handle malleability sanely[1]. This only eliminates the cheap and irritating DOS attack. -[1] On the Malleability of BGL Transactions +[1] On the Malleability of Bitcoin Transactions Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski, Łukasz Mazurek -http://fc15.ifca.ai/preproceedings/BGL/paper_9.pdf +http://fc15.ifca.ai/preproceedings/bitcoin/paper_9.pdf Minimum relay fee default increase ----------------------------------- @@ -108,7 +108,7 @@ outrageous memory usage on nodes due to the mempool ballooning. This is a temporary measure, bridging the time until a dynamic method for determining this fee is merged (which will be in 0.12). -(see https://github.com/BGL/BGL/pull/6793, as well as the 0.11 +(see https://github.com/bitcoin/bitcoin/pull/6793, as well as the 0.11 release notes, in which this value was suggested) 0.11.1 Change log @@ -124,7 +124,7 @@ git merge commit are mentioned. - #6384 `8e5a969` qt: Force TLS1.0+ for SSL connections - #6471 `92401c2` Depends: bump to qt 5.5 - #6224 `93b606a` Be even stricter in processing unrequested blocks -- #6571 `100ac4e` libBGLconsensus: avoid a crash in multi-threaded environments +- #6571 `100ac4e` libbitcoinconsensus: avoid a crash in multi-threaded environments - #6545 `649f5d9` Do not store more than 200 timedata samples. - #6694 `834e299` [QT] fix thin space word wrap line break issue - #6703 `1cd7952` Backport bugfixes to 0.11 @@ -168,5 +168,5 @@ And those who contributed additional code review and/or security research: - timothy on IRC for reporting the issue - Vulnerability in miniupnp discovered by Aleksandar Nikolic of Cisco Talos -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.11.2.md b/doc/release-notes/release-notes-0.11.2.md index 993be89890..2351b80656 100644 --- a/doc/release-notes/release-notes-0.11.2.md +++ b/doc/release-notes/release-notes-0.11.2.md @@ -1,6 +1,6 @@ -BGL Core version 0.11.2 is now available from: +Bitcoin Core version 0.11.2 is now available from: - + This is a new minor version release, bringing bug fixes, the BIP65 (CLTV) consensus change, and relay policy preparation for BIP113. It is @@ -8,7 +8,7 @@ recommended to upgrade to this version as soon as possible. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -18,15 +18,15 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ------------------ Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -68,24 +68,24 @@ specified point in the future. blocks if they comply with the BIP65 rules for CLTV. For more information about the soft-forking change, please see - + Graphs showing the progress towards block version 4 adoption may be found at the URLs below: - Block versions over the last 50,000 blocks as progress towards BIP65 - consensus enforcement: + consensus enforcement: - Block versions over the last 2,000 blocks showing the days to the - earliest possible BIP65 consensus-enforced block: + earliest possible BIP65 consensus-enforced block: -**Notice to miners:** BGL Core’s block templates are now for +**Notice to miners:** Bitcoin Core’s block templates are now for version 4 blocks only, and any mining software relying on its getblocktemplate must be updated in parallel to use libblkmaker either version 0.4.3 or any version from 0.5.2 onward. - If you are solo mining, this will affect you the moment you upgrade - BGL Core, which must be done prior to BIP65 achieving its 951/1001 + Bitcoin Core, which must be done prior to BIP65 achieving its 951/1001 status. - If you are mining with the stratum mining protocol: this does not @@ -95,12 +95,12 @@ version 0.4.3 or any version from 0.5.2 onward. will affect you at the pool operator’s discretion, which must be no later than BIP65 achieving its 951/1001 status. -[BIP65]: https://github.com/BGL/bips/blob/master/bip-0065.mediawiki +[BIP65]: https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki BIP113 mempool-only locktime enforcement using GetMedianTimePast() ---------------------------------------------------------------- -BGL transactions currently may specify a locktime indicating when +Bitcoin transactions currently may specify a locktime indicating when they may be added to a valid block. Current consensus rules require that blocks have a block header time greater than the locktime specified in any transaction in that block. @@ -143,19 +143,19 @@ forward. To compensate, subtract one hour (3,600 seconds) from your locktimes to allow those transactions to be included in mempools at approximately the expected time. -[BIP113]: https://github.com/BGL/bips/blob/master/bip-0113.mediawiki +[BIP113]: https://github.com/bitcoin/bips/blob/master/bip-0113.mediawiki Windows bug fix for corrupted UTXO database on unclean shutdowns ---------------------------------------------------------------- Several Windows users reported that they often need to reindex the -entire blockchain after an unclean shutdown of BGL Core on Windows +entire blockchain after an unclean shutdown of Bitcoin Core on Windows (or an unclean shutdown of Windows itself). Although unclean shutdowns remain unsafe, this release no longer relies on memory-mapped files for the UTXO database, which significantly reduced the frequency of unclean shutdowns leading to required reindexes during testing. -For more information, see: +For more information, see: Other fixes for database corruption on Windows are expected in the next major release. @@ -176,8 +176,8 @@ git merge commit are mentioned. - #6351 `6af25b0` Add BIP65 to getblockchaininfo softforks list - #6688 `01878c9` Fix locking in GetTransaction - #6653 `b3eaa30` [Qt] Raise debug window when requested -- #6600 `1e672ae` Debian/Ubuntu: Include BGL-tx binary -- #6600 `2394f4d` Debian/Ubuntu: Split BGL-tx into its own package +- #6600 `1e672ae` Debian/Ubuntu: Include bitcoin-tx binary +- #6600 `2394f4d` Debian/Ubuntu: Split bitcoin-tx into its own package - #5987 `33d6825` Bugfix: Allow mining on top of old tip blocks for testnet - #6852 `21e58b8` build: make sure OpenSSL heeds noexecstack - #6846 `af6edac` alias `-h` for `--help` @@ -214,4 +214,4 @@ Thanks to everyone who directly contributed to this release: And those who contributed additional code review and/or security research. -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.12.0.md b/doc/release-notes/release-notes-0.12.0.md index 8ec9e83599..bc0d5ea3b0 100644 --- a/doc/release-notes/release-notes-0.12.0.md +++ b/doc/release-notes/release-notes-0.12.0.md @@ -1,12 +1,12 @@ -BGL Core version 0.12.0 is now available from: +Bitcoin Core version 0.12.0 is now available from: - + This is a new major version release, bringing new features and other improvements. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -16,8 +16,8 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ----------------- @@ -26,7 +26,7 @@ Downgrade warning Because release 0.10.0 and later makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not -backwards-compatible with pre-0.10 versions of BGL Core or other software: +backwards-compatible with pre-0.10 versions of Bitcoin Core or other software: * Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or @@ -48,10 +48,10 @@ This does not affect wallet forward or backward compatibility. Because release 0.12.0 and later will obfuscate the chainstate on every fresh sync or reindex, the chainstate is not backwards-compatible with -pre-0.12 versions of BGL Core or other software. +pre-0.12 versions of Bitcoin Core or other software. If you want to downgrade after you have done a reindex with 0.12.0 or later, -you will need to reindex when you first start BGL Core version 0.11 or +you will need to reindex when you first start Bitcoin Core version 0.11 or earlier. Notable changes @@ -60,8 +60,8 @@ Notable changes Signature validation using libsecp256k1 --------------------------------------- -ECDSA signatures inside BGL transactions now use validation using -[libsecp256k1](https://github.com/BGL-core/secp256k1) instead of OpenSSL. +ECDSA signatures inside Bitcoin transactions now use validation using +[libsecp256k1](https://github.com/bitcoin-core/secp256k1) instead of OpenSSL. Depending on the platform, this means a significant speedup for raw signature validation speed. The advantage is largest on x86_64, where validation is over @@ -98,7 +98,7 @@ Direct headers announcement (BIP 130) ------------------------------------- Between compatible peers, [BIP 130] -(https://github.com/BGL/bips/blob/master/bip-0130.mediawiki) +(https://github.com/bitcoin/bips/blob/master/bip-0130.mediawiki) direct headers announcement is used. This means that blocks are advertised by announcing their headers directly, instead of just announcing the hash. In a reorganization, all new headers are sent, instead of just the new tip. This @@ -107,15 +107,15 @@ can often prevent an extra roundtrip before the actual block is downloaded. Memory pool limiting -------------------- -Previous versions of BGL Core had their mempool limited by checking +Previous versions of Bitcoin Core had their mempool limited by checking a transaction's fees against the node's minimum relay fee. There was no upper bound on the size of the mempool and attackers could send a large number of transactions paying just slighly more than the default minimum relay fee to crash nodes with relatively low RAM. A temporary workaround -for previous versions of BGL Core was to raise the default minimum +for previous versions of Bitcoin Core was to raise the default minimum relay fee. -BGL Core 0.12 will have a strict maximum size on the mempool. The +Bitcoin Core 0.12 will have a strict maximum size on the mempool. The default value is 300 MB and can be configured with the `-maxmempool` parameter. Whenever a transaction would cause the mempool to exceed its maximum size, the transaction that (along with in-mempool descendants) has @@ -124,7 +124,7 @@ minimum relay feerate will be increased to match this feerate plus the initial minimum relay feerate. The initial minimum relay feerate is set to 1000 satoshis per kB. -BGL Core 0.12 also introduces new default policy limits on the length and +Bitcoin Core 0.12 also introduces new default policy limits on the length and size of unconfirmed transaction chains that are allowed in the mempool (generally limiting the length of unconfirmed chains to 25 transactions, with a total size of 101 KB). These limits can be overridden using command line @@ -134,11 +134,11 @@ Opt-in Replace-by-fee transactions ---------------------------------- It is now possible to replace transactions in the transaction memory pool of -BGL Core 0.12 nodes. BGL Core will only allow replacement of +Bitcoin Core 0.12 nodes. Bitcoin Core will only allow replacement of transactions which have any of their inputs' `nSequence` number set to less than `0xffffffff - 1`. Moreover, a replacement transaction may only be accepted when it pays sufficient fee, as described in [BIP 125] -(https://github.com/BGL/bips/blob/master/bip-0125.mediawiki). +(https://github.com/bitcoin/bips/blob/master/bip-0125.mediawiki). Transaction replacement can be disabled with a new command line option, `-mempoolreplacement=0`. Transactions signaling replacement under BIP125 will @@ -156,7 +156,7 @@ updated RPC calls `gettransaction` and `listtransactions`, which now have an additional field in the output indicating if a transaction is replaceable under BIP125 ("bip125-replaceable"). -Note that the wallet in BGL Core 0.12 does not yet have support for +Note that the wallet in Bitcoin Core 0.12 does not yet have support for creating transactions that would be replaceable under BIP 125. @@ -173,7 +173,7 @@ overridden with the option `-rpccookiefile`. This is similar to Tor's CookieAuthentication: see https://www.torproject.org/docs/tor-manual.html.en -This allows running BGLd without having to do any manual configuration. +This allows running bitcoind without having to do any manual configuration. Relay: Any sequence of pushdatas in OP_RETURN outputs now allowed ----------------------------------------------------------------- @@ -196,14 +196,14 @@ returned (previously all relevant hashes were returned). Relay and Mining: Priority transactions --------------------------------------- -BGL Core has a heuristic 'priority' based on coin value and age. This +Bitcoin Core has a heuristic 'priority' based on coin value and age. This calculation is used for relaying of transactions which do not pay the minimum relay fee, and can be used as an alternative way of sorting -transactions for mined blocks. BGL Core will relay transactions with +transactions for mined blocks. Bitcoin Core will relay transactions with insufficient fees depending on the setting of `-limitfreerelay=` (default: `r=15` kB per minute) and `-blockprioritysize=`. -In BGL Core 0.12, when mempool limit has been reached a higher minimum +In Bitcoin Core 0.12, when mempool limit has been reached a higher minimum relay fee takes effect to limit memory usage. Transactions which do not meet this higher effective minimum relay fee will not be relayed or mined even if they rank highly according to the priority heuristic. @@ -224,7 +224,7 @@ Note, however, that if mining priority transactions is left disabled, the priority delta will be ignored and only the fee metric will be effective. This internal automatic prioritization handling is being considered for removal -entirely in BGL Core 0.13, and it is at this time undecided whether the +entirely in Bitcoin Core 0.13, and it is at this time undecided whether the more accurate priority calculation for chained unconfirmed transactions will be restored. Community direction on this topic is particularly requested to help set project priorities. @@ -234,15 +234,15 @@ Automatically use Tor hidden services Starting with Tor version 0.2.7.1 it is possible, through Tor's control socket API, to create and destroy 'ephemeral' hidden services programmatically. -BGL Core has been updated to make use of this. +Bitcoin Core has been updated to make use of this. This means that if Tor is running (and proper authorization is available), -BGL Core automatically creates a hidden service to listen on, without -manual configuration. BGL Core will also use Tor automatically to connect +Bitcoin Core automatically creates a hidden service to listen on, without +manual configuration. Bitcoin Core will also use Tor automatically to connect to other .onion nodes if the control socket can be successfully opened. This will positively affect the number of available .onion nodes and their usage. -This new feature is enabled by default if BGL Core is listening, and +This new feature is enabled by default if Bitcoin Core is listening, and a connection to Tor can be made. It can be configured with the `-listenonion`, `-torcontrol` and `-torpassword` settings. To show verbose debugging information, pass `-debug=tor`. @@ -250,7 +250,7 @@ information, pass `-debug=tor`. Notifications through ZMQ ------------------------- -BGLd can now (optionally) asynchronously notify clients through a +Bitcoind can now (optionally) asynchronously notify clients through a ZMQ-based PUB socket of the arrival of new transactions and blocks. This feature requires installation of the ZMQ C API library 4.x and configuring its use through the command line or configuration file. @@ -263,8 +263,8 @@ Various improvements have been made to how the wallet calculates transaction fees. Users can decide to pay a predefined fee rate by setting `-paytxfee=` -(or `settxfee ` rpc during runtime). A value of `n=0` signals BGL -Core to use floating fees. By default, BGL Core will use floating +(or `settxfee ` rpc during runtime). A value of `n=0` signals Bitcoin +Core to use floating fees. By default, Bitcoin Core will use floating fees. Based on past transaction data, floating fees approximate the fees @@ -275,9 +275,9 @@ Sometimes, it is not possible to give good estimates, or an estimate at all. Therefore, a fallback value can be set with `-fallbackfee=` (default: `0.0002` BTC/kB). -At all times, BGL Core will cap fees at `-maxtxfee=` (default: +At all times, Bitcoin Core will cap fees at `-maxtxfee=` (default: 0.10) BTC. -Furthermore, BGL Core will never create transactions paying less than +Furthermore, Bitcoin Core will never create transactions paying less than the current minimum relay fee. Finally, a user can set the minimum fee rate for all transactions with `-mintxfee=`, which defaults to 1000 satoshis per kB. @@ -320,7 +320,7 @@ However, rescans as well as the RPCs `importwallet`, `importaddress`, `importprivkey` are disabled. To enable block pruning set `prune=` on the command line or in -`BGL.conf`, where `N` is the number of MiB to allot for +`bitcoin.conf`, where `N` is the number of MiB to allot for raw block & undo data. A value of 0 disables pruning. The minimal value above 0 is 550. Your @@ -331,13 +331,13 @@ practice. In future releases, a higher value may also help the network as a whole: stored blocks could be served to other nodes. For further information about pruning, you may also consult the [release -notes of v0.11.0](https://github.com/BitgesellOfficial/bitgesell/blob/master/doc/release-notes.md#block-file-pruning). +notes of v0.11.0](https://github.com/bitcoin/bitcoin/blob/v0.11.0/doc/release-notes.md#block-file-pruning). `NODE_BLOOM` service bit ------------------------ Support for the `NODE_BLOOM` service bit, as described in [BIP -111](https://github.com/BGL/bips/blob/master/bip-0111.mediawiki), has been +111](https://github.com/bitcoin/bips/blob/master/bip-0111.mediawiki), has been added to the P2P protocol code. BIP 111 defines a service bit to allow peers to advertise that they support @@ -369,7 +369,7 @@ RPC: Low-level API changes * The `asm` property of each scriptSig now contains the decoded signature hash type for each signature that provides a valid defined hash type. -* OP_NOP2 has been renamed to OP_CHECKLOCKTIMEVERIFY by [BIP 65](https://github.com/BGL/bips/blob/master/bip-0065.mediawiki) +* OP_NOP2 has been renamed to OP_CHECKLOCKTIMEVERIFY by [BIP 65](https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki) The following items contain assembly representations of scriptSig signatures and are affected by this change: @@ -379,7 +379,7 @@ and are affected by this change: - RPC `decodescript` - REST `/rest/tx/` (JSON format) - REST `/rest/block/` (JSON format when including extended tx details) -- `BGL-tx -json` +- `bitcoin-tx -json` For example, the `scriptSig.asm` property of a transaction input that previously showed an assembly representation of: @@ -429,16 +429,16 @@ caching. A sample config for apache2 could look like: SSLCertificateFile /etc/apache2/ssl/server.crt SSLCertificateKeyFile /etc/apache2/ssl/server.key - + ProxyPass http://127.0.0.1:8332/ ProxyPassReverse http://127.0.0.1:8332/ # optional enable digest auth # AuthType Digest # ... - # optional bypass BGLd rpc basic auth + # optional bypass bitcoind rpc basic auth # RequestHeader set Authorization "Basic " - # get the from the shell with: base64 <<< BGLrpc: + # get the from the shell with: base64 <<< bitcoinrpc: # Or, balance the load: @@ -459,7 +459,7 @@ Other P2P Changes ----------------- The list of banned peers is now stored on disk rather than in memory. -Restarting BGLd will no longer clear out the list of banned peers; instead +Restarting bitcoind will no longer clear out the list of banned peers; instead a new RPC call (`clearbanned`) can be used to manually clear the list. The new `setban` RPC call can also be used to manually ban or unban a peer. @@ -637,14 +637,14 @@ git merge commit are mentioned. ### Build system - #6210 `0e4f2a0` build: disable optional use of gmp in internal secp256k1 build (Wladimir J. van der Laan) -- #6214 `87406aa` [OSX] revert renaming of BGL-Qt.app and use CFBundleDisplayName (partial revert of #6116) (Jonas Schnelli) +- #6214 `87406aa` [OSX] revert renaming of Bitcoin-Qt.app and use CFBundleDisplayName (partial revert of #6116) (Jonas Schnelli) - #6218 `9d67b10` build/gitian misc updates (Cory Fields) -- #6269 `d4565b6` gitian: Use the new BGL-detached-sigs git repo for OSX signatures (Cory Fields) +- #6269 `d4565b6` gitian: Use the new bitcoin-detached-sigs git repo for OSX signatures (Cory Fields) - #6418 `d4a910c` Add autogen.sh to source tarball. (randy-waterhouse) - #6373 `1ae3196` depends: non-qt bumps for 0.12 (Cory Fields) - #6434 `059b352` Preserve user-passed CXXFLAGS with --enable-debug (Gavin Andresen) - #6501 `fee6554` Misc build fixes (Cory Fields) -- #6600 `ef4945f` Include BGL-tx binary on Debian/Ubuntu (Zak Wilcox) +- #6600 `ef4945f` Include bitcoin-tx binary on Debian/Ubuntu (Zak Wilcox) - #6619 `4862708` depends: bump miniupnpc and ccache (Michael Ford) - #6801 `ae69a75` [depends] Latest config.guess and config.sub (Michael Ford) - #6938 `193f7b5` build: If both Qt4 and Qt5 are installed, use Qt5 (Wladimir J. van der Laan) @@ -719,7 +719,7 @@ git merge commit are mentioned. - #6337 `0564c5b` Testing infrastructure: mocktime fixes (Gavin Andresen) - #6350 `60abba1` add unit tests for the decodescript rpc (mruddy) - #5881 `3203a08` Fix and improve txn_doublespend.py test (Tom Harding) -- #6390 `6a73d66` tests: Fix BGL-tx signing test case (Wladimir J. van der Laan) +- #6390 `6a73d66` tests: Fix bitcoin-tx signing test case (Wladimir J. van der Laan) - #6368 `7fc25c2` CLTV: Add more tests to improve coverage (Esteban Ordano) - #6414 `5121c68` Fix intermittent test failure, reduce test time (Tom Harding) - #6417 `44fa82d` [QA] fix possible reorg issue in (fund)rawtransaction(s).py RPC test (Jonas Schnelli) @@ -732,7 +732,7 @@ git merge commit are mentioned. - #6509 `bb4faee` Fix race condition on test node shutdown (Casey Rodarmor) - #6523 `561f8af` Add p2p-fullblocktest.py (Casey Rodarmor) - #6590 `981fd92` Fix stale socket rebinding and re-enable python tests for Windows (Cory Fields) -- #6730 `cb4d6d0` build: Remove dependency of BGL-cli on secp256k1 (Wladimir J. van der Laan) +- #6730 `cb4d6d0` build: Remove dependency of bitcoin-cli on secp256k1 (Wladimir J. van der Laan) - #6616 `5ab5dca` Regression Tests: Migrated rpc-tests.sh to all Python rpc-tests.py (Peter Tschipper) - #6720 `d479311` Creates unittests for addrman, makes addrman more testable. (Ethan Heilman) - #6853 `c834f56` Added fPowNoRetargeting field to Consensus::Params (Eric Lombrozo) @@ -750,7 +750,7 @@ git merge commit are mentioned. - #7063 `6abf6eb` [Tests] Add prioritisetransaction RPC test (Suhas Daftuar) - #7137 `16f4a6e` Tests: Explicitly set chain limits in replace-by-fee test (Suhas Daftuar) - #7216 `9572e49` Removed offline testnet DNSSeed 'alexykot.me'. (tnull) -- #7209 `f3ad812` test: don't override BGLD and BGLCLI if they're set (Wladimir J. van der Laan) +- #7209 `f3ad812` test: don't override BITCOIND and BITCOINCLI if they're set (Wladimir J. van der Laan) - #7226 `301f16a` Tests: Add more tests to p2p-fullblocktest (Suhas Daftuar) - #7153 `9ef7c54` [Tests] Add mempool_limit.py test (Jonas Schnelli) - #7170 `453c567` tests: Disable Tor interaction (Wladimir J. van der Laan) @@ -764,9 +764,9 @@ git merge commit are mentioned. - #5975 `1fea667` Consensus: Decouple ContextualCheckBlockHeader from checkpoints (Jorge Timón) - #6061 `eba2f06` Separate Consensus::CheckTxInputs and GetSpendHeight in CheckInputs (Jorge Timón) - #5994 `786ed11` detach wallet from miner (Jonas Schnelli) -- #6387 `11576a5` [BGL-cli] improve error output (Jonas Schnelli) -- #6401 `6db53b4` Add BGLD_SIGTERM_TIMEOUT to OpenRC init scripts (Florian Schmaus) -- #6430 `b01981e` doc: add documentation for shared library libBGLconsensus (Braydon Fuller) +- #6387 `11576a5` [bitcoin-cli] improve error output (Jonas Schnelli) +- #6401 `6db53b4` Add BITCOIND_SIGTERM_TIMEOUT to OpenRC init scripts (Florian Schmaus) +- #6430 `b01981e` doc: add documentation for shared library libbitcoinconsensus (Braydon Fuller) - #6372 `dcc495e` Update Linearize tool to support Windows paths; fix variable scope; update README and example configuration (Paul Georgiou) - #6453 `8fe5cce` Separate core memory usage computation in core_memusage.h (Pieter Wuille) - #6149 `633fe10` Buffer log messages and explicitly open logs (Adam Weiss) @@ -891,4 +891,4 @@ Thanks to everyone who directly contributed to this release: - Zak Wilcox - zathras-crypto -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.12.1.md b/doc/release-notes/release-notes-0.12.1.md index 12ffd01bc1..610cd481de 100644 --- a/doc/release-notes/release-notes-0.12.1.md +++ b/doc/release-notes/release-notes-0.12.1.md @@ -1,13 +1,13 @@ -BGL Core version 0.12.1 is now available from: +Bitcoin Core version 0.12.1 is now available from: - + This is a new minor version release, including the BIP9, BIP68 and BIP112 softfork, various bugfixes and updated translations. Please report bugs using the issue tracker at github: - + Upgrading and downgrading ========================= @@ -17,8 +17,8 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Downgrade warning ----------------- @@ -27,10 +27,10 @@ Downgrade warning Because release 0.12.0 and later will obfuscate the chainstate on every fresh sync or reindex, the chainstate is not backwards-compatible with -pre-0.12 versions of BGL Core or other software. +pre-0.12 versions of Bitcoin Core or other software. If you want to downgrade after you have done a reindex with 0.12.0 or later, -you will need to reindex when you first start BGL Core version 0.11 or +you will need to reindex when you first start Bitcoin Core version 0.11 or earlier. Notable changes @@ -49,15 +49,15 @@ bits together with setting bit 0 to indicate support for this combined deployment, shown as "csv" in the `getblockchaininfo` RPC call. For more information about the soft forking change, please see - + This specific backport pull-request can be viewed at - + -[BIP9]: https://github.com/BGL/bips/blob/master/bip-0009.mediawiki -[BIP68]: https://github.com/BGL/bips/blob/master/bip-0068.mediawiki -[BIP112]: https://github.com/BGL/bips/blob/master/bip-0112.mediawiki -[BIP113]: https://github.com/BGL/bips/blob/master/bip-0113.mediawiki +[BIP9]: https://github.com/bitcoin/bips/blob/master/bip-0009.mediawiki +[BIP68]: https://github.com/bitcoin/bips/blob/master/bip-0068.mediawiki +[BIP112]: https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki +[BIP113]: https://github.com/bitcoin/bips/blob/master/bip-0113.mediawiki BIP68 soft fork to enforce sequence locks for relative locktime --------------------------------------------------------------- @@ -68,27 +68,27 @@ invalid for a defined period of time after confirmation of its corresponding outpoint. For more information about the implementation, see - + BIP112 soft fork to enforce OP_CHECKSEQUENCEVERIFY -------------------------------------------------- [BIP112][] redefines the existing OP_NOP3 as OP_CHECKSEQUENCEVERIFY (CSV) -for a new opcode in the BGL scripting system that in combination with +for a new opcode in the Bitcoin scripting system that in combination with [BIP68][] allows execution pathways of a script to be restricted based on the age of the output being spent. For more information about the implementation, see - + BIP113 locktime enforcement soft fork ------------------------------------- -BGL Core 0.11.2 previously introduced mempool-only locktime +Bitcoin Core 0.11.2 previously introduced mempool-only locktime enforcement using GetMedianTimePast(). This release seeks to consensus enforce the rule. -BGL transactions currently may specify a locktime indicating when +Bitcoin transactions currently may specify a locktime indicating when they may be added to a valid block. Current consensus rules require that blocks have a block header time greater than the locktime specified in any transaction in that block. @@ -132,7 +132,7 @@ locktimes to allow those transactions to be included in mempools at approximately the expected time. For more information about the implementation, see - + Miscellaneous ------------- @@ -194,5 +194,5 @@ Thanks to everyone who directly contributed to this release: - Suhas Daftuar - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.13.0.md b/doc/release-notes/release-notes-0.13.0.md index d398261560..4c3cb97df3 100644 --- a/doc/release-notes/release-notes-0.13.0.md +++ b/doc/release-notes/release-notes-0.13.0.md @@ -1,28 +1,28 @@ -BGL Core version 0.13.0 is now available from: +Bitcoin Core version 0.13.0 is now available from: - + This is a new major version release, including new features, various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: - + Compatibility ============== Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support), an OS initially released in 2001. This means that not even critical security -updates will be released anymore. Without security updates, using a BGL +updates will be released anymore. Without security updates, using a bitcoin wallet on a XP machine is irresponsible at least. -In addition to that, with 0.12.x there have been varied reports of BGL Core -randomly crashing on Windows XP. It is [not clear](https://github.com/BGL/BGL/issues/7681#issuecomment-217439891) +In addition to that, with 0.12.x there have been varied reports of Bitcoin Core +randomly crashing on Windows XP. It is [not clear](https://github.com/bitcoin/bitcoin/issues/7681#issuecomment-217439891) what the source of these crashes is, but it is likely that upstream libraries such as Qt are no longer being tested on XP. @@ -48,21 +48,21 @@ For this reason the default was changed to 300 MiB in this release. For nodes on low-memory systems, the database cache can be changed back to 100 MiB (or to another value) by either: -- Adding `dbcache=100` in BGL.conf +- Adding `dbcache=100` in bitcoin.conf - Changing it in the GUI under `Options → Size of database cache` Note that the database cache setting has the most performance impact during initial sync of a node, and when catching up after downtime. -BGL-cli: arguments privacy +bitcoin-cli: arguments privacy ------------------------------ The RPC command line client gained a new argument, `-stdin` to read extra arguments from standard input, one per line until EOF/Ctrl-D. For example: - $ src/BGL-cli -stdin walletpassphrase + $ src/bitcoin-cli -stdin walletpassphrase mysecretcode 120 ..... press Ctrl-D here to end input @@ -76,7 +76,7 @@ table by any user on the system. C++11 and Python 3 ------------------ -Various code modernizations have been done. The BGL Core code base has +Various code modernizations have been done. The Bitcoin Core code base has started using C++11. This means that a C++11-capable compiler is now needed for building. Effectively this means GCC 4.7 or higher, or Clang 3.3 or higher. @@ -95,9 +95,9 @@ executables. The following extra files can be found in the download directory or torrent: -- `BGL-${VERSION}-arm-linux-gnueabihf.tar.gz`: Linux binaries targeting +- `bitcoin-${VERSION}-arm-linux-gnueabihf.tar.gz`: Linux binaries targeting the 32-bit ARMv7-A architecture. -- `BGL-${VERSION}-aarch64-linux-gnu.tar.gz`: Linux binaries targeting +- `bitcoin-${VERSION}-aarch64-linux-gnu.tar.gz`: Linux binaries targeting the 64-bit ARMv8-A architecture. ARM builds are still experimental. If you have problems on a certain device or @@ -122,7 +122,7 @@ in PR 8068. The primary goal is reducing the bandwidth spikes at relay time, though in many cases it also reduces propagation delay. It is automatically enabled between compatible peers. -[BIP 152](https://github.com/BGL/bips/blob/master/bip-0152.mediawiki) +[BIP 152](https://github.com/bitcoin/bips/blob/master/bip-0152.mediawiki) As a side-effect, ordinary non-mining nodes will download and upload blocks faster if those blocks were produced by miners using similar transaction @@ -156,23 +156,23 @@ You can't disable HD key generation once you have created a HD wallet. There is no distinction between internal (change) and external keys. -HD wallets are incompatible with older versions of BGL Core. +HD wallets are incompatible with older versions of Bitcoin Core. -[Pull request](https://github.com/BGL/BGL/pull/8035/files), [BIP 32](https://github.com/BGL/bips/blob/master/bip-0032.mediawiki) +[Pull request](https://github.com/bitcoin/bitcoin/pull/8035/files), [BIP 32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) Segregated Witness ------------------ The code preparations for Segregated Witness ("segwit"), as described in [BIP -141](https://github.com/BGL/bips/blob/master/bip-0141.mediawiki), [BIP -143](https://github.com/BGL/bips/blob/master/bip-0143.mediawiki), [BIP -144](https://github.com/BGL/bips/blob/master/bip-0144.mediawiki), and [BIP -145](https://github.com/BGL/bips/blob/master/bip-0145.mediawiki) are +141](https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki), [BIP +143](https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki), [BIP +144](https://github.com/bitcoin/bips/blob/master/bip-0144.mediawiki), and [BIP +145](https://github.com/bitcoin/bips/blob/master/bip-0145.mediawiki) are finished and included in this release. However, BIP 141 does not yet specify activation parameters on mainnet, and so this release does not support segwit use on mainnet. Testnet use is supported, and after BIP 141 is updated with -proposed parameters, a future release of BGL Core is expected that +proposed parameters, a future release of Bitcoin Core is expected that implements those parameters for mainnet. Furthermore, because segwit activation is not yet specified for mainnet, @@ -199,7 +199,7 @@ The command line option `-blockmaxsize` remains an option to specify the maximum number of serialized bytes in a generated block. In addition, the new command line option `-blockmaxweight` has been added, which specifies the maximum "block weight" of a generated block, as defined by [BIP 141 (Segregated -Witness)] (https://github.com/BGL/bips/blob/master/bip-0141.mediawiki). +Witness)] (https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki). In preparation for Segregated Witness, the mining algorithm has been modified to optimize transaction selection for a given block weight, rather than a given @@ -216,7 +216,7 @@ support `-blockmaxsize` performs additional computation to ensure that constraint is met. (Note that for mainnet, in this release, the equivalent parameter for `-blockmaxweight` would be four times the desired `-blockmaxsize`. See [BIP 141] -(https://github.com/BGL/bips/blob/master/bip-0141.mediawiki) for additional +(https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki) for additional details.) In the future, the `-blockmaxsize` option may be removed, as block creation is @@ -232,7 +232,7 @@ files on disk. These two have now been split up, so that all blocks are known before validation starts. This was necessary to make certain optimizations that are available during normal synchronizations also available during reindexing. -The two phases are distinct in the BGL-Qt GUI. During the first one, +The two phases are distinct in the Bitcoin-Qt GUI. During the first one, "Reindexing blocks on disk" is shown. During the second (slower) one, "Processing blocks on disk" is shown. @@ -277,7 +277,7 @@ Low-level P2P changes - The optional new p2p message "feefilter" is implemented and the protocol version is bumped to 70013. Upon receiving a feefilter message from a peer, a node will not send invs for any transactions which do not meet the filter - feerate. [BIP 133](https://github.com/BGL/bips/blob/master/bip-0133.mediawiki) + feerate. [BIP 133](https://github.com/bitcoin/bips/blob/master/bip-0133.mediawiki) - The P2P alert system has been removed in PR #7692 and the `alert` P2P message is no longer supported. @@ -326,10 +326,10 @@ Low-level RPC changes - Asm script outputs replacements for OP_NOP2 and OP_NOP3 - OP_NOP2 has been renamed to OP_CHECKLOCKTIMEVERIFY by [BIP -65](https://github.com/BGL/bips/blob/master/bip-0065.mediawiki) +65](https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki) - OP_NOP3 has been renamed to OP_CHECKSEQUENCEVERIFY by [BIP -112](https://github.com/BGL/bips/blob/master/bip-0112.mediawiki) +112](https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki) - The following outputs are affected by this change: @@ -338,7 +338,7 @@ Low-level RPC changes - RPC `decodescript` - REST `/rest/tx/` (JSON format) - REST `/rest/block/` (JSON format when including extended tx details) - - `BGL-tx -json` + - `bitcoin-tx -json` - The sorting of the output of the `getrawmempool` output has changed. @@ -358,7 +358,7 @@ Low-level ZMQ changes listeners to detect lost notifications. The sequence number is always the last element in a multi-part ZMQ notification and therefore backward compatible. Each message type has its own counter. - PR [#7762](https://github.com/BGL/BGL/pull/7762). + PR [#7762](https://github.com/bitcoin/bitcoin/pull/7762). 0.13.0 Change log @@ -375,7 +375,7 @@ git merge commit are mentioned. - #7326 `2cd004b` Fix typo, wrong information in gettxout help text (paveljanik) - #7222 `82429d0` Indicate which transactions are signaling opt-in RBF (sdaftuar) - #7480 `b49a623` Changed getnetworkhps value to double to avoid overflow (instagibbs) -- #7550 `8b958ab` Input-from-stdin mode for BGL-cli (laanwj) +- #7550 `8b958ab` Input-from-stdin mode for bitcoin-cli (laanwj) - #7670 `c9a1265` Use cached block hash in blockToJSON() (rat4) - #7726 `9af69fa` Correct importaddress help reference to importpubkey (CypherGrue) - #7766 `16555b6` Register calls where they are defined (laanwj) @@ -540,7 +540,7 @@ git merge commit are mentioned. - #7604 `354b03d` build: Remove spurious dollar sign. Fixes #7189 (dooglus) - #7605 `7f001bd` Remove openssl info from init/log and from Qt debug window (jonasschnelli) - #7628 `87d6562` Add 'copy full transaction details' option (ericshawlinux) -- #7613 `3798e5d` Add autocomplete to BGL-qt's console window (GamerSg) +- #7613 `3798e5d` Add autocomplete to bitcoin-qt's console window (GamerSg) - #7668 `b24266c` Fix history deletion bug after font size change (achow101) - #7680 `41d2dfa` Remove reflection from `about` icon (laanwj) - #7686 `f034bce` Remove 0-fee from send dialog (MarcoFalke) @@ -557,13 +557,13 @@ git merge commit are mentioned. - #8014 `77b49ac` Sort transactions by date (Tyler-Hardin) - #8073 `eb2f6f7` askpassphrasedialog: Clear pass fields on accept (rat4) - #8129 `ee1533e` Fix RPC console auto completer (UdjinM6) -- #7636 `fb0ac48` Add BGL address label to request payment QR code (makevoid) +- #7636 `fb0ac48` Add bitcoin address label to request payment QR code (makevoid) - #8231 `760a6c7` Fix a bug where the SplashScreen will not be hidden during startup (jonasschnelli) -- #8256 `af2421c` BUG: BGL-qt crash (fsb4000) -- #8257 `ff03c50` Do not ask a UI question from BGLd (sipa) +- #8256 `af2421c` BUG: bitcoin-qt crash (fsb4000) +- #8257 `ff03c50` Do not ask a UI question from bitcoind (sipa) - #8288 `91abb77` Network-specific example address (laanwj) - #7707 `a914968` UI support for abandoned transactions (jonasschnelli) -- #8207 `f7a403b` Add a link to the BGL-Core repository and website to the About Dialog (MarcoFalke) +- #8207 `f7a403b` Add a link to the Bitcoin-Core repository and website to the About Dialog (MarcoFalke) - #8281 `6a87eb0` Remove client name from debug window (laanwj) - #8407 `45eba4b` Add dbcache migration path (jonasschnelli) @@ -650,7 +650,7 @@ git merge commit are mentioned. - #8038 `e2bf830` Various minor fixes (MarcoFalke) - #8072 `1b87e5b` Travis: 'make check' in parallel and verbose (theuni) - #8056 `8844ef1` Remove hardcoded "4 nodes" from test_framework (MarcoFalke) -- #8047 `37f9a1f` Test_framework: Set wait-timeout for BGLd procs (MarcoFalke) +- #8047 `37f9a1f` Test_framework: Set wait-timeout for bitcoind procs (MarcoFalke) - #8095 `6700cc9` Test framework: only cleanup on successful test runs (sdaftuar) - #8098 `06bd4f6` Test_framework: Append portseed to tmpdir (MarcoFalke) - #8104 `6ff2c8d` Add timeout to sync_blocks() and sync_mempools() (sdaftuar) @@ -660,7 +660,7 @@ git merge commit are mentioned. - #8090 `a2df115` Adding P2SH(p2pkh) script test case (Christewart) - #7992 `ec45cc5` Extend #7956 with one more test (TheBlueMatt) - #8139 `ae5575b` Fix interrupted HTTP RPC connection workaround for Python 3.5+ (sipa) -- #8164 `0f24eaf` [BGL-Tx] fix missing test fixtures, fix 32bit atoi issue (jonasschnelli) +- #8164 `0f24eaf` [Bitcoin-Tx] fix missing test fixtures, fix 32bit atoi issue (jonasschnelli) - #8166 `0b5279f` Src/test: Do not shadow local variables (paveljanik) - #8141 `44c1b1c` Continuing port of java comparison tool (mrbandrews) - #8201 `36b7400` fundrawtransaction: Fix race, assert amounts (MarcoFalke) @@ -670,7 +670,7 @@ git merge commit are mentioned. - #8216 `0d41d70` Assert 'changePosition out of bounds' (MarcoFalke) - #8222 `961893f` Enable mempool consistency checks in unit tests (sipa) - #7751 `84370d5` test_framework: python3.4 authproxy compat (laanwj) -- #7744 `d8e862a` test_framework: detect failure of BGLd startup (laanwj) +- #7744 `d8e862a` test_framework: detect failure of bitcoind startup (laanwj) - #8280 `115735d` Increase sync_blocks() timeouts in pruning.py (MarcoFalke) - #8340 `af9b7a9` Solve trivial merge conflict in p2p-segwit.py (MarcoFalke) - #8067 `3e4cf8f` Travis: use slim generic image, and some fixups (theuni) @@ -707,7 +707,7 @@ git merge commit are mentioned. - #7791 `e30a5b0` Change Precise to Trusty in gitian-building.md (JeremyRand) - #7838 `8bb5d3d` Update gitian build guide to debian 8.4.0 (fanquake) - #7855 `b778e59` Replace precise with trusty (MarcoFalke) -- #7975 `fc23fee` Update BGL-core GitHub links (MarcoFalke) +- #7975 `fc23fee` Update bitcoin-core GitHub links (MarcoFalke) - #8034 `e3a8207` Add basic git squash workflow (fanquake) - #7813 `214ec0b` Update port in tor.md (MarcoFalke) - #8193 `37c9830` Use Debian 8.5 in the gitian-build guide (fanquake) @@ -865,4 +865,4 @@ Thanks to everyone who directly contributed to this release: - Wladimir J. van der Laan - Yuri Zhykin -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.13.1.md b/doc/release-notes/release-notes-0.13.1.md index 5fba8a694a..75c2d61be8 100644 --- a/doc/release-notes/release-notes-0.13.1.md +++ b/doc/release-notes/release-notes-0.13.1.md @@ -1,6 +1,6 @@ -BGL Core version 0.13.1 is now available from: +Bitcoin Core version 0.13.1 is now available from: - + This is a new minor version release, including activation parameters for the segwit softfork, various bugfixes and performance improvements, as well as @@ -8,22 +8,22 @@ updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: - + Compatibility ============== Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support), an OS initially released in 2001. This means that not even critical security -updates will be released anymore. Without security updates, using a BGL +updates will be released anymore. Without security updates, using a bitcoin wallet on a XP machine is irresponsible at least. -In addition to that, with 0.12.x there have been varied reports of BGL Core -randomly crashing on Windows XP. It is [not clear](https://github.com/BGL/BGL/issues/7681#issuecomment-217439891) +In addition to that, with 0.12.x there have been varied reports of Bitcoin Core +randomly crashing on Windows XP. It is [not clear](https://github.com/bitcoin/bitcoin/issues/7681#issuecomment-217439891) what the source of these crashes is, but it is likely that upstream libraries such as Qt are no longer being tested on XP. @@ -56,9 +56,9 @@ covered by the txid. This provides several immediate benefits: identifier (txid) of transactions without referencing the witness, which can sometimes be changed by third-parties (such as miners) or by co-signers in a multisig spend. This solves all known cases of unwanted transaction - malleability, which is a problem that makes programming BGL wallet + malleability, which is a problem that makes programming Bitcoin wallet software more difficult and which seriously complicates the design of smart - contracts for BGL. + contracts for Bitcoin. - **Capacity increase:** Segwit transactions contain new fields that are not part of the data currently used to calculate the size of a block, which @@ -72,7 +72,7 @@ covered by the txid. This provides several immediate benefits: following section for details). - **Weighting data based on how it affects node performance:** Some parts of - each BGL block need to be stored by nodes in order to validate future + each Bitcoin block need to be stored by nodes in order to validate future blocks; other parts of a block can be immediately forgotten (pruned) or used only for helping other nodes sync their copy of the block chain. One large part of the immediately prunable data are transaction signatures (witnesses), @@ -89,8 +89,8 @@ covered by the txid. This provides several immediate benefits: (such as hardware wallets), reduces the amount of data the signature generator needs to download, and allows the signature generator to operate more quickly. This is made possible by having the generator sign the amount - of BGLs they think they are spending, and by having full nodes refuse to - accept those signatures unless the amount of BGLs being spent is exactly + of bitcoins they think they are spending, and by having full nodes refuse to + accept those signatures unless the amount of bitcoins being spent is exactly the same as was signed. For non-segwit transactions, wallets instead had to download the complete previous transactions being spent for every payment they made, which could be a slow operation on hardware wallets and in other @@ -105,7 +105,7 @@ covered by the txid. This provides several immediate benefits: different signature method that doesn't suffer from this problem and doesn't have any unwanted side-effects. -- **Increased security for multisig:** BGL addresses (both P2PKH addresses +- **Increased security for multisig:** Bitcoin addresses (both P2PKH addresses that start with a '1' and P2SH addresses that start with a '3') use a hash function known as RIPEMD-160. For P2PKH addresses, this provides about 160 bits of security---which is beyond what cryptographers believe can be broken @@ -115,15 +115,15 @@ covered by the txid. This provides several immediate benefits: Segwit allows advanced transactions to use the SHA256 hash function instead, which provides about 128 bits of security (that is 281 trillion times as much security as 80 bits and is equivalent to the maximum bits of security - believed to be provided by BGL's choice of parameters for its Elliptic + believed to be provided by Bitcoin's choice of parameters for its Elliptic Curve Digital Security Algorithm [ECDSA].) - **More efficient almost-full-node security** Satoshi Nakamoto's original - BGL paper describes a method for allowing newly-started full nodes to + Bitcoin paper describes a method for allowing newly-started full nodes to skip downloading and validating some data from historic blocks that are protected by large amounts of proof of work. Unfortunately, Nakamoto's method can't guarantee that a newly-started node using this method will - produce an accurate copy of BGL's current ledger (called the UTXO set), + produce an accurate copy of Bitcoin's current ledger (called the UTXO set), making the node vulnerable to falling out of consensus with other nodes. Although the problems with Nakamoto's method can't be fixed in a soft fork, Segwit accomplishes something similar to his original proposal: it makes it @@ -131,18 +131,18 @@ covered by the txid. This provides several immediate benefits: (specifically, the segregated witnesses) while still ensuring that the node can build an accurate copy of the UTXO set for the block chain with the most proof of work. Segwit enables this capability at the consensus layer, but - note that BGL Core does not provide an option to use this capability as + note that Bitcoin Core does not provide an option to use this capability as of this 0.13.1 release. - **Script versioning:** Segwit makes it easy for future soft forks to allow - BGL users to individually opt-in to almost any change in the BGL + Bitcoin users to individually opt-in to almost any change in the Bitcoin Script language when those users receive new transactions. Features - currently being researched by BGL Core contributors that may use this + currently being researched by Bitcoin Core contributors that may use this capability include support for Schnorr signatures, which can improve the privacy and efficiency of multisig transactions (or transactions with multiple inputs), and Merklized Abstract Syntax Trees (MAST), which can improve the privacy and efficiency of scripts with two or more conditions. - Other BGL community members are studying several other improvements + Other Bitcoin community members are studying several other improvements that can be made using script versioning. Activation for the segwit soft fork is being managed using BIP9 @@ -159,13 +159,13 @@ For more information about segwit, please see the [segwit FAQ][], the operator, please see the [versionbits FAQ][] for information about signaling support for a soft fork. -[Segwit FAQ]: https://BGLcore.org/en/2016/01/26/segwit-benefits/ -[segwit wallet developers guide]: https://BGLcore.org/en/segwit_wallet_dev/ -[BIP141]: https://github.com/BGL/bips/blob/master/bip-0141.mediawiki -[BIP143]: https://github.com/BGL/bips/blob/master/bip-0143.mediawiki -[BIP144]: https://github.com/BGL/bips/blob/master/bip-0144.mediawiki -[BIP145]: https://github.com/BGL/bips/blob/master/bip-0145.mediawiki -[versionbits FAQ]: https://BGLcore.org/en/2016/06/08/version-bits-miners-faq/ +[Segwit FAQ]: https://bitcoincore.org/en/2016/01/26/segwit-benefits/ +[segwit wallet developers guide]: https://bitcoincore.org/en/segwit_wallet_dev/ +[BIP141]: https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki +[BIP143]: https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki +[BIP144]: https://github.com/bitcoin/bips/blob/master/bip-0144.mediawiki +[BIP145]: https://github.com/bitcoin/bips/blob/master/bip-0145.mediawiki +[versionbits FAQ]: https://bitcoincore.org/en/2016/06/08/version-bits-miners-faq/ Null dummy soft fork @@ -183,7 +183,7 @@ a third-party to insert data into other people's transactions, changing the transaction's txid (called transaction malleability) and possibly causing other problems. -Since BGL Core 0.10.0, nodes have defaulted to only relaying and +Since Bitcoin Core 0.10.0, nodes have defaulted to only relaying and mining transactions whose dummy element was a null value (0x00, also called OP_0). The null dummy soft fork turns this relay rule into a consensus rule both for non-segwit transactions and segwit transactions, @@ -196,7 +196,7 @@ as segwit. For more information, please see [BIP147][]. -[BIP147]: https://github.com/BGL/bips/blob/master/bip-0147.mediawiki +[BIP147]: https://github.com/bitcoin/bips/blob/master/bip-0147.mediawiki Low-level RPC changes --------------------- @@ -215,9 +215,9 @@ is provided below. The following extra files can be found in the download directory or torrent: -- `BGL-${VERSION}-arm-linux-gnueabihf.tar.gz`: Linux binaries targeting +- `bitcoin-${VERSION}-arm-linux-gnueabihf.tar.gz`: Linux binaries targeting the 32-bit ARMv7-A architecture. -- `BGL-${VERSION}-aarch64-linux-gnu.tar.gz`: Linux binaries targeting +- `bitcoin-${VERSION}-aarch64-linux-gnu.tar.gz`: Linux binaries targeting the 64-bit ARMv8-A architecture. ARM builds are still experimental. If you have problems on a certain device or @@ -243,7 +243,7 @@ git merge commit are mentioned. ### Consensus - #8636 `9dfa0c8` Implement NULLDUMMY softfork (BIP147) (jl2012) -- #8848 `7a34a46` Add NULLDUMMY verify flag in BGLconsensus.h (jl2012) +- #8848 `7a34a46` Add NULLDUMMY verify flag in bitcoinconsensus.h (jl2012) - #8937 `8b66659` Define start and end time for segwit deployment (sipa) ### RPC and other APIs @@ -275,13 +275,13 @@ git merge commit are mentioned. - #8612 `2215c22` Check for compatibility with download in FindNextBlocksToDownload (sipa) - #8606 `bbf379b` Fix some locks (sipa) - #8594 `ab295bb` Do not add random inbound peers to addrman (gmaxwell) -- #8940 `5b4192b` Add x9 service bit support to dnsseed.bluematt.me, seed.BGLstats.com (TheBlueMatt, cdecker) +- #8940 `5b4192b` Add x9 service bit support to dnsseed.bluematt.me, seed.bitcoinstats.com (TheBlueMatt, cdecker) - #8944 `685e4c7` Remove bogus assert on number of oubound connections. (TheBlueMatt) - #8949 `0dbc48a` Be more agressive in getting connections to peers with relevant services (gmaxwell) ### Build system -- #8293 `fa5b249` Allow building libBGLconsensus without any univalue (luke-jr) -- #8492 `8b0bdd3` Allow building bench_BGL by itself (luke-jr) +- #8293 `fa5b249` Allow building libbitcoinconsensus without any univalue (luke-jr) +- #8492 `8b0bdd3` Allow building bench_bitcoin by itself (luke-jr) - #8563 `147003c` Add configure check for -latomic (ajtowns) - #8626 `ea51b0f` Berkeley DB v6 compatibility fix (netsafe) - #8520 `75f2065` Remove check for `openssl/ec.h` (laanwj) @@ -320,16 +320,16 @@ git merge commit are mentioned. - #8418 `ff893aa` Add tests for compact blocks (sdaftuar) - #8803 `375437c` Ping regularly in p2p-segwit.py to keep connection alive (jl2012) - #8827 `9bbe66e` Split up slow RPC calls to avoid pruning test timeouts (sdaftuar) -- #8829 `2a8bca4` Add BGL-tx JSON tests (jnewbery) +- #8829 `2a8bca4` Add bitcoin-tx JSON tests (jnewbery) - #8834 `1dd1783` blockstore: Switch to dumb dbm (MarcoFalke) - #8835 `d87227d` nulldummy.py: Don't run unused code (MarcoFalke) -- #8836 `eb18cc1` BGL-util-test.py should fail if the output file is empty (jnewbery) +- #8836 `eb18cc1` bitcoin-util-test.py should fail if the output file is empty (jnewbery) - #8839 `31ab2f8` Avoid ConnectionResetErrors during RPC tests (laanwj) - #8840 `cbc3fe5` Explicitly set encoding to utf8 when opening text files (laanwj) - #8841 `3e4abb5` Fix nulldummy test (jl2012) - #8854 `624a007` Fix race condition in p2p-compactblocks test (sdaftuar) - #8857 `1f60d45` mininode: Only allow named args in wait_until (MarcoFalke) -- #8860 `0bee740` util: Move wait_BGLds() into stop_nodes() (MarcoFalke) +- #8860 `0bee740` util: Move wait_bitcoinds() into stop_nodes() (MarcoFalke) - #8882 `b73f065` Fix race conditions in p2p-compactblocks.py and sendheaders.py (sdaftuar) - #8904 `cc6f551` Fix compact block shortids for a test case (dagurval) @@ -337,7 +337,7 @@ git merge commit are mentioned. - #8754 `0e2c6bd` Target protobuf 2.6 in OS X build notes. (fanquake) - #8461 `b17a3f9` Document return value of networkhashps for getmininginfo RPC endpoint (jlopp) - #8512 `156e305` Corrected JSON typo on setban of net.cpp (sevastos) -- #8683 `8a7d7ff` Fix incorrect file name BGL.qrc (BGLsSG) +- #8683 `8a7d7ff` Fix incorrect file name bitcoin.qrc (bitcoinsSG) - #8891 `5e0dd9e` Update bips.md for Segregated Witness (fanquake) - #8545 `863ae74` Update git-subtree-check.sh README (MarcoFalke) - #8607 `486650a` Fix doxygen off-by-one comments, fix typos (MarcoFalke) @@ -352,7 +352,7 @@ git merge commit are mentioned. - #8742 `d31ac72` Specify Protobuf version 2 in paymentrequest.proto (fanquake) - #8414,#8558,#8676,#8700,#8701,#8702 Add missing copyright headers (isle2983, kazcw) - #8899 `4ed2627` Fix wake from sleep issue with Boost 1.59.0 (fanquake) -- #8817 `bcf3806` update BGL-tx to output witness data (jnewbery) +- #8817 `bcf3806` update bitcoin-tx to output witness data (jnewbery) - #8513 `4e5fc31` Fix a type error that would not compile on OSX. (JeremyRubin) - #8392 `30eac2d` Fix several node initialization issues (sipa) - #8548 `305d8ac` Use `__func__` to get function name for output printing (MarcoFalke) @@ -407,4 +407,4 @@ Thanks to everyone who directly contributed to this release: - whythat - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.13.2.md b/doc/release-notes/release-notes-0.13.2.md index 94665cd34e..45fff5c8bb 100644 --- a/doc/release-notes/release-notes-0.13.2.md +++ b/doc/release-notes/release-notes-0.13.2.md @@ -1,28 +1,28 @@ -BGL Core version 0.13.2 is now available from: +Bitcoin Core version 0.13.2 is now available from: - + This is a new minor version release, including various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: - + Compatibility ============== Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support), an OS initially released in 2001. This means that not even critical security -updates will be released anymore. Without security updates, using a BGL +updates will be released anymore. Without security updates, using a bitcoin wallet on a XP machine is irresponsible at least. -In addition to that, with 0.12.x there have been varied reports of BGL Core -randomly crashing on Windows XP. It is [not clear](https://github.com/BGL/BGL/issues/7681#issuecomment-217439891) +In addition to that, with 0.12.x there have been varied reports of Bitcoin Core +randomly crashing on Windows XP. It is [not clear](https://github.com/bitcoin/bitcoin/issues/7681#issuecomment-217439891) what the source of these crashes is, but it is likely that upstream libraries such as Qt are no longer being tested on XP. @@ -111,7 +111,7 @@ git merge commit are mentioned. - #8972 `6f86b53` Make warnings label selectable (jonasschnelli) (MarcoFalke) - #9185 `6d70a73` Fix coincontrol sort issue (jonasschnelli) - #9094 `5f3a12c` Use correct conversion function for boost::path datadir (laanwj) -- #8908 `4a974b2` Update BGL-qt.desktop (s-matthew-english) +- #8908 `4a974b2` Update bitcoin-qt.desktop (s-matthew-english) - #9190 `dc46b10` Plug many memory leaks (laanwj) ### Wallet @@ -134,7 +134,7 @@ git merge commit are mentioned. - #8838 `094848b` Calculate size and weight of block correctly in CreateNewBlock() (jnewbery) - #8920 `40169dc` Set minimum required Boost to 1.47.0 (fanquake) - #9251 `a710a43` Improvement of documentation of command line parameter 'whitelist' (wodry) -- #8932 `106da69` Allow BGL-tx to create v2 transactions (btcdrak) +- #8932 `106da69` Allow bitcoin-tx to create v2 transactions (btcdrak) - #8929 `12428b4` add software-properties-common (sigwo) - #9120 `08d1c90` bug: Missed one "return false" in recent refactoring in #9067 (UdjinM6) - #9067 `f85ee01` Fix exit codes (UdjinM6) @@ -175,4 +175,4 @@ Thanks to everyone who directly contributed to this release: - Wladimir J. van der Laan - wodry -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.14.0.md b/doc/release-notes/release-notes-0.14.0.md index 8769e2b9eb..c41f22979b 100644 --- a/doc/release-notes/release-notes-0.14.0.md +++ b/doc/release-notes/release-notes-0.14.0.md @@ -1,22 +1,22 @@ -BGL Core version 0.14.0 is now available from: +Bitcoin Core version 0.14.0 is now available from: - + This is a new major version release, including new features, various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: - + Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support), @@ -24,7 +24,7 @@ No attempt is made to prevent installing or running the software on Windows XP, can still do so at your own risk but be aware that there are known instabilities and issues. Please do not report issues about Windows XP to the issue tracker. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -55,7 +55,7 @@ improved, leading to much shorter sync and initial block download times. Manual Pruning -------------- -BGL Core has supported automatically pruning the blockchain since 0.11. Pruning +Bitcoin Core has supported automatically pruning the blockchain since 0.11. Pruning the blockchain allows for significant storage space savings as the vast majority of the downloaded data can be discarded after processing so very little of it remains on the disk. @@ -96,7 +96,7 @@ ZMQ On Windows Previously the ZeroMQ notification system was unavailable on Windows due to various issues with ZMQ. These have been fixed upstream and -now ZMQ can be used on Windows. Please see [this document](https://github.com/BitgesellOfficial/bitgesell/blob/master/doc/zmq.md) for +now ZMQ can be used on Windows. Please see [this document](https://github.com/bitcoin/bitcoin/blob/master/doc/zmq.md) for help with using ZMQ in general. Nested RPC Commands in Debug Console @@ -129,7 +129,7 @@ the same thing as the GUI icon. The command takes one boolean parameter, Out-of-sync Modal Info Layer ---------------------------- -When BGL Core is out-of-sync on startup, a semi-transparent information +When Bitcoin Core is out-of-sync on startup, a semi-transparent information layer will be shown over top of the normal display. This layer contains details about the current sync progress and estimates the amount of time remaining to finish syncing. This layer can also be hidden and subsequently @@ -138,19 +138,19 @@ unhidden by clicking on the progress bar at the bottom of the window. Support for JSON-RPC Named Arguments ------------------------------------ -Commands sent over the JSON-RPC interface and through the `BGL-cli` binary +Commands sent over the JSON-RPC interface and through the `bitcoin-cli` binary can now use named arguments. This follows the [JSON-RPC specification](http://www.jsonrpc.org/specification) for passing parameters by-name with an object. -`BGL-cli` has been updated to support this by parsing `name=value` arguments +`bitcoin-cli` has been updated to support this by parsing `name=value` arguments when the `-named` option is given. Some examples: - src/BGL-cli -named help command="help" - src/BGL-cli -named getblockhash height=0 - src/BGL-cli -named getblock blockhash=000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f - src/BGL-cli -named sendtoaddress address="(snip)" amount="1.0" subtractfeefromamount=true + src/bitcoin-cli -named help command="help" + src/bitcoin-cli -named getblockhash height=0 + src/bitcoin-cli -named getblock blockhash=000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f + src/bitcoin-cli -named sendtoaddress address="(snip)" amount="1.0" subtractfeefromamount=true The order of arguments doesn't matter in this case. Named arguments are also useful to leave out arguments that should stay at their default value. The @@ -189,7 +189,7 @@ commands such as `prioritisetransaction` so that those changes will not be lost. Final Alert ----------- -The Alert System was [disabled and deprecated](https://BGL.org/en/alert/2016-11-01-alert-retirement) in BGL Core 0.12.1 and removed in 0.13.0. +The Alert System was [disabled and deprecated](https://bitcoin.org/en/alert/2016-11-01-alert-retirement) in Bitcoin Core 0.12.1 and removed in 0.13.0. The Alert System was retired with a maximum sequence final alert which causes any nodes supporting the Alert System to display a static hard-coded "Alert Key Compromised" message which also prevents any other alerts from overriding it. This final alert is hard-coded into this release @@ -241,8 +241,8 @@ Low-level RPC changes the mempool or if `txindex` is enabled. - A new RPC command `getmemoryinfo` has been added which will return information - about the memory usage of BGL Core. This was added in conjunction with - optimizations to memory management. See [Pull #8753](https://github.com/BGL/BGL/pull/8753) + about the memory usage of Bitcoin Core. This was added in conjunction with + optimizations to memory management. See [Pull #8753](https://github.com/bitcoin/bitcoin/pull/8753) for more information. - A new RPC command `bumpfee` has been added which allows replacing an @@ -367,7 +367,7 @@ and git merge commit are mentioned. - #8421 `b77bb95` httpserver: drop boost dependency (theuni) - #8638 `f061415` rest.cpp: change `HTTP_INTERNAL_SERVER_ERROR` to `HTTP_BAD_REQUEST` (djpnewton) - #8272 `91990ee` Make the dummy argument to getaddednodeinfo optional (sipa) -- #8722 `bb843ad` BGL-cli: More detailed error reporting (laanwj) +- #8722 `bb843ad` bitcoin-cli: More detailed error reporting (laanwj) - #6996 `7f71a3c` Add preciousblock RPC (sipa) - #8788 `97c7f73` Give RPC commands more information about the RPC request (jonasschnelli) - #7948 `5d2c8e5` Augment getblockchaininfo bip9\_softforks data (mruddy) @@ -626,14 +626,14 @@ and git merge commit are mentioned. - #8680 `666eaf0` Address Travis spurious failures (theuni) - #8789 `e31a43c` pull-tester: Only print output when failed (MarcoFalke) - #8810 `14e8f99` tests: Add exception error message for JSONRPCException (laanwj) -- #8830 `ef0801b` test: Add option to run BGL-util-test.py manually (jnewbery) -- #8881 `e66cc1d` Add some verbose logging to BGL-util-test.py (jnewbery) +- #8830 `ef0801b` test: Add option to run bitcoin-util-test.py manually (jnewbery) +- #8881 `e66cc1d` Add some verbose logging to bitcoin-util-test.py (jnewbery) - #8922 `0329511` Send segwit-encoded blocktxn messages in p2p-compactblocks (TheBlueMatt) - #8873 `74dc388` Add microbenchmarks to profile more code paths (ryanofsky) - #9032 `6a8be7b` test: Add format-dependent comparison to bctest (laanwj) -- #9023 `774db92` Add logging to BGL-util-test.py (jnewbery) +- #9023 `774db92` Add logging to bitcoin-util-test.py (jnewbery) - #9065 `c9bdf9a` Merge `doc/unit-tests.md` into `src/test/README.md` (laanwj) -- #9069 `ed64bce` Clean up bctest.py and BGL-util-test.py (jnewbery) +- #9069 `ed64bce` Clean up bctest.py and bitcoin-util-test.py (jnewbery) - #9095 `b8f43e3` test: Fix test\_random includes (MarcoFalke) - #8894 `faec09b` Testing: Include fRelay in mininode version messages (jnewbery) - #9097 `e536499` Rework `sync_*` and preciousblock.py (MarcoFalke) @@ -665,7 +665,7 @@ and git merge commit are mentioned. - #9628 `f895023` Increase a sync\_blocks timeout in pruning.py (sdaftuar) - #9638 `a7ea2f8` Actually test assertions in pruning.py (MarcoFalke) - #9647 `e99f0d7` Skip RAII event tests if libevent is built without `event_set_mem_functions` (luke-jr) -- #9691 `fc67cd2` Init ECC context for `test_BGL_fuzzy` (gmaxwell) +- #9691 `fc67cd2` Init ECC context for `test_bitcoin_fuzzy` (gmaxwell) - #9712 `d304fef` bench: Fix initialization order in registration (laanwj) - #9707 `b860915` Fix RPC failure testing (jnewbery) - #9269 `43e8150` Align struct COrphan definition (sipa) @@ -711,25 +711,25 @@ and git merge commit are mentioned. - #8965 `23e03f8` Mention that PPA doesn't support Debian (anduck) - #9115 `bfc7aad` Mention reporting security issues responsibly (paveljanik) - #9840 `08e0690` Update sendfrom RPC help to correct coin selection misconception (ryanofsky) -- #9865 `289204f` Change BGL address in RPC help message (marijnfs) +- #9865 `289204f` Change bitcoin address in RPC help message (marijnfs) ### Miscellaneous - #8274 `7a2d402` util: Update tinyformat (laanwj) - #8291 `5cac8b1` util: CopyrightHolders: Check for untranslated substitution (MarcoFalke) - #8557 `44691f3` contrib: Rework verifybinaries (MarcoFalke) - #8621 `e8ed6eb` contrib: python: Don't use shell=True (MarcoFalke) -- #8813 `fb24d7e` BGLd: Daemonize using daemon(3) (laanwj) +- #8813 `fb24d7e` bitcoind: Daemonize using daemon(3) (laanwj) - #9004 `67728a3` Clarify `listenonion` (unsystemizer) - #8674 `bae81b8` tools for analyzing, updating and adding copyright headers in source files (isle2983) - #8976 `8c6218a` libconsensus: Add input validation of flags (laanwj) - #9112 `46027e8` Avoid ugly exception in log on unknown inv type (laanwj) -- #8837 `2108911` Allow BGL-tx to parse partial transactions (jnewbery) +- #8837 `2108911` Allow bitcoin-tx to parse partial transactions (jnewbery) - #9204 `74ced54` Clarify CreateTransaction error messages (instagibbs) -- #9265 `31bcc66` BGL-cli: Make error message less confusing (laanwj) +- #9265 `31bcc66` bitcoin-cli: Make error message less confusing (laanwj) - #9303 `72bf1b3` Update comments in ctaes (sipa) - #9417 `c4b7d4f` Do not evaluate hidden LogPrint arguments (sipa) - #9506 `593a00c` RFC: Improve style for if indentation (sipa) -- #8883 `d5d4ad8` Add all standard TXO types to BGL-tx (jnewbery) +- #8883 `d5d4ad8` Add all standard TXO types to bitcoin-tx (jnewbery) - #9531 `23281a4` Release notes for estimation changes (morcos) - #9486 `f62bc10` Make peer=%d log prints consistent (TheBlueMatt) - #9552 `41cb05c` Add IPv6 support to qos.sh (jamesmacwhite) @@ -870,4 +870,4 @@ Thanks to everyone who directly contributed to this release: - wodry - Zak Wilcox -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.14.1.md b/doc/release-notes/release-notes-0.14.1.md index cfe32b947e..ef072afd4d 100644 --- a/doc/release-notes/release-notes-0.14.1.md +++ b/doc/release-notes/release-notes-0.14.1.md @@ -1,22 +1,22 @@ -BGL Core version 0.14.1 is now available from: +Bitcoin Core version 0.14.1 is now available from: - + This is a new minor version release, including various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: - + Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support), @@ -24,7 +24,7 @@ No attempt is made to prevent installing or running the software on Windows XP, can still do so at your own risk but be aware that there are known instabilities and issues. Please do not report issues about Windows XP to the issue tracker. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -75,7 +75,7 @@ this parameter. Additional information relating to running on low-memory systems can be found here: -[reducing-BGLd-memory-usage.md](https://gist.github.com/laanwj/efe29c7661ce9b6620a7). +[reducing-bitcoind-memory-usage.md](https://gist.github.com/laanwj/efe29c7661ce9b6620a7). 0.14.1 Change log ================= @@ -117,7 +117,7 @@ git merge commit are mentioned. ### Miscellaneous - #10037 `4d8e660` Trivial: Fix typo in help getrawtransaction RPC (keystrike) - #10120 `e4c9a90` util: Work around (virtual) memory exhaustion on 32-bit w/ glibc (laanwj) -- #10130 `ecc5232` BGL-tx input verification (awemany, jnewbery) +- #10130 `ecc5232` bitcoin-tx input verification (awemany, jnewbery) Credits ======= @@ -139,5 +139,5 @@ Thanks to everyone who directly contributed to this release: - Suhas Daftuar - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.14.2.md b/doc/release-notes/release-notes-0.14.2.md index a4edd585ae..0ad554b773 100644 --- a/doc/release-notes/release-notes-0.14.2.md +++ b/doc/release-notes/release-notes-0.14.2.md @@ -1,22 +1,22 @@ -BGL Core version 0.14.2 is now available from: +Bitcoin Core version 0.14.2 is now available from: - + This is a new minor version release, including various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: - + Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support), @@ -24,7 +24,7 @@ No attempt is made to prevent installing or running the software on Windows XP, can still do so at your own risk but be aware that there are known instabilities and issues. Please do not report issues about Windows XP to the issue tracker. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -40,7 +40,7 @@ other impact. This only affects users that have explicitly enabled UPnP through the GUI setting or through the `-upnp` option, as since the last UPnP vulnerability -(in BGL Core 0.10.3) it has been disabled by default. +(in Bitcoin Core 0.10.3) it has been disabled by default. If you use this option, it is recommended to upgrade to this version as soon as possible. @@ -48,7 +48,7 @@ possible. Known Bugs ========== -Since 0.14.0 the approximate transaction fee shown in BGL-Qt when using coin +Since 0.14.0 the approximate transaction fee shown in Bitcoin-Qt when using coin control and smart fee estimation does not reflect any change in target from the smart fee slider. It will only present an approximate fee calculated using the default target. The fee calculated using the correct target is still applied to @@ -71,7 +71,7 @@ git merge commit are mentioned. ### Build system - #10414 `ffb0c4b` miniupnpc 2.0.20170509 (fanquake) -- #10228 `ae479bc` Regenerate BGL-config.h as necessary (theuni) +- #10228 `ae479bc` Regenerate bitcoin-config.h as necessary (theuni) ### Miscellaneous - #10245 `44a17f2` Minor fix in build documentation for FreeBSD 11 (shigeya) @@ -98,5 +98,5 @@ Thanks to everyone who directly contributed to this release: - Shigeya Suzuki - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.14.3.md b/doc/release-notes/release-notes-0.14.3.md index 639e6ac424..8259152f0b 100644 --- a/doc/release-notes/release-notes-0.14.3.md +++ b/doc/release-notes/release-notes-0.14.3.md @@ -1,22 +1,22 @@ -BGL Core version *0.14.3* is now available from: +Bitcoin Core version *0.14.3* is now available from: - + This is a new minor version release, including various bugfixes and performance improvements. Please report bugs using the issue tracker at github: - + To receive security and update notifications, please subscribe to: - + Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support), @@ -24,7 +24,7 @@ No attempt is made to prevent installing or running the software on Windows XP, can still do so at your own risk but be aware that there are known instabilities and issues. Please do not report issues about Windows XP to the issue tracker. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -34,13 +34,13 @@ Denial-of-Service vulnerability CVE-2018-17144 ------------------------------- A denial-of-service vulnerability exploitable by miners has been discovered in -BGL Core versions 0.14.0 up to 0.16.2. It is recommended to upgrade any of +Bitcoin Core versions 0.14.0 up to 0.16.2. It is recommended to upgrade any of the vulnerable versions to 0.14.3, 0.15.2 or 0.16.3 as soon as possible. Known Bugs ========== -Since 0.14.0 the approximate transaction fee shown in BGL-Qt when using coin +Since 0.14.0 the approximate transaction fee shown in Bitcoin-Qt when using coin control and smart fee estimation does not reflect any change in target from the smart fee slider. It will only present an approximate fee calculated using the default target. The fee calculated using the correct target is still applied to @@ -72,7 +72,7 @@ git merge commit are mentioned. ### Miscellaneous -- #10451 `3612219` contrib/init/BGLd.openrcconf: Don't disable wallet by default (Luke Dashjr) +- #10451 `3612219` contrib/init/bitcoind.openrcconf: Don't disable wallet by default (Luke Dashjr) - #10250 `e23cef0` Fix some empty vector references (Pieter Wuille) - #10196 `d28d583` PrioritiseTransaction updates the mempool tx counter (Suhas Daftuar) - #9497 `e207342` Fix CCheckQueue IsIdle (potential) race condition and remove dangerous constructors. (Jeremy Rubin) diff --git a/doc/release-notes/release-notes-0.15.0.1.md b/doc/release-notes/release-notes-0.15.0.1.md index 178f8d5537..53ab02cbb0 100644 --- a/doc/release-notes/release-notes-0.15.0.1.md +++ b/doc/release-notes/release-notes-0.15.0.1.md @@ -1,28 +1,28 @@ -BGL Core version *0.15.0.1* is now available from: +Bitcoin Core version *0.15.0.1* is now available from: - + and - + This is a minor bug fix for 0.15.0. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or higher, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to @@ -51,10 +51,10 @@ processing the entire blockchain. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -84,4 +84,4 @@ Thanks to everyone who directly contributed to this release: - Jonas Schnelli - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.15.0.md b/doc/release-notes/release-notes-0.15.0.md index aaeda737e7..3d000e94d5 100644 --- a/doc/release-notes/release-notes-0.15.0.md +++ b/doc/release-notes/release-notes-0.15.0.md @@ -1,25 +1,25 @@ -BGL Core version *0.15.0* is now available from: +Bitcoin Core version *0.15.0* is now available from: - + This is a new major version release, including new features, various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to half an hour, @@ -48,10 +48,10 @@ processing the entire blockchain. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notes for 0.15.0 @@ -85,7 +85,7 @@ Version 0.15 contains a number of significant performance improvements, which ma Initial Block Download, startup, transaction and block validation much faster: - The chainstate database (which is used for tracking UTXOs) has been changed - from a per-transaction model to a per-output model (See [PR 10195](https://github.com/BGL/BGL/pull/10195)). Advantages of this model + from a per-transaction model to a per-output model (See [PR 10195](https://github.com/bitcoin/bitcoin/pull/10195)). Advantages of this model are that it: - avoids the CPU overhead of deserializing and serializing the unused outputs; - has more predictable memory usage; @@ -98,32 +98,32 @@ Initial Block Download, startup, transaction and block validation much faster: a few extra gigabytes may be used. - Earlier versions experienced a spike in memory usage while flushing UTXO updates to disk. As a result, only half of the available memory was actually used as cache, and the other half was - reserved to accommodate flushing. This is no longer the case (See [PR 10148](https://github.com/BGL/BGL/pull/10148)), and the entirety of + reserved to accommodate flushing. This is no longer the case (See [PR 10148](https://github.com/bitcoin/bitcoin/pull/10148)), and the entirety of the available cache (see `-dbcache`) is now actually used as cache. This reduces the flushing frequency by a factor 2 or more. - In previous versions, signature validation for transactions has been cached when the transaction is accepted to the mempool. Version 0.15 extends this to cache the entire script - validity (See [PR 10192](https://github.com/BGL/BGL/pull/10192)). This means that if a transaction in a block has already been accepted to the + validity (See [PR 10192](https://github.com/bitcoin/bitcoin/pull/10192)). This means that if a transaction in a block has already been accepted to the mempool, the scriptSig does not need to be re-evaluated. Empirical tests show that this results in new block validation being 40-50% faster. -- LevelDB has been upgraded to version 1.20 (See [PR 10544](https://github.com/BGL/BGL/pull/10544)). This version contains hardware acceleration for CRC +- LevelDB has been upgraded to version 1.20 (See [PR 10544](https://github.com/bitcoin/bitcoin/pull/10544)). This version contains hardware acceleration for CRC on architectures supporting SSE 4.2. As a result, synchronization and block validation are now faster. -- SHA256 hashing has been optimized for architectures supporting SSE 4 (See [PR 10821](https://github.com/BGL/BGL/pull/10821)). SHA256 is around +- SHA256 hashing has been optimized for architectures supporting SSE 4 (See [PR 10821](https://github.com/bitcoin/bitcoin/pull/10821)). SHA256 is around 50% faster on supported hardware, which results in around 5% faster IBD and block validation. In version 0.15, SHA256 hardware optimization is disabled in release builds by default, but can be enabled by using `--enable-experimental-asm` when building. -- Refill of the keypool no longer flushes the wallet between each key which resulted in a ~20x speedup in creating a new wallet. Part of this speedup was used to increase the default keypool to 1000 keys to make recovery more robust. (See [PR 10831](https://github.com/BGL/BGL/pull/10831)). +- Refill of the keypool no longer flushes the wallet between each key which resulted in a ~20x speedup in creating a new wallet. Part of this speedup was used to increase the default keypool to 1000 keys to make recovery more robust. (See [PR 10831](https://github.com/bitcoin/bitcoin/pull/10831)). Fee Estimation Improvements --------------------------- -Fee estimation has been significantly improved in version 0.15, with more accurate fee estimates used by the wallet and a wider range of options for advanced users of the `estimatesmartfee` and `estimaterawfee` RPCs (See [PR 10199](https://github.com/BGL/BGL/pull/10199)). +Fee estimation has been significantly improved in version 0.15, with more accurate fee estimates used by the wallet and a wider range of options for advanced users of the `estimatesmartfee` and `estimaterawfee` RPCs (See [PR 10199](https://github.com/bitcoin/bitcoin/pull/10199)). ### Changes to internal logic and wallet behavior - Internally, estimates are now tracked on 3 different time horizons. This allows for longer targets and means estimates adjust more quickly to changes in conditions. - Estimates can now be *conservative* or *economical*. *Conservative* estimates use longer time horizons to produce an estimate which is less susceptible to rapid changes in fee conditions. *Economical* estimates use shorter time horizons and will be more affected by short-term changes in fee conditions. Economical estimates may be considerably lower during periods of low transaction activity (for example over weekends), but may result in transactions being unconfirmed if prevailing fees increase rapidly. -- By default, the wallet will use conservative fee estimates to increase the reliability of transactions being confirmed within the desired target. For transactions that are marked as replaceable, the wallet will use an economical estimate by default, since the fee can be 'bumped' if the fee conditions change rapidly (See [PR 10589](https://github.com/BGL/BGL/pull/10589)). +- By default, the wallet will use conservative fee estimates to increase the reliability of transactions being confirmed within the desired target. For transactions that are marked as replaceable, the wallet will use an economical estimate by default, since the fee can be 'bumped' if the fee conditions change rapidly (See [PR 10589](https://github.com/bitcoin/bitcoin/pull/10589)). - Estimates can now be made for confirmation targets up to 1008 blocks (one week). - More data on historical fee rates is stored, leading to more precise fee estimates. - Transactions which leave the mempool due to eviction or other non-confirmed reasons are now taken into account by the fee estimation logic, leading to more accurate fee estimates. @@ -132,27 +132,27 @@ Fee estimation has been significantly improved in version 0.15, with more accura ### Changes to fee estimate RPCs - The `estimatefee` RPC is now deprecated in favor of using only `estimatesmartfee` (which is the implementation used by the GUI) -- The `estimatesmartfee` RPC interface has been changed (See [PR 10707](https://github.com/BGL/BGL/pull/10707)): +- The `estimatesmartfee` RPC interface has been changed (See [PR 10707](https://github.com/bitcoin/bitcoin/pull/10707)): - The `nblocks` argument has been renamed to `conf_target` (to be consistent with other RPC methods). - An `estimate_mode` argument has been added. This argument takes one of the following strings: `CONSERVATIVE`, `ECONOMICAL` or `UNSET` (which defaults to `CONSERVATIVE`). - The RPC return object now contains an `errors` member, which returns errors encountered during processing. - - If BGL Core has not been running for long enough and has not seen enough blocks or transactions to produce an accurate fee estimation, an error will be returned (previously a value of -1 was used to indicate an error, which could be confused for a feerate). + - If Bitcoin Core has not been running for long enough and has not seen enough blocks or transactions to produce an accurate fee estimation, an error will be returned (previously a value of -1 was used to indicate an error, which could be confused for a feerate). - A new `estimaterawfee` RPC is added to provide raw fee data. External clients can query and use this data in their own fee estimation logic. Multi-wallet support -------------------- -BGL Core now supports loading multiple, separate wallets (See [PR 8694](https://github.com/BGL/BGL/pull/8694), [PR 10849](https://github.com/BGL/BGL/pull/10849)). The wallets are completely separated, with individual balances, keys and received transactions. +Bitcoin Core now supports loading multiple, separate wallets (See [PR 8694](https://github.com/bitcoin/bitcoin/pull/8694), [PR 10849](https://github.com/bitcoin/bitcoin/pull/10849)). The wallets are completely separated, with individual balances, keys and received transactions. -Multi-wallet is enabled by using more than one `-wallet` argument when starting BGL, either on the command line or in the BGL config file. +Multi-wallet is enabled by using more than one `-wallet` argument when starting Bitcoin, either on the command line or in the Bitcoin config file. -**In BGL-Qt, only the first wallet will be displayed and accessible for creating and signing transactions.** GUI selectable multiple wallets will be supported in a future version. However, even in 0.15 other loaded wallets will remain synchronized to the node's current tip in the background. This can be useful if running a pruned node, since loading a wallet where the most recent sync is beyond the pruned height results in having to download and revalidate the whole blockchain. Continuing to synchronize all wallets in the background avoids this problem. +**In Bitcoin-Qt, only the first wallet will be displayed and accessible for creating and signing transactions.** GUI selectable multiple wallets will be supported in a future version. However, even in 0.15 other loaded wallets will remain synchronized to the node's current tip in the background. This can be useful if running a pruned node, since loading a wallet where the most recent sync is beyond the pruned height results in having to download and revalidate the whole blockchain. Continuing to synchronize all wallets in the background avoids this problem. -BGL Core 0.15.0 contains the following changes to the RPC interface and `BGL-cli` for multi-wallet: +Bitcoin Core 0.15.0 contains the following changes to the RPC interface and `bitcoin-cli` for multi-wallet: -* When running BGL Core with a single wallet, there are **no** changes to the RPC interface or `BGL-cli`. All RPC calls and `BGL-cli` commands continue to work as before. -* When running BGL Core with multi-wallet, all *node-level* RPC methods continue to work as before. HTTP RPC requests should be send to the normal `:` endpoint, and `BGL-cli` commands should be run as before. A *node-level* RPC method is any method which does not require access to the wallet. -* When running BGL Core with multi-wallet, *wallet-level* RPC methods must specify the wallet for which they're intended in every request. HTTP RPC requests should be send to the `:/wallet/` endpoint, for example `127.0.0.1:8332/wallet/wallet1.dat`. `BGL-cli` commands should be run with a `-rpcwallet` option, for example `BGL-cli -rpcwallet=wallet1.dat getbalance`. +* When running Bitcoin Core with a single wallet, there are **no** changes to the RPC interface or `bitcoin-cli`. All RPC calls and `bitcoin-cli` commands continue to work as before. +* When running Bitcoin Core with multi-wallet, all *node-level* RPC methods continue to work as before. HTTP RPC requests should be send to the normal `:` endpoint, and `bitcoin-cli` commands should be run as before. A *node-level* RPC method is any method which does not require access to the wallet. +* When running Bitcoin Core with multi-wallet, *wallet-level* RPC methods must specify the wallet for which they're intended in every request. HTTP RPC requests should be send to the `:/wallet/` endpoint, for example `127.0.0.1:8332/wallet/wallet1.dat`. `bitcoin-cli` commands should be run with a `-rpcwallet` option, for example `bitcoin-cli -rpcwallet=wallet1.dat getbalance`. * A new *node-level* `listwallets` RPC method is added to display which wallets are currently loaded. The names returned by this method are the same as those used in the HTTP endpoint and for the `rpcwallet` argument. Note that while multi-wallet is now fully supported, the RPC multi-wallet interface should be considered unstable for version 0.15.0, and there may backwards-incompatible changes in future versions. @@ -160,18 +160,18 @@ Note that while multi-wallet is now fully supported, the RPC multi-wallet interf Replace-by-fee control in the GUI --------------------------------- -BGL Core has supported creating opt-in replace-by-fee (RBF) transactions +Bitcoin Core has supported creating opt-in replace-by-fee (RBF) transactions since version 0.12.0, and since version 0.14.0 has included a `bumpfee` RPC method to replace unconfirmed opt-in RBF transactions with a new transaction that pays a higher fee. In version 0.15, creating an opt-in RBF transaction and replacing the unconfirmed -transaction with a higher-fee transaction are both supported in the GUI (See [PR 9592](https://github.com/BGL/BGL/pull/9592)). +transaction with a higher-fee transaction are both supported in the GUI (See [PR 9592](https://github.com/bitcoin/bitcoin/pull/9592)). Removal of Coin Age Priority ---------------------------- -In previous versions of BGL Core, a portion of each block could be reserved for transactions based on the age and value of UTXOs they spent. This concept (Coin Age Priority) is a policy choice by miners, and there are no consensus rules around the inclusion of Coin Age Priority transactions in blocks. In practice, only a few miners continue to use Coin Age Priority for transaction selection in blocks. BGL Core 0.15 removes all remaining support for Coin Age Priority (See [PR 9602](https://github.com/BGL/BGL/pull/9602)). This has the following implications: +In previous versions of Bitcoin Core, a portion of each block could be reserved for transactions based on the age and value of UTXOs they spent. This concept (Coin Age Priority) is a policy choice by miners, and there are no consensus rules around the inclusion of Coin Age Priority transactions in blocks. In practice, only a few miners continue to use Coin Age Priority for transaction selection in blocks. Bitcoin Core 0.15 removes all remaining support for Coin Age Priority (See [PR 9602](https://github.com/bitcoin/bitcoin/pull/9602)). This has the following implications: - The concept of *free transactions* has been removed. High Coin Age Priority transactions would previously be allowed to be relayed even if they didn't attach a miner fee. This is no longer possible since there is no concept of Coin Age Priority. The `-limitfreerelay` and `-relaypriority` options which controlled relay of free transactions have therefore been removed. - The `-sendfreetransactions` option has been removed, since almost all miners do not include transactions which do not attach a transaction fee. @@ -185,26 +185,26 @@ In previous versions of BGL Core, a portion of each block could be reserved for Mempool Persistence Across Restarts ----------------------------------- -Version 0.14 introduced mempool persistence across restarts (the mempool is saved to a `mempool.dat` file in the data directory prior to shutdown and restores the mempool when the node is restarted). Version 0.15 allows this feature to be switched on or off using the `-persistmempool` command-line option (See [PR 9966](https://github.com/BGL/BGL/pull/9966)). By default, the option is set to true, and the mempool is saved on shutdown and reloaded on startup. If set to false, the `mempool.dat` file will not be loaded on startup or saved on shutdown. +Version 0.14 introduced mempool persistence across restarts (the mempool is saved to a `mempool.dat` file in the data directory prior to shutdown and restores the mempool when the node is restarted). Version 0.15 allows this feature to be switched on or off using the `-persistmempool` command-line option (See [PR 9966](https://github.com/bitcoin/bitcoin/pull/9966)). By default, the option is set to true, and the mempool is saved on shutdown and reloaded on startup. If set to false, the `mempool.dat` file will not be loaded on startup or saved on shutdown. New RPC methods --------------- Version 0.15 introduces several new RPC methods: -- `abortrescan` stops current wallet rescan, e.g. when triggered by an `importprivkey` call (See [PR 10208](https://github.com/BGL/BGL/pull/10208)). -- `combinerawtransaction` accepts a JSON array of raw transactions and combines them into a single raw transaction (See [PR 10571](https://github.com/BGL/BGL/pull/10571)). +- `abortrescan` stops current wallet rescan, e.g. when triggered by an `importprivkey` call (See [PR 10208](https://github.com/bitcoin/bitcoin/pull/10208)). +- `combinerawtransaction` accepts a JSON array of raw transactions and combines them into a single raw transaction (See [PR 10571](https://github.com/bitcoin/bitcoin/pull/10571)). - `estimaterawfee` returns raw fee data so that customized logic can be implemented to analyze the data and calculate estimates. See [Fee Estimation Improvements](#fee-estimation-improvements) for full details on changes to the fee estimation logic and interface. - `getchaintxstats` returns statistics about the total number and rate of transactions - in the chain (See [PR 9733](https://github.com/BGL/BGL/pull/9733)). + in the chain (See [PR 9733](https://github.com/bitcoin/bitcoin/pull/9733)). - `listwallets` lists wallets which are currently loaded. See the *Multi-wallet* section of these release notes for full details (See [Multi-wallet support](#multi-wallet-support)). -- `uptime` returns the total runtime of the `BGLd` server since its last start (See [PR 10400](https://github.com/BGL/BGL/pull/10400)). +- `uptime` returns the total runtime of the `bitcoind` server since its last start (See [PR 10400](https://github.com/bitcoin/bitcoin/pull/10400)). Low-level RPC changes --------------------- -- When using BGL Core in multi-wallet mode, RPC requests for wallet methods must specify +- When using Bitcoin Core in multi-wallet mode, RPC requests for wallet methods must specify the wallet that they're intended for. See [Multi-wallet support](#multi-wallet-support) for full details. - The new database model no longer stores information about transaction @@ -222,15 +222,15 @@ Low-level RPC changes `bytes_serialized`. The first is a more accurate estimate of actual disk usage, but is not deterministic. The second is unrelated to disk usage, but is a database-independent metric of UTXO set size: it counts every UTXO entry as 50 + the - length of its scriptPubKey (See [PR 10426](https://github.com/BGL/BGL/pull/10426)). + length of its scriptPubKey (See [PR 10426](https://github.com/bitcoin/bitcoin/pull/10426)). -- `signrawtransaction` can no longer be used to combine multiple transactions into a single transaction. Instead, use the new `combinerawtransaction` RPC (See [PR 10571](https://github.com/BGL/BGL/pull/10571)). +- `signrawtransaction` can no longer be used to combine multiple transactions into a single transaction. Instead, use the new `combinerawtransaction` RPC (See [PR 10571](https://github.com/bitcoin/bitcoin/pull/10571)). -- `fundrawtransaction` no longer accepts a `reserveChangeKey` option. This option used to allow RPC users to fund a raw transaction using an key from the keypool for the change address without removing it from the available keys in the keypool. The key could then be re-used for a `getnewaddress` call, which could potentially result in confusing or dangerous behaviour (See [PR 10784](https://github.com/BGL/BGL/pull/10784)). +- `fundrawtransaction` no longer accepts a `reserveChangeKey` option. This option used to allow RPC users to fund a raw transaction using an key from the keypool for the change address without removing it from the available keys in the keypool. The key could then be re-used for a `getnewaddress` call, which could potentially result in confusing or dangerous behaviour (See [PR 10784](https://github.com/bitcoin/bitcoin/pull/10784)). - `estimatepriority` and `estimatesmartpriority` have been removed. See [Removal of Coin Age Priority](#removal-of-coin-age-priority). -- The `listunspent` RPC now takes a `query_options` argument (see [PR 8952](https://github.com/BGL/BGL/pull/8952)), which is a JSON object +- The `listunspent` RPC now takes a `query_options` argument (see [PR 8952](https://github.com/bitcoin/bitcoin/pull/8952)), which is a JSON object containing one or more of the following members: - `minimumAmount` - a number specifying the minimum value of each UTXO - `maximumAmount` - a number specifying the maximum value of each UTXO @@ -240,22 +240,22 @@ Low-level RPC changes - The `getmempoolancestors`, `getmempooldescendants`, `getmempoolentry` and `getrawmempool` RPCs no longer return `startingpriority` and `currentpriority`. See [Removal of Coin Age Priority](#removal-of-coin-age-priority). - The `dumpwallet` RPC now returns the full absolute path to the dumped wallet. It - used to return no value, even if successful (See [PR 9740](https://github.com/BGL/BGL/pull/9740)). + used to return no value, even if successful (See [PR 9740](https://github.com/bitcoin/bitcoin/pull/9740)). -- In the `getpeerinfo` RPC, the return object for each peer now returns an `addrbind` member, which contains the ip address and port of the connection to the peer. This is in addition to the `addrlocal` member which contains the ip address and port of the local node as reported by the peer (See [PR 10478](https://github.com/BGL/BGL/pull/10478)). +- In the `getpeerinfo` RPC, the return object for each peer now returns an `addrbind` member, which contains the ip address and port of the connection to the peer. This is in addition to the `addrlocal` member which contains the ip address and port of the local node as reported by the peer (See [PR 10478](https://github.com/bitcoin/bitcoin/pull/10478)). -- The `disconnectnode` RPC can now disconnect a node specified by node ID (as well as by IP address/port). To disconnect a node based on node ID, call the RPC with the new `nodeid` argument (See [PR 10143](https://github.com/BGL/BGL/pull/10143)). +- The `disconnectnode` RPC can now disconnect a node specified by node ID (as well as by IP address/port). To disconnect a node based on node ID, call the RPC with the new `nodeid` argument (See [PR 10143](https://github.com/bitcoin/bitcoin/pull/10143)). -- The second argument in `prioritisetransaction` has been renamed from `priority_delta` to `dummy` since BGL Core no longer has a concept of coin age priority. The `dummy` argument has no functional effect, but is retained for positional argument compatibility. See [Removal of Coin Age Priority](#removal-of-coin-age-priority). +- The second argument in `prioritisetransaction` has been renamed from `priority_delta` to `dummy` since Bitcoin Core no longer has a concept of coin age priority. The `dummy` argument has no functional effect, but is retained for positional argument compatibility. See [Removal of Coin Age Priority](#removal-of-coin-age-priority). -- The `resendwallettransactions` RPC throws an error if the `-walletbroadcast` option is set to false (See [PR 10995](https://github.com/BGL/BGL/pull/10995)). +- The `resendwallettransactions` RPC throws an error if the `-walletbroadcast` option is set to false (See [PR 10995](https://github.com/bitcoin/bitcoin/pull/10995)). -- The second argument in the `submitblock` RPC argument has been renamed from `parameters` to `dummy`. This argument never had any effect, and the renaming is simply to communicate this fact to the user (See [PR 10191](https://github.com/BGL/BGL/pull/10191)) +- The second argument in the `submitblock` RPC argument has been renamed from `parameters` to `dummy`. This argument never had any effect, and the renaming is simply to communicate this fact to the user (See [PR 10191](https://github.com/bitcoin/bitcoin/pull/10191)) (Clients should, however, use positional arguments for `submitblock` in order to be compatible with BIP 22.) - The `verbose` argument of `getblock` has been renamed to `verbosity` and now takes an integer from 0 to 2. Verbose level 0 is equivalent to `verbose=false`. Verbose level 1 is equivalent to `verbose=true`. Verbose level 2 will give the full transaction details of each transaction in the output as given by `getrawtransaction`. The old behavior of using the `verbose` named argument and a boolean value is still maintained for compatibility. -- Error codes have been updated to be more accurate for the following error cases (See [PR 9853](https://github.com/BGL/BGL/pull/9853)): +- Error codes have been updated to be more accurate for the following error cases (See [PR 9853](https://github.com/bitcoin/bitcoin/pull/9853)): - `getblock` now returns RPC_MISC_ERROR if the block can't be found on disk (for example if the block has been pruned). Previously returned RPC_INTERNAL_ERROR. - `pruneblockchain` now returns RPC_MISC_ERROR if the blocks cannot be pruned @@ -268,13 +268,13 @@ Low-level RPC changes or subnet is invalid. Previously returned RPC_CLIENT_NODE_ALREADY_ADDED. - `setban` now returns RPC_CLIENT_INVALID_IP_OR_SUBNET if the user tries to unban a node that has not previously been banned. Previously returned RPC_MISC_ERROR. - - `removeprunedfunds` now returns RPC_WALLET_ERROR if `BGLd` is unable to remove + - `removeprunedfunds` now returns RPC_WALLET_ERROR if `bitcoind` is unable to remove the transaction. Previously returned RPC_INTERNAL_ERROR. - `removeprunedfunds` now returns RPC_INVALID_PARAMETER if the transaction does not exist in the wallet. Previously returned RPC_INTERNAL_ERROR. - `fundrawtransaction` now returns RPC_INVALID_ADDRESS_OR_KEY if an invalid change address is provided. Previously returned RPC_INVALID_PARAMETER. - - `fundrawtransaction` now returns RPC_WALLET_ERROR if `BGLd` is unable to create + - `fundrawtransaction` now returns RPC_WALLET_ERROR if `bitcoind` is unable to create the transaction. The error message provides further details. Previously returned RPC_INTERNAL_ERROR. - `bumpfee` now returns RPC_INVALID_PARAMETER if the provided transaction has @@ -331,17 +331,17 @@ Low-level RPC changes - #9740 `9fec4da` Add friendly output to dumpwallet (aideca) - #10426 `16f6c98` Replace bytes_serialized with bogosize (sipa) - #10252 `980deaf` RPC/Mining: Restore API compatibility for prioritisetransaction (luke-jr) -- #9672 `46311e7` Opt-into-RBF for RPC & BGL-tx (luke-jr) +- #9672 `46311e7` Opt-into-RBF for RPC & bitcoin-tx (luke-jr) - #10481 `9c248e3` Decodehextx scripts sanity check (achow101) - #10488 `fa1f106` Note that the prioritizetransaction dummy value is deprecated, and has no meaning (TheBlueMatt) - #9738 `c94b89e` gettxoutproof() should return consistent result (jnewbery) - #10191 `00350bd` [trivial] Rename unused RPC arguments 'dummy' (jnewbery) - #10627 `b62b4c8` fixed listunspent rpc convert parameter (tnakagawa) - #10412 `bef02fb` Improve wallet rescan API (ryanofsky) -- #10400 `1680ee0` [RPC] Add an uptime command that displays the amount of time (in seconds) BGLd has been running (rvelhote) +- #10400 `1680ee0` [RPC] Add an uptime command that displays the amount of time (in seconds) bitcoind has been running (rvelhote) - #10683 `d81bec7` rpc: Move the `generate` RPC call to rpcwallet (laanwj) - #10710 `30bc0f6` REST/RPC example update (Mirobit) -- #10747 `9edda0c` [rpc] fix verbose argument for getblock in BGL-cli (jnewbery) +- #10747 `9edda0c` [rpc] fix verbose argument for getblock in bitcoin-cli (jnewbery) - #10589 `104f5f2` More economical fee estimates for RBF and RPC options to control (morcos) - #10543 `b27b004` Change API to estimaterawfee (morcos) - #10807 `afd2fca` getbalance example covers at least 6 confirms (instagibbs) @@ -450,7 +450,7 @@ Low-level RPC changes - #10136 `81da4c7` build: Disable Wshadow warning (laanwj) - #10166 `64962ae` Ignore Doxyfile generated from Doxyfile.in template (paveljanik) - #10239 `0416ea9` Make Boost use std::atomic internally (sipa) -- #10228 `27faa6c` build: regenerate BGL-config.h as necessary (theuni) +- #10228 `27faa6c` build: regenerate bitcoin-config.h as necessary (theuni) - #10273 `8979f45` [scripts] Minor improvements to `macdeployqtplus` script (chrisgavin) - #10325 `a26280b` 0.15.0 Depends Updates (fanquake) - #10328 `79aeff6` Update contrib/debian to latest Ubuntu PPA upload (TheBlueMatt) @@ -576,7 +576,7 @@ Low-level RPC changes - #9497 `2c781fb` CCheckQueue Unit Tests (JeremyRubin) - #10024 `9225de2` [trivial] Use log.info() instead of print() in remaining functional test cases (jnewbery) - #9956 `3192e52` Reorganise qa directory (jnewbery) -- #10017 `02d64bd` combine_logs.py - aggregates log files from multiple BGLds during functional tests (jnewbery) +- #10017 `02d64bd` combine_logs.py - aggregates log files from multiple bitcoinds during functional tests (jnewbery) - #10047 `dfef6b6` [tests] Remove unused variables and imports (practicalswift) - #9701 `a230b05` Make bumpfee tests less fragile (ryanofsky) - #10053 `ca20923` [test] Allow functional test cases to be skipped (jnewbery) @@ -596,7 +596,7 @@ Low-level RPC changes - #10152 `080d7c7` [trivial] remove unused line in Travis config (jnewbery) - #10159 `df1ca9e` [tests] color test results and sort alphabetically (jnewbery) - #10124 `88799ea` [test] Suppress test logging spam (jnewbery) -- #10142 `ed09dd3` Run BGL_test-qt under minimal QPA platform (ryanofsky) +- #10142 `ed09dd3` Run bitcoin_test-qt under minimal QPA platform (ryanofsky) - #9949 `a27dbc5` [bench] Avoid function call arguments which are pointers to uninitialized values (practicalswift) - #10187 `b44adf9` tests: Fix test_runner return value in case of skipped test (laanwj) - #10197 `d86bb07` [tests] Functional test warnings (jnewbery) @@ -634,7 +634,7 @@ Low-level RPC changes - #10415 `217b416` [tests] Speed up fuzzing by ~200x when using afl-fuzz (practicalswift) - #10445 `b4b057a` Add test for empty chain and reorg consistency for gettxoutsetinfo (gmaxwell) - #10423 `1aefc94` [tests] skipped tests should clean up after themselves (jnewbery) -- #10359 `329fc1d` [tests] functional tests should call BGLTestFramework start/stop node methods (jnewbery) +- #10359 `329fc1d` [tests] functional tests should call BitcoinTestFramework start/stop node methods (jnewbery) - #10514 `e103b3f` Bugfix: missing == 0 after randrange (sipa) - #10515 `c871f32` [test] Add test for getchaintxstats (jimmysong) - #10509 `bea5b00` Remove xvfb configuration from travis (ryanofsky) @@ -648,12 +648,12 @@ Low-level RPC changes - #10555 `643fa0b` [tests] various improvements to zmq_test.py (jnewbery) - #10533 `d083bd9` [tests] Use cookie auth instead of rpcuser and rpcpassword (achow101) - #10632 `c68a9a6` qa: Add stopatheight test (MarcoFalke) -- #10636 `4bc853b` [qa] util: Check return code after closing BGLd proc (MarcoFalke) +- #10636 `4bc853b` [qa] util: Check return code after closing bitcoind proc (MarcoFalke) - #10662 `e0a7801` Initialize randomness in benchmarks (achow101) - #10612 `7c87a9c` The young person's guide to the test_framework (jnewbery) - #10659 `acb1153` [qa] blockchain: Pass on closed connection during generate call (MarcoFalke) - #10690 `416af3e` [qa] Bugfix: allow overriding extra_args in ComparisonTestFramework (sdaftuar) -- #10556 `65cc7aa` Move stop/start functions from utils.py into BGLTestFramework (jnewbery) +- #10556 `65cc7aa` Move stop/start functions from utils.py into BitcoinTestFramework (jnewbery) - #10704 `dd07f47` [tests] nits in dbcrash.py (jnewbery) - #10743 `be82498` [test] don't run dbcrash.py on Travis (jnewbery) - #10761 `d3b5870` [tests] fix replace_by_fee.py (jnewbery) @@ -694,7 +694,7 @@ Low-level RPC changes - #9734 `0c17afc` Add updating of chainTxData to release process (sipa) - #10063 `530fcbd` add missing spaces so that markdown recognizes headline (flack) - #10085 `db1ae54` Docs: remove 'noconnect' option (jlopp) -- #10090 `8e4f7e7` Update BGL.conf with example for pruning (coinables) +- #10090 `8e4f7e7` Update bitcoin.conf with example for pruning (coinables) - #9424 `1a5aaab` Change LogAcceptCategory to use uint32_t rather than sets of strings (gmaxwell) - #10036 `fbf36ca` Fix init README format to render correctly on github (jlopp) - #10058 `a2cd0b0` No need to use OpenSSL malloc/free (tjps) @@ -718,10 +718,10 @@ Low-level RPC changes - #10372 `15254e9` Add perf counter data to GetStrongRandBytes state in scheduler (TheBlueMatt) - #10461 `55b72f3` Update style guide (sipa) - #10486 `10e8c0a` devtools: Retry after signing fails in github-merge (laanwj) -- #10447 `f259263` Make BGLd invalid argument error message specific (laanwj) +- #10447 `f259263` Make bitcoind invalid argument error message specific (laanwj) - #10495 `6a38b79` contrib: Update location of seeds.txt (laanwj) - #10469 `b6b150b` Fixing typo in rpcdump.cpp help message (keystrike) -- #10451 `27b9931` contrib/init/BGLd.openrcconf: Don't disable wallet by default (luke-jr) +- #10451 `27b9931` contrib/init/bitcoind.openrcconf: Don't disable wallet by default (luke-jr) - #10323 `00d3692` Update to latest libsecp256k1 master (sipa) - #10422 `cec9e1e` Fix timestamp in fee estimate debug message (morcos) - #10566 `5d034ee` [docs] Use the "domain name setup" image (previously unused) in the gitian docs (practicalswift) @@ -740,9 +740,9 @@ Low-level RPC changes - #10728 `7397af9` fix typo in help text for removeprunedfunds (AkioNak) - #10193 `6dbcc74` scripted-diff: Remove #include (jtimon) - #10676 `379aed0` document script-based return fields for validateaddress (instagibbs) -- #10651 `cef4b5c` Verify binaries from BGLcore.org and BGL.org (TheBlueMatt) +- #10651 `cef4b5c` Verify binaries from bitcoincore.org and bitcoin.org (TheBlueMatt) - #10786 `ca4c545` Add PR description to merge commit in github-merge.py (sipa) -- #10812 `c5904e8` [utils] Allow BGL-cli's -rpcconnect option to be used with square brackets (jnewbery) +- #10812 `c5904e8` [utils] Allow bitcoin-cli's -rpcconnect option to be used with square brackets (jnewbery) - #10842 `3895e25` Fix incorrect Doxygen tag (@ince → @since). Doxygen parameter name matching (practicalswift) - #10681 `df0793f` add gdb attach process to test README (instagibbs) - #10789 `1124328` Punctuation/grammer fixes in rpcwallet.cpp (stevendlander) @@ -759,7 +759,7 @@ Low-level RPC changes - #9792 `342b9bc` FastRandomContext improvements and switch to ChaCha20 (sipa) - #9505 `67ed40e` Prevector Quick Destruct (JeremyRubin) - #10820 `ef37f20` Use cpuid intrinsics instead of asm code (sipa) -- #9999 `a328904` [LevelDB] Plug leveldb logs to BGL logs (NicolasDorier) +- #9999 `a328904` [LevelDB] Plug leveldb logs to bitcoin logs (NicolasDorier) - #9693 `c5e9e42` Prevent integer overflow in ReadVarInt (gmaxwell) - #10129 `351d0ad` scheduler: fix sub-second precision with boost < 1.50 (theuni) - #10153 `fade788` logging: Fix off-by-one for shrinkdebugfile default (MarcoFalke) @@ -771,7 +771,7 @@ Low-level RPC changes - #10837 `8bc6d1f` Fix resource leak on error in GetDevURandom (corebob) - #10832 `89bb036` init: Factor out AppInitLockDataDirectory and fix startup core dump issue (laanwj) - #10914 `b995a37` Add missing lock in CScheduler::AreThreadsServicingQueue() (TheBlueMatt) -- #10958 `659c096` Update to latest BGL patches for LevelDB (sipa) +- #10958 `659c096` Update to latest Bitcoin patches for LevelDB (sipa) - #10919 `c1c671f` Fix more init bugs (TheBlueMatt) Credits @@ -875,4 +875,4 @@ Thanks to everyone who directly contributed to this release: - Warren Togami - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.15.1.md b/doc/release-notes/release-notes-0.15.1.md index 336020c786..75d2e09714 100644 --- a/doc/release-notes/release-notes-0.15.1.md +++ b/doc/release-notes/release-notes-0.15.1.md @@ -1,29 +1,29 @@ -BGL Core version *0.15.1* is now available from: +Bitcoin Core version *0.15.1* is now available from: - + or - + This is a new minor version release, including various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or higher, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to @@ -52,10 +52,10 @@ processing the entire blockchain. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. @@ -65,7 +65,7 @@ Notable changes Network fork safety enhancements -------------------------------- -A number of changes to the way BGL Core deals with peer connections and invalid blocks +A number of changes to the way Bitcoin Core deals with peer connections and invalid blocks have been made, as a safety precaution against blockchain forks and misbehaving peers. - Unrequested blocks with less work than the minimum-chain-work are now no longer processed even @@ -202,19 +202,19 @@ Low-level RPC changes - #11399 `a825d4a` Fix bip68-sequence rpc test (jl2012) - #11150 `847c75e` Add getmininginfo test (mess110) - #11407 `806c78f` add functional test for mempoolreplacement command line arg (instagibbs) -- #11433 `e169349` Restore BGL-util-test py2 compatibility (MarcoFalke) +- #11433 `e169349` Restore bitcoin-util-test py2 compatibility (MarcoFalke) - #11308 `2e1ac70` zapwallettxes: Wait up to 3s for mempool reload (MarcoFalke) -- #10798 `716066d` test BGL-cli (jnewbery) +- #10798 `716066d` test bitcoin-cli (jnewbery) - #11443 `019c492` Allow "make cov" out-of-tree; Fix rpc mapping check (MarcoFalke) - #11445 `51bad91` 0.15.1 Backports (MarcoFalke) - #11319 `2f0b30a` Fix error introduced into p2p-segwit.py, and prevent future similar errors (sdaftuar) - #10552 `e4605d9` Tests for zmqpubrawtx and zmqpubrawblock (achow101) - #11067 `eeb24a3` TestNode: Add wait_until_stopped helper method (MarcoFalke) - #11068 `5398f20` Move wait_until to util (MarcoFalke) -- #11125 `812c870` Add BGL-cli -stdin and -stdinrpcpass functional tests (promag) +- #11125 `812c870` Add bitcoin-cli -stdin and -stdinrpcpass functional tests (promag) - #11077 `1d80d1e` fix timeout issues from TestNode (jnewbery) - #11078 `f1ced0d` Make p2p-leaktests.py more robust (jnewbery) -- #11210 `f3f7891` Stop test_BGL-qt touching ~/.BGL (MeshCollider) +- #11210 `f3f7891` Stop test_bitcoin-qt touching ~/.bitcoin (MeshCollider) - #11234 `f0b6795` Remove redundant testutil.cpp|h files (MeshCollider) - #11215 `cef0319` fixups from set_test_params() (jnewbery) - #11345 `f9cf7b5` Check connectivity before sending in assumevalid.py (jnewbery) @@ -232,7 +232,7 @@ Low-level RPC changes - #11310 `b6468d3` Test listwallets RPC (mess110) ### Miscellaneous -- #11377 `75997c3` Disallow uncompressed pubkeys in BGL-tx [multisig] output adds (TheBlueMatt) +- #11377 `75997c3` Disallow uncompressed pubkeys in bitcoin-tx [multisig] output adds (TheBlueMatt) - #11437 `dea3b87` [Docs] Update Windows build instructions for using WSL and Ubuntu 17.04 (fanquake) - #11318 `8b61aee` Put back inadvertently removed copyright notices (gmaxwell) - #11442 `cf18f42` [Docs] Update OpenBSD Build Instructions for OpenBSD 6.2 (fanquake) @@ -274,4 +274,4 @@ Thanks to everyone who directly contributed to this release: - Tomas van der Wansem - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.15.2.md b/doc/release-notes/release-notes-0.15.2.md index 549de22a62..1f58279051 100644 --- a/doc/release-notes/release-notes-0.15.2.md +++ b/doc/release-notes/release-notes-0.15.2.md @@ -1,25 +1,25 @@ -BGL Core version *0.15.2* is now available from: +Bitcoin Core version *0.15.2* is now available from: - + This is a new minor version release, including various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or higher, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to @@ -48,10 +48,10 @@ processing the entire blockchain. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. @@ -62,7 +62,7 @@ Denial-of-Service vulnerability CVE-2018-17144 ------------------------------- A denial-of-service vulnerability exploitable by miners has been discovered in -BGL Core versions 0.14.0 up to 0.16.2. It is recommended to upgrade any of +Bitcoin Core versions 0.14.0 up to 0.16.2. It is recommended to upgrade any of the vulnerable versions to 0.15.2 or 0.16.3 as soon as possible. 0.15.2 Change log @@ -87,9 +87,9 @@ the vulnerable versions to 0.15.2 or 0.16.3 as soon as possible. - #11289 `42ea47d` Add wallet backup text to import*, add* and dumpwallet RPCs (MeshCollider) - #11590 `6372a75` [Wallet] always show help-line of wallet encryption calls (Jonas Schnelli) -### BGL-tx +### bitcoin-tx -- #11554 `a69cc07` Sanity-check script sizes in BGL-tx (TheBlueMatt) +- #11554 `a69cc07` Sanity-check script sizes in bitcoin-tx (TheBlueMatt) ### Tests - #11277 `3a6cdd4` Add test for multiwallet batch RPC calls (Russell Yanofsky) diff --git a/doc/release-notes/release-notes-0.16.0.md b/doc/release-notes/release-notes-0.16.0.md index 9ca20a72df..8f158b3481 100644 --- a/doc/release-notes/release-notes-0.16.0.md +++ b/doc/release-notes/release-notes-0.16.0.md @@ -1,25 +1,25 @@ -BGL Core version 0.16.0 is now available from: +Bitcoin Core version 0.16.0 is now available from: - + This is a new major version release, including new features, various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or newer, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to half an hour, @@ -40,10 +40,10 @@ wallets that were created with older versions are not affected by this. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -54,7 +54,7 @@ Wallet changes ### Segwit Wallet -BGL Core 0.16.0 introduces full support for segwit in the wallet and user interfaces. A new `-addresstype` argument has been added, which supports `legacy`, `p2sh-segwit` (default), and `bech32` addresses. It controls what kind of addresses are produced by `getnewaddress`, `getaccountaddress`, and `createmultisigaddress`. A `-changetype` argument has also been added, with the same options, and by default equal to `-addresstype`, to control which kind of change is used. +Bitcoin Core 0.16.0 introduces full support for segwit in the wallet and user interfaces. A new `-addresstype` argument has been added, which supports `legacy`, `p2sh-segwit` (default), and `bech32` addresses. It controls what kind of addresses are produced by `getnewaddress`, `getaccountaddress`, and `createmultisigaddress`. A `-changetype` argument has also been added, with the same options, and by default equal to `-addresstype`, to control which kind of change is used. A new `address_type` parameter has been added to the `getnewaddress` and `addmultisigaddress` RPCs to specify which type of address to generate. A `change_type` argument has been added to the `fundrawtransaction` RPC to override the `-changetype` argument for specific transactions. @@ -92,9 +92,9 @@ use the `replaceable` argument for individual transactions. ### Wallets directory configuration (`-walletdir`) -BGL Core now has more flexibility in where the wallets directory can be +Bitcoin Core now has more flexibility in where the wallets directory can be located. Previously wallet database files were stored at the top level of the -BGL data directory. The behavior is now: +bitcoin data directory. The behavior is now: - For new installations (where the data directory doesn't already exist), wallets will now be stored in a new `wallets/` subdirectory inside the data @@ -112,7 +112,7 @@ becomes unavailable during operation, funds may be lost. Build: Minimum GCC bumped to 4.8.x ------------------------------------ -The minimum version of the GCC compiler required to compile BGL Core is now 4.8. No effort will be +The minimum version of the GCC compiler required to compile Bitcoin Core is now 4.8. No effort will be made to support older versions of GCC. See discussion in issue #11732 for more information. The minimum version for the Clang compiler is still 3.3. Other minimum dependency versions can be found in `doc/dependencies.md` in the repository. @@ -191,14 +191,14 @@ The `validateaddress` RPC output has been extended with a few new fields, and su Other changed command-line options ---------------------------------- - `-debuglogfile=` can be used to specify an alternative debug logging file. -- BGL-cli now has an `-stdinrpcpass` option to allow the RPC password to be read from standard input. +- bitcoin-cli now has an `-stdinrpcpass` option to allow the RPC password to be read from standard input. - The `-usehd` option has been removed. -- BGL-cli now supports a new `-getinfo` flag which returns an output like that of the now-removed `getinfo` RPC. +- bitcoin-cli now supports a new `-getinfo` flag which returns an output like that of the now-removed `getinfo` RPC. Testing changes ---------------- - The default regtest JSON-RPC port has been changed to 18443 to avoid conflict with testnet's default of 18332. -- Segwit is now always active in regtest mode by default. Thus, if you upgrade a regtest node you will need to either -reindex or use the old rules by adding `vbparams=segwit:0:999999999999` to your regtest BGL.conf. Failure to do this will result in a CheckBlockIndex() assertion failure that will look like: Assertion `(pindexFirstNeverProcessed != nullptr) == (pindex->nChainTx == 0)' failed. +- Segwit is now always active in regtest mode by default. Thus, if you upgrade a regtest node you will need to either -reindex or use the old rules by adding `vbparams=segwit:0:999999999999` to your regtest bitcoin.conf. Failure to do this will result in a CheckBlockIndex() assertion failure that will look like: Assertion `(pindexFirstNeverProcessed != nullptr) == (pindex->nChainTx == 0)' failed. 0.16.0 change log ------------------ @@ -235,7 +235,7 @@ Testing changes - #11740 `59d3dc8` Implement BIP159 NODE_NETWORK_LIMITED (pruned peers) *signaling only* (jonasschnelli) - #11583 `37ffa16` Do not make it trivial for inbound peers to generate log entries (TheBlueMatt) - #11363 `ba2f195` Split socket create/connect (theuni) -- #11917 `bc66765` Add testnet DNS seed: seed.testnet.BGL.sprovoost.nl (Sjors) +- #11917 `bc66765` Add testnet DNS seed: seed.testnet.bitcoin.sprovoost.nl (Sjors) - #11512 `6e89de5` Use GetDesireableServiceFlags in seeds, dnsseeds, fixing static seed adding (TheBlueMatt) - #12262 `16bac24` Hardcoded seed update (laanwj) - #12270 `9cf6393` Update chainTxData for 0.16 (laanwj) @@ -268,7 +268,7 @@ Testing changes - #11923 `81c89e9` Remove unused fNoncriticalErrors variable from CWalletDB::FindWalletTx (PierreRochard) - #11726 `604e08c` Cleanups + nit fixes for walletdir PR (MeshCollider) - #11403 `d889c03` Segwit wallet support (sipa) -- #11970 `b7450cd` Add test coverage for BGL-cli multiwallet calls (ryanofsky) +- #11970 `b7450cd` Add test coverage for bitcoin-cli multiwallet calls (ryanofsky) - #11904 `66e3af7` Add a lock to the wallet directory (MeshCollider) - #12101 `c7978be` Clamp walletpassphrase timeout to 2^30 seconds and check its bounds (achow101) - #12210 `17180fa` Deprecate addwitnessaddress (laanwj) @@ -281,7 +281,7 @@ Testing changes ### RPC and other APIs - #11008 `3841aaf` Enable disablesafemode by default (gmaxwell) - #11050 `7ed57d3` Avoid treating null RPC arguments different from missing arguments (ryanofsky) -- #10997 `affe927` Add option -stdinrpcpass to BGL-cli to allow RPC password to be read from standard input (jharvell) +- #10997 `affe927` Add option -stdinrpcpass to bitcoin-cli to allow RPC password to be read from standard input (jharvell) - #11179 `e0e3cbb` Push down safe mode checks (laanwj) - #11203 `d745b4c` add wtxid to mempool entry output (sdaftuar) - #11099 `bc561b4` Add savemempool RPC (greenaddress) @@ -366,7 +366,7 @@ Testing changes - #11541 `bb9ab0f` Build: Fix Automake warnings when running autogen.sh (fanquake) - #11611 `0e70791` [build] Don't fail when passed --disable-lcov and lcov isn't available (fanquake) - #11651 `3c098a8` refactor: Make all #includes relative to project root (laanwj, MeshCollider, ryanofsky) -- #11621 `1f7695b` [build] Add temp_BGL_locale_qrc to CLEAN_QT to fix make distcheck (fanquake) +- #11621 `1f7695b` [build] Add temp_bitcoin_locale_qrc to CLEAN_QT to fix make distcheck (fanquake) - #11755 `84fa645` [Docs] Bump minimum required version of GCC to 4.8 (fanquake) - #9254 `6d3dc52` [depends] ZeroMQ 4.2.2 (fanquake) - #11842 `3c8f0a3` [build] Add missing stuff to clean-local (kallewoof) @@ -376,7 +376,7 @@ Testing changes - #11903 `8f68fd2` [trivial] Add required package dependencies for depends cross compilation (jonasschnelli) - #12168 `45cf8a0` #include sys/fcntl.h to just fcntl.h (without sys/) (jsarenik) - #12095 `3fa1ab4` Use BDB_LIBS/CFLAGS and pass --disable-replication (fanquake) -- #11711 `6378e5c` BGL_qt.m4: Minor fixes and clean-ups (fanquake) +- #11711 `6378e5c` bitcoin_qt.m4: Minor fixes and clean-ups (fanquake) - #11989 `90d4104` .gitignore: add QT Creator artifacts (Sjors) - #11577 `c0ae864` Fix warnings (-Wsign-compare) when building with DEBUG_ADDRMAN (practicalswift) @@ -389,7 +389,7 @@ Testing changes - #11260 `52f8877` travis: Assert default datadir isn't created, Run scripted diff only once (MarcoFalke) - #11271 `638e6c5` travis: filter out pyenv (theuni) - #11285 `3255d63` Add -usehd to excluded args in check-doc.py (MeshCollider) -- #11297 `16e4184` Make sure ~/.BGL doesn't exist before build (MeshCollider) +- #11297 `16e4184` Make sure ~/.bitcoin doesn't exist before build (MeshCollider) - #11311 `cce94c5` travis: Revert default datadir check (MarcoFalke) - #11300 `f4ed44a` Add a lint check for trailing whitespace (MeshCollider) - #11323 `4ce2f3d` mininode: add an optimistic write and disable nagle (theuni) @@ -535,7 +535,7 @@ Testing changes - #10781 `60dd9cc` Python cleanups (practicalswift) - #10701 `50fae68` Remove the virtual specifier for functions with the override specifier (practicalswift) - #11164 `38a54a5` Fix boost headers included as user instead of system headers (danra) -- #11143 `3aa60b7` Fix include path for BGL-config.h (danra) +- #11143 `3aa60b7` Fix include path for bitcoin-config.h (danra) - #8330 `59e1789` Structure Packing Optimizations in C{,Mutable}Transaction (JeremyRubin) - #10845 `39ae413` Remove unreachable code (practicalswift) - #11238 `6acdb1f` Add assertions before potential null deferences (MeshCollider) @@ -578,8 +578,8 @@ Testing changes ### Miscellaneous - #11246 `777519b` github-merge: Coalesce git fetches (laanwj) -- #10871 `c9a4aa8` Handle getinfo in BGL-cli w/ -getinfo (revival of #8843) (achow101) -- #11419 `093074b` Utils: Fix launchctl not being able to stop BGLd (OmeGak) +- #10871 `c9a4aa8` Handle getinfo in bitcoin-cli w/ -getinfo (revival of #8843) (achow101) +- #11419 `093074b` Utils: Fix launchctl not being able to stop bitcoind (OmeGak) - #11394 `6e4e98e` Perform a weaker subtree check in Travis (sipa) - #11702 `4122112` [build] Add a script for installing db4 (jamesob) - #11794 `dd49862` Prefix leveldb debug logging (laanwj) @@ -596,7 +596,7 @@ Testing changes - #11951 `1fb34e0` Remove dead feeest-file read code for old versions (TheBlueMatt) - #11421 `9ccafb1` Merge current secp256k1 subtree (MarcoFalke) - #11573 `2631d55` [Util] Update tinyformat.h (fanquake) -- #10529 `331352f` Improve BGLd systemd service file (Flowdalic) +- #10529 `331352f` Improve bitcoind systemd service file (Flowdalic) - #11620 `70fec9e` [build] .gitignore: add background.tiff (Sjors) - #11558 `68e021e` Minimal code changes to allow msvc compilation (sipsorcery) - #11284 `10bee0d` Fix invalid memory access in CScript::operator+= (guidovranken, ajtowns) @@ -717,4 +717,4 @@ Thanks to everyone who directly contributed to this release: - Willy Ko - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.16.1.md b/doc/release-notes/release-notes-0.16.1.md index 4c855835d7..d99361ae1d 100644 --- a/doc/release-notes/release-notes-0.16.1.md +++ b/doc/release-notes/release-notes-0.16.1.md @@ -1,25 +1,25 @@ -BGL Core version 0.16.1 is now available from: +Bitcoin Core version 0.16.1 is now available from: - + This is a new minor version release, with various bugfixes as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or newer, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to half an hour, @@ -40,10 +40,10 @@ wallets that were created with older versions are not affected by this. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -97,11 +97,11 @@ weights. - #12804 `4bdb0ce` Fix intermittent rpc_net.py failure. (jnewbery) - #12553 `0e98f96` Prefer wait_until over polling with time.sleep (Empact) - #12486 `cfebd40` Round target fee to 8 decimals in assert_fee_amount (kallewoof) -- #12843 `df38b13` Test starting BGLd with -h and -version (jnewbery) +- #12843 `df38b13` Test starting bitcoind with -h and -version (jnewbery) - #12475 `41c29f6` Fix python TypeError in script.py (MarcoFalke) - #12638 `0a76ed2` Cache only chain and wallet for regtest datadir (MarcoFalke) - #12902 `7460945` Handle potential cookie race when starting node (sdaftuar) -- #12904 `6c26df0` Ensure BGLd processes are cleaned up when tests end (sdaftuar) +- #12904 `6c26df0` Ensure bitcoind processes are cleaned up when tests end (sdaftuar) - #13049 `9ea62a3` Backports (MarcoFalke) - #13201 `b8aacd6` Handle disconnect_node race (sdaftuar) @@ -142,4 +142,4 @@ Thanks to everyone who directly contributed to this release: - Tamas Blummer - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.16.2.md b/doc/release-notes/release-notes-0.16.2.md index ee18ff1d14..d549748d25 100644 --- a/doc/release-notes/release-notes-0.16.2.md +++ b/doc/release-notes/release-notes-0.16.2.md @@ -1,25 +1,25 @@ -BGL Core version 0.16.2 is now available from: +Bitcoin Core version 0.16.2 is now available from: - + This is a new minor version release, with various bugfixes as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or newer, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to half an hour, @@ -40,10 +40,10 @@ wallets that were created with older versions are not affected by this. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. 0.16.2 change log @@ -113,4 +113,4 @@ And to those that reported security issues: - Braydon Fuller - Himanshu Mehta -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.16.3.md b/doc/release-notes/release-notes-0.16.3.md index 12e63f3348..2e52d309c2 100644 --- a/doc/release-notes/release-notes-0.16.3.md +++ b/doc/release-notes/release-notes-0.16.3.md @@ -1,24 +1,24 @@ -BGL Core version 0.16.3 is now available from: +Bitcoin Core version 0.16.3 is now available from: - + This is a new minor version release, with various bugfixes. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or newer, your chainstate database will be converted to a new format, which will take anywhere from a few minutes to half an hour, @@ -39,10 +39,10 @@ wallets that were created with older versions are not affected by this. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. Notable changes @@ -52,7 +52,7 @@ Denial-of-Service vulnerability ------------------------------- A denial-of-service vulnerability (CVE-2018-17144) exploitable by miners has -been discovered in BGL Core versions 0.14.0 up to 0.16.2. It is recommended +been discovered in Bitcoin Core versions 0.14.0 up to 0.16.2. It is recommended to upgrade any of the vulnerable versions to 0.16.3 as soon as possible. 0.16.3 change log @@ -65,7 +65,7 @@ to upgrade any of the vulnerable versions to 0.16.3 as soon as possible. - #13547 `212ef1f` Make `signrawtransaction*` give an error when amount is needed but missing (ajtowns) ### Miscellaneous -- #13655 `1cdbea7` BGLconsensus: invalid flags error should be set to `BGLconsensus_err` (afk11) +- #13655 `1cdbea7` bitcoinconsensus: invalid flags error should be set to `bitcoinconsensus_err` (afk11) ### Documentation - #13844 `11b9dbb` correct the help output for -prune (hebasto) diff --git a/doc/release-notes/release-notes-0.17.0.1.md b/doc/release-notes/release-notes-0.17.0.1.md index 1b5645a309..92db7dac7d 100644 --- a/doc/release-notes/release-notes-0.17.0.1.md +++ b/doc/release-notes/release-notes-0.17.0.1.md @@ -1,16 +1,16 @@ -BGL Core version 0.17.0.1 is now available from: +Bitcoin Core version 0.17.0.1 is now available from: - + This release provides a minor bug fix for 0.17.0. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + Notable changes =============== diff --git a/doc/release-notes/release-notes-0.17.0.md b/doc/release-notes/release-notes-0.17.0.md index ebf156a1ec..418d7ba5f9 100644 --- a/doc/release-notes/release-notes-0.17.0.md +++ b/doc/release-notes/release-notes-0.17.0.md @@ -1,25 +1,25 @@ -BGL Core version 0.17.0 is now available from: +Bitcoin Core version 0.17.0 is now available from: - + This is a new major version release, including new features, various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). If your node has a txindex, the txindex db will be migrated the first time you run 0.17.0 or newer, which may take up to a few hours. Your node will not be functional until this migration completes. @@ -46,10 +46,10 @@ processing the entire blockchain. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.10+, and Windows 7 and newer (Windows XP is not supported). -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. From 0.17.0 onwards macOS <10.10 is no longer supported. 0.17.0 is built using Qt 5.9.x, which doesn't @@ -69,7 +69,7 @@ Changed configuration options ----------------------------- - `-includeconf=` can be used to include additional configuration files. - Only works inside the `BGL.conf` file, not inside included files or from + Only works inside the `bitcoin.conf` file, not inside included files or from command-line. Multiple files may be included. Can be disabled from command- line via `-noincludeconf`. Note that multi-argument commands like `-includeconf` will override preceding `-noincludeconf`, i.e. @@ -78,7 +78,7 @@ Changed configuration options includeconf=relative.conf ``` - as BGL.conf will still include `relative.conf`. + as bitcoin.conf will still include `relative.conf`. GUI changes ----------- @@ -109,7 +109,7 @@ same as before. Dynamic loading and creation of wallets --------------------------------------- -Previously, wallets could only be loaded or created at startup, by specifying `-wallet` parameters on the command line or in the BGL.conf file. It is now possible to load, create and unload wallets dynamically at runtime: +Previously, wallets could only be loaded or created at startup, by specifying `-wallet` parameters on the command line or in the bitcoin.conf file. It is now possible to load, create and unload wallets dynamically at runtime: - Existing wallets can be loaded by calling the `loadwallet` RPC. The wallet can be specified as file/directory basename (which must be located in the `walletdir` directory), or as an absolute path to a file/directory. - New wallets can be created (and loaded) by calling the `createwallet` RPC. The provided name must not match a wallet file in the `walletdir` directory or the name of a wallet that is currently loaded. @@ -131,8 +131,8 @@ It is now possible for a single configuration file to set different options for different networks. This is done by using sections or by prefixing the option with the network, such as: - main.uacomment=BGL - test.uacomment=BGL-testnet + main.uacomment=bitcoin + test.uacomment=bitcoin-testnet regtest.uacomment=regtest [main] mempoolsize=300 @@ -151,7 +151,7 @@ outside of sections. A new 'label' API has been introduced for the wallet. This is intended as a replacement for the deprecated 'account' API. The 'account' can continue to -be used in V0.17 by starting BGLd with the '-deprecatedrpc=accounts' +be used in V0.17 by starting bitcoind with the '-deprecatedrpc=accounts' argument, and will be fully removed in V0.18. The label RPC methods mirror the account functionality, with the following functional differences: @@ -184,18 +184,18 @@ Here are the changes to RPC methods: | `listtransactions` | The `account` named parameter has been renamed to `dummy`. If provided, the `dummy` parameter must be set to the string `*`, unless running with the `-deprecatedrpc=accounts` argument (in which case functionality is unchanged). | | `getbalance` | `account`, `minconf` and `include_watchonly` parameters are deprecated, and can only be used if running with '-deprecatedrpc=accounts' | -BIP 174 Partially Signed BGL Transactions support +BIP 174 Partially Signed Bitcoin Transactions support ----------------------------------------------------- -[BIP 174 PSBT](https://github.com/BGL/bips/blob/master/bip-0174.mediawiki) is an interchange format for BGL transactions that are not fully signed +[BIP 174 PSBT](https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki) is an interchange format for Bitcoin transactions that are not fully signed yet, together with relevant metadata to help entities work towards signing it. It is intended to simplify workflows where multiple parties need to cooperate to produce a transaction. Examples include hardware wallets, multisig setups, and -[CoinJoin](https://BGLtalk.org/?topic=279249) transactions. +[CoinJoin](https://bitcointalk.org/?topic=279249) transactions. ### Overall workflow -Overall, the construction of a fully signed BGL transaction goes through the +Overall, the construction of a fully signed Bitcoin transaction goes through the following steps: - A **Creator** proposes a particular transaction to be created. He constructs @@ -210,7 +210,7 @@ following steps: partial signature for the inputs for which they have relevant key(s). - A **Finalizer** is run for each input to convert the partial signatures and possibly script information into a final `scriptSig` and/or `scriptWitness`. -- An **Extractor** produces a valid BGL transaction (in network format) +- An **Extractor** produces a valid Bitcoin transaction (in network format) from a PSBT for which all inputs are finalized. Generally, each of the above (excluding Creator and Extractor) will simply @@ -256,7 +256,7 @@ hardware implementations will typically implement multiple roles simultaneously. Upgrading non-HD wallets to HD wallets -------------------------------------- -Since BGL Core 0.13.0, creating new BIP 32 Hierarchical Deterministic wallets has been supported by BGL Core but old non-HD wallets could not be upgraded to HD. Now non-HD wallets can be upgraded to HD using the `-upgradewallet` command line option. This upgrade will result in the all keys in the keypool being marked as used and a new keypool generated. **A new backup must be made when this upgrade is performed.** +Since Bitcoin Core 0.13.0, creating new BIP 32 Hierarchical Deterministic wallets has been supported by Bitcoin Core but old non-HD wallets could not be upgraded to HD. Now non-HD wallets can be upgraded to HD using the `-upgradewallet` command line option. This upgrade will result in the all keys in the keypool being marked as used and a new keypool generated. **A new backup must be made when this upgrade is performed.** Additionally, `-upgradewallet` can be used to upgraded from a non-split HD chain (all keys generated with `m/0'/0'/i'`) to a split HD chain (receiving keys generated with `'m/0'/0'/i'` and change keys generated with `m'/0'/1'/i'`). When this upgrade occurs, all keys already in the keypool will remain in the keypool to be used until all keys from before the upgrade are exhausted. This is to avoid issues with backups and downgrades when some keys may come from the change key keypool. Users can begin using the new split HD chain keypools by using the `newkeypool` RPC to mark all keys in the keypool as used and begin using a new keypool generated from the split HD chain. @@ -290,9 +290,9 @@ Low-level RPC changes `fee`, `modifiedfee`, `ancestorfee` and `descendantfee`. - The new RPC `getzmqnotifications` returns information about active ZMQ notifications. -- When BGL is not started with any `-wallet=` options, the name of +- When bitcoin is not started with any `-wallet=` options, the name of the default wallet returned by `getwalletinfo` and `listwallets` RPCs is - now the empty string `""` instead of `"wallet.dat"`. If BGL is started + now the empty string `""` instead of `"wallet.dat"`. If bitcoin is started with any `-wallet=` options, there is no change in behavior, and the name of any wallet is just its `` string. - Passing an empty string (`""`) as the `address_type` parameter to @@ -322,7 +322,7 @@ Low-level RPC changes `pubkeys`, `sigsrequired`, `pubkey`, `addresses`, `embedded`, `iscompressed`, `account`, `timestamp`, `hdkeypath`, `hdmasterkeyid`. - `signrawtransaction` is deprecated and will be fully removed in v0.18. To use - `signrawtransaction` in v0.17, restart BGLd with + `signrawtransaction` in v0.17, restart bitcoind with `-deprecatedrpc=signrawtransaction`. Projects should transition to using `signrawtransactionwithkey` and `signrawtransactionwithwallet` before upgrading to v0.18. @@ -336,7 +336,7 @@ Other API changes - The log timestamp format is now ISO 8601 (e.g. "2018-02-28T12:34:56Z"). -- When running BGLd with `-debug` but without `-daemon`, logging to stdout +- When running bitcoind with `-debug` but without `-daemon`, logging to stdout is now the default behavior. Setting `-printtoconsole=1` no longer implicitly disables logging to debug.log. Instead, logging to file can be explicitly disabled by setting `-debuglogfile=0`. @@ -345,7 +345,7 @@ Transaction index changes ------------------------- The transaction index is now built separately from the main node procedure, -meaning the `-txindex` flag can be toggled without a full reindex. If BGLd +meaning the `-txindex` flag can be toggled without a full reindex. If bitcoind is run with `-txindex` on a node that is already partially or fully synced without one, the transaction index will be built in the background and become available once caught up. When switching from running `-txindex` to running @@ -417,7 +417,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #10387 `5c2aff8` Eventually connect to `NODE_NETWORK_LIMITED` peers (jonasschnelli) - #9037 `a36834f` Add test-before-evict discipline to addrman (EthanHeilman) - #12622 `e1d6e2a` Correct addrman logging (laanwj) -- #11962 `0a01843` add seed.BGL.sprovoost.nl to DNS seeds (Sjors) +- #11962 `0a01843` add seed.bitcoin.sprovoost.nl to DNS seeds (Sjors) - #12569 `23e7fe8` Increase signal-to-noise ratio in debug.log by adjusting log level when logging failed non-manual connect():s (practicalswift) - #12855 `c199869` Minor accumulated cleanups (tjps) - #13153 `ef46c99` Add missing newlines to debug logging (laanwj) @@ -568,7 +568,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #12080 `56cc022` Add support to search the address book (promag) - #12621 `2bac3e4` Avoid querying unnecessary model data when filtering transactions (promag) - #12721 `e476826` remove "new" button during receive-mode in addressbook (jonasschnelli) -- #12723 `310dc61` Qt5: Warning users about invalid-BIP21 URI BGL:// (krab) +- #12723 `310dc61` Qt5: Warning users about invalid-BIP21 URI bitcoin:// (krab) - #12610 `25cf18f` Multiwallet for the GUI (jonasschnelli) - #12779 `f4353da` Remove unused method setupAmountWidget(…) (practicalswift) - #12795 `68484d6` do not truncate .dat extension for wallets in gui (instagibbs) @@ -587,7 +587,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13043 `6e249e4` OptionsDialog: add prune setting (Sjors) - #13506 `6579d80` load wallet in UI after possible init aborts (jonasschnelli) - #13458 `dc53f7f` Drop qt4 support (laanwj) -- #13528 `b877c39` Move BGLGUI initializers to class, fix initializer order warning (laanwj) +- #13528 `b877c39` Move BitcoinGUI initializers to class, fix initializer order warning (laanwj) - #13536 `baf3a3a` coincontrol: Remove unused qt4 workaround (MarcoFalke) - #13537 `10ffca7` Peer table: Visualize inbound/outbound state for every row (wodry) - #13791 `2c14c1f` Reject dialogs if key escape is pressed (promag) @@ -623,7 +623,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13465 `81069a7` Avoid concurrency issue when make multiple target (ken2812221) - #13454 `45c00f8` Make sure `LC_ALL=C` is set in all shell scripts (practicalswift) - #13480 `31145a3` Avoid copies in range-for loops and add a warning to detect them (theuni) -- #13486 `66e1a08` Move rpc/util.cpp from libBGL-util to libBGL-server (ken2812221) +- #13486 `66e1a08` Move rpc/util.cpp from libbitcoin-util to libbitcoin-server (ken2812221) - #13580 `40334c7` Detect if char equals `int8_t` (ken2812221) - #12788 `287e4ed` Tune wildcards for LIBSECP256K1 target (kallewoof) - #13611 `b55f0c3` bugfix: Use `__cpuid_count` for gnu C to avoid gitian build fail (ken2812221) @@ -633,7 +633,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13659 `90b1c7e` add missing leveldb defines (theuni) - #13368 `c0f1569` Update gitian-build.sh for docker (achow101) - #13171 `19d8ca5` Change gitian-descriptors to use bionic instead (ken2812221) -- #13604 `75bea05` Add depends 32-bit arm support for BGL-qt (TheCharlatan) +- #13604 `75bea05` Add depends 32-bit arm support for bitcoin-qt (TheCharlatan) - #13623 `9cdb19f` Migrate gitian-build.sh to python (ken2812221) - #13689 `8c36432` disable Werror when building zmq (greenaddress) - #13617 `cf7f9ae` release: Require macos 10.10+ (fanquake) @@ -641,7 +641,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13095 `415f2bf` update `ax_boost_chrono`/`unit_test_framework` (fanquake) - #13732 `e8ffec6` Fix Qt's rcc determinism (Fuzzbawls) - #13782 `8284f1d` Fix osslsigncode compile issue in gitian-build (ken2812221) -- #13696 `2ab7208` Add aarch64 qt depends support for cross compiling BGL-qt (TheCharlatan) +- #13696 `2ab7208` Add aarch64 qt depends support for cross compiling bitcoin-qt (TheCharlatan) - #13705 `b413ba0` Add format string linter (practicalswift) - #14000 `48c8459` fix qt determinism (theuni) - #14018 `3e4829a` Bugfix: NSIS: Exclude `Makefile*` from docs (luke-jr) @@ -652,12 +652,12 @@ Support for Python 2 has been discontinued for all test files and tools. - #12252 `8d57319` Require all tests to follow naming convention (ajtowns) - #12295 `935eb8d` Enable flake8 warnings for all currently non-violated rules (practicalswift) - #11858 `b4d8549` Prepare tests for Windows (MarcoFalke) -- #11771 `2dbc4a4` Change invalidtxrequest to use BGLTestFramework (jnewbery) +- #11771 `2dbc4a4` Change invalidtxrequest to use BitcoinTestFramework (jnewbery) - #12200 `d09968f` Bind functional test nodes to 127.0.0.1 (Sjors) - #12425 `26dc2da` Add some script tests (richardkiss) - #12455 `23481fa` Fix bip68 sequence test to reflect updated rpc error message (Empact) - #12477 `acd1e61` Plug memory leaks and stack-use-after-scope (MarcoFalke) -- #12443 `07090c5` Move common args to BGL.conf (MarcoFalke) +- #12443 `07090c5` Move common args to bitcoin.conf (MarcoFalke) - #12570 `39dcac2` Add test cases for HexStr (`std::reverse_iterator` and corner cases) (kostaz) - #12582 `6012f1c` Fix ListCoins test failure due to unset `g_wallet_allow_fallback_fee` (ryanofsky) - #12516 `7f99964` Avoid unintentional unsigned integer wraparounds in tests (practicalswift) @@ -665,7 +665,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #12600 `29088b1` Add a test for large tx output scripts with segwit input (richardkiss) - #12627 `791c3ea` Fix some tests to work on native windows (MarcoFalke) - #12405 `0f58d7f` travis: Full clone for git subtree check (MarcoFalke) -- #11772 `0630974` Change invalidblockrequest to use BGLTestFramework (jnewbery) +- #11772 `0630974` Change invalidblockrequest to use BitcoinTestFramework (jnewbery) - #12681 `1846296` Fix ComputeTimeSmart test failure with `-DDEBUG_LOCKORDER` (ryanofsky) - #12682 `9f04c8e` travis: Clone depth 1 unless `$check_doc` (MarcoFalke) - #12710 `00d1680` Append scripts to new `test_list` array to fix bad assignment (jeffrade) @@ -678,9 +678,9 @@ Support for Python 2 has been discontinued for all test files and tools. - #12806 `18606eb` Fix function names in `feature_blocksdir` (MarcoFalke) - #12811 `0d8fc8d` Make summary row bold-red if any test failed and show failed tests at end of table (laanwj) - #12790 `490644d` Use blockmaxweight where tests previously had blockmaxsize (conscott) -- #11773 `f0f9732` Change `feature_block.py` to use BGLTestFramework (jnewbery) +- #11773 `f0f9732` Change `feature_block.py` to use BitcoinTestFramework (jnewbery) - #12839 `40f4baf` Remove travis checkout depth (laanwj) -- #11817 `2a09a78` Change `feature_csv_activation.py` to use BGLTestFramework (jnewbery) +- #11817 `2a09a78` Change `feature_csv_activation.py` to use BitcoinTestFramework (jnewbery) - #12284 `fa5825d` Remove assigned but never used local variables. Enable Travis checking for unused local variables (practicalswift) - #12719 `9beded5` Add note about test suite naming convention in developer-notes.md (practicalswift) - #12861 `c564424` Stop `feature_block.py` from blowing up memory (jnewbery) @@ -690,7 +690,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #12766 `69310a3` Tidy up REST interface functional tests (romanz) - #12849 `83c7533` Add logging in loops in `p2p_sendhears.py` (ccdle12) - #12895 `d6f10b2` Add note about test suite name uniqueness requirement to developer notes (practicalswift) -- #12856 `27278df` Add Metaclass for BGLTestFramework (WillAyd) +- #12856 `27278df` Add Metaclass for BitcoinTestFramework (WillAyd) - #12918 `6fc5a05` Assert on correct variable (kallewoof) - #11878 `a04440f` Add Travis check for duplicate includes (practicalswift) - #12917 `cf8073f` Windows fixups for functional tests (MarcoFalke) @@ -747,7 +747,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13219 `08516e0` bench: Add block assemble benchmark (MarcoFalke) - #13530 `b1dc39d` bench: Add missing pow.h header (laanwj) - #12686 `2643fa5` Add -ftrapv to CFLAGS and CXXFLAGS when --enable-debug is used. Enable -ftrapv in Travis (practicalswift) -- #12882 `d96bdd7` Make `test_BGL` pass under ThreadSanitzer (clang). Fix lock-order-inversion (potential deadlock) (practicalswift) +- #12882 `d96bdd7` Make `test_bitcoin` pass under ThreadSanitzer (clang). Fix lock-order-inversion (potential deadlock) (practicalswift) - #13535 `2328039` `wallet_basic`: Specify minimum required amount for listunspent (MarcoFalke) - #13551 `c93c360` Fix incorrect documentation for test case `cuckoocache_hit_rate_ok` (practicalswift) - #13563 `b330f3f` bench: Simplify coinselection (promag) @@ -763,7 +763,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13663 `cbc9b50` Avoid read/write to default datadir (MarcoFalke) - #13682 `f8a32a3` bench: Remove unused variable (practicalswift) - #13638 `6fcdb5e` Use `MAX_SCRIPT_ELEMENT_SIZE` from script.py (domob1812) -- #13687 `9d26b69` travis: Check that ~/.BGL is never created (MarcoFalke) +- #13687 `9d26b69` travis: Check that ~/.bitcoin is never created (MarcoFalke) - #13715 `e1260a7` fixes mininode's P2PConnection sending messages on closing transport (marcoagner) - #13729 `aa9429a` travis: Avoid unnecessarily setting env variables on the lint build (Empact) - #13747 `ab28b5b` Skip P2PConnection's `is_closing()` check when not available (domob1812) @@ -774,7 +774,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13779 `d25079a` travis: Improve readability of travis.yml and log outputs (scravy) - #13822 `0fb9c87` bench: Make coinselection output groups pass eligibility filter (achow101) - #13247 `e83d82a` Add tests to SingleThreadedSchedulerClient() and document the memory model (skeees) -- #13811 `660abc1` travis: Run `bench_BGL` once (MarcoFalke) +- #13811 `660abc1` travis: Run `bench_bitcoin` once (MarcoFalke) - #13837 `990e182` Extract `rpc_timewait` as test param (MarcoFalke) - #13851 `9c4324d` fix locale for lint-shell (scravy) - #13823 `489b51b` quote path in authproxy for external multiwallets (MarcoFalke) @@ -809,8 +809,8 @@ Support for Python 2 has been discontinued for all test files and tools. - #10694 `ae5bcc7` Remove redundant code in MutateTxSign(CMutableTransaction&, const std::string&) (practicalswift) - #12659 `3d16f58` Improve Fatal LevelDB Log Messages (eklitzke) - #12643 `0f0229d` util: Remove unused `sync_chain` (MarcoFalke) -- #12102 `7fb8fb4` Apply hardening measures in BGLd systemd service file (Flowdalic) -- #12652 `55f490a` BGL-cli: Provide a better error message when BGLd is not running (practicalswift) +- #12102 `7fb8fb4` Apply hardening measures in bitcoind systemd service file (Flowdalic) +- #12652 `55f490a` bitcoin-cli: Provide a better error message when bitcoind is not running (practicalswift) - #12630 `c290508` Provide useful error message if datadir is not writable (murrayn) - #11881 `624bee9` Remove Python2 support (jnewbery) - #12821 `082e26c` contrib: Remove unused import string (MarcoFalke) @@ -831,7 +831,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13031 `826acc9` Fix for utiltime to compile with msvc (sipsorcery) - #13119 `81743b5` Remove script to clean up datadirs (MarcoFalke) - #12954 `5a66642` util: Refactor logging code into a global object (jimpo) -- #12769 `35eb9d6` Add systemd service to BGLd in debian package (ghost) +- #12769 `35eb9d6` Add systemd service to bitcoind in debian package (ghost) - #13146 `0bc980b` rpcauth: Make it possible to provide a custom password (laanwj) - #13148 `b62b437` logging: Fix potential use-after-free in logprintstr(…) (practicalswift) - #13214 `0612d96` Enable Travis checking for two Python linting rules we are currently not violating (practicalswift) @@ -840,7 +840,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13228 `d792e47` Add script to detect circular dependencies between source modules (sipa) - #13320 `e08c130` Ensure gitian-build.sh uses bash (jhfrontz) - #13301 `e4082d5` lint: Add linter to error on `#include <*.cpp>` (Empact) -- #13374 `56f6936` utils and libraries: checking for BGL address in translations (kaplanmaxe) +- #13374 `56f6936` utils and libraries: checking for bitcoin address in translations (kaplanmaxe) - #13230 `7c32b41` Simplify include analysis by enforcing the developer guide's include syntax (practicalswift) - #13450 `32bf4c6` Add linter: Enforce the source code file naming convention described in the developer notes (practicalswift) - #13479 `fa2ea37` contrib: Fix cve-2018-12356 by hardening the regex (loganaden) @@ -848,7 +848,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13494 `d67eff8` Follow-up to #13454: Fix broken build by exporting `LC_ALL=C` (practicalswift) - #13510 `03f3925` Scripts and tools: Obsolete #!/bin/bash shebang (DesWurstes) - #13577 `c9eb8d1` logging: Avoid nstart may be used uninitialized in appinitmain warning (mruddy) -- #13603 `453ae5e` BGL-tx: Stricter check for valid integers (domob1812) +- #13603 `453ae5e` bitcoin-tx: Stricter check for valid integers (domob1812) - #13118 `c05c93c` RPCAuth Detection in Logs (Linrono) - #13647 `4027ec1` Scripts and tools: Fix `BIND_NOW` check in security-check.py (conradoplg) - #13692 `f5d166a` contrib: Clone core repo in gitian-build (MarcoFalke) @@ -872,7 +872,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13441 `4a7e64f` Prevent shared conf files from failing with different available options in different binaries (achow101) - #13471 `5eca4e8` For AVX2 code, also check for AVX, XSAVE, and OS support (sipa) - #13503 `c655b2c` Document FreeBSD quirk. Fix FreeBSD build: Use std::min(…) to allow for compilation under certain FreeBSD versions (practicalswift) -- #13725 `07ce278` Fix BGL-cli --version (Empact) +- #13725 `07ce278` Fix bitcoin-cli --version (Empact) ### Documentation - #12306 `216f9a4` Improvements to UNIX documentation (axvr) @@ -898,7 +898,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #12800 `2d97611` Add note about our preference for scoped enumerations ("enum class") (practicalswift) - #12798 `174d016` Refer to witness reserved value as spec. in the BIP (MarcoFalke) - #12759 `d3908e2` Improve formatting of developer notes (eklitzke) -- #12877 `2b54155` Use BGLd in Tor documentation (knoxcard) +- #12877 `2b54155` Use bitcoind in Tor documentation (knoxcard) - #12896 `b15485e` Fix conflicting statements about initialization in developer notes (practicalswift) - #12850 `319991d` add qrencode to brew install instructions (buddilla) - #12007 `cd8e45b` Clarify the meaning of fee delta not being a fee rate in prioritisetransaction RPC (honzik666) @@ -915,7 +915,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13165 `627c376` Mention good first issue list in CONTRIBUTING.md (fanquake) - #13295 `fb77310` Update OpenBSD build instructions for OpenBSD 6.3 (practicalswift) - #13340 `3a8e3f4` remove leftover check-doc documentation (fanquake) -- #13346 `60f0358` update BGL-dot-org links in release-process.md (fanquake) +- #13346 `60f0358` update bitcoin-dot-org links in release-process.md (fanquake) - #13372 `f014933` split FreeBSD build instructions out of build-unix.md (steverusso) - #13366 `861de3b` Rename “OS X” to the newer “macOS” convention (giulio92) - #13369 `f8bcef3` update transifex doc link (mess110) @@ -935,7 +935,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13625 `7146672` Add release notes for -printtoconsole and -debuglogfile changes (satwo) - #13718 `f7f574d` Specify preferred Python string formatting technique (masonicboom) - #12764 `10b9a81` Remove field in getblocktemplate help that has never been used (conscott) -- #13742 `d2186b3` Adjust BGLcore.org links (MarcoFalke) +- #13742 `d2186b3` Adjust bitcoincore.org links (MarcoFalke) - #13706 `94dd89e` Minor improvements to release-process.md (MitchellCash) - #13775 `ef4fac0` Remove newlines from error message (practicalswift) - #13803 `feb7dd9` add note to contributor docs about warranted PR's (kallewoof) @@ -948,7 +948,7 @@ Support for Python 2 has been discontinued for all test files and tools. - #13895 `1cd5f2c` fix GetWarnings docs to reflect behavior (Empact) - #13911 `3e3a50a` Revert translated string change, clarify wallet log messages (PierreRochard) - #13908 `d6faea4` upgrade rescan time warning from minutes to >1 hour (masonicboom) -- #13905 `73a09b4` fixed BGL-cli -help output for help2man (hebasto) +- #13905 `73a09b4` fixed bitcoin-cli -help output for help2man (hebasto) - #14100 `2936dbc` Change documentation for =0 for non-boolean options (laanwj) - #14096 `465a583` Add reference documentation for descriptors language (sipa) - #12757 `0c5f67b` Clarify include guard naming convention (practicalswift) @@ -1102,4 +1102,4 @@ And to those that reported security issues: - awemany (for CVE-2018-17144, previously credited as "anonymous reporter") -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.17.1.md b/doc/release-notes/release-notes-0.17.1.md index b428d6c633..b1e50e0391 100644 --- a/doc/release-notes/release-notes-0.17.1.md +++ b/doc/release-notes/release-notes-0.17.1.md @@ -1,29 +1,29 @@ -BGL Core version 0.17.1 is now available from: +Bitcoin Core version 0.17.1 is now available from: - + or through BitTorrent: - magnet:?xt=urn:btih:c56c87ccfaa8e6fbccc90d549121e61efd97cb6f&dn=BGL-core-0.17.1&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Fzer0day.ch%3A1337&tr=udp%3A%2F%2Fexplodie.org%3A6969 + magnet:?xt=urn:btih:c56c87ccfaa8e6fbccc90d549121e61efd97cb6f&dn=bitcoin-core-0.17.1&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Fzer0day.ch%3A1337&tr=udp%3A%2F%2Fexplodie.org%3A6969 This is a new minor version release, with various bugfixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). If your node has a txindex, the txindex db will be migrated the first time you run 0.17.0 or newer, which may take up to a few hours. Your node will not be functional until this migration completes. @@ -50,10 +50,10 @@ processing the entire blockchain. Compatibility ============== -BGL Core is extensively tested on multiple operating systems using +Bitcoin Core is extensively tested on multiple operating systems using the Linux kernel, macOS 10.10+, and Windows 7 and newer (Windows XP is not supported). -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not frequently tested on them. From 0.17.0 onwards macOS <10.10 is no longer supported. 0.17.0 is built using Qt 5.9.x, which doesn't @@ -68,7 +68,7 @@ Notable changes The `listtransactions` RPC `account` parameter which was deprecated in 0.17.0 and renamed to `dummy` has been un-deprecated and renamed again to `label`. -When BGL is configured with the `-deprecatedrpc=accounts` setting, specifying +When bitcoin is configured with the `-deprecatedrpc=accounts` setting, specifying a label/account/dummy argument will return both outgoing and incoming transactions. Without the `-deprecatedrpc=accounts` setting, it will only return incoming transactions (because it used to be possible to create transactions @@ -112,7 +112,7 @@ confusion. ### Build system - #14647 `7edebed` Remove illegal spacing in darwin.mk (ch4ot1c) -- #14698 `ec71f06` Add BGL-tx.exe into Windows installer (ken2812221) +- #14698 `ec71f06` Add bitcoin-tx.exe into Windows installer (ken2812221) ### Tests and QA - #13965 `29899ec` Fix extended functional tests fail (ken2812221) @@ -165,4 +165,4 @@ Thanks to everyone who directly contributed to this release: - Walter - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.18.0.md b/doc/release-notes/release-notes-0.18.0.md index 8acee23111..3ca7d52243 100644 --- a/doc/release-notes/release-notes-0.18.0.md +++ b/doc/release-notes/release-notes-0.18.0.md @@ -1,17 +1,17 @@ -BGL Core version 0.18.0 is now available from: +Bitcoin Core version 0.18.0 is now available from: - + This is a new major version release, including new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== @@ -19,7 +19,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -`/Applications/BGL-Qt` (on Mac) or `BGLd`/`BGL-qt` (on +`/Applications/Bitcoin-Qt` (on Mac) or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or newer, your chainstate database @@ -35,16 +35,16 @@ wallet versions are still supported. Compatibility ============== -BGL Core is supported and extensively tested on operating systems +Bitcoin Core is supported and extensively tested on operating systems using the Linux kernel, macOS 10.10+, and Windows 7 and newer. It is not -recommended to use BGL Core on unsupported systems. +recommended to use Bitcoin Core on unsupported systems. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not as frequently tested on them. From 0.17.0 onwards, macOS <10.10 is no longer supported. 0.17.0 is built using Qt 5.9.x, which doesn't support versions of macOS older than -10.10. Additionally, BGL Core does not yet change appearance when +10.10. Additionally, Bitcoin Core does not yet change appearance when macOS "dark mode" is activated. In addition to previously-supported CPU platforms, this release's @@ -52,11 +52,11 @@ pre-compiled distribution also provides binaries for the RISC-V platform. If you are using the `systemd` unit configuration file located at -`contrib/init/BGLd.service`, it has been changed to use -`/var/lib/BGLd` as the data directory instead of -`~BGL/.BGL`. When switching over to the new configuration file, -please make sure that the filesystem on which `/var/lib/BGLd` will -exist has enough space (check using `df -h /var/lib/BGLd`), and +`contrib/init/bitcoind.service`, it has been changed to use +`/var/lib/bitcoind` as the data directory instead of +`~bitcoin/.bitcoin`. When switching over to the new configuration file, +please make sure that the filesystem on which `/var/lib/bitcoind` will +exist has enough space (check using `df -h /var/lib/bitcoind`), and optionally copy over your existing data directory. See the [systemd init file section](#systemd-init-file) for more details. @@ -95,7 +95,7 @@ Configuration option changes messages that ZMQ will queue in memory (the "high water mark") before dropping additional messages. The default value is 1,000, the same as was used for previous releases. See the [ZMQ - documentation](https://github.com/BGL/BGL/blob/master/doc/zmq.md#usage) + documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/zmq.md#usage) for details. - The `rpcallowip` option can no longer be used to automatically listen @@ -119,16 +119,16 @@ Configuration option changes disconnect/ban behavior will not cause a node that is whitelisting another to be dropped by peers. Users can still explicitly enable this behavior with the command line option (and may want to consider - [contacting](https://BGLcore.org/en/contact/) the BGL Core + [contacting](https://bitcoincore.org/en/contact/) the Bitcoin Core project to let us know about their use-case, as this feature could be deprecated in the future). systemd init file ----------------- -The systemd init file (`contrib/init/BGLd.service`) has been changed -to use `/var/lib/BGLd` as the data directory instead of -`~BGL/.BGL`. This change makes BGL Core more consistent with +The systemd init file (`contrib/init/bitcoind.service`) has been changed +to use `/var/lib/bitcoind` as the data directory instead of +`~bitcoin/.bitcoin`. This change makes Bitcoin Core more consistent with other services, and makes the systemd init config more consistent with existing Upstart and OpenRC configs. @@ -138,33 +138,33 @@ See [`systemd.exec(5)`](https://www.freedesktop.org/software/systemd/man/systemd for more details. When using the provided init files under `contrib/init`, overriding the -`datadir` option in `/etc/BGL/BGL.conf` will have no effect. +`datadir` option in `/etc/bitcoin/bitcoin.conf` will have no effect. This is because the command line arguments specified in the init files take precedence over the options specified in -`/etc/BGL/BGL.conf`. +`/etc/bitcoin/bitcoin.conf`. Documentation ------------- -- A new short [document](https://github.com/BGL/BGL/blob/master/doc/JSON-RPC-interface.md) +- A new short [document](https://github.com/bitcoin/bitcoin/blob/master/doc/JSON-RPC-interface.md) about the JSON-RPC interface describes cases where the results of an RPC might contain inconsistencies between data sourced from different subsystems, such as wallet state and mempool state. A note is added - to the [REST interface documentation](https://github.com/BGL/BGL/blob/master/doc/REST-interface.md) + to the [REST interface documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/REST-interface.md) indicating that the same rules apply. - Further information is added to the [JSON-RPC - documentation](https://github.com/BGL/BGL/blob/master/doc/JSON-RPC-interface.md) + documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/JSON-RPC-interface.md) about how to secure this interface. -- A new [document](https://github.com/BGL/BGL/blob/master/doc/BGL-conf.md) - about the `BGL.conf` file describes how to use it to configure - BGL Core. +- A new [document](https://github.com/bitcoin/bitcoin/blob/master/doc/bitcoin-conf.md) + about the `bitcoin.conf` file describes how to use it to configure + Bitcoin Core. -- A new document introduces BGL Core's BIP174 [Partially-Signed - BGL Transactions - (PSBT)](https://github.com/BGL/BGL/blob/master/doc/psbt.md) +- A new document introduces Bitcoin Core's BIP174 [Partially-Signed + Bitcoin Transactions + (PSBT)](https://github.com/bitcoin/bitcoin/blob/master/doc/psbt.md) interface, which is used to allow multiple programs to collaboratively work to create, sign, and broadcast new transactions. This is useful for offline (cold storage) wallets, multisig wallets, coinjoin @@ -172,7 +172,7 @@ Documentation to interact to generate a complete transaction. - The [output script - descriptor](https://github.com/BGL/BGL/blob/master/doc/descriptors.md) + descriptor](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md) documentation has been updated with information about new features in this still-developing language for describing the output scripts that a wallet or other program wants to receive notifications for, such as @@ -185,15 +185,15 @@ Build system changes -------------------- - A new `--disable-bip70` option may be passed to `./configure` to - prevent BGL-Qt from being built with support for the BIP70 payment + prevent Bitcoin-Qt from being built with support for the BIP70 payment protocol or from linking libssl. As the payment protocol has exposed - BGL Core to libssl vulnerabilities in the past, builders who don't + Bitcoin Core to libssl vulnerabilities in the past, builders who don't need BIP70 support are encouraged to use this option to reduce their exposure to future vulnerabilities. - The minimum required version of Qt (when building the GUI) has been increased from 5.2 to 5.5.1 (the [depends - system](https://github.com/BGL/BGL/blob/master/depends/README.md) + system](https://github.com/bitcoin/bitcoin/blob/master/depends/README.md) provides 5.9.7) New RPCs @@ -211,7 +211,7 @@ New RPCs they've been running. - `deriveaddresses` returns one or more addresses corresponding to an - [output descriptor](https://github.com/BGL/BGL/blob/master/doc/descriptors.md). + [output descriptor](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md). - `getdescriptorinfo` accepts a descriptor and returns information about it, including its computed checksum. @@ -278,7 +278,7 @@ in the Low-level Changes section below. ignored or are inconsistent, if there are any. - `getaddressinfo` now returns an additional `solvable` boolean field - when BGL Core knows enough about the address's scriptPubKey, + when Bitcoin Core knows enough about the address's scriptPubKey, optional redeemScript, and optional witnessScript in order for the wallet to be able to generate an unsigned input spending funds sent to that address. @@ -292,7 +292,7 @@ in the Low-level Changes section below. - `importprivkey` will preserve previously-set labels for addresses or public keys corresponding to the private key being imported. For example, if you imported a watch-only address with the label "cold - wallet" in earlier releases of BGL Core, subsequently importing + wallet" in earlier releases of Bitcoin Core, subsequently importing the private key would default to resetting the address's label to the default empty-string label (""). In this release, the previous label of "cold wallet" will be retained. If you optionally specify any @@ -320,7 +320,7 @@ in the Low-level Changes section below. origin information imported through `importmulti` will have their key origin information stored in the wallet for use with creating PSBTs. More information about descriptors can be found - [here](https://github.com/BGL/BGL/blob/master/doc/descriptors.md). + [here](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md). - `listunspent` has been modified so that it also returns `witnessScript`, the witness script in the case of a P2WSH or @@ -343,7 +343,7 @@ Deprecated or removed RPCs - The 'account' API is removed after being deprecated in v0.17. The 'label' API was introduced in v0.17 as a replacement for accounts. See the [release notes from - v0.17](https://github.com/BGL/BGL/blob/master/doc/release-notes/release-notes-0.17.0.md#label-and-account-apis-for-wallet) + v0.17](https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-0.17.0.md#label-and-account-apis-for-wallet) for a full description of the changes from the 'account' API to the 'label' API. @@ -359,7 +359,7 @@ Deprecated or removed RPCs require or use the wallet component. Calling `generatetoaddress` with an address returned by the `getnewaddress` RPC gives the same functionality as the old `generate` RPC. To continue using `generate` - in this version, restart BGLd with the `-deprecatedrpc=generate` + in this version, restart bitcoind with the `-deprecatedrpc=generate` configuration option. - Be reminded that parts of the `validateaddress` command have been @@ -406,7 +406,7 @@ Graphical User Interface (GUI) Tools ----- -- A new `BGL-wallet` tool is now distributed alongside BGL +- A new `bitcoin-wallet` tool is now distributed alongside Bitcoin Core's other executables. Without needing to use any RPCs, this tool can currently create a new wallet file or display some basic information about an existing wallet, such as whether the wallet is @@ -416,24 +416,24 @@ Tools Planned changes =============== -This section describes planned changes to BGL Core that may affect -other BGL software and services. +This section describes planned changes to Bitcoin Core that may affect +other Bitcoin software and services. -- Since version 0.16.0, BGL Core’s built-in wallet has defaulted to +- Since version 0.16.0, Bitcoin Core’s built-in wallet has defaulted to generating P2SH-wrapped segwit addresses when users want to receive payments. These addresses are backwards compatible with all - widely-used software. Starting with BGL Core 0.20 (expected about - a year after 0.18), BGL Core will default to native segwit + widely-used software. Starting with Bitcoin Core 0.20 (expected about + a year after 0.18), Bitcoin Core will default to native segwit addresses (bech32) that provide additional fee savings and other benefits. Currently, many wallets and services already support sending - to bech32 addresses, and if the BGL Core project sees enough + to bech32 addresses, and if the Bitcoin Core project sees enough additional adoption, it will instead default to bech32 receiving - addresses in BGL Core 0.19 (approximately November 2019). + addresses in Bitcoin Core 0.19 (approximately November 2019). P2SH-wrapped segwit addresses will continue to be provided if the user requests them in the GUI or by RPC, and anyone who doesn’t want the update will be able to configure their default address type. (Similarly, pioneering users who want to change their default now may - set the `addresstype=bech32` configuration option in any BGL Core + set the `addresstype=bech32` configuration option in any Bitcoin Core release from 0.16.0 up.) Deprecated P2P messages @@ -495,7 +495,7 @@ Network a misbehaving node will be disconnected to make room for nodes without a history of problems (unless the misbehaving node helps your node in some other way, such as by connecting to a part of the Internet from - which you don't have many other peers). Previously, BGL Core + which you don't have many other peers). Previously, Bitcoin Core banned the IP addresses of misbehaving peers for a period of time (default of 1 day); this was easily circumvented by attackers with multiple IP addresses. If you manually ban a peer, such as by using @@ -514,18 +514,18 @@ Wallet software. Instead such wallets will be completely unloaded and reloaded to achieve the same effect. -- A sub-project of BGL Core now provides Hardware Wallet Interaction +- A sub-project of Bitcoin Core now provides Hardware Wallet Interaction (HWI) scripts that allow command-line users to use several popular - hardware key management devices with BGL Core. See their [project - page](https://github.com/BGL-core/HWI#readme) for details. + hardware key management devices with Bitcoin Core. See their [project + page](https://github.com/bitcoin-core/HWI#readme) for details. Security -------- - This release changes the Random Number Generator (RNG) used from - OpenSSL to BGL Core's own implementation, although entropy - gathered by BGL Core is fed out to OpenSSL and then read back in - when the program needs strong randomness. This moves BGL Core a + OpenSSL to Bitcoin Core's own implementation, although entropy + gathered by Bitcoin Core is fed out to OpenSSL and then read back in + when the program needs strong randomness. This moves Bitcoin Core a little closer to no longer needing to depend on OpenSSL, a dependency that has caused security issues in the past. The new implementation gathers entropy from multiple sources, including from hardware @@ -534,7 +534,7 @@ Security Changes for particular platforms -------------------------------- -- On macOS, BGL Core now opts out of application CPU throttling +- On macOS, Bitcoin Core now opts out of application CPU throttling ("app nap") during initial blockchain download, when catching up from over 100 blocks behind the current chain tip, or when reindexing chain data. This helps prevent these operations from taking an excessively @@ -589,9 +589,9 @@ Changes for particular platforms - #14023 Remove accounts RPCs (jnewbery) - #13825 Kill accounts (jnewbery) - #10605 Add AssertLockHeld assertions in CWallet::ListCoins (ryanofsky) -- #12490 Remove deprecated wallet rpc features from `BGL_server` (jnewbery) +- #12490 Remove deprecated wallet rpc features from `bitcoin_server` (jnewbery) - #14138 Set `encrypted_batch` to nullptr after delete. Avoid double free in the case of NDEBUG (practicalswift) -- #14168 Remove `ENABLE_WALLET` from `libBGL_server.a` (jnewbery) +- #14168 Remove `ENABLE_WALLET` from `libbitcoin_server.a` (jnewbery) - #12493 Reopen CDBEnv after encryption instead of shutting down (achow101) - #14282 Remove `-usehd` option (jnewbery) - #14146 Remove trailing separators from `-walletdir` arg (PierreRochard) @@ -623,7 +623,7 @@ Changes for particular platforms - #14711 Remove uses of chainActive and mapBlockIndex in wallet code (ryanofsky) - #15279 Clarify rescanblockchain doc (MarcoFalke) - #15292 Remove `boost::optional`-related false positive -Wmaybe-uninitialized warnings on GCC compiler (hebasto) -- #13926 [Tools] BGL-wallet - a tool for creating and managing wallets offline (jnewbery) +- #13926 [Tools] bitcoin-wallet - a tool for creating and managing wallets offline (jnewbery) - #11911 Free BerkeleyEnvironment instances when not in use (ryanofsky) - #15235 Do not import private keys to wallets with private keys disabled (achow101) - #15263 Descriptor expansions only need pubkey entries for PKH/WPKH (sipa) @@ -709,7 +709,7 @@ Changes for particular platforms - #13248 Make proxy icon from statusbar clickable (mess110) - #12818 TransactionView: highlight replacement tx after fee bump (Sjors) - #13529 Use new Qt5 connect syntax (promag) -- #14162 Also log and print messages or questions like BGLd (MarcoFalke) +- #14162 Also log and print messages or questions like bitcoind (MarcoFalke) - #14385 Avoid system harfbuzz and bz2 (theuni) - #14450 Fix QCompleter popup regression (hebasto) - #14177 Set C locale for amountWidget (hebasto) @@ -717,7 +717,7 @@ Changes for particular platforms - #14554 Remove unused `adjustedTime` parameter (hebasto) - #14228 Enable system tray icon by default if available (hebasto) - #14608 Remove the "Pay only required fee…" checkbox (hebasto) -- #14521 qt, docs: Fix `BGL-qt -version` output formatting (hebasto) +- #14521 qt, docs: Fix `bitcoin-qt -version` output formatting (hebasto) - #13966 When private key is disabled, only show watch-only balance (ken2812221) - #14828 Remove hidden columns in coin control dialog (promag) - #14783 Fix `boost::signals2::no_slots_error` in early calls to InitWarning (promag) @@ -730,7 +730,7 @@ Changes for particular platforms - #14375 Correct misleading "overridden options" label (hebasto) - #15007 Notificator class refactoring (hebasto) - #14784 Use `WalletModel*` instead of the wallet name as map key (promag) -- #11625 Add BGLApplication & RPCConsole tests (ryanofsky) +- #11625 Add BitcoinApplication & RPCConsole tests (ryanofsky) - #14517 Fix start with the `-min` option (hebasto) - #13216 implements concept for different disk sizes on intro (marcoagner) - #15114 Replace remaining 0 with nullptr (Empact) @@ -766,7 +766,7 @@ Changes for particular platforms - #14183 Remove unused Qt 4 dependencies (ken2812221) - #14127 Avoid getifaddrs when unavailable (greenaddress) - #14184 Scripts and tools: increased timeout downloading (cisba) -- #14204 Move `interfaces/*` to `libBGL_server` (laanwj) +- #14204 Move `interfaces/*` to `libbitcoin_server` (laanwj) - #14208 Actually remove `ENABLE_WALLET` (jnewbery) - #14212 Remove libssl from LDADD unless GUI (MarcoFalke) - #13578 Upgrade zeromq to 4.2.5 and avoid deprecated zeromq API functions (mruddy) @@ -786,19 +786,19 @@ Changes for particular platforms - #14849 Qt 5.9.7 (fanquake) - #15020 Add names to Travis jobs (gkrizek) - #15047 Allow to configure --with-sanitizers=fuzzer (MarcoFalke) -- #15154 Configure: BGL-tx doesn't need libevent, so don't pull it in (luke-jr) +- #15154 Configure: bitcoin-tx doesn't need libevent, so don't pull it in (luke-jr) - #15175 Drop macports support (Empact) - #15308 Restore compatibility with older boost (Empact) - #15407 msvc: Fix silent merge conflict between #13926 and #14372 part II (ken2812221) -- #15388 Makefile.am: add rule for src/BGL-wallet (Sjors) +- #15388 Makefile.am: add rule for src/bitcoin-wallet (Sjors) - #15393 Bump minimum Qt version to 5.5.1 (Sjors) - #15285 Prefer Python 3.4 even if newer versions are present on the system (Sjors) - #15398 msvc: Add rapidcheck property tests (ken2812221) - #15431 msvc: scripted-diff: Remove NDEBUG pre-define in project file (ken2812221) - #15549 gitian: Improve error handling (laanwj) - #15548 use full version string in setup.exe (MarcoFalke) -- #11526 Visual Studio build configuration for BGL Core (sipsorcery) -- #15110 build\_msvc: Fix the build problem in `libBGL_server` (Mr-Leshiy) +- #11526 Visual Studio build configuration for Bitcoin Core (sipsorcery) +- #15110 build\_msvc: Fix the build problem in `libbitcoin_server` (Mr-Leshiy) - #14372 msvc: build secp256k1 and leveldb locally (ken2812221) - #15325 msvc: Fix silent merge conflict between #13926 and #14372 (ken2812221) - #15391 Add compile time verification of assumptions we're currently making implicitly/tacitly (practicalswift) @@ -808,7 +808,7 @@ Changes for particular platforms ### Tests and QA - #15405 appveyor: Clean cache when build configuration changes (Sjors) -- #13953 Fix deprecation in BGL-util-test.py (isghe) +- #13953 Fix deprecation in bitcoin-util-test.py (isghe) - #13963 Replace usage of tostring() with tobytes() (dongcarl) - #13964 ci: Add appveyor ci (ken2812221) - #13997 appveyor: fetch the latest port data (ken2812221) @@ -824,7 +824,7 @@ Changes for particular platforms - #14088 Don't assert(…) with side effects (practicalswift) - #14086 appveyor: Use clcache to speed up build (ken2812221) - #13954 Warn (don't fail!) on spelling errors. Fix typos reported by codespell (practicalswift) -- #12775 Integration of property based testing into BGL Core (Christewart) +- #12775 Integration of property based testing into Bitcoin Core (Christewart) - #14119 Read reject reasons from debug log, not P2P messages (MarcoFalke) - #14189 Fix silent merge conflict in `wallet_importmulti` (MarcoFalke) - #13419 Speed up `knapsack_solver_test` by not recreating wallet 100 times (lucash-dev) @@ -837,7 +837,7 @@ Changes for particular platforms - #14275 Write the notification message to different files to avoid race condition in `feature_notifications.py` (ken2812221) - #14306 appveyor: Move AppVeyor YAML to dot-file-style YAML (MitchellCash) - #14305 Enforce critical class instance attributes in functional tests, fix segwit test specificity (JustinTArthur) -- #12246 Bugfix: Only run BGL-tx tests when BGL-tx is enabled (luke-jr) +- #12246 Bugfix: Only run bitcoin-tx tests when bitcoin-tx is enabled (luke-jr) - #14316 Exclude all tests with difference parameters in `--exclude` list (ken2812221) - #14381 Add missing call to `skip_if_no_cli()` (practicalswift) - #14389 travis: Set codespell version to avoid breakage (MarcoFalke) @@ -859,7 +859,7 @@ Changes for particular platforms - #14631 Move deterministic address import to `setup_nodes` (jnewbery) - #14630 test: Remove travis specific code (MarcoFalke) - #14528 travis: Compile once on xenial (MarcoFalke) -- #14092 Dry run `bench_BGL` as part `make check` to allow for quick identification of assertion/sanitizer failures in benchmarking code (practicalswift) +- #14092 Dry run `bench_bitcoin` as part `make check` to allow for quick identification of assertion/sanitizer failures in benchmarking code (practicalswift) - #14664 `example_test.py`: fixup coinbase height argument, derive number clearly (instagibbs) - #14522 Add invalid P2P message tests (jamesob) - #14619 Fix value display name in `test_runner` help text (merland) @@ -903,7 +903,7 @@ Changes for particular platforms - #14969 Fix `cuckoocache_tests` TSAN failure introduced in 14935 (practicalswift) - #14964 Fix race in `mempool_accept` (MarcoFalke) - #14829 travis: Enable functional tests in the threadsanitizer (tsan) build job (practicalswift) -- #14985 Remove `thread_local` from `test_BGL` (MarcoFalke) +- #14985 Remove `thread_local` from `test_bitcoin` (MarcoFalke) - #15005 Bump timeout to run tests in travis thread sanitizer (MarcoFalke) - #15013 Avoid race in `p2p_timeouts` (MarcoFalke) - #14960 lint/format-strings: Correctly exclude escaped percent symbols (luke-jr) @@ -980,8 +980,8 @@ Changes for particular platforms - #14097 validation: Log FormatStateMessage on ConnectBlock error in ConnectTip (MarcoFalke) - #13724 contrib: Support ARM and RISC-V symbol check (ken2812221) - #13159 Don't close old debug log file handle prematurely when trying to re-open (on SIGHUP) (practicalswift) -- #14186 BGL-cli: don't translate command line options (HashUnlimited) -- #14057 logging: Only log `using config file path_to_BGL.conf` message on startup if conf file exists (leishman) +- #14186 bitcoin-cli: don't translate command line options (HashUnlimited) +- #14057 logging: Only log `using config file path_to_bitcoin.conf` message on startup if conf file exists (leishman) - #14164 Update univalue subtree (MarcoFalke) - #14272 init: Remove deprecated args from hidden args (MarcoFalke) - #14494 Error if # is used in rpcpassword in conf (MeshCollider) @@ -1001,7 +1001,7 @@ Changes for particular platforms - #14839 threads: Fix unitialized members in `sched_param` (fanquake) - #14955 Switch all RNG code to the built-in PRNG (sipa) - #15258 Scripts and tools: Fix `devtools/copyright_header.py` to always honor exclusions (Empact) -- #12255 Update BGL.service to conform to init.md (dongcarl) +- #12255 Update bitcoin.service to conform to init.md (dongcarl) - #15266 memory: Construct globals on first use (MarcoFalke) - #15347 Fix build after pr 15266 merged (hebasto) - #15351 Update linearize-hashes.py (OverlordQ) @@ -1037,7 +1037,7 @@ Changes for particular platforms - #14428 Fix macOS files description in qt/README.md (hebasto) - #14390 release process: RPC documentation (karel-3d) - #14472 getblocktemplate: use SegWit in example (Sjors) -- #14497 Add doc/BGL-conf.md (hebasto) +- #14497 Add doc/bitcoin-conf.md (hebasto) - #14526 Document lint tests (fanquake) - #14511 Remove explicit storage requirement from README.md (merland) - #14600 Clarify commit message guidelines (merland) @@ -1073,7 +1073,7 @@ Changes for particular platforms - #15272 Correct logging return type and RPC example (fanquake) - #15244 Gdb attaching to process during tests has non-sudo solution (instagibbs) - #15332 Small updates to `getrawtransaction` description (amitiuttarwar) -- #15354 Add missing `BGL-wallet` tool manpages (MarcoFalke) +- #15354 Add missing `bitcoin-wallet` tool manpages (MarcoFalke) - #15343 netaddress: Make IPv4 loopback comment more descriptive (dongcarl) - #15353 Minor textual improvements in `translation_strings_policy.md` (merland) - #15426 importmulti: add missing description of keypool option (harding) @@ -1091,9 +1091,9 @@ Changes for particular platforms - #15754 getrpcinfo docs (benthecarman) - #15763 Update bips.md for 0.18.0 (sipa) - #15757 List new RPCs in psbt.md and descriptors.md (sipa) -- #15765 correct BGLconsensus_version in shared-libraries.md (fanquake) +- #15765 correct bitcoinconsensus_version in shared-libraries.md (fanquake) - #15792 describe onlynet option in doc/tor.md (jonatack) -- #15802 mention creating application support BGL folder on OSX (JimmyMow) +- #15802 mention creating application support bitcoin folder on OSX (JimmyMow) - #15799 Clarify RPC versioning (MarcoFalke) Credits @@ -1122,7 +1122,7 @@ Thanks to everyone who directly contributed to this release: - Ben Carman - Ben Woosley - benthecarman -- BGLhodler +- bitcoinhodler - Carl Dong - Chakib Benziane - Chris Moore @@ -1221,4 +1221,4 @@ Thanks to everyone who directly contributed to this release: - Wladimir J. van der Laan - Zain Iqbal Allarakhia -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.18.1.md b/doc/release-notes/release-notes-0.18.1.md index 7d45db39d8..483cc5075e 100644 --- a/doc/release-notes/release-notes-0.18.1.md +++ b/doc/release-notes/release-notes-0.18.1.md @@ -1,17 +1,17 @@ -BGL Core version 0.18.1 is now available from: +Bitcoin Core version 0.18.1 is now available from: - + This is a new minor version release, including new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== @@ -19,7 +19,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -`/Applications/BGL-Qt` (on Mac) or `BGLd`/`BGL-qt` (on +`/Applications/Bitcoin-Qt` (on Mac) or `bitcoind`/`bitcoin-qt` (on Linux). The first time you run version 0.15.0 or newer, your chainstate database @@ -35,16 +35,16 @@ wallet versions are still supported. Compatibility ============== -BGL Core is supported and extensively tested on operating systems +Bitcoin Core is supported and extensively tested on operating systems using the Linux kernel, macOS 10.10+, and Windows 7 and newer. It is not -recommended to use BGL Core on unsupported systems. +recommended to use Bitcoin Core on unsupported systems. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not as frequently tested on them. From 0.17.0 onwards, macOS <10.10 is no longer supported. 0.17.0 is built using Qt 5.9.x, which doesn't support versions of macOS older than -10.10. Additionally, BGL Core does not yet change appearance when +10.10. Additionally, Bitcoin Core does not yet change appearance when macOS "dark mode" is activated. Known issues @@ -91,7 +91,7 @@ not to use coin control features with multiple wallets loaded. ### Build system - #15985 Add test for GCC bug 90348 (sipa) -- #15947 Install BGL-wallet manpage (domob1812) +- #15947 Install bitcoin-wallet manpage (domob1812) - #15983 build with -fstack-reuse=none (MarcoFalke) ### Tests and QA @@ -133,4 +133,4 @@ Thanks to everyone who directly contributed to this release: - tecnovert - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.19.0.1.md b/doc/release-notes/release-notes-0.19.0.1.md index 800de83da3..70b8ec589f 100644 --- a/doc/release-notes/release-notes-0.19.0.1.md +++ b/doc/release-notes/release-notes-0.19.0.1.md @@ -1,48 +1,48 @@ -BGL Core version 0.19.0.1 is now available from: +Bitcoin Core version 0.19.0.1 is now available from: - + This release includes new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: - + How to Upgrade ============== If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over `/Applications/BGL-Qt` (on Mac) -or `BGLd`/`BGL-qt` (on Linux). +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac) +or `bitcoind`/`bitcoin-qt` (on Linux). -Upgrading directly from a version of BGL Core that has reached its EOL is +Upgrading directly from a version of Bitcoin Core that has reached its EOL is possible, but might take some time if the datadir needs to be migrated. Old -wallet versions of BGL Core are generally supported. +wallet versions of Bitcoin Core are generally supported. Compatibility ============== -BGL Core is supported and extensively tested on operating systems using +Bitcoin Core is supported and extensively tested on operating systems using the Linux kernel, macOS 10.10+, and Windows 7 and newer. It is not recommended -to use BGL Core on unsupported systems. +to use Bitcoin Core on unsupported systems. -BGL Core should also work on most other Unix-like systems but is not +Bitcoin Core should also work on most other Unix-like systems but is not as frequently tested on them. From 0.17.0 onwards, macOS <10.10 is no longer supported. 0.17.0 is built using Qt 5.9.x, which doesn't support versions of macOS older than -10.10. Additionally, BGL Core does not yet change appearance when +10.10. Additionally, Bitcoin Core does not yet change appearance when macOS "dark mode" is activated. Users running macOS Catalina may need to "right-click" and then choose "Open" -to open the BGL Core .dmg. This is due to new signing requirements -imposed by Apple, which the BGL Core project does not yet adhere too. +to open the Bitcoin Core .dmg. This is due to new signing requirements +imposed by Apple, which the Bitcoin Core project does not yet adhere too. Notable changes =============== @@ -50,8 +50,8 @@ Notable changes New user documentation ---------------------- -- [Reduce memory](https://github.com/BGL/BGL/blob/master/doc/reduce-memory.md) - suggests configuration tweaks for running BGL Core on systems with +- [Reduce memory](https://github.com/bitcoin/bitcoin/blob/master/doc/reduce-memory.md) + suggests configuration tweaks for running Bitcoin Core on systems with limited memory. (#16339) New RPCs @@ -78,7 +78,7 @@ New settings - `-blockfilterindex` enables the creation of BIP158 block filters for the entire blockchain. Filters will be created in the background and - currently use about 4 GiB of space. Note: this version of BGL + currently use about 4 GiB of space. Note: this version of Bitcoin Core does not serve block filters over the P2P network, although the local user may obtain block filters using the `getblockfilter` RPC. (#14121) @@ -90,7 +90,7 @@ Updated settings provide peers connecting using the indicated interfaces or IP addresses. If no permissions are specified with an address or CIDR network, the implicit default permissions are the same as previous - releases. See the `BGLd -help` output for these two options for + releases. See the `bitcoind -help` output for these two options for details about the available permissions. (#16248) - Users setting custom `dbcache` values can increase their setting slightly @@ -197,7 +197,7 @@ GUI changes type may be changed with the `-addresstype` configuration option. (#15711, #16497) -- In 0.18.0, a `./configure` flag was introduced to allow disabling BIP70 support in the GUI (support was enabled by default). In 0.19.0, this flag is now __disabled__ by default. If you want to compile BGL Core with BIP70 support in the GUI, you can pass `--enable-bip70` to `./configure`. (#15584) +- In 0.18.0, a `./configure` flag was introduced to allow disabling BIP70 support in the GUI (support was enabled by default). In 0.19.0, this flag is now __disabled__ by default. If you want to compile Bitcoin Core with BIP70 support in the GUI, you can pass `--enable-bip70` to `./configure`. (#15584) Deprecated or removed configuration options ------------------------------------------- @@ -217,7 +217,7 @@ Deprecated or removed RPCs - `bumpfee` has a new `fee_rate` option as a replacement for the deprecated `totalFee`. (#16727) -- `generate` is now removed after being deprecated in BGL Core 0.18. +- `generate` is now removed after being deprecated in Bitcoin Core 0.18. Use the `generatetoaddress` RPC instead. (#15492) P2P changes @@ -226,12 +226,12 @@ P2P changes - BIP 61 reject messages were deprecated in v0.18. They are now disabled by default, but can be enabled by setting the `-enablebip61` command line option. BIP 61 reject messages will be removed entirely in a - future version of BGL Core. (#14054) + future version of Bitcoin Core. (#14054) -- To eliminate well-known denial-of-service vectors in BGL Core, +- To eliminate well-known denial-of-service vectors in Bitcoin Core, especially for nodes with spinning disks, the default value for the `-peerbloomfilters` configuration option has been changed to false. - This prevents BGL Core from sending the BIP111 NODE_BLOOM service + This prevents Bitcoin Core from sending the BIP111 NODE_BLOOM service flag, accepting BIP37 bloom filters, or serving merkle blocks or transactions matching a bloom filter. Users who still want to provide bloom filter support may either set the configuration option to true @@ -240,17 +240,17 @@ P2P changes `-whitebind` configuration options described elsewhere in these release notes. For the near future, lightweight clients using public BIP111/BIP37 nodes should still be able to connect to older versions - of BGL Core and nodes that have manually enabled BIP37 support, + of Bitcoin Core and nodes that have manually enabled BIP37 support, but developers of such software should consider migrating to either using specific BIP37 nodes or an alternative transaction filtering system. (#16152) -- By default, BGL Core will now make two additional outbound connections that are exclusively used for block-relay. No transactions or addr messages will be processed on these connections. These connections are designed to add little additional memory or bandwidth resource requirements but should make some partitioning attacks more difficult to carry out. (#15759) +- By default, Bitcoin Core will now make two additional outbound connections that are exclusively used for block-relay. No transactions or addr messages will be processed on these connections. These connections are designed to add little additional memory or bandwidth resource requirements but should make some partitioning attacks more difficult to carry out. (#15759) Miscellaneous CLI Changes ------------------------- -- The `testnet` field in `BGL-cli -getinfo` has been renamed to +- The `testnet` field in `bitcoin-cli -getinfo` has been renamed to `chain` and now returns the current network name as defined in BIP70 (main, test, regtest). (#15566) @@ -262,7 +262,7 @@ RPC - `getblockchaininfo` no longer returns a `bip9_softforks` object. Instead, information has been moved into the `softforks` object and - an additional `type` field describes how BGL Core determines + an additional `type` field describes how Bitcoin Core determines whether that soft fork is active (e.g. BIP9 or BIP90). See the RPC help for details. (#16060) @@ -301,7 +301,7 @@ Network ------- - When fetching a transaction announced by multiple peers, previous versions of - BGL Core would sequentially attempt to download the transaction from each + Bitcoin Core would sequentially attempt to download the transaction from each announcing peer until the transaction is received, in the order that those peers' announcements were received. In this release, the download logic has changed to randomize the fetch order across peers and to prefer sending @@ -309,7 +309,7 @@ Network where inbound peers could prevent a node from getting a transaction. (#14897, #15834) -- If a Tor hidden service is being used, BGL Core will be bound to +- If a Tor hidden service is being used, Bitcoin Core will be bound to the standard port 8333 even if a different port is configured for clearnet connections. This prevents leaking node identity through use of identical non-default port numbers. (#15651) @@ -333,7 +333,7 @@ Mempool and transaction relay segwit versions) are now accepted into the mempool, relayed, and mined. Attempting to spend those outputs remains forbidden by policy ("non-standard"). When this change has been widely deployed, wallets - and services can accept any valid bech32 BGL address without + and services can accept any valid bech32 Bitcoin address without concern that transactions paying future segwit versions will become stuck in an unconfirmed state. (#15846) @@ -362,7 +362,7 @@ Wallet and default to not use the former in coin selection. When setting this flag on an existing wallet, rescanning the blockchain is required to correctly mark previously used destinations. Together with "avoid - partial spends" (added in BGL Core v0.17.0), this can eliminate a + partial spends" (added in Bitcoin Core v0.17.0), this can eliminate a serious privacy issue where a malicious user can track spends by sending small payments to a previously-paid address that would then be included with unrelated inputs in future payments. (#13756) @@ -424,7 +424,7 @@ Build system changes - #15834 Fix transaction relay bugs introduced in #14897 and expire transactions from peer in-flight map (sdaftuar) - #15651 torcontrol: Use the default/standard network port for Tor hidden services, even if the internal port is set differently (luke-jr) - #16188 Document what happens to getdata of unknown type (MarcoFalke) -- #15649 Add ChaCha20Poly1305@BGL AEAD (jonasschnelli) +- #15649 Add ChaCha20Poly1305@Bitcoin AEAD (jonasschnelli) - #16152 Disable bloom filtering by default (TheBlueMatt) - #15993 Drop support of the insecure miniUPnPc versions (hebasto) - #16197 Use mockable time for tx download (MarcoFalke) @@ -443,7 +443,7 @@ Build system changes - #15508 Refactor analyzepsbt for use outside RPC code (gwillen) - #15747 Remove plethora of Get*Balance (MarcoFalke) - #15728 Refactor relay transactions (jnewbery) -- #15639 BGL-wallet tool: Drop libBGL_server.a dependency (ryanofsky) +- #15639 bitcoin-wallet tool: Drop libbitcoin_server.a dependency (ryanofsky) - #15853 Remove unused import checkpoints.h (MarcoFalke) - #15780 add cachable amounts for caching credit/debit values (kallewoof) - #15778 Move maxtxfee from node to wallet (jnewbery) @@ -569,7 +569,7 @@ Build system changes - #16291 Stop translating PACKAGE_NAME (MarcoFalke) - #16380 Remove unused bits from the service flags enum (MarcoFalke) - #16379 Fix autostart filenames on Linux for testnet/regtest (hebasto) -- #16366 init: Use InitError for all errors in BGLd/qt (MarcoFalke) +- #16366 init: Use InitError for all errors in bitcoind/qt (MarcoFalke) - #16436 Do not create payment server if -disablewallet option provided (hebasto) - #16514 Remove unused RPCConsole::tabFocus (promag) - #16497 Generate bech32 addresses by default (take 2, fixup) (MarcoFalke) @@ -618,7 +618,7 @@ Build system changes - #15919 Remove unused OpenSSL includes to make it more clear where OpenSSL is used (practicalswift) - #15978 .gitignore: Don't ignore depends patches (dongcarl) - #15939 gitian: Remove windows 32 bit build (MarcoFalke) -- #15239 scripts and tools: Move non-linux build source tarballs to "BGL-binaries/version" directory (hebasto) +- #15239 scripts and tools: Move non-linux build source tarballs to "bitcoin-binaries/version" directory (hebasto) - #14047 Add HKDF_HMAC256_L32 and method to negate a private key (jonasschnelli) - #16051 add patch to common dependencies (fanquake) - #16049 switch to secure download of all dependencies (Kemu) @@ -630,7 +630,7 @@ Build system changes - #16235 Cleaned up and consolidated msbuild files (no code changes) (sipsorcery) - #16246 MSVC: Fix error in debug mode (Fix #16245) (NicolasDorier) - #16183 xtrans: Configure flags cleanup (dongcarl) -- #16258 [MSVC]: Create the config.ini as part of BGLd build (NicolasDorier) +- #16258 [MSVC]: Create the config.ini as part of bitcoind build (NicolasDorier) - #16271 remove -Wall from rapidcheck build flags (fanquake) - #16309 [MSVC] allow user level project customization (NicolasDorier) - #16308 [MSVC] Copy build output to src/ automatically after build (NicolasDorier) @@ -641,7 +641,7 @@ Build system changes - #16408 Prune X packages (dongcarl) - #16386 disable unused Qt features (fanquake) - #16424 Treat -Wswitch as error when --enable-werror (MarcoFalke) -- #16441 remove qt libjpeg check from BGL_qt.m4 (fanquake) +- #16441 remove qt libjpeg check from bitcoin_qt.m4 (fanquake) - #16434 Specify AM_CPPFLAGS for ZMQ (domob1812) - #16534 add Qt Creator Makefile.am.user to .gitignore (Bushstar) - #16573 disable building libsecp256k1 benchmarks (fanquake) @@ -654,7 +654,7 @@ Build system changes - #16654 build: update RapidCheck Makefile (jonatack) - #16370 cleanup package configure flags (fanquake) - #16746 msbuild: Ignore linker warning (sipsorcery) -- #16750 msbuild: adds bench_BGL to auto generated project files (sipsorcery) +- #16750 msbuild: adds bench_bitcoin to auto generated project files (sipsorcery) - #16810 guix: Remove ssp spec file hack (dongcarl) - #16477 skip deploying plugins we dont use in macdeployqtplus (fanquake) - #16413 Bump QT to LTS release 5.9.8 (THETCR) @@ -688,16 +688,16 @@ Build system changes - #15771 Prevent concurrency issues reading .cookie file (promag) - #15693 travis: Switch to ubuntu keyserver to avoid timeouts (MarcoFalke) - #15629 init: Throw error when network specific config is ignored (MarcoFalke) -- #15773 Add BGLTestFramework::sync_* methods (MarcoFalke) +- #15773 Add BitcoinTestFramework::sync_* methods (MarcoFalke) - #15797 travis: Bump second timeout to 33 minutes, add rationale (MarcoFalke) - #15788 Unify testing setups for fuzz, bench, and unit tests (MarcoFalke) -- #15352 Reduce noise level in test_BGL output (practicalswift) +- #15352 Reduce noise level in test_bitcoin output (practicalswift) - #15779 Add wallet_balance benchmark (MarcoFalke) - #15843 fix outdated include in blockfilter_index_tests (jamesob) - #15866 Add missing syncwithvalidationinterfacequeue to wallet_import_rescan (MarcoFalke) - #15697 Make swap_magic_bytes in p2p_invalid_messages atomic (MarcoFalke) - #15895 Avoid re-reading config.ini unnecessarily (luke-jr) -- #15896 feature_filelock, interface_BGL_cli: Use PACKAGE_NAME in messages rather than hardcoding BGL Core (luke-jr) +- #15896 feature_filelock, interface_bitcoin_cli: Use PACKAGE_NAME in messages rather than hardcoding Bitcoin Core (luke-jr) - #15897 QA/mininode: Send all headers upfront in send_blocks_and_test to avoid sending an unconnected one (luke-jr) - #15696 test_runner: Move feature_pruning to base tests (MarcoFalke) - #15869 Add settings merge test to prevent regresssions (ryanofsky) @@ -751,7 +751,7 @@ Build system changes - #16505 Changes verbosity of msbuild from quiet to normal in the appveyor script (sipsorcery) - #16293 Make test cases separate functions (MarcoFalke) - #16470 Fail early on disconnect in mininode.wait_for_* (MarcoFalke) -- #16277 Suppress output in test_BGL for expected errors (gertjaap) +- #16277 Suppress output in test_bitcoin for expected errors (gertjaap) - #16493 Fix test failures (MarcoFalke) - #16538 Add missing sync_blocks to feature_pruning (MarcoFalke) - #16509 Adapt test framework for chains other than "regtest" (MarcoFalke) @@ -851,7 +851,7 @@ Build system changes - #16556 Fix systemd service file configuration directory setup (setpill) - #15615 Add log output during initial header sync (jonasschnelli) - #16774 Avoid unnecessary "Synchronizing blockheaders" log messages (jonasschnelli) -- #16489 log: harmonize BGLd logging (jonatack) +- #16489 log: harmonize bitcoind logging (jonatack) - #16577 util: Cbufferedfile fixes and unit test (LarryRuane) - #16984 util: Make thread names shorter (hebasto) - #17038 Don't rename main thread at process level (laanwj) @@ -859,11 +859,11 @@ Build system changes - #17095 util: Filter control characters out of log messages (laanwj) - #17085 init: Change fallback locale to C.UTF-8 (laanwj) - #16957 9% less memory: make SaltedOutpointHasher noexcept (martinus) -- #17449 fix uninitialized variable nMinerConfirmationWindow (BGLVBR) +- #17449 fix uninitialized variable nMinerConfirmationWindow (bitcoinVBR) ### Documentation - #15514 Update Transifex links (fanquake) -- #15513 add "sections" info to example BGL.conf (fanquake) +- #15513 add "sections" info to example bitcoin.conf (fanquake) - #15530 Move wallet lock annotations to header (MarcoFalke) - #15562 remove duplicate clone step in build-windows.md (fanquake) - #15565 remove release note fragments (fanquake) @@ -873,7 +873,7 @@ Build system changes - #15611 Add Gitian key for droark (droark) - #15626 Update ACK description in CONTRIBUTING.md (jonatack) - #15603 Add more tips to productivity.md (gwillen) -- #15683 Comment for seemingly duplicate LIBBGL_SERVER (Bushstar) +- #15683 Comment for seemingly duplicate LIBBITCOIN_SERVER (Bushstar) - #15685 rpc-mining: Clarify error messages (MarcoFalke) - #15760 Clarify sendrawtransaction::maxfeerate==0 help (MarcoFalke) - #15659 fix findFork comment (r8921039) @@ -891,7 +891,7 @@ Build system changes - #15777 Add doxygen comments for keypool classes (jnewbery) - #15820 Add productivity notes for dummy rebases (dongcarl) - #15922 Explain how to pass in non-fundamental types into functions (MarcoFalke) -- #16080 build/doc: update BGL_config.h packages, release process (jonatack) +- #16080 build/doc: update bitcoin_config.h packages, release process (jonatack) - #16047 analyzepsbt description in doc/psbt.md (jonatack) - #16039 add release note for 14954 (fanquake) - #16139 Add riscv64 to outputs list in release-process.md (JeremyRand) @@ -915,7 +915,7 @@ Build system changes - #16484 update labels in CONTRIBUTING.md (MarcoFalke) - #16483 update Python command in msvc readme (sipsorcery) - #16504 Add release note for the deprecated totalFee option of bumpfee (promag) -- #16448 add note on precedence of options in BGL.conf (fanquake) +- #16448 add note on precedence of options in bitcoin.conf (fanquake) - #16536 Update and extend benchmarking.md (ariard) - #16530 Fix grammar and punctuation in developer notes (Tech1k) - #16574 Add historical release notes for 0.18.1 (laanwj) @@ -933,19 +933,19 @@ Build system changes - #16629 Add documentation for the new whitelist permissions (NicolasDorier) - #16723 Update labels in CONTRIBUTING.md (hebasto) - #16461 Tidy up shadowing section (promag) -- #16621 add default BGL.conf locations (GChuf) +- #16621 add default bitcoin.conf locations (GChuf) - #16752 Delete stale URL in test README (michaelfolkson) - #14862 Declare BLOCK_VALID_HEADER reserved (MarcoFalke) - #16806 Add issue templates for bug and feature request (MarcoFalke) - #16857 Elaborate need to re-login on Debian-based after usermod for Tor group (clashicly) -- #16863 Add a missing closing parenthesis in the BGL-wallet's help (darosior) +- #16863 Add a missing closing parenthesis in the bitcoin-wallet's help (darosior) - #16757 CChainState return values (MarcoFalke) - #16847 add comments clarifying how local services are advertised (jamesob) -- #16812 Fix whitespace errs in .md files, BGL.conf, and Info.plist.in (ch4ot1c) +- #16812 Fix whitespace errs in .md files, bitcoin.conf, and Info.plist.in (ch4ot1c) - #16885 Update tx-size-small comment with relevant CVE disclosure (instagibbs) - #16900 Fix doxygen comment for SignTransaction in rpc/rawtransaction_util (MarcoFalke) - #16914 Update homebrew instruction for doxygen (Sjors) -- #16912 Remove Doxygen intro from src/BGLd.cpp (ch4ot1c) +- #16912 Remove Doxygen intro from src/bitcoind.cpp (ch4ot1c) - #16960 replace outdated OpenSSL comment in test README (fanquake) - #16968 Remove MSVC update step from translation process (laanwj) - #16953 Improve test READMEs (fjahr) @@ -1086,4 +1086,4 @@ Thanks to everyone who directly contributed to this release: - Wladimir J. van der Laan - zenosage -As well as everyone that helped translating on [Transifex](https://www.transifex.com/BGL/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/bitcoin/bitcoin/). diff --git a/doc/release-notes/release-notes-0.20.0.md b/doc/release-notes/release-notes-0.20.0.md index 8415651d98..6fc1606b37 100644 --- a/doc/release-notes/release-notes-0.20.0.md +++ b/doc/release-notes/release-notes-0.20.0.md @@ -53,7 +53,7 @@ this release: `./configure`. This is the same as when checking out from git. - Instead of running `make` simply, you should instead run - `BGL_GENBUILD_NO_GIT=1 make`. + `BITCOIN_GENBUILD_NO_GIT=1 make`. Notable changes =============== @@ -528,7 +528,7 @@ Build system - #17756 Remove `WINDOWS_BITS` from build system (fanquake) - #17769 Set `AC_PREREQ` to 2.69 (fanquake) - #17880 Add -Wdate-time to Werror flags (fanquake) -- #17910 Remove double `LIBBGL_SERVER` linking (fanquake) +- #17910 Remove double `LIBBITCOIN_SERVER` linking (fanquake) - #17928 Consistent use of package variable (Bushstar) - #17933 guix: Pin Guix using `guix time-machine` (dongcarl) - #17948 pass -fno-ident in Windows gitian descriptor (fanquake) @@ -546,7 +546,7 @@ Build system - #18331 Use git archive as source tarball (hebasto) - #18397 Fix libevent linking for `bench_bitcoin` binary (hebasto) - #18426 scripts: `Previous_release`: improve behaviour on failed download (theStack) -- #18429 Remove double `LIBBGL_SERVER` from bench-Makefile (brakmic) +- #18429 Remove double `LIBBITCOIN_SERVER` from bench-Makefile (brakmic) - #18528 Create `test_fuzz` library from src/test/fuzz/fuzz.cpp (brakmic) - #18558 Fix boost detection for arch armv7l (hebasto) - #18598 gitian: Add missing automake package to gitian-win-signer.yml (achow101) diff --git a/doc/release-notes/release-notes-0.20.1.md b/doc/release-notes/release-notes-0.20.1.md index d07eade53d..9fbb29cb82 100644 --- a/doc/release-notes/release-notes-0.20.1.md +++ b/doc/release-notes/release-notes-0.20.1.md @@ -53,7 +53,7 @@ this release: `./configure`. This is the same as when checking out from git. - Instead of running `make` simply, you should instead run - `BGL_GENBUILD_NO_GIT=1 make`. + `BITCOIN_GENBUILD_NO_GIT=1 make`. Notable changes =============== diff --git a/doc/release-notes/release-notes-0.21.0.md b/doc/release-notes/release-notes-0.21.0.md index a3bf4a2a42..3baba3d49b 100644 --- a/doc/release-notes/release-notes-0.21.0.md +++ b/doc/release-notes/release-notes-0.21.0.md @@ -843,7 +843,7 @@ Tests - #19094 Only allow ASCII identifiers (laanwj) - #18820 Propagate well-known vars into depends (dongcarl) - #19173 turn on --enable-c++17 by --enable-fuzz (vasild) -- #18297 Use pkg-config in BGL_QT_CONFIGURE for all hosts including Windows (hebasto) +- #18297 Use pkg-config in BITCOIN_QT_CONFIGURE for all hosts including Windows (hebasto) - #19301 don't warn when doxygen isn't found (fanquake) - #19240 macOS toolchain simplification and bump (dongcarl) - #19356 Fix search for brew-installed BDB 4 on OS X (gwillen) diff --git a/doc/release-notes/release-notes-0.3.12.md b/doc/release-notes/release-notes-0.3.12.md index 9fa18a6c4e..38715bc75f 100644 --- a/doc/release-notes/release-notes-0.3.12.md +++ b/doc/release-notes/release-notes-0.3.12.md @@ -7,7 +7,7 @@ Features: * Recovers and continues if an exception is caused by a message you received. Other nodes shouldn't be able to cause an exception, and it hasn't happened before, but if a way is found to cause an exception, this would keep it from being used to stop network nodes. If you have json-rpc code that checks the contents of the error string, you need to change it to expect error objects of the form {"code":,"message":}, which is the standard. See this thread: -http://www.BGL.org/smf/index.php?topic=969.0 +http://www.bitcoin.org/smf/index.php?topic=969.0 Download: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.3.12/ +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.12/ diff --git a/doc/release-notes/release-notes-0.3.13.md b/doc/release-notes/release-notes-0.3.13.md index 3e135b6e82..2b95ff233d 100644 --- a/doc/release-notes/release-notes-0.3.13.md +++ b/doc/release-notes/release-notes-0.3.13.md @@ -12,15 +12,15 @@ Gavin Andresen: * Clean shutdown on SIGTERM on Linux. Download: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.3.13/ +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.13/ (Thanks Laszlo for the Mac OSX build!) Note: The SSE2 auto-detect in the Linux 64-bit version doesn't work with AMD in 64-bit mode. Please try this instead and let me know if it gets it right: -http://www.BGL.org/download/BGL-0.3.13.1-specialbuild-linux64.tar.gz +http://www.bitcoin.org/download/bitcoin-0.3.13.1-specialbuild-linux64.tar.gz You can still control the SSE2 use manually with -4way and -4way=0. Version 0.3.13.2 (SVN rev 161) has improvements for the case where you already had 0/unconfirmed transactions that you might have already spent. Here's a Windows build of it: -http://www.BGL.org/download/BGL-0.3.13.2-win32-setup.exe +http://www.bitcoin.org/download/bitcoin-0.3.13.2-win32-setup.exe diff --git a/doc/release-notes/release-notes-0.3.14.md b/doc/release-notes/release-notes-0.3.14.md index 66c4bf1282..e73052ed9b 100644 --- a/doc/release-notes/release-notes-0.3.14.md +++ b/doc/release-notes/release-notes-0.3.14.md @@ -1,5 +1,5 @@ Version 0.3.14 is now available -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.3.14/ +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.14/ Changes: * Key pool feature for safer wallet backup diff --git a/doc/release-notes/release-notes-0.3.15.md b/doc/release-notes/release-notes-0.3.15.md index 52c16a3e4d..b98052ef59 100644 --- a/doc/release-notes/release-notes-0.3.15.md +++ b/doc/release-notes/release-notes-0.3.15.md @@ -1,6 +1,6 @@ * paytxfee switch is now per KB, so it adds the correct fee for large transactions * sending avoids using coins with less than 6 confirmations if it can -* BGLMiner processes transactions in priority order based on age of dependencies +* BitcoinMiner processes transactions in priority order based on age of dependencies * make sure generation doesn't start before block 74000 downloaded * bugfixes by Dean Gores * testnet, keypoololdest and paytxfee added to getinfo diff --git a/doc/release-notes/release-notes-0.3.18.md b/doc/release-notes/release-notes-0.3.18.md index 91feaa8af0..ab1c2e0692 100644 --- a/doc/release-notes/release-notes-0.3.18.md +++ b/doc/release-notes/release-notes-0.3.18.md @@ -3,7 +3,7 @@ Changes: * IsStandard() check to only include known transaction types in blocks * Jgarzik's optimisation to speed up the initial block download a little -The main addition in this release is the Accounts-Based JSON-RPC commands that Gavin's been working on (more details at http://www.BGL.org/smf/index.php?topic=1886.0). +The main addition in this release is the Accounts-Based JSON-RPC commands that Gavin's been working on (more details at http://www.bitcoin.org/smf/index.php?topic=1886.0). * getaccountaddress * sendfrom * move diff --git a/doc/release-notes/release-notes-0.3.20.2.md b/doc/release-notes/release-notes-0.3.20.2.md index 9aa6049c15..09ecb736bd 100644 --- a/doc/release-notes/release-notes-0.3.20.2.md +++ b/doc/release-notes/release-notes-0.3.20.2.md @@ -3,13 +3,13 @@ worse as people upgraded, so I cherry-picked the bug fix and created a minor rel The Amazon Machine Images I used to do the builds are available: - ami-38a05251 BGL-v0.3.20.2 Mingw (Windows; Administrator password 'BGL development') - ami-30a05259 BGL_0.3.20.2 Linux32 - ami-8abc4ee3 BGL_0.3.20.2 Linux64 + ami-38a05251 Bitcoin-v0.3.20.2 Mingw (Windows; Administrator password 'bitcoin development') + ami-30a05259 Bitcoin_0.3.20.2 Linux32 + ami-8abc4ee3 Bitcoin_0.3.20.2 Linux64 (mac build will be done soon) -If you have already downloaded version 0.3.20.1, please either add this to your BGL.conf file: +If you have already downloaded version 0.3.20.1, please either add this to your bitcoin.conf file: maxsendbuffer=10000 maxreceivebuffer=10000 diff --git a/doc/release-notes/release-notes-0.3.20.md b/doc/release-notes/release-notes-0.3.20.md index 5faaeba131..651d2c8f58 100644 --- a/doc/release-notes/release-notes-0.3.20.md +++ b/doc/release-notes/release-notes-0.3.20.md @@ -1,20 +1,20 @@ Please checkout the git integration branch from: -https://github.com/BitgesellOfficial/bitgesell +https://github.com/bitcoin/bitcoin ... and help test. The new features that need testing are: -* -nolisten : https://github.com/BGL/BGL/pull/11 +* -nolisten : https://github.com/bitcoin/bitcoin/pull/11 * -rescan : scan block chain for missing wallet transactions -* -printtoconsole : https://github.com/BGL/BGL/pull/37 -* RPC gettransaction details : https://github.com/BGL/BGL/pull/24 -* listtransactions new features : https://github.com/BGL/BGL/pull/10 +* -printtoconsole : https://github.com/bitcoin/bitcoin/pull/37 +* RPC gettransaction details : https://github.com/bitcoin/bitcoin/pull/24 +* listtransactions new features : https://github.com/bitcoin/bitcoin/pull/10 Bug fixes that also need testing: -* -maxconnections= : https://github.com/BGL/BGL/pull/42 -* RPC listaccounts minconf : https://github.com/BGL/BGL/pull/27 -* RPC move, add time to output : https://github.com/BGL/BGL/pull/21 +* -maxconnections= : https://github.com/bitcoin/bitcoin/pull/42 +* RPC listaccounts minconf : https://github.com/bitcoin/bitcoin/pull/27 +* RPC move, add time to output : https://github.com/bitcoin/bitcoin/pull/21 * ...and several improvements to --help output. This needs more testing on Windows! Please drop me a quick private message, email, or IRC message if you are able to do some testing. If you find bugs, please open an issue at: diff --git a/doc/release-notes/release-notes-0.3.21.md b/doc/release-notes/release-notes-0.3.21.md index acc187c699..f3b6bc4264 100644 --- a/doc/release-notes/release-notes-0.3.21.md +++ b/doc/release-notes/release-notes-0.3.21.md @@ -1,19 +1,19 @@ -Binaries for BGL version 0.3.21 are available at: - https://sourceforge.net/projects/BGL/files/BGL/BGL-0.3.21/ +Binaries for Bitcoin version 0.3.21 are available at: + https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.21/ Changes and new features from the 0.3.20 release include: -* Universal Plug and Play support. Enable automatic opening of a port for incoming connections by running BGL or BGLd with the - -upnp=1 command line switch or using the Options dialog box. +* Universal Plug and Play support. Enable automatic opening of a port for incoming connections by running bitcoin or bitcoind with the - -upnp=1 command line switch or using the Options dialog box. -* Support for full-precision BGL amounts. You can now send, and BGL will display, BGL amounts smaller than 0.01. However, sending fewer than 0.01 BGLs still requires a 0.01 BGL fee (so you can send 1.0001 BGLs without a fee, but you will be asked to pay a fee if you try to send 0.0001). +* Support for full-precision bitcoin amounts. You can now send, and bitcoin will display, bitcoin amounts smaller than 0.01. However, sending fewer than 0.01 bitcoins still requires a 0.01 bitcoin fee (so you can send 1.0001 bitcoins without a fee, but you will be asked to pay a fee if you try to send 0.0001). -* A new method of finding BGL nodes to connect with, via DNS A records. Use the -dnsseed option to enable. +* A new method of finding bitcoin nodes to connect with, via DNS A records. Use the -dnsseed option to enable. -For developers, changes to BGL's remote-procedure-call API: +For developers, changes to bitcoin's remote-procedure-call API: -* New rpc command "sendmany" to send BGLs to more than one address in a single transaction. +* New rpc command "sendmany" to send bitcoins to more than one address in a single transaction. -* Several bug fixes, including a serious intermittent bug that would sometimes cause BGLd to stop accepting rpc requests. +* Several bug fixes, including a serious intermittent bug that would sometimes cause bitcoind to stop accepting rpc requests. * -logtimestamps option, to add a timestamp to each line in debug.log. diff --git a/doc/release-notes/release-notes-0.3.22.md b/doc/release-notes/release-notes-0.3.22.md index 03c6d5d65b..4c05e3e5e7 100644 --- a/doc/release-notes/release-notes-0.3.22.md +++ b/doc/release-notes/release-notes-0.3.22.md @@ -1,4 +1,4 @@ -Download URL: https://sourceforge.net/projects/BGL/files/BGL/BGL-0.3.22/ +Download URL: https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.22/ This is largely a bugfix and TX fee schedule release. We also hope to make 0.3.23 a quick release, to fix problems that the network has seen due to explosive growth in the past week. @@ -7,7 +7,7 @@ Notable changes: * Non-standard transactions accepted on testnet * Source code tree reorganized (prep for autotools build) * Remove "Generate Coins" option from GUI, and remove 4way SSE miner. Internal reference CPU miner remains available, but users are directed to external miners for best hash production. -* IRC is overflowing. Client now bootstraps to channels #BGL00 - #BGL99 +* IRC is overflowing. Client now bootstraps to channels #bitcoin00 - #bitcoin99 * DNS names now may be used with -addnode, -connect (requires -dns to enable) RPC changes: diff --git a/doc/release-notes/release-notes-0.3.23.md b/doc/release-notes/release-notes-0.3.23.md index 2c6e2dc298..c1d520e492 100644 --- a/doc/release-notes/release-notes-0.3.23.md +++ b/doc/release-notes/release-notes-0.3.23.md @@ -1,7 +1,7 @@ -Win32, Linux, MacOSX and source releases for BGL v0.3.23 have been uploaded to -https://sourceforge.net/projects/BGL/files/BGL/BGL-0.3.23/ +Win32, Linux, MacOSX and source releases for bitcoin v0.3.23 have been uploaded to +https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.23/ -This is another quick bugfix release, trying to deal with the influx of new BGL users. +This is another quick bugfix release, trying to deal with the influx of new bitcoin users. Main items of note: diff --git a/doc/release-notes/release-notes-0.3.24.md b/doc/release-notes/release-notes-0.3.24.md index 9e780b4323..d35ac66f2c 100644 --- a/doc/release-notes/release-notes-0.3.24.md +++ b/doc/release-notes/release-notes-0.3.24.md @@ -1,7 +1,7 @@ -BGL v0.3.24 is now available for download at -https://sourceforge.net/projects/BGL/files/BGL/BGL-0.3.24/ +Bitcoin v0.3.24 is now available for download at +https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.24/ -This is another bug fix release. We had hoped to have wallet encryption ready for release, but more urgent fixes for existing clients were needed -- most notably block download problems were getting severe. Wallet encryption is ready for testing at https://github.com/BGL/BGL/pull/352 for the git-savvy, and hopefully will follow shortly in the next release, v0.4. +This is another bug fix release. We had hoped to have wallet encryption ready for release, but more urgent fixes for existing clients were needed -- most notably block download problems were getting severe. Wallet encryption is ready for testing at https://github.com/bitcoin/bitcoin/pull/352 for the git-savvy, and hopefully will follow shortly in the next release, v0.4. Notable fixes in v0.3.24, and the main reasons for this release: @@ -13,8 +13,8 @@ Notable changes in v0.3.24: C1) DNS seeding enabled by default. -C2) UPNP enabled by default in the GUI client. The percentage of BGL clients that accept incoming connections is quite small, and that is a problem. This should help. BGLd, and unofficial builds, are unchanged (though we encourage use of "-upnp" to help the network!) +C2) UPNP enabled by default in the GUI client. The percentage of bitcoin clients that accept incoming connections is quite small, and that is a problem. This should help. bitcoind, and unofficial builds, are unchanged (though we encourage use of "-upnp" to help the network!) -C3) Initial unit testing framework. BGL sorely needs automated tests, and this is a beginning. Contributions welcome. +C3) Initial unit testing framework. Bitcoin sorely needs automated tests, and this is a beginning. Contributions welcome. C4) Internal wallet code cleanup. While invisible to an end user, this change provides the basis for v0.4's wallet encryption. diff --git a/doc/release-notes/release-notes-0.4.0.md b/doc/release-notes/release-notes-0.4.0.md index 11306acc56..145072a369 100644 --- a/doc/release-notes/release-notes-0.4.0.md +++ b/doc/release-notes/release-notes-0.4.0.md @@ -1,24 +1,24 @@ -BGL version 0.4.0 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.4.0/ +Bitcoin version 0.4.0 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.4.0/ The main feature in this release is wallet private key encryption; you can set a passphrase that must be entered before sending coins. See below for more information; if you decide to encrypt your wallet, WRITE DOWN YOUR PASSPHRASE AND PUT IT IN A SECURE LOCATION. If you -forget or lose your wallet passphrase, you lose your BGLs. -Previous versions of BGL are unable to read encrypted wallets, +forget or lose your wallet passphrase, you lose your bitcoins. +Previous versions of bitcoin are unable to read encrypted wallets, and will crash on startup if the wallet is encrypted. -Also note: BGL version 0.4 uses a newer version of Berkeley DB +Also note: bitcoin version 0.4 uses a newer version of Berkeley DB (bdb version 4.8) than previous versions (bdb 4.7). If you upgrade -to version 0.4 and then revert back to an earlier version of BGL +to version 0.4 and then revert back to an earlier version of bitcoin the it may be unable to start because bdb 4.7 cannot read bdb 4.8 "log" files. Notable bug fixes from version 0.3.24: -Fix several BGL-becomes-unresponsive bugs due to multithreading +Fix several bitcoin-becomes-unresponsive bugs due to multithreading deadlocks. Optimize database writes for large (lots of inputs) transactions @@ -27,44 +27,44 @@ Optimize database writes for large (lots of inputs) transactions Wallet Encryption -BGL supports native wallet encryption so that people who steal your -wallet file don't automatically get access to all of your BGLs. +Bitcoin supports native wallet encryption so that people who steal your +wallet file don't automatically get access to all of your Bitcoins. In order to enable this feature, choose "Encrypt Wallet" from the Options menu. You will be prompted to enter a passphrase, which will be used as the key to encrypt your wallet and will be needed -every time you wish to send BGLs. If you lose this passphrase, -you will lose access to spend all of the BGLs in your wallet, -no one, not even the BGL developers can recover your BGLs. +every time you wish to send Bitcoins. If you lose this passphrase, +you will lose access to spend all of the bitcoins in your wallet, +no one, not even the Bitcoin developers can recover your Bitcoins. This means you are responsible for your own security, store your passphrase in a secure location and do not forget it. -Remember that the encryption built into BGL only encrypts the -actual keys which are required to send your BGLs, not the full +Remember that the encryption built into bitcoin only encrypts the +actual keys which are required to send your bitcoins, not the full wallet. This means that someone who steals your wallet file will be able to see all the addresses which belong to you, as well as the relevant transactions, you are only protected from someone spending your coins. It is recommended that you backup your wallet file before you -encrypt your wallet. To do this, close the BGL client and -copy the wallet.dat file from ~/.BGL/ on Linux, /Users/(user -name)/Application Support/BGL/ on Mac OSX, and %APPDATA%/BGL/ -on Windows (that is /Users/(user name)/AppData/Roaming/BGL on +encrypt your wallet. To do this, close the Bitcoin client and +copy the wallet.dat file from ~/.bitcoin/ on Linux, /Users/(user +name)/Application Support/Bitcoin/ on Mac OSX, and %APPDATA%/Bitcoin/ +on Windows (that is /Users/(user name)/AppData/Roaming/Bitcoin on Windows Vista and 7 and /Documents and Settings/(user name)/Application -Data/BGL on Windows XP). Once you have copied that file to a -safe location, reopen the BGL client and Encrypt your wallet. +Data/Bitcoin on Windows XP). Once you have copied that file to a +safe location, reopen the Bitcoin client and Encrypt your wallet. If everything goes fine, delete the backup and enjoy your encrypted wallet. Note that once you encrypt your wallet, you will never be -able to go back to a version of the BGL client older than 0.4. +able to go back to a version of the Bitcoin client older than 0.4. Keep in mind that you are always responsible for your own security. All it takes is a slightly more advanced wallet-stealing trojan which installs a keylogger to steal your wallet passphrase as you enter it -in addition to your wallet file and you have lost all your BGLs. +in addition to your wallet file and you have lost all your Bitcoins. Wallet encryption cannot keep you safe if you do not practice good security, such as running up-to-date antivirus software, only -entering your wallet passphrase in the BGL client and using the +entering your wallet passphrase in the Bitcoin client and using the same passphrase only as your wallet passphrase. -See the doc/README file in the BGL source for technical details +See the doc/README file in the bitcoin source for technical details of wallet encryption. diff --git a/doc/release-notes/release-notes-0.4.1.md b/doc/release-notes/release-notes-0.4.1.md index 3b8d7aac57..ac471a8d7f 100644 --- a/doc/release-notes/release-notes-0.4.1.md +++ b/doc/release-notes/release-notes-0.4.1.md @@ -1,5 +1,5 @@ -BGL version 0.4.1 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.4.1/ +Bitcoin version 0.4.1 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.4.1/ This is a bugfix only release based on 0.4.0. @@ -7,32 +7,32 @@ Please report bugs by replying to this forum thread. MAJOR BUG FIX (CVE-2011-4447) -The wallet encryption feature introduced in BGL version 0.4.0 did not sufficiently secure the private keys. An attacker who +The wallet encryption feature introduced in Bitcoin version 0.4.0 did not sufficiently secure the private keys. An attacker who managed to get a copy of your encrypted wallet.dat file might be able to recover some or all of the unencrypted keys and steal the associated coins. -If you have a previously encrypted wallet.dat, the first time you run wxBGL or BGLd the wallet will be rewritten, BGL will +If you have a previously encrypted wallet.dat, the first time you run wxbitcoin or bitcoind the wallet will be rewritten, Bitcoin will shut down, and you will be prompted to restart it to run with the new, properly encrypted file. If you had a previously encrypted wallet.dat that might have been copied or stolen (for example, you backed it up to a public -location) you should send all of your BGLs to yourself using a new BGL address and stop using any previously generated addresses. +location) you should send all of your bitcoins to yourself using a new bitcoin address and stop using any previously generated addresses. -Wallets encrypted with this version of BGL are written properly. +Wallets encrypted with this version of Bitcoin are written properly. -Technical note: the encrypted wallet's 'keypool' will be regenerated the first time you request a new BGL address; to be certain that the +Technical note: the encrypted wallet's 'keypool' will be regenerated the first time you request a new bitcoin address; to be certain that the new private keys are properly backed up you should: -1. Run BGL and let it rewrite the wallet.dat file +1. Run Bitcoin and let it rewrite the wallet.dat file -2. Run it again, then ask it for a new BGL address. -wxBGL: new address visible on main window -BGLd: run the 'walletpassphrase' RPC command to unlock the wallet, then run the 'getnewaddress' RPC command. +2. Run it again, then ask it for a new bitcoin address. +wxBitcoin: new address visible on main window +bitcoind: run the 'walletpassphrase' RPC command to unlock the wallet, then run the 'getnewaddress' RPC command. -3. If your encrypted wallet.dat may have been copied or stolen, send all of your BGLs to the new BGL address. +3. If your encrypted wallet.dat may have been copied or stolen, send all of your bitcoins to the new bitcoin address. -4. Shut down BGL, then backup the wallet.dat file. -IMPORTANT: be sure to request a new BGL address before backing up, so that the 'keypool' is regenerated and backed up. +4. Shut down Bitcoin, then backup the wallet.dat file. +IMPORTANT: be sure to request a new bitcoin address before backing up, so that the 'keypool' is regenerated and backed up. -"Security in depth" is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your BGLs. +"Security in depth" is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your bitcoins. Thanks to Alan Reiner (etotheipi) for finding and reporting this bug. diff --git a/doc/release-notes/release-notes-0.4.3.md b/doc/release-notes/release-notes-0.4.3.md index 81005a2d5d..79b74404de 100644 --- a/doc/release-notes/release-notes-0.4.3.md +++ b/doc/release-notes/release-notes-0.4.3.md @@ -1,21 +1,21 @@ -BGLd version 0.4.3 is now available for download at: -http://luke.dashjr.org/programs/BGL/files/BGLd-0.4.3/ (until Gavin uploads to SourceForge) +bitcoind version 0.4.3 is now available for download at: +http://luke.dashjr.org/programs/bitcoin/files/bitcoind-0.4.3/ (until Gavin uploads to SourceForge) This is a bugfix-only release based on 0.4.0. -Please note that the wxBGL GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. +Please note that the wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. Please report bugs for the daemon only using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: -http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.4.3#.tar.gz +http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.4.3#.tar.gz BUG FIXES Cease locking memory used by non-sensitive information (this caused a huge performance hit on some platforms, especially noticable during initial blockchain download). Fixed some address-handling deadlocks (client freezes). -No longer accept inbound connections over the internet when BGL is being used with Tor (identity leak). +No longer accept inbound connections over the internet when Bitcoin is being used with Tor (identity leak). Use the correct base transaction fee of 0.0005 BTC for accepting transactions into mined blocks (since 0.4.0, it was incorrectly accepting 0.0001 BTC which was only meant to be relayed). Add new DNS seeds (maintained by Pieter Wuille and Luke Dashjr). diff --git a/doc/release-notes/release-notes-0.4.4.md b/doc/release-notes/release-notes-0.4.4.md index ec4d184e20..a0c839cbd8 100644 --- a/doc/release-notes/release-notes-0.4.4.md +++ b/doc/release-notes/release-notes-0.4.4.md @@ -1,15 +1,15 @@ -BGL version 0.4.4 is now available for download at: -http://luke.dashjr.org/programs/BGL/files/BGLd-0.4.4/ +Bitcoin version 0.4.4 is now available for download at: +http://luke.dashjr.org/programs/bitcoin/files/bitcoind-0.4.4/ This is a bugfix-only release based on 0.4.0. -Please note that the wxBGL GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. +Please note that the wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. Please report bugs for the daemon only using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: -http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.4.4#.tar.gz +http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.4.4#.tar.gz BUG FIXES @@ -24,7 +24,7 @@ Several shutdown issues have been fixed. Check that keys stored in the wallet are valid at startup, and if not, report corruption. Various build fixes. -If no password is specified to BGLd, recommend a secure password. +If no password is specified to bitcoind, recommend a secure password. Update hard-coded fallback seed nodes, choosing recent ones with long uptime and versions at least 0.4.0. Add checkpoint at block 168,000. diff --git a/doc/release-notes/release-notes-0.4.6.md b/doc/release-notes/release-notes-0.4.6.md index 18e89b88ae..07c5e4b694 100644 --- a/doc/release-notes/release-notes-0.4.6.md +++ b/doc/release-notes/release-notes-0.4.6.md @@ -1,11 +1,11 @@ -BGLd version 0.4.6 is now available for download at: +bitcoind version 0.4.6 is now available for download at: Windows: installer | zip (sig) Source: tar.gz -BGLd and BGL-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1. +bitcoind and Bitcoin-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1. These are bugfix-only releases. -Please report bugs by replying to this forum thread. Note that the 0.4.x wxBGL GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. +Please report bugs by replying to this forum thread. Note that the 0.4.x wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. BUG FIXES @@ -13,25 +13,25 @@ Version 0.6.0 allowed importing invalid "private keys", which would be unspendab Verify status of encrypt/decrypt calls to detect failed padding Check blocks for duplicate transactions earlier. Fixes #1167 Upgrade Windows builds to OpenSSL 1.0.1b -Set label when selecting an address that already has a label. Fixes #1080 (BGL-Qt) +Set label when selecting an address that already has a label. Fixes #1080 (Bitcoin-Qt) JSON-RPC listtransactions's from/count handling is now fixed Optimize and fix multithreaded access, when checking whether we already know about transactions Fix potential networking deadlock Proper support for Growl 1.3 notifications Display an error, rather than crashing, if encoding a QR Code failed (0.6.0.7) -Don't erroneously set "Display addresses" for users who haven't explicitly enabled it (BGL-Qt) +Don't erroneously set "Display addresses" for users who haven't explicitly enabled it (Bitcoin-Qt) Some non-ASCII input in JSON-RPC expecting hexadecimal may have been misinterpreted rather than rejected Missing error condition checking added -Do not show green tick unless all known blocks are downloaded. Fixes #921 (BGL-Qt) +Do not show green tick unless all known blocks are downloaded. Fixes #921 (Bitcoin-Qt) Increase time ago of last block for "up to date" status from 30 to 90 minutes -Show a message box when runaway exception happens (BGL-Qt) +Show a message box when runaway exception happens (Bitcoin-Qt) Use a messagebox to display the error when -server is provided without providing a rpc password -Show error message instead of exception crash when unable to bind RPC port (BGL-Qt) -Correct sign message BGL address tooltip. Fixes #1050 (BGL-Qt) +Show error message instead of exception crash when unable to bind RPC port (Bitcoin-Qt) +Correct sign message bitcoin address tooltip. Fixes #1050 (Bitcoin-Qt) Removed "(no label)" from QR Code dialog titlebar if we have no label (0.6.0.7) Removed an ugly line break in tooltip for mature transactions (0.6.0.7) -Add missing tooltip and key shortcut in settings dialog (part of #1088) (BGL-Qt) +Add missing tooltip and key shortcut in settings dialog (part of #1088) (Bitcoin-Qt) Work around issue in boost::program_options that prevents from compiling in clang Fixed bugs occurring only on platforms with unsigned characters (such as ARM). -Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (BGL-Qt) +Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (Bitcoin-Qt) Various trivial internal corrections to types used for counting/size loops and warnings diff --git a/doc/release-notes/release-notes-0.5.0.md b/doc/release-notes/release-notes-0.5.0.md index 2c42f08f70..8cba35bb7c 100644 --- a/doc/release-notes/release-notes-0.5.0.md +++ b/doc/release-notes/release-notes-0.5.0.md @@ -1,45 +1,45 @@ -BGL version 0.5.0 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.5.0/ +Bitcoin version 0.5.0 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.0/ The major change for this release is a completely new graphical interface that uses the Qt user interface toolkit. This release include German, Spanish, Spanish-Castilian, Norwegian and Dutch translations. More translations are welcome; join the project at Transifex if you can help: -https://www.transifex.net/projects/p/BGL/ +https://www.transifex.net/projects/p/bitcoin/ Please report bugs using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues -For Ubuntu users, there is a new ppa maintained by Matt Corallo which you can add to your system so that it will automatically keep BGL up-to-date. Just type "sudo apt-add-repository ppa:BGL/BGL" in your terminal, then install the BGL-qt package. +For Ubuntu users, there is a new ppa maintained by Matt Corallo which you can add to your system so that it will automatically keep bitcoin up-to-date. Just type "sudo apt-add-repository ppa:bitcoin/bitcoin" in your terminal, then install the bitcoin-qt package. MAJOR BUG FIX (CVE-2011-4447) -The wallet encryption feature introduced in BGL version 0.4.0 did not sufficiently secure the private keys. An attacker who +The wallet encryption feature introduced in Bitcoin version 0.4.0 did not sufficiently secure the private keys. An attacker who managed to get a copy of your encrypted wallet.dat file might be able to recover some or all of the unencrypted keys and steal the associated coins. -If you have a previously encrypted wallet.dat, the first time you run BGL-qt or BGLd the wallet will be rewritten, BGL will +If you have a previously encrypted wallet.dat, the first time you run bitcoin-qt or bitcoind the wallet will be rewritten, Bitcoin will shut down, and you will be prompted to restart it to run with the new, properly encrypted file. If you had a previously encrypted wallet.dat that might have been copied or stolen (for example, you backed it up to a public -location) you should send all of your BGLs to yourself using a new BGL address and stop using any previously generated addresses. +location) you should send all of your bitcoins to yourself using a new bitcoin address and stop using any previously generated addresses. -Wallets encrypted with this version of BGL are written properly. +Wallets encrypted with this version of Bitcoin are written properly. -Technical note: the encrypted wallet's 'keypool' will be regenerated the first time you request a new BGL address; to be certain that the +Technical note: the encrypted wallet's 'keypool' will be regenerated the first time you request a new bitcoin address; to be certain that the new private keys are properly backed up you should: -1. Run BGL and let it rewrite the wallet.dat file +1. Run Bitcoin and let it rewrite the wallet.dat file -2. Run it again, then ask it for a new BGL address. -BGL-Qt: Address Book, then New Address... -BGLd: run the 'walletpassphrase' RPC command to unlock the wallet, then run the 'getnewaddress' RPC command. +2. Run it again, then ask it for a new bitcoin address. +Bitcoin-Qt: Address Book, then New Address... +bitcoind: run the 'walletpassphrase' RPC command to unlock the wallet, then run the 'getnewaddress' RPC command. -3. If your encrypted wallet.dat may have been copied or stolen, send all of your BGLs to the new BGL address. +3. If your encrypted wallet.dat may have been copied or stolen, send all of your bitcoins to the new bitcoin address. -4. Shut down BGL, then backup the wallet.dat file. -IMPORTANT: be sure to request a new BGL address before backing up, so that the 'keypool' is regenerated and backed up. +4. Shut down Bitcoin, then backup the wallet.dat file. +IMPORTANT: be sure to request a new bitcoin address before backing up, so that the 'keypool' is regenerated and backed up. -"Security in depth" is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your BGLs. +"Security in depth" is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your bitcoins. Thanks to Alan Reiner (etotheipi) for finding and reporting this bug. @@ -51,7 +51,7 @@ MAJOR GUI CHANGES Icons at the bottom of the window that show how well connected you are to the network, with tooltips to display details. -Drag and drop support for BGL: URIs on web pages. +Drag and drop support for bitcoin: URIs on web pages. Export transactions as a .csv file. @@ -63,7 +63,7 @@ getmemorypool : new RPC command, provides everything needed to construct a block listsinceblock : new RPC command, list transactions since given block -signmessage/verifymessage : new RPC commands to sign a message with one of your private keys or verify that a message signed by the private key associated with a BGL address. +signmessage/verifymessage : new RPC commands to sign a message with one of your private keys or verify that a message signed by the private key associated with a bitcoin address. GENERAL CHANGES diff --git a/doc/release-notes/release-notes-0.5.1.md b/doc/release-notes/release-notes-0.5.1.md index ac996c226d..e8914becfb 100644 --- a/doc/release-notes/release-notes-0.5.1.md +++ b/doc/release-notes/release-notes-0.5.1.md @@ -1,12 +1,12 @@ -BGL version 0.5.1 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.5.1/ +Bitcoin version 0.5.1 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.1/ This is a bugfix-only release. This release includes 13 translations, including 5 new translations: Italian, Hungarian, Ukranian, Portuguese (Brazilian) and Simplified Chinese. More translations are welcome; join the project at Transifex if you can help: -https://www.transifex.net/projects/p/BGL/ +https://www.transifex.net/projects/p/bitcoin/ Please report bugs using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues @@ -14,14 +14,14 @@ https://github.com/BitgesellOfficial/bitgesell/issues Project source code is hosted at github; we are no longer distributing .tar.gz files here, you can get them directly from github: -https://github.com/BGL/BGL/tarball/v0.5.1 # .tar.gz -https://github.com/BGL/BGL/zipball/v0.5.1 # .zip +https://github.com/bitcoin/bitcoin/tarball/v0.5.1 # .tar.gz +https://github.com/bitcoin/bitcoin/zipball/v0.5.1 # .zip For Ubuntu users, there is a new ppa maintained by Matt Corallo which you can add to your system so that it will automatically keep -BGL up-to-date. Just type -sudo apt-add-repository ppa:BGL/BGL -in your terminal, then install the BGL-qt package. +bitcoin up-to-date. Just type +sudo apt-add-repository ppa:bitcoin/bitcoin +in your terminal, then install the bitcoin-qt package. BUG FIXES @@ -29,15 +29,15 @@ BUG FIXES Re-enable SSL support for the JSON-RPC interface (it was unintentionally disabled for the 0.5.0 release binaries). -The code that finds peers via "dns seeds" no longer stops BGL startup +The code that finds peers via "dns seeds" no longer stops bitcoin startup if one of the dns seed machines is down. Tooltips on the transaction list view were rendering incorrectly (as black boxes or with a transparent background). -Prevent a denial-of-service attack involving flooding a BGL node with +Prevent a denial-of-service attack involving flooding a bitcoin node with orphan blocks. The wallet passphrase dialog now warns you if the caps lock key was pressed. -Improved searching in addresses and labels in BGL-qt. +Improved searching in addresses and labels in bitcoin-qt. diff --git a/doc/release-notes/release-notes-0.5.2.md b/doc/release-notes/release-notes-0.5.2.md index eed88b00d8..1c2e0f58b5 100644 --- a/doc/release-notes/release-notes-0.5.2.md +++ b/doc/release-notes/release-notes-0.5.2.md @@ -1,5 +1,5 @@ -BGL version 0.5.2 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.5.2/ +Bitcoin version 0.5.2 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.2/ This is a bugfix-only release based on 0.5.1. @@ -7,7 +7,7 @@ Please report bugs using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: -http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.5.2#.tar.gz +http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.2#.tar.gz BUG FIXES @@ -15,7 +15,7 @@ Check all transactions in blocks after the last checkpoint (0.5.0 and 0.5.1 skip Cease locking memory used by non-sensitive information (this caused a huge performance hit on some platforms, especially noticable during initial blockchain download; this was not a security vulnerability). Fixed some address-handling deadlocks (client freezes). -No longer accept inbound connections over the internet when BGL is being used with Tor (identity leak). +No longer accept inbound connections over the internet when Bitcoin is being used with Tor (identity leak). Re-enable SSL support for the JSON-RPC interface (it was unintentionally disabled for the 0.5.0 and 0.5.1 release Linux binaries). Use the correct base transaction fee of 0.0005 BTC for accepting transactions into mined blocks (since 0.4.0, it was incorrectly accepting 0.0001 BTC which was only meant to be relayed). Don't show "IP" for transactions which are not necessarily IP transactions. diff --git a/doc/release-notes/release-notes-0.5.3.md b/doc/release-notes/release-notes-0.5.3.md index 2d693b49aa..38b0b051d0 100644 --- a/doc/release-notes/release-notes-0.5.3.md +++ b/doc/release-notes/release-notes-0.5.3.md @@ -1,5 +1,5 @@ -BGL version 0.5.3 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.5.3/ +Bitcoin version 0.5.3 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.3/ This is a bugfix-only release based on 0.5.1. It also includes a few protocol updates. @@ -8,12 +8,12 @@ Please report bugs using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: -http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.5.3#.tar.gz +http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.3#.tar.gz PROTOCOL UPDATES BIP 30: Introduce a new network rule: "a block is not valid if it contains a transaction whose hash already exists in the block chain, unless all that transaction's outputs were already spent before said block" beginning on March 15, 2012, 00:00 UTC. -On testnet, allow mining of min-difficulty blocks if 20 minutes have gone by without mining a regular-difficulty block. This is to make testing BGL easier, and will not affect normal mode. +On testnet, allow mining of min-difficulty blocks if 20 minutes have gone by without mining a regular-difficulty block. This is to make testing Bitcoin easier, and will not affect normal mode. BUG FIXES @@ -24,19 +24,19 @@ Resolved multiple bugs preventing long-term unlocking of encrypted wallets Only send local IP in "version" messages if it is globally routable (ie, not private), and try to get such an IP from UPnP if applicable. Reannounce UPnP port forwards every 20 minutes, to workaround routers expiring old entries, and allow the -upnp option to override any stored setting. Skip splash screen when -min is used, and fix Minimize to Tray function. -Do not blank "label" in BGL-Qt "Send" tab, if the user has already entered something. +Do not blank "label" in Bitcoin-Qt "Send" tab, if the user has already entered something. Correct various labels and messages. Various memory leaks and potential null pointer deferences have been fixed. -Handle invalid BGL URIs using "BGL://" instead of "BGL:". +Handle invalid Bitcoin URIs using "bitcoin://" instead of "bitcoin:". Several shutdown issues have been fixed. Revert to "global progress indication", as starting from zero every time was considered too confusing for many users. Check that keys stored in the wallet are valid at startup, and if not, report corruption. Enable accessible widgets on Windows, so that people with screen readers such as NVDA can make sense of it. Various build fixes. -If no password is specified to BGLd, recommend a secure password. -Automatically focus and scroll to new "Send coins" entries in BGL-Qt. -Show a message box for --help on Windows, for BGL-Qt. +If no password is specified to bitcoind, recommend a secure password. +Automatically focus and scroll to new "Send coins" entries in Bitcoin-Qt. +Show a message box for --help on Windows, for Bitcoin-Qt. Add missing "About Qt" menu option to show built-in Qt About dialog. -Don't show "-daemon" as an option for BGL-Qt, since it isn't available. +Don't show "-daemon" as an option for Bitcoin-Qt, since it isn't available. Update hard-coded fallback seed nodes, choosing recent ones with long uptime and versions at least 0.4.0. Add checkpoint at block 168,000. diff --git a/doc/release-notes/release-notes-0.5.4.md b/doc/release-notes/release-notes-0.5.4.md index 0c73f6ec05..ce2160fbb9 100644 --- a/doc/release-notes/release-notes-0.5.4.md +++ b/doc/release-notes/release-notes-0.5.4.md @@ -1,5 +1,5 @@ -BGL version 0.5.4 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.5.4/ +Bitcoin version 0.5.4 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.4/ NOTE: 0.5.4rc3 is being renamed to 0.5.4 final with no changes. This is a bugfix-only release in the 0.5.x series, plus a few protocol updates. @@ -8,7 +8,7 @@ Please report bugs using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues Stable source code is hosted at Gitorious: -http://gitorious.org/BGL/BGLd-stable/archive-tarball/v0.5.4#.tar.gz +http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.4#.tar.gz PROTOCOL UPDATES @@ -22,8 +22,8 @@ Fix broken testnet mining. Stop excess inventory relay during initial block download. When disconnecting a node, clear the received buffer so that we do not process any already received messages. Yet another attempt at implementing "minimize to tray" that works on all operating systems. -Fix BGL-Qt notifications under Growl 1.3. -Increase required age of BGL-Qt's "not up to date" status from 30 to 90 minutes. +Fix Bitcoin-Qt notifications under Growl 1.3. +Increase required age of Bitcoin-Qt's "not up to date" status from 30 to 90 minutes. Implemented missing verifications that led to crash on entering some wrong passphrases for encrypted wallets. Fix default filename suffixes in GNOME save dialog. Make the "Send coins" tab use the configured unit type, even on the first attempt. @@ -31,7 +31,7 @@ Print detailed wallet loading errors to debug.log when it is corrupt. Allocate exactly the amount of space needed for signing transactions, instead of a fixed 10k buffer. Workaround for improbable memory access violation. Check wallet's minimum version before trying to load it. -Remove wxBGL properly when installing BGL-Qt over it. (Windows) +Remove wxBitcoin properly when installing Bitcoin-Qt over it. (Windows) Detail reorganization information better in debug log. Use a messagebox to display the error when -server is provided without configuring a RPC password. Testing suite build now honours provided CXXFLAGS. diff --git a/doc/release-notes/release-notes-0.5.5.md b/doc/release-notes/release-notes-0.5.5.md index 2c12ac11ce..75ebc3e6b6 100644 --- a/doc/release-notes/release-notes-0.5.5.md +++ b/doc/release-notes/release-notes-0.5.5.md @@ -1,11 +1,11 @@ -BGLd and BGL-Qt version 0.5.5 are now available for download at: +bitcoind and Bitcoin-Qt version 0.5.5 are now available for download at: Windows: installer | zip (sig) Source: tar.gz -BGLd and BGL-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1. +bitcoind and Bitcoin-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1. These are bugfix-only releases. -Please report bugs by replying to this forum thread. Note that the 0.4.x wxBGL GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. +Please report bugs by replying to this forum thread. Note that the 0.4.x wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. BUG FIXES @@ -13,25 +13,25 @@ Version 0.6.0 allowed importing invalid "private keys", which would be unspendab Verify status of encrypt/decrypt calls to detect failed padding Check blocks for duplicate transactions earlier. Fixes #1167 Upgrade Windows builds to OpenSSL 1.0.1b -Set label when selecting an address that already has a label. Fixes #1080 (BGL-Qt) +Set label when selecting an address that already has a label. Fixes #1080 (Bitcoin-Qt) JSON-RPC listtransactions's from/count handling is now fixed Optimize and fix multithreaded access, when checking whether we already know about transactions Fix potential networking deadlock Proper support for Growl 1.3 notifications Display an error, rather than crashing, if encoding a QR Code failed (0.6.0.7) -Don't erroneously set "Display addresses" for users who haven't explicitly enabled it (BGL-Qt) +Don't erroneously set "Display addresses" for users who haven't explicitly enabled it (Bitcoin-Qt) Some non-ASCII input in JSON-RPC expecting hexadecimal may have been misinterpreted rather than rejected Missing error condition checking added -Do not show green tick unless all known blocks are downloaded. Fixes #921 (BGL-Qt) +Do not show green tick unless all known blocks are downloaded. Fixes #921 (Bitcoin-Qt) Increase time ago of last block for "up to date" status from 30 to 90 minutes -Show a message box when runaway exception happens (BGL-Qt) +Show a message box when runaway exception happens (Bitcoin-Qt) Use a messagebox to display the error when -server is provided without providing a rpc password -Show error message instead of exception crash when unable to bind RPC port (BGL-Qt) -Correct sign message BGL address tooltip. Fixes #1050 (BGL-Qt) +Show error message instead of exception crash when unable to bind RPC port (Bitcoin-Qt) +Correct sign message bitcoin address tooltip. Fixes #1050 (Bitcoin-Qt) Removed "(no label)" from QR Code dialog titlebar if we have no label (0.6.0.7) Removed an ugly line break in tooltip for mature transactions (0.6.0.7) -Add missing tooltip and key shortcut in settings dialog (part of #1088) (BGL-Qt) +Add missing tooltip and key shortcut in settings dialog (part of #1088) (Bitcoin-Qt) Work around issue in boost::program_options that prevents from compiling in clang Fixed bugs occurring only on platforms with unsigned characters (such as ARM). -Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (BGL-Qt) +Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (Bitcoin-Qt) Various trivial internal corrections to types used for counting/size loops and warnings diff --git a/doc/release-notes/release-notes-0.6.0.md b/doc/release-notes/release-notes-0.6.0.md index 21431ddad1..549404325e 100644 --- a/doc/release-notes/release-notes-0.6.0.md +++ b/doc/release-notes/release-notes-0.6.0.md @@ -1,10 +1,10 @@ -BGL version 0.6.0 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.6.0/test/ +Bitcoin version 0.6.0 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.0/test/ This release includes more than 20 language localizations. More translations are welcome; join the project at Transifex to help: -https://www.transifex.net/projects/p/BGL/ +https://www.transifex.net/projects/p/bitcoin/ Please report bugs using the issue tracker at github: https://github.com/BitgesellOfficial/bitgesell/issues @@ -12,14 +12,14 @@ https://github.com/BitgesellOfficial/bitgesell/issues Project source code is hosted at github; we are no longer distributing .tar.gz files here, you can get them directly from github: -https://github.com/BGL/BGL/tarball/v0.6.0 # .tar.gz -https://github.com/BGL/BGL/zipball/v0.6.0 # .zip +https://github.com/bitcoin/bitcoin/tarball/v0.6.0 # .tar.gz +https://github.com/bitcoin/bitcoin/zipball/v0.6.0 # .zip For Ubuntu users, there is a ppa maintained by Matt Corallo which you can add to your system so that it will automatically keep -BGL up-to-date. Just type -sudo apt-add-repository ppa:BGL/BGL -in your terminal, then install the BGL-qt package. +bitcoin up-to-date. Just type +sudo apt-add-repository ppa:bitcoin/bitcoin +in your terminal, then install the bitcoin-qt package. KNOWN ISSUES @@ -30,7 +30,7 @@ because database writes are queued to speed up download time. -NEW FEATURES SINCE BGL VERSION 0.5 +NEW FEATURES SINCE BITCOIN VERSION 0.5 Initial network synchronization should be much faster (one or two hours on a typical machine instead of ten or more @@ -38,30 +38,30 @@ hours). Backup Wallet menu option. -BGL-Qt can display and save QR codes for sending +Bitcoin-Qt can display and save QR codes for sending and receiving addresses. New context menu on addresses to copy/edit/delete them. New Sign Message dialog that allows you to prove that you -own a BGL address by creating a digital +own a bitcoin address by creating a digital signature. New wallets created with this version will use 33-byte 'compressed' public keys instead of 65-byte public keys, resulting in smaller -transactions and less traffic on the BGL +transactions and less traffic on the bitcoin network. The shorter keys are already supported by the network but wallet.dat files containing short keys are not compatible with earlier -versions of BGL-Qt/BGLd. +versions of Bitcoin-Qt/bitcoind. New command-line argument -blocknotify= that will spawn a shell process to run when a new block is accepted. New command-line argument -splash=0 to disable -BGL-Qt's initial splash screen +Bitcoin-Qt's initial splash screen validateaddress JSON-RPC api command output includes two new fields for addresses in the wallet: @@ -104,11 +104,11 @@ attacks were fixed. NOT YET IMPLEMENTED FEATURES -Support for clicking on BGL: URIs and -opening/launching BGL-Qt is available only on Linux, +Support for clicking on bitcoin: URIs and +opening/launching Bitcoin-Qt is available only on Linux, and only if you configure your desktop to launch -BGL-Qt. All platforms support dragging and dropping -BGL: URIs onto the BGL-Qt window to start +Bitcoin-Qt. All platforms support dragging and dropping +bitcoin: URIs onto the Bitcoin-Qt window to start payment. @@ -117,7 +117,7 @@ PRELIMINARY SUPPORT FOR MULTISIGNATURE TRANSACTIONS This release has preliminary support for multisignature transactions-- transactions that require authorization from more than one person or device before they -will be accepted by the BGL network. +will be accepted by the bitcoin network. Prior to this release, multisignature transactions were considered 'non-standard' and were ignored; @@ -125,13 +125,13 @@ with this release multisignature transactions are considered standard and will start to be relayed and accepted into blocks. -It is expected that future releases of BGL-Qt +It is expected that future releases of Bitcoin-Qt will support the creation of multisignature transactions, once enough of the network has upgraded so relaying and validating them is robust. For this release, creation and testing of multisignature -transactions is limited to the BGL test network using +transactions is limited to the bitcoin test network using the "addmultisigaddress" JSON-RPC api call. Short multisignature address support is included in this diff --git a/doc/release-notes/release-notes-0.6.2.md b/doc/release-notes/release-notes-0.6.2.md index cf87d63761..442be3add3 100644 --- a/doc/release-notes/release-notes-0.6.2.md +++ b/doc/release-notes/release-notes-0.6.2.md @@ -1,5 +1,5 @@ -BGL version 0.6.2 is now available for download at: -http://sourceforge.net/projects/BGL/files/BGL/BGL-0.6.2/ +Bitcoin version 0.6.2 is now available for download at: +http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.2/ This is a bug-fix and code-cleanup release, with no major new features. @@ -14,7 +14,7 @@ portable to different data directories by default. If you need a portable blkindex.dat file then run with the new -detachdb=1 option or the "Detach databases at shutdown" GUI preference. -Fixed https://github.com/BGL/BGL/issues/1065, a bug that +Fixed https://github.com/bitcoin/bitcoin/issues/1065, a bug that could cause long-running nodes to crash. Mac and Windows binaries are compiled against OpenSSL 1.0.1b (Linux diff --git a/doc/release-notes/release-notes-0.6.3.md b/doc/release-notes/release-notes-0.6.3.md index 30f441fc99..2e33acd107 100644 --- a/doc/release-notes/release-notes-0.6.3.md +++ b/doc/release-notes/release-notes-0.6.3.md @@ -1,5 +1,5 @@ -BGL version 0.6.3 is now available for download at: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.6.3/ +Bitcoin version 0.6.3 is now available for download at: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.3/ This is a bug-fix release, with no new features. @@ -9,21 +9,21 @@ Please report bugs using the issue tracker at github: CHANGE SUMMARY Fixed a serious denial-of-service attack that could cause the -BGL process to become unresponsive. Thanks to Sergio Lerner +bitcoin process to become unresponsive. Thanks to Sergio Lerner for finding and responsibly reporting the problem. (CVE-2012-3789) Optimized the process of checking transaction signatures, to speed up processing of new block messages and make propagating blocks across the network faster. -Fixed an obscure bug that could cause the BGL process to get +Fixed an obscure bug that could cause the bitcoin process to get stuck on an invalid block-chain, if the invalid chain was hundreds of blocks long. -BGL-Qt no longer automatically selects the first address +Bitcoin-Qt no longer automatically selects the first address in the address book (Issue #1384). -Fixed minimize-to-dock behavior of BGL-Qt on the Mac. +Fixed minimize-to-dock behavior of Bitcoin-Qt on the Mac. Added a block checkpoint at block 185,333 to speed up initial blockchain download. diff --git a/doc/release-notes/release-notes-0.7.0.md b/doc/release-notes/release-notes-0.7.0.md index c34e3f16f4..81d0597833 100644 --- a/doc/release-notes/release-notes-0.7.0.md +++ b/doc/release-notes/release-notes-0.7.0.md @@ -1,7 +1,7 @@ -BGL version 0.7.0 is now available for download at: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.7.0/ +Bitcoin version 0.7.0 is now available for download at: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.7.0/ -We recommend that everybody running prior versions of BGLd/BGL-Qt +We recommend that everybody running prior versions of bitcoind/Bitcoin-Qt upgrade to this release, except for users running Mac OSX 10.5. Please report bugs using the issue tracker at github: @@ -9,16 +9,16 @@ Please report bugs using the issue tracker at github: Project source code is hosted at github; you can get source-only tarballs/zipballs directly from there: - https://github.com/BGL/BGL/tarball/v0.7.0 # .tar.gz - https://github.com/BGL/BGL/zipball/v0.7.0 # .zip + https://github.com/bitcoin/bitcoin/tarball/v0.7.0 # .tar.gz + https://github.com/bitcoin/bitcoin/zipball/v0.7.0 # .zip Ubuntu Linux users can use the "Personal Package Archive" (PPA) maintained by Matt Corallo to automatically keep -BGL up-to-date. Just type - sudo apt-add-repository ppa:BGL/BGL +bitcoin up-to-date. Just type + sudo apt-add-repository ppa:bitcoin/bitcoin sudo apt-get update -in your terminal, then install the BGL-qt package: - sudo apt-get install BGL-qt +in your terminal, then install the bitcoin-qt package: + sudo apt-get install bitcoin-qt How to Upgrade @@ -27,10 +27,10 @@ If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over Code: -/Applications/BGL-Qt +/Applications/Bitcoin-Qt (on Mac) or Code: -BGLd/BGL-qt +bitcoind/bitcoin-qt (on Linux). If you were running on Linux with a version that might have been compiled @@ -45,14 +45,14 @@ Incompatible Changes and 'getrawmempool' commands. * Remove deprecated RPC 'getblocknumber' -BGL Improvement Proposals implemented +Bitcoin Improvement Proposals implemented BIP 22 - 'getblocktemplate', 'submitblock' RPCs BIP 34 - block version 2, height in coinbase BIP 35 - 'mempool' message, extended 'getdata' message behavior -Core BGL handling and blockchain database +Core bitcoin handling and blockchain database * Reduced CPU usage, by eliminating some redundant hash calculations * Cache signature verifications, to eliminate redundant signature checks @@ -109,7 +109,7 @@ Qt GUI * Add 2 labels to the overviewpage that display Wallet and Transaction status (obsolete or current) * Extend the optionsdialog (e.g. language selection) and re-work it to a tabbed UI * Merge sign/verify message into a single window with tabbed UI -* Ensure a changed BGL unit immediately updates all GUI elements that use units +* Ensure a changed bitcoin unit immediately updates all GUI elements that use units * Update QR Code dialog * Improve error reporting at startup * Fine-grained UI updates for a much smoother UI during block downloads @@ -119,8 +119,8 @@ Qt GUI * Much better translations * Override progress bar design on platforms with segmented progress bars to assist with readability * Added 'immature balance' display on the overview page -* (Windows only): enable ASLR and DEP for BGL-qt.exe -* (Windows only): add meta-data to BGL-qt.exe (e.g. description) +* (Windows only): enable ASLR and DEP for bitcoin-qt.exe +* (Windows only): add meta-data to bitcoin-qt.exe (e.g. description) Internal codebase @@ -131,7 +131,7 @@ Internal codebase Miscellaneous * Reopen debug.log upon SIGHUP -* Bash programmable completion for BGLd(1) +* Bash programmable completion for bitcoind(1) * On supported OS's, each thread is given a useful name diff --git a/doc/release-notes/release-notes-0.7.1.md b/doc/release-notes/release-notes-0.7.1.md index b17784700a..98ec79637b 100644 --- a/doc/release-notes/release-notes-0.7.1.md +++ b/doc/release-notes/release-notes-0.7.1.md @@ -1,5 +1,5 @@ -BGL version 0.7.1 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.7.1/ +Bitcoin version 0.7.1 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.7.1/ This is a bug-fix minor release. @@ -8,16 +8,16 @@ Please report bugs using the issue tracker at github: Project source code is hosted at github; you can get source-only tarballs/zipballs directly from there: - https://github.com/BGL/BGL/tarball/v0.7.1 # .tar.gz - https://github.com/BGL/BGL/zipball/v0.7.1 # .zip + https://github.com/bitcoin/bitcoin/tarball/v0.7.1 # .tar.gz + https://github.com/bitcoin/bitcoin/zipball/v0.7.1 # .zip Ubuntu Linux users can use the "Personal Package Archive" (PPA) maintained by Matt Corallo to automatically keep up-to-date. Just type: - sudo apt-add-repository ppa:BGL/BGL + sudo apt-add-repository ppa:bitcoin/bitcoin sudo apt-get update -in your terminal, then install the BGL-qt package: - sudo apt-get install BGL-qt +in your terminal, then install the bitcoin-qt package: + sudo apt-get install bitcoin-qt KNOWN ISSUES ------------ @@ -30,7 +30,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you were running on Linux with a version that might have been compiled with a different version of Berkeley DB (for example, if you were using an @@ -75,7 +75,7 @@ Dependency changes Bug fixes --------- -* Clicking on a BGL: URI on Windows should now launch BGL-Qt properly. +* Clicking on a bitcoin: URI on Windows should now launch Bitcoin-Qt properly. * When running -testnet, use RPC port 18332 by default. diff --git a/doc/release-notes/release-notes-0.7.2.md b/doc/release-notes/release-notes-0.7.2.md index b7cfc53dca..fd0bbfe65e 100644 --- a/doc/release-notes/release-notes-0.7.2.md +++ b/doc/release-notes/release-notes-0.7.2.md @@ -1,5 +1,5 @@ -BGL version 0.7.2 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.7.2 +Bitcoin version 0.7.2 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.7.2 This is a bug-fix minor release. @@ -12,7 +12,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you were running on Linux with a version that might have been compiled with a different version of Berkeley DB (for example, if you were using an @@ -40,7 +40,7 @@ Bug fixes database twice. * Fix use-after-free problems in initialization and shutdown, the latter of - which caused BGL-Qt to crash on Windows when exiting. + which caused Bitcoin-Qt to crash on Windows when exiting. * Correct library linking so building on Windows natively works. diff --git a/doc/release-notes/release-notes-0.8.0.md b/doc/release-notes/release-notes-0.8.0.md index 15c3a74647..6406dabea3 100644 --- a/doc/release-notes/release-notes-0.8.0.md +++ b/doc/release-notes/release-notes-0.8.0.md @@ -1,5 +1,5 @@ -BGL-Qt version 0.8.0 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.8.0/ +Bitcoin-Qt version 0.8.0 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.0/ This is a major release designed to improve performance and handle the increasing volume of transactions on the network. @@ -13,7 +13,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). The first time you run after the upgrade a re-indexing process will be started that will take anywhere from 30 minutes to several hours, @@ -31,7 +31,7 @@ details). Improvements ------------ -Mac and Windows binaries are signed with certificates owned by the BGL +Mac and Windows binaries are signed with certificates owned by the Bitcoin Foundation, to be compatible with the new security features in OSX 10.8 and Windows 8. @@ -61,7 +61,7 @@ contrib/spendfrom is a python-language command-line utility that demonstrates how to use the "raw transactions" JSON-RPC api to send coins received from particular addresses (also known as "coin control"). -New/changed settings (command-line or BGL.conf file) +New/changed settings (command-line or bitcoin.conf file) -------------------------------------------------------- dbcache : controls LevelDB memory usage. diff --git a/doc/release-notes/release-notes-0.8.1.md b/doc/release-notes/release-notes-0.8.1.md index 3e47c8a8a7..85c4867cd7 100644 --- a/doc/release-notes/release-notes-0.8.1.md +++ b/doc/release-notes/release-notes-0.8.1.md @@ -1,5 +1,5 @@ -BGL-Qt/BGLd version 0.8.1 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.8.1/ +Bitcoin-Qt/bitcoind version 0.8.1 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.1/ This is a maintenance release that adds a new network rule to avoid a chain-forking incompatibility with versions 0.7.2 and earlier. @@ -14,7 +14,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.8.1 your blockchain files will be re-indexed, which will take diff --git a/doc/release-notes/release-notes-0.8.2.md b/doc/release-notes/release-notes-0.8.2.md index a99fea1348..013fffe982 100644 --- a/doc/release-notes/release-notes-0.8.2.md +++ b/doc/release-notes/release-notes-0.8.2.md @@ -1,5 +1,5 @@ -BGL-Qt version 0.8.2 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.8.2/ +Bitcoin-Qt version 0.8.2 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.2/ This is a maintenance release that fixes many bugs and includes a few small new features. @@ -13,7 +13,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.8.2 your blockchain files will be re-indexed, which will take @@ -43,7 +43,7 @@ with code that automatically calculates and suggests appropriate fees in the 0.9 release and note that if you set a fee policy significantly different from the rest of the network your transactions may never confirm. -BGL-Qt changes +Bitcoin-Qt changes * New icon and splash screen * Improve reporting of synchronization process @@ -58,7 +58,7 @@ BGL-Qt changes to current translations MacOSX: -* OSX support for click-to-pay (BGL:) links +* OSX support for click-to-pay (bitcoin:) links * Fix GUI disappearing problem on MacOSX (issue #1522) Linux/Unix: @@ -97,8 +97,8 @@ Wallet compatibility/rescuing Known Bugs -* Entering the 'getblocktemplate' or 'getwork' RPC commands into the BGL-Qt debug -console will cause BGL-Qt to crash. Run BGL-Qt with the -server command-line +* Entering the 'getblocktemplate' or 'getwork' RPC commands into the Bitcoin-Qt debug +console will cause Bitcoin-Qt to crash. Run Bitcoin-Qt with the -server command-line option to workaround. Thanks to everybody who contributed to the 0.8.2 release! diff --git a/doc/release-notes/release-notes-0.8.3.md b/doc/release-notes/release-notes-0.8.3.md index 507d8ba097..92f2fb813f 100644 --- a/doc/release-notes/release-notes-0.8.3.md +++ b/doc/release-notes/release-notes-0.8.3.md @@ -1,5 +1,5 @@ -BGL-Qt version 0.8.3 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.8.3/ +Bitcoin-Qt version 0.8.3 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.3/ This is a maintenance release to fix a denial-of-service attack that can cause nodes to crash. diff --git a/doc/release-notes/release-notes-0.8.4.md b/doc/release-notes/release-notes-0.8.4.md index 3611be7fc7..41c40b930d 100644 --- a/doc/release-notes/release-notes-0.8.4.md +++ b/doc/release-notes/release-notes-0.8.4.md @@ -1,5 +1,5 @@ -BGL-Qt version 0.8.4 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.8.4/ +Bitcoin-Qt version 0.8.4 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.4/ This is a maintenance release to fix a critical bug and three security issues; we urge all users to upgrade. @@ -14,7 +14,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.8.4 your blockchain files will be re-indexed, which will take @@ -29,12 +29,12 @@ Security issues An attacker could send a series of messages that resulted in an integer division-by-zero error in the Bloom Filter handling -code, causing the BGL-Qt or BGLd process to crash. +code, causing the Bitcoin-Qt or bitcoind process to crash. Bloom filters were introduced with version 0.8, so versions 0.8.0 through 0.8.3 are vulnerable to this critical denial-of-service attack. A constant-time algorithm is now used to check RPC password -guess attempts; fixes https://github.com/BGL/BGL/issues/2838 +guess attempts; fixes https://github.com/bitcoin/bitcoin/issues/2838 (CVE-2013-4165) Implement a better fix for the fill-memory-with-orphan-transactions @@ -55,11 +55,11 @@ OSX: use 'FD_FULLSYNC' with LevelDB, which will (hopefully!) prevent the database corruption issues many people have experienced on OSX. -Linux: clicking on BGL: links was broken if you were using +Linux: clicking on bitcoin: links was broken if you were using a Gnome-based desktop. Fix a hang-at-shutdown bug that only affects users that compile -their own version of BGL against Boost versions 1.50-1.52. +their own version of Bitcoin against Boost versions 1.50-1.52. Other changes ------------- diff --git a/doc/release-notes/release-notes-0.8.5.md b/doc/release-notes/release-notes-0.8.5.md index c9aa1db5dd..5e42b5bee6 100644 --- a/doc/release-notes/release-notes-0.8.5.md +++ b/doc/release-notes/release-notes-0.8.5.md @@ -1,5 +1,5 @@ -BGL-Qt version 0.8.5 is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.8.5/ +Bitcoin-Qt version 0.8.5 is now available from: + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.5/ This is a maintenance release to fix a critical bug; we urge all users to upgrade. @@ -14,7 +14,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.8.5 your blockchain files will be re-indexed, which will take diff --git a/doc/release-notes/release-notes-0.8.6.md b/doc/release-notes/release-notes-0.8.6.md index d7ffe47ee6..019a9373ec 100644 --- a/doc/release-notes/release-notes-0.8.6.md +++ b/doc/release-notes/release-notes-0.8.6.md @@ -1,6 +1,6 @@ -BGL-Qt version 0.8.6 final is now available from: +Bitcoin-Qt version 0.8.6 final is now available from: - http://sourceforge.net/projects/BGL/files/BGL/BGL-0.8.6/ + http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.6/ This is a maintenance release to fix a critical bug; we urge all users to upgrade. @@ -16,7 +16,7 @@ If you already downloaded 0.8.6rc1 you do not need to re-download. This release If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over -/Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.8.6 your blockchain files will be re-indexed, which will take @@ -47,7 +47,7 @@ your machine. - Additional debug.log logging for diagnosis of network problems, log timestamps by default -- Fix BGL-Qt startup crash when clicking dock icon on OSX +- Fix Bitcoin-Qt startup crash when clicking dock icon on OSX - Fix memory leaks in CKey::SetCompactSignature() and Key::SignCompact() @@ -63,4 +63,4 @@ Warning Hence it is recommended to use a 64-bit executable if possible. A 64-bit executable for Windows is planned for 0.9. -Note: Gavin Andresen's GPG signing key for SHA256SUMS.asc has been changed from key id 1FC730C1 to sub key 7BF6E212 (see https://github.com/BGL/BGL.org/pull/279). +Note: Gavin Andresen's GPG signing key for SHA256SUMS.asc has been changed from key id 1FC730C1 to sub key 7BF6E212 (see https://github.com/bitcoin/bitcoin.org/pull/279). diff --git a/doc/release-notes/release-notes-0.9.0.md b/doc/release-notes/release-notes-0.9.0.md index 10d6201091..1c4f7293d7 100644 --- a/doc/release-notes/release-notes-0.9.0.md +++ b/doc/release-notes/release-notes-0.9.0.md @@ -1,6 +1,6 @@ -BGL Core version 0.9.0 is now available from: +Bitcoin Core version 0.9.0 is now available from: - https://BGL.org/bin/0.9.0/ + https://bitcoin.org/bin/0.9.0/ This is a new major version release, bringing both new features and bug fixes. @@ -14,14 +14,14 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), uninstall all -earlier versions of BGL, then run the installer (on Windows) or just copy -over /Applications/BGL-Qt (on Mac) or BGLd/BGL-qt (on Linux). +earlier versions of Bitcoin, then run the installer (on Windows) or just copy +over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.9.0 your blockchain files will be re-indexed, which will take anywhere from 30 minutes to several hours, depending on the speed of your machine. -On Windows, do not forget to uninstall all earlier versions of the BGL +On Windows, do not forget to uninstall all earlier versions of the Bitcoin client first, especially if you are switching to the 64-bit version. Windows 64-bit installer @@ -59,11 +59,11 @@ Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan the blockchain for missing spent coins, which will take a long time (tens of minutes on a typical machine). -Rebranding to BGL Core +Rebranding to Bitcoin Core --------------------------- -To reduce confusion between BGL-the-network and BGL-the-software we -have renamed the reference client to BGL Core. +To reduce confusion between Bitcoin-the-network and Bitcoin-the-software we +have renamed the reference client to Bitcoin Core. OP_RETURN and data in the block chain @@ -74,7 +74,7 @@ blockchain. This change is not an endorsement of storing data in the blockchain. The OP_RETURN change creates a provably-prunable output, to avoid data storage schemes -- some of which were already deployed -- that were storing arbitrary data such as images as forever-unspendable -TX outputs, bloating BGL's UTXO database. +TX outputs, bloating bitcoin's UTXO database. Storing arbitrary data in the blockchain is still a bad idea; it is less costly and far more efficient to store non-currency data elsewhere. @@ -85,20 +85,20 @@ Autotools build system For 0.9.0 we switched to an autotools-based build system instead of individual (q)makefiles. -Using the standard "./autogen.sh; ./configure; make" to build BGL-Qt and -BGLd makes it easier for experienced open source developers to contribute +Using the standard "./autogen.sh; ./configure; make" to build Bitcoin-Qt and +bitcoind makes it easier for experienced open source developers to contribute to the project. Be sure to check doc/build-*.md for your platform before building from source. -BGL-cli +Bitcoin-cli ------------- -Another change in the 0.9 release is moving away from the BGLd executable +Another change in the 0.9 release is moving away from the bitcoind executable functioning both as a server and as a RPC client. The RPC client functionality -("tell the running BGL daemon to do THIS") was split into a separate -executable, 'BGL-cli'. The RPC client code will eventually be removed from -BGLd, but will be kept for backwards compatibility for a release or two. +("tell the running bitcoin daemon to do THIS") was split into a separate +executable, 'bitcoin-cli'. The RPC client code will eventually be removed from +bitcoind, but will be kept for backwards compatibility for a release or two. `walletpassphrase` RPC ----------------------- @@ -197,13 +197,13 @@ Command-line options: - New option: -nospendzeroconfchange to never spend unconfirmed change outputs - New option: -zapwallettxes to rebuild the wallet's transaction information - Rename option '-tor' to '-onion' to better reflect what it does -- Add '-disablewallet' mode to let BGLd run entirely without wallet (when +- Add '-disablewallet' mode to let bitcoind run entirely without wallet (when built with wallet) - Update default '-rpcsslciphers' to include TLSv1.2 - make '-logtimestamps' default on and rework help-message - RPC client option: '-rpcwait', to wait for server start - Remove '-logtodebugger' -- Allow `-noserver` with BGLd +- Allow `-noserver` with bitcoind Block-chain handling and storage: @@ -254,7 +254,7 @@ Protocol and network: - Improve logging of failed connections - Bump protocol version to 70002 - Add some additional logging to give extra network insight -- Added new DNS seed from BGLstats.com +- Added new DNS seed from bitcoinstats.com Validation: @@ -295,18 +295,18 @@ GUI: - Add Coin Control Features - Improve receive coins workflow: make the 'Receive' tab into a form to request payments, and move historical address list functionality to File menu. -- Rebrand to `BGL Core` +- Rebrand to `Bitcoin Core` - Move initialization/shutdown to a thread. This prevents "Not responding" messages during startup. Also show a window during shutdown. - Don't regenerate autostart link on every client startup -- Show and store message of normal BGL:URI +- Show and store message of normal bitcoin:URI - Fix richtext detection hang issue on very old Qt versions - OS X: Make use of the 10.8+ user notification center to display Growl-like notifications - OS X: Added NSHighResolutionCapable flag to Info.plist for better font rendering on Retina displays. -- OS X: Fix BGL-qt startup crash when clicking dock icon -- Linux: Fix Gnome BGL: URI handler +- OS X: Fix bitcoin-qt startup crash when clicking dock icon +- Linux: Fix Gnome bitcoin: URI handler Miscellaneous: @@ -314,7 +314,7 @@ Miscellaneous: - Add '-regtest' mode, similar to testnet but private with instant block generation with 'setgenerate' RPC. - Add 'linearize.py' script to contrib, for creating bootstrap.dat -- Add separate BGL-cli client +- Add separate bitcoin-cli client Credits -------- diff --git a/doc/release-notes/release-notes-0.9.1.md b/doc/release-notes/release-notes-0.9.1.md index 54d3570249..eb6ea8ae62 100644 --- a/doc/release-notes/release-notes-0.9.1.md +++ b/doc/release-notes/release-notes-0.9.1.md @@ -1,13 +1,13 @@ -BGL Core version 0.9.1 is now available from: +Bitcoin Core version 0.9.1 is now available from: - https://BGL.org/bin/0.9.1/ + https://bitcoin.org/bin/0.9.1/ This is a security update. It is recommended to upgrade to this release as soon as possible. It is especially important to upgrade if you currently have version 0.9.0 installed and are using the graphical interface OR you are using -BGLd from any pre-0.9.1 version, and have enabled SSL for RPC and +bitcoind from any pre-0.9.1 version, and have enabled SSL for RPC and have configured allowip to allow rpc connections from potentially hostile hosts. @@ -20,8 +20,8 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.9.1 your blockchain files will be re-indexed, which will take anywhere from @@ -33,7 +33,7 @@ If you are upgrading from version 0.7.2 or earlier, the first time you run No code changes were made between 0.9.0 and 0.9.1. Only the dependencies were changed. - Upgrade OpenSSL to 1.0.1g. This release fixes the following vulnerabilities which can - affect the BGL Core software: + affect the Bitcoin Core software: - CVE-2014-0160 ("heartbleed") A missing bounds check in the handling of the TLS heartbeat extension can diff --git a/doc/release-notes/release-notes-0.9.2.1.md b/doc/release-notes/release-notes-0.9.2.1.md index 65630d2014..2089147493 100644 --- a/doc/release-notes/release-notes-0.9.2.1.md +++ b/doc/release-notes/release-notes-0.9.2.1.md @@ -1,6 +1,6 @@ -BGL Core version 0.9.2.1 is now available from: +Bitcoin Core version 0.9.2.1 is now available from: - https://BGL.org/bin/0.9.2.1/ + https://bitcoin.org/bin/0.9.2.1/ This is a new minor version release, bringing mostly bug fixes and some minor improvements. OpenSSL has been updated because of a security issue (CVE-2014-0224). @@ -15,8 +15,8 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.9.2.1 your blockchain files will be re-indexed, which will take anywhere from @@ -130,7 +130,7 @@ GUI: - Catch Windows shutdown events while client is running - Optionally add third party links to transaction context menu - Check for !pixmap() before trying to export QR code (avoids crashes when no QR code could be generated) -- Fix "Start BGL on system login" +- Fix "Start bitcoin on system login" Miscellaneous: diff --git a/doc/release-notes/release-notes-0.9.2.md b/doc/release-notes/release-notes-0.9.2.md index fafb398994..7a89e85a66 100644 --- a/doc/release-notes/release-notes-0.9.2.md +++ b/doc/release-notes/release-notes-0.9.2.md @@ -1,6 +1,6 @@ -BGL Core version 0.9.2 is now available from: +Bitcoin Core version 0.9.2 is now available from: - https://BGL.org/bin/0.9.2/ + https://bitcoin.org/bin/0.9.2/ This is a new minor version release, bringing mostly bug fixes and some minor improvements. OpenSSL has been updated because of a security issue (CVE-2014-0224). @@ -15,8 +15,8 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.9.2 your blockchain files will be re-indexed, which will take anywhere from @@ -130,7 +130,7 @@ GUI: - Catch Windows shutdown events while client is running - Optionally add third party links to transaction context menu - Check for !pixmap() before trying to export QR code (avoids crashes when no QR code could be generated) -- Fix "Start BGL on system login" +- Fix "Start bitcoin on system login" Miscellaneous: diff --git a/doc/release-notes/release-notes-0.9.3.md b/doc/release-notes/release-notes-0.9.3.md index 92e7551a36..bb03fb8084 100644 --- a/doc/release-notes/release-notes-0.9.3.md +++ b/doc/release-notes/release-notes-0.9.3.md @@ -1,6 +1,6 @@ -BGL Core version 0.9.3 is now available from: +Bitcoin Core version 0.9.3 is now available from: - https://BGL.org/bin/0.9.3/ + https://bitcoin.org/bin/0.9.3/ This is a new minor version release, bringing only bug fixes and updated translations. Upgrading to this release is recommended. @@ -17,8 +17,8 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). If you are upgrading from version 0.7.2 or earlier, the first time you run 0.9.3 your blockchain files will be re-indexed, which will take anywhere from @@ -70,7 +70,7 @@ GUI: Miscellaneous: - key.cpp: fail with a friendlier message on missing ssl EC support - Remove bignum dependency for scripts -- Upgrade OpenSSL to 1.0.1i (see https://www.openssl.org/news/secadv_20140806.txt - just to be sure, no critical issues for BGL Core) +- Upgrade OpenSSL to 1.0.1i (see https://www.openssl.org/news/secadv_20140806.txt - just to be sure, no critical issues for Bitcoin Core) - Upgrade miniupnpc to 1.9.20140701 - Fix boost detection in build system on some platforms @@ -98,4 +98,4 @@ Thanks to everyone who contributed to this release: - Wladimir J. van der Laan - Zak Wilcox -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.9.4.md b/doc/release-notes/release-notes-0.9.4.md index b109f5b1bf..fd16b6b7a1 100644 --- a/doc/release-notes/release-notes-0.9.4.md +++ b/doc/release-notes/release-notes-0.9.4.md @@ -1,6 +1,6 @@ -BGL Core version 0.9.4 is now available from: +Bitcoin Core version 0.9.4 is now available from: - https://BGL.org/bin/0.9.4/ + https://bitcoin.org/bin/0.9.4/ This is a new minor version release, bringing only bug fixes and updated translations. Upgrading to this release is recommended. @@ -14,26 +14,26 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). OpenSSL Warning ================ OpenSSL 1.0.0p / 1.0.1k was recently released and is being pushed out by various operating system maintainers. Review by Gregory Maxwell determined that -this update is incompatible with the BGL system and could lead to consensus +this update is incompatible with the Bitcoin system and could lead to consensus forks. -BGL Core released binaries from https://BGL.org are unaffected, +Bitcoin Core released binaries from https://bitcoin.org are unaffected, as are any built with the gitian deterministic build system. However, if you are running either -- The Ubuntu PPA from https://launchpad.net/~BGL/+archive/ubuntu/BGL -- A third-party or self-compiled BGL Core +- The Ubuntu PPA from https://launchpad.net/~bitcoin/+archive/ubuntu/bitcoin +- A third-party or self-compiled Bitcoin Core -upgrade to BGL Core 0.9.4, which includes a workaround, **before** updating +upgrade to Bitcoin Core 0.9.4, which includes a workaround, **before** updating OpenSSL. The incompatibility is due to the OpenSSL update changing the @@ -92,4 +92,4 @@ Thanks to who contributed to this release, at least: - Sergio Demian Lerner - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-notes/release-notes-0.9.5.md b/doc/release-notes/release-notes-0.9.5.md index 64f6851ea1..ad8ac11c7d 100644 --- a/doc/release-notes/release-notes-0.9.5.md +++ b/doc/release-notes/release-notes-0.9.5.md @@ -1,6 +1,6 @@ -BGL Core version 0.9.5 is now available from: +Bitcoin Core version 0.9.5 is now available from: - https://BGL.org/bin/0.9.5/ + https://bitcoin.org/bin/0.9.5/ This is a new minor version release, with the goal of backporting BIP66. There are also a few bug fixes and updated translations. Upgrading to this release is @@ -15,8 +15,8 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the -installer (on Windows) or just copy over /Applications/BGL-Qt (on Mac) or -BGLd/BGL-qt (on Linux). +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). Notable changes ================ @@ -24,10 +24,10 @@ Notable changes Mining and relay policy enhancements ------------------------------------ -BGL Core's block templates are now for version 3 blocks only, and any mining +Bitcoin Core's block templates are now for version 3 blocks only, and any mining software relying on its `getblocktemplate` must be updated in parallel to use libblkmaker either version 0.4.2 or any version from 0.5.1 onward. -If you are solo mining, this will affect you the moment you upgrade BGL +If you are solo mining, this will affect you the moment you upgrade Bitcoin Core, which must be done prior to BIP66 achieving its 951/1001 status. If you are mining with the stratum mining protocol: this does not affect you. If you are mining with the getblocktemplate protocol to a pool: this will affect @@ -57,4 +57,4 @@ Thanks to who contributed to this release, at least: - Pieter Wuille - Wladimir J. van der Laan -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/BGL/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). From 1a699d7b3d61cb2c8d80fa549b94bfae0575e437 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 00:26:16 +0100 Subject: [PATCH 08/45] fix broken links to bitcoin repo pull requests (broken by dumb bitcoin->BGL search-replace) --- CONTRIBUTING.md | 2 +- depends/README.md | 143 ----------------------- doc/developer-notes.md | 2 +- src/common/settings.h | 2 +- src/interfaces/README.md | 8 +- src/qt/BGLamountfield.h | 2 +- test/functional/feature_assumevalid.py | 2 +- test/functional/feature_notifications.py | 2 +- 8 files changed, 10 insertions(+), 153 deletions(-) delete mode 100644 depends/README.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7a2a043205..82ae0c371d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -432,7 +432,7 @@ Rebased-From: ``` Have a look at [an example backport PR]( -https://github.com/BGL/BGL/pull/16189). +https://github.com/bitcoin/bitcoin/pull/16189). Also see the [backport.py script]( https://github.com/BGL-core/BGL-maintainer-tools#backport). diff --git a/depends/README.md b/depends/README.md deleted file mode 100644 index b5992a3fef..0000000000 --- a/depends/README.md +++ /dev/null @@ -1,143 +0,0 @@ -### Usage - -To build dependencies for the current arch+OS: - - make - -To build for another arch/OS: - - make HOST=host-platform-triplet - -For example: - - make HOST=x86_64-w64-mingw32 -j4 - -**Bitcoin Core's `configure` script by default will ignore the depends output.** In -order for it to pick up libraries, tools, and settings from the depends build, -you must set the `CONFIG_SITE` environment variable to point to a `config.site` settings file. -Make sure that `CONFIG_SITE` is an absolute path. -In the above example, a file named `depends/x86_64-w64-mingw32/share/config.site` will be -created. To use it during compilation: - - CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site ./configure - -The default install prefix when using `config.site` is `--prefix=depends/`, -so depends build outputs will be installed in that location. - -Common `host-platform-triplet`s for cross compilation are: - -- `i686-pc-linux-gnu` for Linux 32 bit -- `x86_64-pc-linux-gnu` for x86 Linux -- `x86_64-w64-mingw32` for Win64 -- `x86_64-apple-darwin` for macOS -- `arm64-apple-darwin` for ARM macOS -- `arm-linux-gnueabihf` for Linux ARM 32 bit -- `aarch64-linux-gnu` for Linux ARM 64 bit -- `powerpc64-linux-gnu` for Linux POWER 64-bit (big endian) -- `powerpc64le-linux-gnu` for Linux POWER 64-bit (little endian) -- `riscv32-linux-gnu` for Linux RISC-V 32 bit -- `riscv64-linux-gnu` for Linux RISC-V 64 bit -- `s390x-linux-gnu` for Linux S390X -- `armv7a-linux-android` for Android ARM 32 bit -- `aarch64-linux-android` for Android ARM 64 bit -- `x86_64-linux-android` for Android x86 64 bit - -The paths are automatically configured and no other options are needed unless targeting [Android](../doc/build-android.md). - -### Install the required dependencies: Ubuntu & Debian - -#### For macOS cross compilation - - sudo apt-get install curl bsdmainutils cmake libz-dev python3-setuptools xorriso - -Note: You must obtain the macOS SDK before proceeding with a cross-compile. -Under the depends directory, create a subdirectory named `SDKs`. -Then, place the extracted SDK under this new directory. -For more information, see [SDK Extraction](../contrib/macdeploy/README.md#sdk-extraction). - -#### For Win64 cross compilation - -- see [build-windows.md](../doc/build-windows.md#cross-compilation-for-ubuntu-and-windows-subsystem-for-linux) - -#### For linux (including i386, ARM) cross compilation - -Common linux dependencies: - - sudo apt-get install make automake cmake curl g++-multilib libtool binutils bsdmainutils pkg-config python3 patch bison - -For linux ARM cross compilation: - - sudo apt-get install g++-arm-linux-gnueabihf binutils-arm-linux-gnueabihf - -For linux AARCH64 cross compilation: - - sudo apt-get install g++-aarch64-linux-gnu binutils-aarch64-linux-gnu - -For linux POWER 64-bit cross compilation (there are no packages for 32-bit): - - sudo apt-get install g++-powerpc64-linux-gnu binutils-powerpc64-linux-gnu g++-powerpc64le-linux-gnu binutils-powerpc64le-linux-gnu - -For linux RISC-V 64-bit cross compilation (there are no packages for 32-bit): - - sudo apt-get install g++-riscv64-linux-gnu binutils-riscv64-linux-gnu - -For linux S390X cross compilation: - - sudo apt-get install g++-s390x-linux-gnu binutils-s390x-linux-gnu - -### Install the required dependencies: OpenBSD - - pkg_add bash gtar - -### Dependency Options - -The following can be set when running make: `make FOO=bar` - -- `SOURCES_PATH`: Downloaded sources will be placed here -- `BASE_CACHE`: Built packages will be placed here -- `SDK_PATH`: Path where SDKs can be found (used by macOS) -- `FALLBACK_DOWNLOAD_PATH`: If a source file can't be fetched, try here before giving up -- `C_STANDARD`: Set the C standard version used. Defaults to `c11`. -- `CXX_STANDARD`: Set the C++ standard version used. Defaults to `c++17`. -- `NO_BOOST`: Don't download/build/cache Boost -- `NO_LIBEVENT`: Don't download/build/cache Libevent -- `NO_QT`: Don't download/build/cache Qt and its dependencies -- `NO_QR`: Don't download/build/cache packages needed for enabling qrencode -- `NO_ZMQ`: Don't download/build/cache packages needed for enabling ZeroMQ -- `NO_WALLET`: Don't download/build/cache libs needed to enable the wallet -- `NO_BDB`: Don't download/build/cache BerkeleyDB -- `NO_SQLITE`: Don't download/build/cache SQLite -- `NO_UPNP`: Don't download/build/cache packages needed for enabling UPnP -- `NO_NATPMP`: Don't download/build/cache packages needed for enabling NAT-PMP -- `NO_USDT`: Don't download/build/cache packages needed for enabling USDT tracepoints -- `ALLOW_HOST_PACKAGES`: Packages that are missed in dependencies (due to `NO_*` option or - build script logic) are searched for among the host system packages using - `pkg-config`. It allows building with packages of other (newer) versions -- `MULTIPROCESS`: Build libmultiprocess (experimental, requires CMake) -- `DEBUG`: Disable some optimizations and enable more runtime checking -- `HOST_ID_SALT`: Optional salt to use when generating host package ids -- `BUILD_ID_SALT`: Optional salt to use when generating build package ids -- `FORCE_USE_SYSTEM_CLANG`: (EXPERTS ONLY) When cross-compiling for macOS, use Clang found in the - system's `$PATH` rather than the default prebuilt release of Clang - from llvm.org. Clang 8 or later is required -- `LOG`: Use file-based logging for individual packages. During a package build its log file - resides in the `depends` directory, and the log file is printed out automatically in case - of build error. After successful build log files are moved along with package archives -- `LTO`: Use LTO when building packages. -- `NO_HARDEN=1`: Don't use hardening options when building packages - -If some packages are not built, for example `make NO_WALLET=1`, the appropriate -options will be passed to bitcoin's configure. In this case, `--disable-wallet`. - -### Additional targets - - download: run 'make download' to fetch all sources without building them - download-osx: run 'make download-osx' to fetch all sources needed for macOS builds - download-win: run 'make download-win' to fetch all sources needed for win builds - download-linux: run 'make download-linux' to fetch all sources needed for linux builds - - -### Other documentation - -- [description.md](description.md): General description of the depends system -- [packages.md](packages.md): Steps for adding packages diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 1fb5cd4026..ee6a6b592b 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -1523,4 +1523,4 @@ communication: Note: This last convention isn't generally followed outside of [`src/interfaces/`](../src/interfaces/), though it did come up for discussion - before in [#14635](https://github.com/BGL/BGL/pull/14635). + before in [#14635](https://github.com/bitcoin/bitcoin/pull/14635). diff --git a/src/common/settings.h b/src/common/settings.h index 5e167346e0..695c8fa929 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -24,7 +24,7 @@ namespace common { //! getInt(), get_bool(), isNum(), isBool(), isFalse(), isTrue() and //! isNull() methods can be substituted if there's a need to move away //! from UniValue. (An implementation with boost::variant was posted at -//! https://github.com/BGL/BGL/pull/15934/files#r337691812) +//! https://github.com/bitcoin/bitcoin/pull/15934/files#r337691812) using SettingsValue = UniValue; //! Stored settings. This struct combines settings from the command line, a diff --git a/src/interfaces/README.md b/src/interfaces/README.md index e450816d33..deb590fc85 100644 --- a/src/interfaces/README.md +++ b/src/interfaces/README.md @@ -2,13 +2,13 @@ The following interfaces are defined here: -* [`Chain`](chain.h) — used by wallet to access blockchain and mempool state. Added in [#14437](https://github.com/BGL/BGL/pull/14437), [#14711](https://github.com/BGL/BGL/pull/14711), [#15288](https://github.com/BGL/BGL/pull/15288), and [#10973](https://github.com/BGL/BGL/pull/10973). +* [`Chain`](chain.h) — used by wallet to access blockchain and mempool state. Added in [#14437](https://github.com/bitcoin/bitcoin/pull/14437), [#14711](https://github.com/bitcoin/bitcoin/pull/14711), [#15288](https://github.com/bitcoin/bitcoin/pull/15288), and [#10973](https://github.com/bitcoin/bitcoin/pull/10973). -* [`ChainClient`](chain.h) — used by node to start & stop `Chain` clients. Added in [#14437](https://github.com/BGL/BGL/pull/14437). +* [`ChainClient`](chain.h) — used by node to start & stop `Chain` clients. Added in [#14437](https://github.com/bitcoin/bitcoin/pull/14437). -* [`Node`](node.h) — used by GUI to start & stop BGL node. Added in [#10244](https://github.com/BGL/BGL/pull/10244). +* [`Node`](node.h) — used by GUI to start & stop BGL node. Added in [#10244](https://github.com/bitcoin/bitcoin/pull/10244). -* [`Wallet`](wallet.h) — used by GUI to access wallets. Added in [#10244](https://github.com/BGL/BGL/pull/10244). +* [`Wallet`](wallet.h) — used by GUI to access wallets. Added in [#10244](https://github.com/bitcoin/bitcoin/pull/10244). * [`Handler`](handler.h) — returned by `handleEvent` methods on interfaces above and used to manage lifetimes of event handlers. diff --git a/src/qt/BGLamountfield.h b/src/qt/BGLamountfield.h index e4dbb0dadb..75e5358541 100644 --- a/src/qt/BGLamountfield.h +++ b/src/qt/BGLamountfield.h @@ -23,7 +23,7 @@ class BGLAmountField: public QWidget Q_OBJECT // ugly hack: for some unknown reason CAmount (instead of qint64) does not work here as expected - // discussion: https://github.com/BGL/BGL/pull/5117 + // discussion: https://github.com/bitcoin/bitcoin/pull/5117 Q_PROPERTY(qint64 value READ value WRITE setValue NOTIFY valueChanged USER true) public: diff --git a/test/functional/feature_assumevalid.py b/test/functional/feature_assumevalid.py index 78a0f93446..2cb6d63a74 100755 --- a/test/functional/feature_assumevalid.py +++ b/test/functional/feature_assumevalid.py @@ -5,7 +5,7 @@ """Test logic for skipping signature validation on old blocks. Test logic for skipping signature validation on blocks which we've assumed -valid (https://github.com/BGL/BGL/pull/9484) +valid (https://github.com/bitcoin/bitcoin/pull/9484) We build a chain that includes and invalid signature for one of the transactions: diff --git a/test/functional/feature_notifications.py b/test/functional/feature_notifications.py index a888396fc8..45d1afec9e 100755 --- a/test/functional/feature_notifications.py +++ b/test/functional/feature_notifications.py @@ -122,7 +122,7 @@ def run_test(self): # Generate bump transaction, sync mempools, and check for bump1 # notification. In the future, per - # https://github.com/BGL/BGL/pull/9371, it might be better + # https://github.com/bitcoin/bitcoin/pull/9371, it might be better # to have notifications for both tx1 and bump1. bump1 = self.nodes[0].bumpfee(tx1)["txid"] assert_equal(bump1 in self.nodes[0].getrawmempool(), True) From 6c7bc260aac5601d99c2d0b997ae9e75fb43471e Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 00:30:03 +0100 Subject: [PATCH 09/45] fix broken links to old bitcoin repo issues, commits and blobs (broken by dumb bitcoin->BGL search-replace) --- doc/build-openbsd.md | 2 +- doc/developer-notes.md | 8 ++++---- doc/release-process.md | 10 ---------- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/doc/build-openbsd.md b/doc/build-openbsd.md index 898e9cf852..0b7fa9737e 100644 --- a/doc/build-openbsd.md +++ b/doc/build-openbsd.md @@ -118,7 +118,7 @@ data(kbytes) 1572864 ``` This is, unfortunately, in some cases not enough to compile some `.cpp` files in the project, -(see issue [#6658](https://github.com/BGL/BGL/issues/6658)). +(see issue [#6658](https://github.com/bitcoin/bitcoin/issues/6658)). If your user is in the `staff` group the limit can be raised with: ```bash ulimit -d 3000000 diff --git a/doc/developer-notes.md b/doc/developer-notes.md index ee6a6b592b..0528c4d496 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -595,7 +595,7 @@ Additional resources: * [UndefinedBehaviorSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html) * [GCC Instrumentation Options](https://gcc.gnu.org/onlinedocs/gcc/Instrumentation-Options.html) * [Google Sanitizers Wiki](https://github.com/google/sanitizers/wiki) - * [Issue #12691: Enable -fsanitize flags in Travis](https://github.com/BGL/BGL/issues/12691) + * [Issue #12691: Enable -fsanitize flags in Travis](https://github.com/bitcoin/bitcoin/issues/12691) Locking/mutex usage notes ------------------------- @@ -1272,13 +1272,13 @@ introduce accidental changes. Some good examples of scripted-diff: -- [scripted-diff: Rename InitInterfaces to NodeContext](https://github.com/BGL/BGL/commit/301bd41a2e6765b185bd55f4c541f9e27aeea29d) +- [scripted-diff: Rename InitInterfaces to NodeContext](https://github.com/bitcoin/bitcoin/commit/301bd41a2e6765b185bd55f4c541f9e27aeea29d) uses an elegant script to replace occurrences of multiple terms in all source files. -- [scripted-diff: Remove g_connman, g_banman globals](https://github.com/BGL/BGL/commit/301bd41a2e6765b185bd55f4c541f9e27aeea29d) +- [scripted-diff: Remove g_connman, g_banman globals](https://github.com/bitcoin/bitcoin/commit/301bd41a2e6765b185bd55f4c541f9e27aeea29d) replaces specific terms in a list of specific source files. -- [scripted-diff: Replace fprintf with tfm::format](https://github.com/BGL/BGL/commit/fac03ec43a15ad547161e37e53ea82482cc508f9) +- [scripted-diff: Replace fprintf with tfm::format](https://github.com/bitcoin/bitcoin/commit/fac03ec43a15ad547161e37e53ea82482cc508f9) does a global replacement but excludes certain directories. To find all previous uses of scripted diffs in the repository, do: diff --git a/doc/release-process.md b/doc/release-process.md index ffa31ab08e..987f1e9afa 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -87,16 +87,10 @@ Install Guix using one of the installation methods detailed in Check out the source code in the following directory hierarchy. cd /path/to/your/toplevel/build -<<<<<<< HEAD - git clone https://github.com/bitcoin-core/guix.sigs.git - git clone https://github.com/bitcoin-core/bitcoin-detached-sigs.git - git clone https://github.com/bitcoin/bitcoin.git -======= git clone https://github.com/BGL-core/gitian.sigs.git git clone https://github.com/BGL-core/BGL-detached-sigs.git git clone https://github.com/devrandom/gitian-builder.git git clone https://github.com/BitgesellOfficial/bitgesell.git ->>>>>>> fix broken URLs to the bitgesell repo ### Write the release notes @@ -288,11 +282,7 @@ cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc - Archive the release notes for the new version to `doc/release-notes/` (branch `master` and branch of the release) -<<<<<<< HEAD - - Create a [new GitHub release](https://github.com/bitcoin/bitcoin/releases/new) with a link to the archived release notes -======= - Create a [new GitHub release](https://github.com/BitgesellOfficial/bitgesell/releases/new) with a link to the archived release notes ->>>>>>> fix broken URLs to the bitgesell repo - Announce the release: From 247037c33e297fb73ba8099d81da69beeef391e1 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 00:35:10 +0100 Subject: [PATCH 10/45] fixing site url, BGLcore.org -> bitgesell.ca. Note that some of these are broken links as they have been copied from bitcoincore.org and the equivalents do not exist at bitgesell.ca currently --- build_msvc/BGL_config.h | 2 +- configure.ac | 16 +++++----------- debian.minimal/copyright | 4 ++-- depends/Makefile | 7 +------ doc/README.md | 4 ++-- doc/README_doxygen.md | 2 +- doc/release-process.md | 2 +- src/test/netbase_tests.cpp | 10 +++++----- 8 files changed, 18 insertions(+), 29 deletions(-) diff --git a/build_msvc/BGL_config.h b/build_msvc/BGL_config.h index 596a84ed71..4c3902860f 100644 --- a/build_msvc/BGL_config.h +++ b/build_msvc/BGL_config.h @@ -183,7 +183,7 @@ #define PACKAGE_STRING "Bitgesell Core 22.99.0" /* Define to the home page for this package. */ -#define PACKAGE_URL "https://github.com/BitgesellOfficial/bitgesell/releases/" +#define PACKAGE_URL "https://bitgesell.ca/" /* Define to the version of this package. */ #define PACKAGE_VERSION "0.1.8" diff --git a/configure.ac b/configure.ac index 8018356233..ea9edf1eb0 100755 --- a/configure.ac +++ b/configure.ac @@ -331,12 +331,7 @@ AC_ARG_ENABLE([werror], AC_ARG_ENABLE([external-signer], [AS_HELP_STRING([--enable-external-signer],[compile external signer support (default is auto, requires Boost::Process)])], [use_external_signer=$enableval], - [use_external_signer=auto]) - -AC_ARG_ENABLE([lto], - [AS_HELP_STRING([--enable-lto],[build using LTO (default is no)])], - [enable_lto=$enableval], - [enable_lto=no]) + [use_external_signer=yes]) AC_LANG_PUSH([C++]) @@ -461,11 +456,10 @@ if test "$CXXFLAGS_overridden" = "no"; then dnl Some compilers (gcc) ignore unknown -Wno-* options, but warn about all dnl unknown options if any other warning is produced. Test the -Wfoo case, and dnl set the -Wno-foo case if it works. - AX_CHECK_COMPILE_FLAG([-Wunused-parameter], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"], [], [$CXXFLAG_WERROR]) - AX_CHECK_COMPILE_FLAG([-Wself-assign], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"], [], [$CXXFLAG_WERROR]) - if test "$suppress_external_warnings" != "yes" ; then - AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"], [], [$CXXFLAG_WERROR]) - fi + AX_CHECK_COMPILE_FLAG([-Wunused-parameter],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"],,[[$CXXFLAG_WERROR]]) + AX_CHECK_COMPILE_FLAG([-Wself-assign],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"],,[[$CXXFLAG_WERROR]]) + AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]]) + AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"],,[[$CXXFLAG_WERROR]]) fi dnl Don't allow extended (non-ASCII) symbols in identifiers. This is easier for code review. diff --git a/debian.minimal/copyright b/debian.minimal/copyright index 36cd059ff9..7235ef128b 100644 --- a/debian.minimal/copyright +++ b/debian.minimal/copyright @@ -1721,7 +1721,7 @@ Files: doc/man/BGL-cli.1 Copyright: 2009-2019 The Bitcoin Core developers License: __UNKNOWN__ Please contribute if you find BGL Core useful. Visit - for further information about the software. + for further information about the software. The source code is available from . . This is experimental software. @@ -2630,7 +2630,7 @@ Files: contrib/verifybinaries/verify.sh Copyright: 2016 The Bitcoin Core developers Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. License: __UNKNOWN__ This script attempts to download the signature file SHA256SUMS.asc from - BGLcore.org and BGL.org and compares them. + bitgesell.ca and BGL.org and compares them. It first checks if the signature passes, and then downloads the files specified in the file, and checks if the hashes of these files match those that are specified in the signature file. diff --git a/depends/Makefile b/depends/Makefile index 3169117633..326ceb20cd 100644 --- a/depends/Makefile +++ b/depends/Makefile @@ -44,12 +44,7 @@ NO_UPNP ?= NO_USDT ?= NO_NATPMP ?= MULTIPROCESS ?= -LTO ?= -NO_HARDEN ?= -FALLBACK_DOWNLOAD_PATH ?= https://bitcoincore.org/depends-sources - -C_STANDARD ?= c11 -CXX_STANDARD ?= c++17 +FALLBACK_DOWNLOAD_PATH ?= https://bitgesell.ca/depends-sources BUILD = $(shell ./config.guess) HOST ?= $(BUILD) diff --git a/doc/README.md b/doc/README.md index 5348d30a27..fe6df330cb 100644 --- a/doc/README.md +++ b/doc/README.md @@ -5,7 +5,7 @@ Setup --------------------- BGL Core is the original BGL client and it builds the backbone of the network. It downloads and, by default, stores the entire history of BGL transactions, which requires a few hundred gigabytes of disk space. Depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. -To download BGL Core, visit [BGLcore.org](https://BGLcore.org/en/download/). +To download BGL Core, visit [bitgesell.ca](https://bitgesell.ca/en/download/). Running --------------------- @@ -54,7 +54,7 @@ The BGL repo's [root README](/README.md) contains relevant information on the de - [Developer Notes](developer-notes.md) - [Productivity Notes](productivity.md) - [Release Process](release-process.md) -- [Source Code Documentation (External Link)](https://doxygen.BGLcore.org/) +- [Source Code Documentation (External Link)](https://doxygen.bitgesell.ca/) - [Translation Process](translation_process.md) - [Translation Strings Policy](translation_strings_policy.md) - [JSON-RPC Interface](JSON-RPC-interface.md) diff --git a/doc/README_doxygen.md b/doc/README_doxygen.md index a6b1e81ef9..4329c47a77 100644 --- a/doc/README_doxygen.md +++ b/doc/README_doxygen.md @@ -8,7 +8,7 @@ with no central authority: managing transactions and issuing money are carried o The software is a community-driven open source project, released under the MIT license. -See https://github.com/BitgesellOfficial/bitgesell and https://BGLcore.org/ for further information about the project. +See https://github.com/BitgesellOfficial/bitgesell and https://bitgesell.ca/ for further information about the project. \section Navigation Use Modules, Namespaces, Classes, or Files at the top of the page to start navigating the code. diff --git a/doc/release-process.md b/doc/release-process.md index 987f1e9afa..f624ac0ef9 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -288,7 +288,7 @@ cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc - bitcoin-dev and bitcoin-core-dev mailing list - - Bitcoin Core announcements list https://bitcoincore.org/en/list/announcements/join/ + - BGL Core announcements list https://bitgesell.ca/en/list/announcements/join/ - Bitcoin Core Twitter https://twitter.com/bitcoincoreorg diff --git a/src/test/netbase_tests.cpp b/src/test/netbase_tests.cpp index 05953bfd10..09203ca711 100644 --- a/src/test/netbase_tests.cpp +++ b/src/test/netbase_tests.cpp @@ -92,11 +92,11 @@ bool static TestSplitHost(const std::string& test, const std::string& host, uint BOOST_AUTO_TEST_CASE(netbase_splithost) { - BOOST_CHECK(TestSplitHost("www.bitcoincore.org", "www.bitcoincore.org", 0)); - BOOST_CHECK(TestSplitHost("[www.bitcoincore.org]", "www.bitcoincore.org", 0)); - BOOST_CHECK(TestSplitHost("www.bitcoincore.org:80", "www.bitcoincore.org", 80)); - BOOST_CHECK(TestSplitHost("[www.bitcoincore.org]:80", "www.bitcoincore.org", 80)); - BOOST_CHECK(TestSplitHost("127.0.0.1", "127.0.0.1", 0)); + BOOST_CHECK(TestSplitHost("www.bitgesell.ca", "www.bitgesell.ca", -1)); + BOOST_CHECK(TestSplitHost("[www.bitgesell.ca]", "www.bitgesell.ca", -1)); + BOOST_CHECK(TestSplitHost("www.bitgesell.ca:80", "www.bitgesell.ca", 80)); + BOOST_CHECK(TestSplitHost("[www.bitgesell.ca]:80", "www.bitgesell.ca", 80)); + BOOST_CHECK(TestSplitHost("127.0.0.1", "127.0.0.1", -1)); BOOST_CHECK(TestSplitHost("127.0.0.1:8333", "127.0.0.1", 8333)); BOOST_CHECK(TestSplitHost("[127.0.0.1]", "127.0.0.1", 0)); BOOST_CHECK(TestSplitHost("[127.0.0.1]:8333", "127.0.0.1", 8333)); From 5dda5e9bc41861640d9aa97dcf05b5c461582218 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 00:42:18 +0100 Subject: [PATCH 11/45] remove pull request template comment with irrelevant broken link to bitcoin-core/gui repository --- .github/PULL_REQUEST_TEMPLATE.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index b7c70d0834..95bdf8981f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,11 +4,6 @@ what is the goal of the pull request Pull requests without a rationale and clear improvement may be closed immediately. -GUI-related pull requests should be opened against -https://github.com/BGL-core/gui -first. See CONTRIBUTING.md ---> - ### Notes implementation details, hints for reviewers From 7bb8c80fdd1ad51b1b4717096cf406e3c923a782 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 01:10:05 +0100 Subject: [PATCH 12/45] revert unrelated changes --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index ea9edf1eb0..7775d1d46d 100755 --- a/configure.ac +++ b/configure.ac @@ -180,7 +180,7 @@ AC_ARG_WITH([natpmp], AC_ARG_ENABLE(tests, AS_HELP_STRING([--disable-tests],[do not compile tests (default is to compile)]), [use_tests=$enableval], - [use_tests=yes]) + [use_tests=no]) AC_ARG_ENABLE(gui-tests, AS_HELP_STRING([--disable-gui-tests],[do not compile GUI tests (default is to compile if GUI and tests enabled)]), @@ -331,7 +331,7 @@ AC_ARG_ENABLE([werror], AC_ARG_ENABLE([external-signer], [AS_HELP_STRING([--enable-external-signer],[compile external signer support (default is auto, requires Boost::Process)])], [use_external_signer=$enableval], - [use_external_signer=yes]) + [use_external_signer=no]) AC_LANG_PUSH([C++]) @@ -459,6 +459,7 @@ if test "$CXXFLAGS_overridden" = "no"; then AX_CHECK_COMPILE_FLAG([-Wunused-parameter],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wself-assign],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]]) + AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-implicit-fallthrough"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"],,[[$CXXFLAG_WERROR]]) fi From a6cc4dd66ef25f68b11fa4e5eb35d4c3c8afe97b Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 00:41:08 +0100 Subject: [PATCH 13/45] correct python3 comparison operator --- contrib/testgen/base58.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 contrib/testgen/base58.py diff --git a/contrib/testgen/base58.py b/contrib/testgen/base58.py new file mode 100644 index 0000000000..e69de29bb2 From f3f4da868c0ca594dc898627f6aae8a7e7d9d4e9 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 01:11:19 +0100 Subject: [PATCH 14/45] enable building tests by default, external signer default to match bitcoin core, and turn off warning silencing for implicit fallthrough --- configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 7775d1d46d..ea9edf1eb0 100755 --- a/configure.ac +++ b/configure.ac @@ -180,7 +180,7 @@ AC_ARG_WITH([natpmp], AC_ARG_ENABLE(tests, AS_HELP_STRING([--disable-tests],[do not compile tests (default is to compile)]), [use_tests=$enableval], - [use_tests=no]) + [use_tests=yes]) AC_ARG_ENABLE(gui-tests, AS_HELP_STRING([--disable-gui-tests],[do not compile GUI tests (default is to compile if GUI and tests enabled)]), @@ -331,7 +331,7 @@ AC_ARG_ENABLE([werror], AC_ARG_ENABLE([external-signer], [AS_HELP_STRING([--enable-external-signer],[compile external signer support (default is auto, requires Boost::Process)])], [use_external_signer=$enableval], - [use_external_signer=no]) + [use_external_signer=yes]) AC_LANG_PUSH([C++]) @@ -459,7 +459,6 @@ if test "$CXXFLAGS_overridden" = "no"; then AX_CHECK_COMPILE_FLAG([-Wunused-parameter],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wself-assign],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]]) - AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-implicit-fallthrough"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"],,[[$CXXFLAG_WERROR]]) fi From 03ced01db1a649e7e7d267d011218ee74522b093 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Fri, 20 Aug 2021 01:26:11 +0100 Subject: [PATCH 15/45] reinstate valid base58 test data and test methodology from bitcoin core --- src/test/data/base58_encode_decode.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/data/base58_encode_decode.json b/src/test/data/base58_encode_decode.json index 251fb167da..7ac05c4192 100644 --- a/src/test/data/base58_encode_decode.json +++ b/src/test/data/base58_encode_decode.json @@ -13,4 +13,4 @@ ["00000000000000000000", "1111111111"], ["000111d38e5fc9071ffcd20b4a763cc9ae4f252bb4e48fd66a835e252ada93ff480d6dd43dc62a641155a5", "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"], ["000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff", "1cWB5HCBdLjAuqGGReWE3R3CguuwSjw6RHn39s2yuDRTS5NsBgNiFpWgAnEx6VQi8csexkgYw3mdYrMHr8x9i7aEwP8kZ7vccXWqKDvGv3u1GxFKPuAkn8JCPPGDMf3vMMnbzm6Nh9zh1gcNsMvH3ZNLmP5fSG6DGbbi2tuwMWPthr4boWwCxf7ewSgNQeacyozhKDDQQ1qL5fQFUW52QKUZDZ5fw3KXNQJMcNTcaB723LchjeKun7MuGW5qyCBZYzA1KjofN1gYBV3NqyhQJ3Ns746GNuf9N2pQPmHz4xpnSrrfCvy6TVVz5d4PdrjeshsWQwpZsZGzvbdAdN8MKV5QsBDY"] - ] \ No newline at end of file + ] From b3cfe544b299e39e3f2c6fbd9db28876b007c494 Mon Sep 17 00:00:00 2001 From: SlowRiot Date: Tue, 24 Aug 2021 18:12:20 +0100 Subject: [PATCH 16/45] don't disable implicit-fallthrough warning (this is now dealt with in another PR) --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index ea9edf1eb0..3572a66800 100755 --- a/configure.ac +++ b/configure.ac @@ -459,6 +459,7 @@ if test "$CXXFLAGS_overridden" = "no"; then AX_CHECK_COMPILE_FLAG([-Wunused-parameter],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wself-assign],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]]) + AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-implicit-fallthrough"],,[[$CXXFLAG_WERROR]]) AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"],,[[$CXXFLAG_WERROR]]) fi From e2f1d7dde575fbf4ce1cc17e1c7ff7fbbaeca441 Mon Sep 17 00:00:00 2001 From: nadyka Date: Fri, 8 Jul 2022 19:01:15 +0400 Subject: [PATCH 17/45] resolve incorrect merge --- src/util/system.cpp | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/util/system.cpp diff --git a/src/util/system.cpp b/src/util/system.cpp new file mode 100644 index 0000000000..e69de29bb2 From 7bfec794285c3b1ef5397341e3a80ff3e93cf9ba Mon Sep 17 00:00:00 2001 From: nadyka Date: Fri, 8 Jul 2022 13:43:29 +0400 Subject: [PATCH 18/45] mempool_ * test updates and fixes #50 PR --- test/functional/mempool_accept.py | 2 +- test/functional/mempool_spend_coinbase.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/functional/mempool_accept.py b/test/functional/mempool_accept.py index 089e944ef9..43f2a48123 100755 --- a/test/functional/mempool_accept.py +++ b/test/functional/mempool_accept.py @@ -50,7 +50,7 @@ class MempoolAcceptanceTest(BGLTestFramework): def set_test_params(self): self.num_nodes = 1 self.extra_args = [[ - '-txindex', + '-txindex', '-permitbaremultisig=0', ]] * self.num_nodes self.supports_cli = False diff --git a/test/functional/mempool_spend_coinbase.py b/test/functional/mempool_spend_coinbase.py index 91d5fb7b79..d4b4ff6f0a 100755 --- a/test/functional/mempool_spend_coinbase.py +++ b/test/functional/mempool_spend_coinbase.py @@ -20,7 +20,6 @@ class MempoolSpendCoinbaseTest(BGLTestFramework): def set_test_params(self): self.num_nodes = 1 - self.setup_clean_chain = True def run_test(self): wallet = MiniWallet(self.nodes[0]) From 2f7353234d8f836468cbccdaba702e2d2e71758e Mon Sep 17 00:00:00 2001 From: wu-emma <63286384+wu-emma@users.noreply.github.com> Date: Fri, 5 Aug 2022 21:23:35 +0000 Subject: [PATCH 19/45] Update README.md --- README.md | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56cb836e50..cc4c956ced 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,31 @@ Features: * Optional module for ECDH key exchange. * Optional module for Schnorr signatures according to [BIP-340](https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki). -Implementation details ----------------------- +Bitgesell is a fork of Bitcoin with the following changes:
+* Block Reward [Burn rate is 90% of tx fees] + ```sh + nFees*0.1 + GetBlockSubsidy() + ``` +* Block Weight [10 times smaller than Bitcoin] + ```sh + <= 400,000 + ``` +* 100% Segwit + ```sh + Eliminates problems with legacy type of transactions + ``` +* Halving Interval [Halving cycle of bitgetsell is 1yr while that of BGL is 4yr] + ```sh + 210000 blocks/4 + ``` +* Block Subsidy [Max coins = 21,000,000]
+ `210000 blocks/4`

+ `Hashing algorithm for blocks is Keccak (sha-3).`

+ `The master branch is regularly built (see` [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) `for instructions) and tested, but is not guaranteed to be completely stable.`

+ [tags](https://github.com/BitgesellOfficial/bitgesell/tags) `are created regularly to indicate new official, stable release versions of BGL Core.`
+ + +### Built With * General * No runtime heap allocation. From 5fb5b10a8960b5101586a44a1af9651340226234 Mon Sep 17 00:00:00 2001 From: brunoerg Date: Tue, 26 Apr 2022 14:39:07 -0300 Subject: [PATCH 20/45] test, contrib, refactor: use `with` when opening a file --- test/functional/feature_config_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/feature_config_args.py b/test/functional/feature_config_args.py index 8ed3700b29..2029b13534 100755 --- a/test/functional/feature_config_args.py +++ b/test/functional/feature_config_args.py @@ -407,7 +407,7 @@ def run_test(self): # Check that using non-existent datadir in conf file fails conf_file = os.path.join(default_data_dir, "BGL.conf") - # datadir needs to be set before [chain] section + # datadir needs to be set before [regtest] section with open(conf_file, encoding='utf8') as f: conf_file_contents = f.read() with open(conf_file, 'w', encoding='utf8') as f: From 3f20413111be8df3af6f13a120381df05c3142bc Mon Sep 17 00:00:00 2001 From: Rjected Date: Sun, 27 Oct 2019 23:01:22 -0400 Subject: [PATCH 21/45] Add search for first blk file with pruned node --- contrib/linearize/linearize-data.py | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/contrib/linearize/linearize-data.py b/contrib/linearize/linearize-data.py index b7cd28b1ee..d5b9165ba3 100755 --- a/contrib/linearize/linearize-data.py +++ b/contrib/linearize/linearize-data.py @@ -16,6 +16,7 @@ import hashlib import datetime import time +import glob from collections import namedtuple settings = {} @@ -53,6 +54,30 @@ def mkblockmap(blkindex): blkmap[hash] = height return blkmap +# This gets the first block file ID that exists from the input block +# file directory. +def getFirstBlockFileId(block_dir_path): + # First, this sets up a pattern to search for block files, for + # example 'blkNNNNN.dat'. + blkFilePattern = os.path.join(block_dir_path, "blk[0-9][0-9][0-9][0-9][0-9].dat") + + # This search is done with glob + blkFnList = glob.glob(blkFilePattern) + + if len(blkFnList) == 0: + print("blocks not pruned - starting at 0") + return 0 + # We then get the lexicographic minimum, which should be the first + # block file name. + firstBlkFilePath = min(blkFnList) + firstBlkFn = os.path.basename(firstBlkFilePath) + + # now, the string should be ['b','l','k','N','N','N','N','N','.','d','a','t'] + # So get the ID by choosing: 3 4 5 6 7 + # The ID is not necessarily 0 if this is a pruned node. + blkId = int(firstBlkFn[3:8]) + return blkId + # Block header and extent on disk BlockExtent = namedtuple('BlockExtent', ['fn', 'offset', 'inhdr', 'blkhdr', 'size']) @@ -62,7 +87,9 @@ def __init__(self, settings, blkindex, blkmap): self.blkindex = blkindex self.blkmap = blkmap - self.inFn = 0 + # Get first occurring block file id - for pruned nodes this + # will not necessarily be 0 + self.inFn = getFirstBlockFileId(self.settings['input']) self.inF = None self.outFn = 0 self.outsz = 0 From da362748c1e903f759ea6150ca3f33fad89618e2 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Mon, 24 Oct 2022 11:56:53 +0200 Subject: [PATCH 22/45] contrib/linearize/linearize-data: Update linearize data to match BGL hashing algorithm. Update the script to use hashing algorithm for BGL blocks: Keccak (sha-3). --- contrib/linearize/linearize-data.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/linearize/linearize-data.py b/contrib/linearize/linearize-data.py index d5b9165ba3..6f643cfbe6 100755 --- a/contrib/linearize/linearize-data.py +++ b/contrib/linearize/linearize-data.py @@ -19,6 +19,8 @@ import glob from collections import namedtuple + + settings = {} def calc_hash_str(blk_hdr): From ddcd809a570ac50d144b0b925782a8b9760aea12 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Wed, 26 Oct 2022 09:05:19 +0200 Subject: [PATCH 23/45] test/functional/wallet_taproot: Encode correct segwit address for BGL network. Fixes wallet_taproot functional test. --- test/functional/wallet_taproot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/wallet_taproot.py b/test/functional/wallet_taproot.py index 55becb28f0..0f9dbfa619 100755 --- a/test/functional/wallet_taproot.py +++ b/test/functional/wallet_taproot.py @@ -184,6 +184,7 @@ def compute_taproot_address(pubkey, scripts): def compute_raw_taproot_address(pubkey): return encode_segwit_address("rbgl", 1, pubkey) + class WalletTaprootTest(BGLTestFramework): """Test generation and spending of P2TR address outputs.""" From e45bb236c1712d7a2adc4ab1e06d91a0923f7293 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Wed, 26 Oct 2022 09:21:01 +0200 Subject: [PATCH 24/45] test/functional/feature_addrman: Use keccak for BGL network. Fixes feature_addrman functional test. --- test/functional/feature_addrman.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/feature_addrman.py b/test/functional/feature_addrman.py index dadf29f7b5..7d486eedee 100755 --- a/test/functional/feature_addrman.py +++ b/test/functional/feature_addrman.py @@ -39,6 +39,7 @@ def serialize_addrman( r += struct.pack(" Date: Wed, 26 Oct 2022 11:35:40 +0200 Subject: [PATCH 25/45] test/functional/data: Generate proper rpc_getblockstats for BGL network. Fixes rpc_getblockstats functional test case. --- test/functional/data/rpc_getblockstats.json | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/data/rpc_getblockstats.json b/test/functional/data/rpc_getblockstats.json index 1ba1eef475..b8160d16df 100644 --- a/test/functional/data/rpc_getblockstats.json +++ b/test/functional/data/rpc_getblockstats.json @@ -223,6 +223,7 @@ "utxo_increase_actual": 4, "utxo_size_inc": 376, "utxo_size_inc_actual": 288 + } ] } \ No newline at end of file From a8b2674af05e291671d5e8bbdd8081ce833ee307 Mon Sep 17 00:00:00 2001 From: nadyka Date: Sat, 29 Oct 2022 19:39:01 +0400 Subject: [PATCH 26/45] Update error message to BGLd. --- test/functional/wallet_multiwallet.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/wallet_multiwallet.py b/test/functional/wallet_multiwallet.py index 330e860e1f..66bef9e6b5 100755 --- a/test/functional/wallet_multiwallet.py +++ b/test/functional/wallet_multiwallet.py @@ -422,5 +422,6 @@ def wallet_file(name): self.nodes[1].loadwallet(wallet) + if __name__ == '__main__': MultiWalletTest().main() From 353a352f4588e6fcc5c4186948ed445b4083231a Mon Sep 17 00:00:00 2001 From: nadyka Date: Mon, 22 Aug 2022 18:48:59 +0400 Subject: [PATCH 27/45] generate seeds update --- contrib/seeds/asmap.py | 8 -------- contrib/seeds/generate-seeds.py | 17 +++++------------ contrib/seeds/makeseeds.py | 9 ++++----- 3 files changed, 9 insertions(+), 25 deletions(-) diff --git a/contrib/seeds/asmap.py b/contrib/seeds/asmap.py index e28e5cf532..f0efc9aad5 100644 --- a/contrib/seeds/asmap.py +++ b/contrib/seeds/asmap.py @@ -17,7 +17,6 @@ def net_to_prefix(net: Union[ipaddress.IPv4Network,ipaddress.IPv6Network]) -> List[bool]: """ Convert an IPv4 or IPv6 network to a prefix represented as a list of bits. - IPv4 ranges are remapped to their IPv4-mapped IPv6 range (::ffff:0:0/96). """ num_bits = net.prefixlen @@ -57,14 +56,12 @@ class _VarLenCoder: A class representing a custom variable-length binary encoder/decoder for integers. Each object represents a different coder, with different parameters minval and clsbits. - The encoding is easiest to describe using an example. Let's say minval=100 and clsbits=[4,2,2,3]. In that case: - x in [100..115]: encoded as [0] + [4-bit BE encoding of (x-100)]. - x in [116..119]: encoded as [1,0] + [2-bit BE encoding of (x-116)]. - x in [120..123]: encoded as [1,1,0] + [2-bit BE encoding of (x-120)]. - x in [124..131]: encoded as [1,1,1] + [3-bit BE encoding of (x-124)]. - In general, every number is encoded as: - First, k "1"-bits, where k is the class the number falls in (there is one class per element of clsbits). @@ -269,10 +266,8 @@ def make_default(val: int, sub: "_BinNode") -> "_BinNode": class ASMap: """ A class whose objects represent a mapping from subnets to ASNs. - Internally the mapping is stored as a binary trie, but can be converted from/to a list of ASNEntry objects, and from/to the binary asmap file format. - In the trie representation, nodes are represented as bare lists for efficiency and ease of manipulation: - [0] means an unassigned subnet (no ASN mapping for it is present) @@ -420,7 +415,6 @@ def __str__(self) -> str: def to_entries(self, overlapping: bool = True, fill: bool = False) -> List[ASNEntry]: """ Convert the mappings in this ASMap object to a list of ASNEntry objects. - Arguments: overlapping: Permit the subnets in the resulting ASNEntry to overlap. Setting this can result in a shorter list. @@ -440,7 +434,6 @@ def from_random(num_leaves: int = 10, max_asn: int = 6, - Number of leaves in its trie (at least 1) - Maximum ASN value (at least 1) - Probability for leaf nodes to be unassigned - The number of leaves in the resulting object may be less than what is requested. This method is mostly intended for testing. """ @@ -534,7 +527,6 @@ def recurse(node: _BinNode, default: int) -> List: def to_binary(self, fill: bool = False) -> bytes: """ Convert this ASMap object to binary. - Argument: fill: permit the resulting binary encoder to contain mappers for unassigned subnets in this ASMap object. Doing so may diff --git a/contrib/seeds/generate-seeds.py b/contrib/seeds/generate-seeds.py index d0dffc544b..961b78d3cf 100755 --- a/contrib/seeds/generate-seeds.py +++ b/contrib/seeds/generate-seeds.py @@ -7,26 +7,20 @@ This script expects two text files in the directory that is passed as an argument: - nodes_main.txt nodes_test.txt - -These files must consist of lines in the format - +These files must consist of lines in the format : []: .onion: .b32.i2p: - The output will be two data structures with the peers in binary format: - static const uint8_t chainparams_seed_{main,test}[]={ ... } - These should be pasted into `src/chainparamsseeds.h`. ''' -from __future__ import print_function, division + from base64 import b32decode from enum import Enum import struct @@ -58,7 +52,7 @@ def name_to_bip155(addr): if len(vchAddr) == 32: return (BIP155Network.I2P, vchAddr) else: - raise ValueError(f'Invalid I2P {vchAddr}') + raise ValueError(f"Invalid I2P {vchAddr}") elif '.' in addr: # IPv4 return (BIP155Network.IPV4, bytes((int(x) for x in addr.split('.')))) elif ':' in addr: # IPv6 or CJDNS @@ -156,13 +150,13 @@ def process_nodes(g, f, structname): def main(): if len(sys.argv)<2: print(('Usage: %s ' % sys.argv[0]), file=sys.stderr) - exit(1) + sys.exit(1) g = sys.stdout indir = sys.argv[1] g.write('#ifndef BGL_CHAINPARAMSSEEDS_H\n') g.write('#define BGL_CHAINPARAMSSEEDS_H\n') g.write('/**\n') - g.write(' * List of fixed seed nodes for the falco network\n') + g.write(' * List of fixed seed nodes for the bitgesell network\n') g.write(' * AUTOGENERATED by contrib/seeds/generate-seeds.py\n') g.write(' *\n') g.write(' * Each line contains a BIP155 serialized (networkID, addr, port) tuple.\n') @@ -176,4 +170,3 @@ def main(): if __name__ == '__main__': main() - diff --git a/contrib/seeds/makeseeds.py b/contrib/seeds/makeseeds.py index deaa1fe59a..23d94d7101 100755 --- a/contrib/seeds/makeseeds.py +++ b/contrib/seeds/makeseeds.py @@ -135,11 +135,10 @@ def filterbyasn(asmap: ASMap, ips: List[Dict], max_per_asn: Dict, max_per_net: i (b) trimming ips to have at most `max_per_asn` ips from each asn in each net. """ # Sift out ips by type - ips_ipv4 = [ip for ip in ips if ip['net'] == 'ipv4'] - ips_ipv6 = [ip for ip in ips if ip['net'] == 'ipv6'] + ips_ipv46 = [ip for ip in ips if ip['net'] in ['ipv4', 'ipv6']] ips_onion = [ip for ip in ips if ip['net'] == 'onion'] - # Filter IPv4 by ASN + # Filter IPv46 by ASN, and limit to max_per_net per network result = [] net_count: Dict[str, int] = collections.defaultdict(int) asn_count: Dict[int, int] = collections.defaultdict(int) @@ -185,6 +184,7 @@ def main(): asmap = ASMap.from_binary(f.read()) print('Done.', file=sys.stderr) + print('Loading and parsing DNS seeds…', end='', file=sys.stderr, flush=True) lines = sys.stdin.readlines() ips = [parseline(line) for line in lines] print('Done.', file=sys.stderr) @@ -216,7 +216,7 @@ def main(): print(f'{ip_stats(ips):s} Require a known and recent user agent', file=sys.stderr) # Sort by availability (and use last success as tie breaker) ips.sort(key=lambda x: (x['uptime'], x['lastsuccess'], x['ip']), reverse=True) - # Filter out hosts with multiple ports, these are likely abusive + # Filter out hosts with multiple bitcoin ports, these are likely abusive ips = filtermultiport(ips) print(f'{ip_stats(ips):s} Filter out hosts with multiple BGL ports', file=sys.stderr) # Look up ASNs and limit results, both per ASN and globally. @@ -224,7 +224,6 @@ def main(): print(f'{ip_stats(ips):s} Look up ASNs and limit results per ASN and per net', file=sys.stderr) # Sort the results by IP address (for deterministic output). ips.sort(key=lambda x: (x['net'], x['sortkey'])) - for ip in ips: if ip['net'] == 'ipv6': print(f"[{ip['ip']}]:{ip['port']}", end="") From 13bc000e22a061a7756a7656eb3afa9d14b1f50f Mon Sep 17 00:00:00 2001 From: Korrrba Date: Wed, 26 Oct 2022 10:22:18 +0200 Subject: [PATCH 28/45] test/functional/p2p_segwit: Fix the test case by adjusting to BGL network. Fix the test case by setting the correct MAX_BLOCK_WEIGHT in test framework for BGL which is 10x less than Bitcoin and setting correct prefix for BGL regtest network. --- test/functional/p2p_segwit.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py index b0f29667b4..6457014f65 100755 --- a/test/functional/p2p_segwit.py +++ b/test/functional/p2p_segwit.py @@ -886,7 +886,7 @@ def test_witness_block_size(self): # This should give us plenty of room to tweak the spending tx's # virtual size. NUM_DROPS = 200 # 201 max ops per script! - NUM_OUTPUTS = 50 + NUM_OUTPUTS = 5 witness_script = CScript([OP_2DROP] * NUM_DROPS + [OP_TRUE]) script_pubkey = script_to_p2wsh_script(witness_script) @@ -927,8 +927,10 @@ def test_witness_block_size(self): block.solve() assert_equal(block.get_weight(), MAX_BLOCK_WEIGHT + 1) # Make sure that our test case would exceed the old max-network-message - # limit - assert len(block.serialize()) > 2 * 1024 * 1024 + # limit. For BGL this value is adjusted to MAX_BLOCK_WEIGHT / 2 since the + # Segwit is enabled by default and the serialized block size is less than + # len(block.get_weight()) + assert len(block.serialize()) > MAX_BLOCK_WEIGHT / 2 test_witness_block(self.nodes[0], self.test_node, block, accepted=False) @@ -1996,6 +1998,7 @@ def serialize_with_bogus_witness(tx): r += struct.pack(" Date: Mon, 7 Nov 2022 16:54:35 +0100 Subject: [PATCH 29/45] test/functional/wallet_singer: Correct expected BGL network address values. --- test/functional/wallet_signer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/functional/wallet_signer.py b/test/functional/wallet_signer.py index e78c479233..54d1b43830 100755 --- a/test/functional/wallet_signer.py +++ b/test/functional/wallet_signer.py @@ -99,21 +99,21 @@ def test_valid_signer(self): assert_equal(hww.getwalletinfo()["keypoolsize"], 30) address1 = hww.getnewaddress(address_type="bech32") - assert_equal(address1, "bcrt1qm90ugl4d48jv8n6e5t9ln6t9zlpm5th68x4f8g") + assert_equal(address1, "rbgl1qm90ugl4d48jv8n6e5t9ln6t9zlpm5th67ecp7z") address_info = hww.getaddressinfo(address1) assert_equal(address_info['solvable'], True) assert_equal(address_info['ismine'], True) assert_equal(address_info['hdkeypath'], "m/84h/1h/0h/0/0") address2 = hww.getnewaddress(address_type="p2sh-segwit") - assert_equal(address2, "2N2gQKzjUe47gM8p1JZxaAkTcoHPXV6YyVp") + assert_equal(address2, "MHLLa9DQyiTkwrTMjKL3NSikudmoifhjQF") address_info = hww.getaddressinfo(address2) assert_equal(address_info['solvable'], True) assert_equal(address_info['ismine'], True) assert_equal(address_info['hdkeypath'], "m/49h/1h/0h/0/0") address3 = hww.getnewaddress(address_type="legacy") - assert_equal(address3, "n1LKejAadN6hg2FrBXoU1KrwX4uK16mco9") + assert_equal(address3, "F2JsqNDPxUREheXBJE9vffuN4E4gCH1yVC") address_info = hww.getaddressinfo(address3) assert_equal(address_info['solvable'], True) assert_equal(address_info['ismine'], True) From 59b4bba9392bce8fa70c1fa98455cb4fa8d160d8 Mon Sep 17 00:00:00 2001 From: Andrew Chow Date: Wed, 23 Jun 2021 16:11:51 -0400 Subject: [PATCH 30/45] Create a tr() descriptor bech32m DescriptorScriptPubKeyMan by default --- test/functional/wallet_fundrawtransaction.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/wallet_fundrawtransaction.py b/test/functional/wallet_fundrawtransaction.py index 68b3883897..a377b29508 100755 --- a/test/functional/wallet_fundrawtransaction.py +++ b/test/functional/wallet_fundrawtransaction.py @@ -589,7 +589,7 @@ def test_locked_wallet(self): 'active': True }, { - 'desc': descsum_create('wpkh(tprv8ZgxMBicQKsPdYeeZbPSKd2KYLmeVKtcFA7kqCxDvDR13MQ6us8HopUR2wLcS2ZKPhLyKsqpDL2FtL73LMHcgoCL7DXsciA8eX8nbjCR2eG/1h/*h)'), + 'desc': descsum_create('tr(tprv8ZgxMBicQKsPdYeeZbPSKd2KYLmeVKtcFA7kqCxDvDR13MQ6us8HopUR2wLcS2ZKPhLyKsqpDL2FtL73LMHcgoCL7DXsciA8eX8nbjCR2eG/1h/*h)'), 'timestamp': 'now', 'active': True, 'internal': True @@ -1338,7 +1338,7 @@ def test_22670(self): # Make sure the default wallet will not be loaded when restarted with a high minrelaytxfee self.nodes[0].unloadwallet(self.default_wallet_name, False) feerate = Decimal("0.1") - self.restart_node(0, [f"-minrelaytxfee={feerate}", "-discardfee=0"]) # Set high minrelayfee, set discardfee to 0 for easier calculation + self.restart_node(0, [f"-minrelaytxfee={feerate}", "-discardfee=0", "-changetype=bech32", "-addresstype=bech32"]) # Set high minrelayfee, set discardfee to 0 for easier calculation self.nodes[0].loadwallet(self.default_wallet_name, True) funds = self.nodes[0].get_wallet_rpc(self.default_wallet_name) From 896efb77c7d10a785462082f38b66771829848c8 Mon Sep 17 00:00:00 2001 From: nadyka Date: Tue, 6 Dec 2022 00:43:31 +0400 Subject: [PATCH 31/45] sync/fix tests --- test/functional/feature_dbcrash.py | 10 +++++----- test/functional/feature_fee_estimation.py | 1 - test/functional/feature_rbf.py | 1 - test/functional/mempool_limit.py | 11 ++++++----- test/functional/mining_prioritisetransaction.py | 2 -- test/functional/p2p_segwit.py | 5 +++++ test/functional/rpc_createmultisig.py | 2 +- test/functional/rpc_rawtransaction.py | 5 +---- test/functional/test_framework/wallet.py | 2 ++ 9 files changed, 20 insertions(+), 19 deletions(-) diff --git a/test/functional/feature_dbcrash.py b/test/functional/feature_dbcrash.py index 1f87497cb6..0ae49d3624 100755 --- a/test/functional/feature_dbcrash.py +++ b/test/functional/feature_dbcrash.py @@ -59,9 +59,9 @@ def set_test_params(self): # Set different crash ratios and cache sizes. Note that not all of # -dbcache goes to the in-memory coins cache. - self.node0_args = ["-dbcrashratio=8", "-dbcache=4"] + self.base_args - self.node1_args = ["-dbcrashratio=16", "-dbcache=8"] + self.base_args - self.node2_args = ["-dbcrashratio=24", "-dbcache=16"] + self.base_args + self.node0_args = ["-dbcrashratio=8", "-dbcache=0.4"] + self.base_args + self.node1_args = ["-dbcrashratio=16", "-dbcache=0.8"] + self.base_args + self.node2_args = ["-dbcrashratio=24", "-dbcache=1.6"] + self.base_args # Node3 is a normal node with default args, except will mine full blocks # and txs with "dust" outputs @@ -234,9 +234,9 @@ def run_test(self): # each time through the loop, generate a bunch of transactions, # and then either mine a single new block on the tip, or some-sized reorg. for i in range(40): - self.log.info(f"Iteration {i}, generating 2500 transactions {self.restart_counts}") + self.log.info(f"Iteration {i}, generating 250 transactions {self.restart_counts}") # Generate a bunch of small-ish transactions - self.generate_small_transactions(self.nodes[3], 2500, utxo_list) + self.generate_small_transactions(self.nodes[3], 250, utxo_list) # Pick a random block between current tip, and starting tip current_height = self.nodes[3].getblockcount() random_height = random.randint(starting_tip_height, current_height) diff --git a/test/functional/feature_fee_estimation.py b/test/functional/feature_fee_estimation.py index 7025fdd8f6..674224889b 100755 --- a/test/functional/feature_fee_estimation.py +++ b/test/functional/feature_fee_estimation.py @@ -381,7 +381,6 @@ def test_acceptstalefeeestimates_option(self): self.start_node(0,extra_args=["-acceptstalefeeestimates"]) assert_equal(self.nodes[0].estimatesmartfee(1)["feerate"], fee_rate) - def run_test(self): self.log.info("This test is time consuming, please be patient") self.log.info("Splitting inputs so we can generate tx's") diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py index 6509c15e69..14f1f54565 100755 --- a/test/functional/feature_rbf.py +++ b/test/functional/feature_rbf.py @@ -387,7 +387,6 @@ def test_too_many_replacements_with_default_mempool_params(self): """ Test rule 5 (do not allow replacements that cause more than 100 evictions) without having to rely on non-default mempool parameters. - In order to do this, create a number of "root" UTXOs, and then hang enough transactions off of each root UTXO to exceed the MAX_REPLACEMENT_LIMIT. Then create a conflicting RBF replacement transaction. diff --git a/test/functional/mempool_limit.py b/test/functional/mempool_limit.py index 4b9b069f16..f042901be1 100755 --- a/test/functional/mempool_limit.py +++ b/test/functional/mempool_limit.py @@ -36,7 +36,7 @@ def set_test_params(self): def run_test(self): txouts = gen_return_txouts() - node=self.nodes[0] + node = self.nodes[0] miniwallet = MiniWallet(node) relayfee = node.getnetworkinfo()['relayfee'] @@ -57,10 +57,11 @@ def run_test(self): self.generate(node, COINBASE_MATURITY - 1) self.log.info('Create a mempool tx that will be evicted') - tx_to_be_evicted_id = miniwallet.send_self_transfer(from_node=node, fee_rate=relayfee)["txid"] - - # Increase the tx fee rate massively to give the subsequent transactions a higher priority in the mempool - base_fee = relayfee * 1000 + tx_to_be_evicted_id =miniwallet.send_self_transfer(from_node=node, fee_rate=relayfee)["txid"] + # Increase the tx fee rate to give the subsequent transactions a higher priority in the mempool + # The tx has an approx. vsize of 65k, i.e. multiplying the previous fee rate (in sats/kvB) + # by 130 should result in a fee that corresponds to 2x of that fee rate + base_fee = relayfee * 130 self.log.info("Fill up the mempool with txs with higher fee rate") for batch_of_txid in range(num_of_batches): diff --git a/test/functional/mining_prioritisetransaction.py b/test/functional/mining_prioritisetransaction.py index ab66201597..459ae6d5d8 100755 --- a/test/functional/mining_prioritisetransaction.py +++ b/test/functional/mining_prioritisetransaction.py @@ -20,7 +20,6 @@ ) from test_framework.wallet import MiniWallet - class PrioritiseTransactionTest(BGLTestFramework): def set_test_params(self): self.num_nodes = 1 @@ -149,7 +148,6 @@ def test_diamond(self): def run_test(self): self.wallet = MiniWallet(self.nodes[0]) - # Test `prioritisetransaction` required parameters assert_raises_rpc_error(-1, "prioritisetransaction", self.nodes[0].prioritisetransaction) assert_raises_rpc_error(-1, "prioritisetransaction", self.nodes[0].prioritisetransaction, '') diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py index 6457014f65..e43d1db8d3 100755 --- a/test/functional/p2p_segwit.py +++ b/test/functional/p2p_segwit.py @@ -2011,6 +2011,11 @@ def serialize(self): assert_raises_rpc_error(-22, "TX decode failed", self.nodes[0].decoderawtransaction, hexstring=serialize_with_bogus_witness(tx).hex(), iswitness=True) with self.nodes[0].assert_debug_log(['Superfluous witness record']): self.test_node.send_and_ping(msg_bogus_tx(tx)) + tx.wit.vtxinwit = [] # drop witness + assert_raises_rpc_error(-22, "TX decode failed", self.nodes[0].decoderawtransaction, + hexstring=serialize_with_bogus_witness(tx).hex(), iswitness=True) + with self.nodes[0].assert_debug_log(['Superfluous witness record']): + self.test_node.send_and_ping(msg_bogus_tx(tx)) @subtest def test_wtxid_relay(self): diff --git a/test/functional/rpc_createmultisig.py b/test/functional/rpc_createmultisig.py index 96c6b37cec..94204a3bba 100755 --- a/test/functional/rpc_createmultisig.py +++ b/test/functional/rpc_createmultisig.py @@ -144,7 +144,7 @@ def checkbalances(self): height = node0.getblockchaininfo()["blocks"] assert 150 < height < 350 - total = 149 * 200 + (height - 149 - 100) * 100 - decimal.Decimal("0.00037504") + total = 149 * 200 + (height - 149 - 100) * 100 - decimal.Decimal("0.000216") assert bal1 == 0 assert bal2 == self.moved assert_equal(bal0 + bal1 + bal2 + balw, total) diff --git a/test/functional/rpc_rawtransaction.py b/test/functional/rpc_rawtransaction.py index 0eb3ff059c..7057cb7ec8 100755 --- a/test/functional/rpc_rawtransaction.py +++ b/test/functional/rpc_rawtransaction.py @@ -3,8 +3,7 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Test the rawtransaction RPCs. - -Test the following RPCs: +Test the following RPCs:rpc_createmultisig.py - getrawtransaction - createrawtransaction - signrawtransactionwithwallet @@ -45,12 +44,10 @@ class multidict(dict): """Dictionary that allows duplicate keys. - Constructed with a list of (key, value) tuples. When dumped by the json module, will output invalid json with repeated keys, eg: >>> json.dumps(multidict([(1,2),(1,2)]) '{"1": 2, "1": 2}' - Used to test calls to rpc methods with repeated keys in the json object.""" def __init__(self, x): diff --git a/test/functional/test_framework/wallet.py b/test/functional/test_framework/wallet.py index 7a1b79b442..8dedbb8925 100644 --- a/test/functional/test_framework/wallet.py +++ b/test/functional/test_framework/wallet.py @@ -48,6 +48,8 @@ key_to_p2pkh_script, key_to_p2sh_p2wpkh_script, key_to_p2wpkh_script, + keyhash_to_p2pkh_script, + scripthash_to_p2sh_script, ) from test_framework.util import ( assert_equal, From ba6d796a317e21b8db7c8a9851207ceeee5ed003 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Mon, 12 Dec 2022 21:06:11 +0100 Subject: [PATCH 32/45] test: feature_maxuploadtarget: Adjust test values to BGL network. Adjust the block size to 400000 bytes and expected number of iterations until the node fails to accept new requests for old blocks. --- test/functional/feature_maxuploadtarget.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/functional/feature_maxuploadtarget.py b/test/functional/feature_maxuploadtarget.py index c114e2e564..0eb413d866 100755 --- a/test/functional/feature_maxuploadtarget.py +++ b/test/functional/feature_maxuploadtarget.py @@ -97,7 +97,6 @@ def run_test(self): daily_buffer = 144 * 400000 max_bytes_available = max_bytes_per_day - daily_buffer success_count = max_bytes_available // old_block_size - # 576MB will be reserved for relaying new blocks, so expect this to # succeed for ~8120 tries. for i in range(success_count): From 1677b6bab362b7eac9a28c1c2f437688051379d8 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Wed, 14 Dec 2022 13:58:34 +0100 Subject: [PATCH 33/45] test: rpc_fundrawtransaction: Fix shaky test by reordering fee test cases to the front. The rpc_fundrawtransaction fee test cases are shaky, and seem to depend on previous test cases. Workaround this by moving the fee tests to front. --- test/functional/wallet_fundrawtransaction.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/functional/wallet_fundrawtransaction.py b/test/functional/wallet_fundrawtransaction.py index a377b29508..ca446ebcff 100755 --- a/test/functional/wallet_fundrawtransaction.py +++ b/test/functional/wallet_fundrawtransaction.py @@ -128,10 +128,6 @@ def run_test(self): self.test_two_vin() self.test_two_vin_two_vout() self.test_invalid_input() - self.test_fee_p2pkh() - self.test_fee_p2pkh_multi_out() - self.test_fee_p2sh() - self.test_fee_4of5() self.test_spend_2of2() self.test_locked_wallet() self.test_many_inputs_fee() From 1fcb9c3f64a7a48b3d8accf3cf9857fe71ac57b5 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Fri, 16 Dec 2022 23:30:13 +0100 Subject: [PATCH 34/45] src/validation: Add BGL regtest network nBits to allowed PoW values. BGL regtest 0x207fffff == 545259519 as defined in genesis block for BGL in chainparams.cpp --- src/validation.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/validation.cpp b/src/validation.cpp index 9cc758636a..98e1f54657 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -3631,6 +3631,7 @@ std::vector ChainstateManager::GenerateCoinbaseCommitment(CBlock& bool nBitsNotIn(uint32_t nBits) { // These numbers are computed from UintToArith256(params.powLimit).GetCompact() for each chain + // regtest 0x207fffff == 545259519 if (nBits == 553705471 || nBits == 521142271 || nBits == 503543726 || nBits == 545259519) { return false; } @@ -3671,6 +3672,8 @@ static bool ContextualCheckBlockHeader(const CBlockHeader& block, BlockValidatio // Check proof of work const Consensus::Params& consensusParams = chainman.GetConsensus(); if (block.nBits != GetNextWorkRequired(pindexPrev, &block, consensusParams)) { + LogPrintf("ERROR: %s nBits %d vs %d\n", __func__, block.nBits, GetNextWorkRequired(pindexPrev, &block, consensusParams)); + if (nBitsNotIn(block.nBits)) { return state.Invalid(BlockValidationResult::BLOCK_INVALID_HEADER, "bad-diffbits", "incorrect proof of work"); } From f456e802ef0f68e7c936f3c416b8d73c77464205 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Mon, 19 Dec 2022 00:21:06 +0100 Subject: [PATCH 35/45] test: functional: Fix feature_block test for BGL. BGL max block weight is ten times smaller than Bitcoin, and even that consensus defines the same maximum number of SIGOPS in the block, due to signatures and transactions overhead, measured empirically using bisection, real maximum number of numTxes in sigops test for BGL is ~9 times less than the Bitcoin. The exact maximum measured is 371 numTxes for the maximum value b39 block size 399784 bytes. Adjust overspend test to spend 201 BGL instead of 51 as defined for Bitcoin. --- test/functional/feature_block.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/feature_block.py b/test/functional/feature_block.py index 1e0c7c969f..99aaf7e86d 100755 --- a/test/functional/feature_block.py +++ b/test/functional/feature_block.py @@ -517,7 +517,7 @@ def run_test(self): # Test sigops in P2SH redeem scripts # - # b40 creates 3333 tx's spending the 6-sigop P2SH outputs from b39 for a total of 19998 sigops. + # b40 creates 1072 tx's spending the 6-sigop P2SH outputs from b39 for a total of 6432 sigops. # The first tx has one sigop and then at the end we add 2 more to put us just over the max. # # b41 does the same, less one, so it has the maximum sigops permitted. From e2ca89537ab1c1b30e9bb207cafe4cf8efe7c402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Barbosa?= Date: Mon, 11 Nov 2019 22:21:43 +0000 Subject: [PATCH 36/45] zmq: Fix due to invalid argument and multiple notifiers --- test/functional/interface_zmq.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/interface_zmq.py b/test/functional/interface_zmq.py index b61f7bcbf3..50a760d1a2 100755 --- a/test/functional/interface_zmq.py +++ b/test/functional/interface_zmq.py @@ -181,6 +181,7 @@ def setup_zmq_test(self, services, *, recv_timeout=60, sync_blocks=True, ipv6=Fa return subscribers def test_basic(self): + # Invalid zmq arguments don't take down the node, see #17185. self.restart_node(0, ["-zmqpubrawtx=foo", "-zmqpubhashtx=bar"]) From 460d895a811fdafca623b99e1ca7504f51d263e5 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Tue, 20 Dec 2022 14:05:26 +0100 Subject: [PATCH 37/45] test: functional: interface_zmq: Fix the test for Bitgesell. Use correct keccak256 hash and single sha256 to verify block and transactions. --- test/functional/interface_zmq.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/interface_zmq.py b/test/functional/interface_zmq.py index 50a760d1a2..c920469036 100755 --- a/test/functional/interface_zmq.py +++ b/test/functional/interface_zmq.py @@ -38,8 +38,8 @@ except ImportError: pass -def hash256_reversed(byte_str): - return hash256(byte_str)[::-1] +def keccak256_reversed(byte_str): + return keccak256(byte_str)[::-1] def keccak256_reversed(byte_str): return keccak256(byte_str)[::-1] From 1e8a990e73cf1a2c22308ff1b4f64bdcf9c2bc7d Mon Sep 17 00:00:00 2001 From: Korrrba Date: Tue, 22 Nov 2022 09:06:40 +0100 Subject: [PATCH 38/45] test: p2p_dos_header_tree: Update testnet block headers for Bitgesell blockchain. Fix the failing test case be setting correct BGL testnet headers, and simulate fork by providing new mined headers: * First mined testnet block * >>> test.nodes[0].getblockheader(blockhash="000be42109fc4da13eb0689103d515437c8cc8099995f23722e2d43784cfc356", verbose=False) '000000203dd5063677584b973ff13e95db6d7deacf55b89293bededfb4eecfcd180000001ca60703d74686818e214ffa1177cccb3534b202dc6cfab1c7ef467d91f18f3beac5b263ffff0f1f6f050000' * Second mined testnet block * >>> test.nodes[0].getblockheader(blockhash="00026d186a158d1afe0f7c46c66db4e8284ed43f87bfb55000b0100892bc026c", verbose=False) '0000002056c3cf8437d4e22237f2959909c88c7c4315d5039168b03ea14dfc0921e40b00b8027f999b111a7f189ff9fc8173b95faba4cbb9bc00c0091a46c3baf4cfb9dbc4d6b263ffff0f1f370e0000' --- test/functional/data/blockheader_testnet3.hex | 1096 ++++++++--------- test/functional/p2p_dos_header_tree.py | 1 + 2 files changed, 549 insertions(+), 548 deletions(-) diff --git a/test/functional/data/blockheader_testnet3.hex b/test/functional/data/blockheader_testnet3.hex index 882133aa2b..a235c2838a 100644 --- a/test/functional/data/blockheader_testnet3.hex +++ b/test/functional/data/blockheader_testnet3.hex @@ -1,548 +1,548 @@ -fork:0000002043497fd7f826957108f4a30fd9cec3aeba79972084e90ead01ea3309000000000943e54375082c03172552ae841bab31ebf2463484574f6ce6fe9c3723e3defb719a485dffff001db8b63209 -fork:00000020da2809ab72cf2502ecb29137dbe63e51fb82fb5babe6c9530dd86dea000000005dfcdc47012c19a2708b53e820c71b529f616a45529d48bad484948c84685d572d9c485dffff001dd3530a08 -0100000043497fd7f826957108f4a30fd9cec3aeba79972084e90ead01ea330900000000bac8b0fa927c0ac8234287e33c5f74d38d354820e24756ad709d7038fc5f31f020e7494dffff001d03e4b672 -0100000006128e87be8b1b4dea47a7247d5528d2702c96826c7a648497e773b800000000e241352e3bec0a95a6217e10c3abb54adfa05abb12c126695595580fb92e222032e7494dffff001d00d23534 -0100000020782a005255b657696ea057d5b98f34defcf75196f64f6eeac8026c0000000041ba5afc532aae03151b8aa87b65e1594f97504a768e010c98c0add79216247186e7494dffff001d058dc2b6 -0100000010befdc16d281e40ecec65b7c9976ddc8fd9bc9752da5827276e898b000000004c976d5776dda2da30d96ee810cd97d23ba852414990d64c4c720f977e651f2daae7494dffff001d02a97640 -01000000dde5b648f594fdd2ec1c4083762dd13b197bb1381e74b1fff90a5d8b00000000b3c6c6c1118c3b6abaa17c5aa74ee279089ad34dc3cec3640522737541cb016818e8494dffff001d02da84c0 -01000000a1213bd4754a6606444b97b5e8c46e9b7832773ff434bd5f87ac45bc00000000d1e7026986a9cd247b5b85a3f30ecbabb6d61840d0abb81f905c411d5fc145e831e8494dffff001d004138f9 -010000007b0a09f26fdde2c432167d8349681c7801d0128f4dfae4dc5e68336600000000c1d71f59ce4419c793eb829380a41dc1ad48c19fcb0083b8f67094d5cae263ad81e8494dffff001d004ddad5 -01000000a62bc0c08afc1d12e6c6a7eb4a464c848190ac0e44123d5fa63a9ee2000000000214335cde9edeb6aa0195f68c08e5e46b07043e24aeff51fd9a3ff992ce6976a0e8494dffff001d02f33927 -01000000f9e2142a93185496f7b21314d8b6fa736d0a30fa3a6d339ab3a1ba9c0000000061974472615d348df6de106dbaaa08cf4dec65e39cefc62af6097b967b9bea52fde8494dffff001d00ca48a2 -010000001e93aa99c8ff9749037d74a2207f299502fa81d56a4ea2ad5330ff50000000002ec2266c3249ce2e079059e0aec01a2d8d8306a468ad3f18f06051f2c3b1645435e9494dffff001d008918cf -010000002e9afd58b91f15c3ec9eb0f01ed9d503134da1918b6bb416a9920e700000000029fb495afdb58f3a26d1c90fafec93aed840e2fa37ad6173ba1e7fadb7121ee57de9494dffff001d02e7f318 -0100000027e0ca29a9802c0a2390ecfa90a9bd814fecc54446510e155652dead000000007e8d5344557575c8f018cc62a32e8e0bd80638643b4ec34945ec4662fcab138142ea494dffff001d04acbc3c -01000000001f3ada9b561378e324e80ee68facd5d232f72f773b86328393054700000000eaf3be35e3f0ace8b6abdeb5509d72999eae2329657238b53fa437e319c8e96b99ea494dffff001d027801a8 -01000000781bc7847e15c3b936a6a6a178e38fa29ee6e4916a8a62e10795c69200000000d44c3443fa8bd88bf32b94b9257f09ce6fb6ec0d5420504d631568f8685200dfa1ea494dffff001d01f781d0 -01000000133991a938b505ee8f6f347f313c3372d82a9d8b42b08b0dd0fc086400000000a0ef58c239e0197a65aa248c2cf52c437d8c8ea30d1b835e630a87c941f7d4e9adea494dffff001d030ef2e0 -0100000028d34cdb13e555032e4bec55fcce3d0fef8212803fb1bab851e1259400000000542c71544b9f28bd5a6fec95ecd509ae49d0b04f8718c685d0751f71d38285d0c3ea494dffff001d056b3115 -010000006b00cf1ce31b33fe1e2c4648a0834dedd972ffb2a2f341f75ad7cbc400000000adebf7afcbf176f765aec16b74d92896f55c3d65e14dd1a8becee0871000291751eb494dffff001d006f85e8 -0100000043a78ddf30a2d28a42cc66f90d13cb8211ee0fca9dbf8a4cce8c19fe000000004edbd2b89cb6d6fd69b575a62bd4e3103b1e0ce19e31bccf9a093ad8ccd753cf7deb494dffff001d0591a0b3 -01000000489ac81592595a4004e14331cb096ffef12b1daf709f6378e9c3558d00000000c757bebd6f2c2c071a3cf739a4cf98b27441809790a5cf40652b46df8a98a473b0eb494dffff001d011aedb6 -01000000a9c570a45d959023551f9a694ace9c12206174f21383f30949ca3b9b00000000eaf93dbbfb3551a1ff8b6bd5ba4cea7508e790c23cd07b9d9e791936a79d5fd4b3eb494dffff001d0385a7dd -01000000d35d5fa860dc70c8bdaf12f18e16d8b4cc29d141c28d59cc317fe5ed00000000507dae091a9657b6c073863ca71ba6989a2cf4417fb81e940668568a35d34a7119ec494dffff001d00effec3 -0100000073379e3ff3dffd006e0090e52ac571a9a309490a23e64d15f8af291a0000000051f1c5b2b7c8f980e7715b4d3ce0180f99c44a16fc9c00ede2f5984b8d7cc22d16ed494dffff001d0082467f -01000000869845a3343adddfa5b1f534b507d9b67c3685b0f1d89d526cdbd34200000000823623e8c6fe2c449065d2c0ae57aeb4bfd8e9687126a6c99d1ce916e2fca63f4ded494dffff001d034f940c -010000005da49f64cf0025ab1111651d94748b00bdb00b780744b88b42f962c200000000fee9e254a5a74c858297e89ebcd2305ad2707a8acc131ad07f6abc0d8e38def969ee494dffff001d05c512e2 -010000006a65bc120bf3e6dfadc3b9543e48f8876cb826aed0d8f809bc34bb220000000090f489f48c88442aa7d9250f743b386558ba1fa2e7e240e5d32195d56cf1c34ffff0494dffff001d014394ce -01000000e3f21ff9cc51ef282bf6bebc90e6f96968a36a704452192724c839bd00000000b6d553c98016b66fcb4856ffedc13a2de720288d4c2e8fed86206981259791a23af1494dffff001d017f7044 -01000000e16daff1b16a81a3058d982e79550c9c9ba84a207a8b84ae092eb4b300000000f2f34dd423f99930aee95815b2885906f9cdeaba04a9bb076c1f359c2031732059f1494dffff001d01b322bb -0100000059ebd22dc26158414c60868355e78ab4b6891345fd97602f6c106d9c00000000e6c5bea3888e891bc5f9f8fcd166d332071d3b434e933763fb20db50e47dad3f5ef1494dffff001d0067a0e5 -0100000015ddbe82f202b27febceb00547dc19653604ef434f080848f22e3b0900000000e26e8971a53396413f0f39b88a697f593993999c8d07fa2dde608111fb2ccbd3daf1494dffff001d04362f37 -01000000a76595e37692f85d5de0438da8e75b5f611fd7b7071816b9ace8ba2b000000004cfb6d8faca8e8e77a71359d2cf0d12d2e52f266591f5fb807aa737c90869d2a81f2494dffff001d040e87a6 -01000000a774311853f32f32d87081529bb0506d5e4e90f7e455bb640081215f00000000228b387354daa9e5d38201811fe746591ab08a66bb3c4fc796a45535acb8c61baaf2494dffff001d01ebfd80 -01000000d0efaa4f6924659f1e0221f910e99f6fae76b36b759b212852d1343a000000005e40d3b65982e929433ee02037a60f05b62e70e6d51f608974fb1f2926169398bff2494dffff001d05c41c3a -010000004c600547d8ed4b9dc946bb455f64917131dd98974bf2dfda05afc3a800000000e5b01ac4a611211847b0777b9ba9e396b0b7348ac401041e4fb6168ed091691ccef2494dffff001d037a60b7 -01000000f571553e5aa32b8374bd5a0f3c58834a46e05727b64dbe62a942376600000000a91cac1e92c7c597af565594565f5b54e658fd2e022e4fc35eb92aa165d9aa4fd3f2494dffff001d02687811 -01000000d8273e218df68e333782ab3b79929a8609404bd85bc225b46debba3700000000e91f9128f70a0502d338221316a0a3a1f4181821f9d2220c3fce7b5cf8e305d514f3494dffff001d01f22226 -01000000ad615025da247d14a4f092f21c4fddc6d1a84e0b4b0929f9ccf81c180000000069cabd55fc74596566ed1548b6b4ac23943d33e817028d8bc8695a7bba82256e6df3494dffff001d00e066e2 -01000000e7da808f2e62c3ec1b443e2979c972f5f69f32146cb4385bcb6fdca2000000002f4092fa4879ecc1a39471c41f8fae20f10ad2204bcda34e79ac37cbbda973757df3494dffff001d0316a8a6 -01000000928b86c36f27d22c7d2baf27f31b50bbec7754d33d12aa37342723db00000000ece3fdbc63b66327abb251165ac0e19b1a02fb79295c9b6eb8b38b68c1c59107dff4494dffff001d05bcddf0 -0100000088c96b45d3e252cdc38780843e3679d74e858a1d218f9e3e0866335e00000000432cba2143d62f6349faf4f7956f7354733518c22a309284d96236a9d8c9616e0ef5494dffff001d026ebb97 -01000000885d76fd42926155ff9ebb1d3c41a517d7beb70564b98c3608719f740000000011a3bb257acf328a5bf1258bbb653b88a40b2d2a66db695a1ff1aa9d31d5186590f5494dffff001d02bcabdb -0100000093f416076c9b2eb0d147e8ce3bac03aa0784e44a6de6fc6f61183a2800000000be46ca90dd31022ee15f74c221208eadf1840e208a6adcaf127a60cc61d959c4d2f6494dffff001d02d68fd2 -01000000f9da861df4a86158e751c062e0a82d3c90e9038330f6447df4aee3d000000000972534907cdd1bc56f21adde0850dd17d988711a5c36ff81ec84610b4f762e9ae3f6494dffff001d00e96635 -01000000303a04a9f551e93a8ca88ceaba1c1d28892323564988ab7f99a9c0d70000000087a11f1aa5769968461b251ca9229f59acad999284e29976331cc13da46432364ff7494dffff001d012c54d2 -010000006b82062aabb19e4cc89addeded5c65ec28684cb54d30d463719f094800000000a98137fab92249e632091c38e3fe4c7fd8bba11bc956fe83c41357e217929e1e8ff7494dffff001d01edcd15 -01000000f7332e78d21adde6e52aa20362c71c1fd7bc745b3edff6e72497067500000000d521571198d3d2c4124b8bd9ba7842716b3bdd93236a92ca6af7c0a7adf9633c2df8494dffff001d031b1c13 -01000000c9ebcb8ea6f7e6a611117d0268639625cee28155c88708b4c09d4aea000000002d4c50f85979f0d2491d015206d867b273b353c253a173abf18dfbc5d96d088e50fa494dffff001d0397f4fc -01000000562c889f95c49db05f6a33277aae9bfe68e92f00a5d6f67ac8c366a100000000b7b0896c4a53b6aab15282cf53e1119676d89be0eda11064cadc40dc8ec194dc66fa494dffff001d01f0369e -01000000d41cef71d625aa5380f6cdc6452c67951e7e4f5b27b7904b4c2da413000000001c1e1096ab473aba614651fb98f47a375c03ec470daccff39a2d2d65bfd881b47bfa494dffff001d02454a15 -0100000095359a35957b89dd268576d562f49db7939baeda6de4855426ab5d9c000000006f68039da08fc314bcc71631be6f4b2ef5e0a2f9491fc078b11fad3dd49ac287a0fb494dffff001d02fbc213 -010000007d505f65addb5a3b50eb33cc5cd3bcafe03ee597c4027166aad2d2630000000090d221539ba3dabdcf0eacfa9d63f272c59dcc07e5e193271a24f4c11caf2c24d9fb494dffff001d05542cd6 -0100000013d5bb77b9235002acc75014e0c061c79de1752d3edc6859b4c0df7a000000000d17f332abe46c092877537ae764aa99e9b25d6bdd94f4007eac43f4861cf4675cfc494dffff001d02f62def -01000000612ec5ae40cb2a58e18d3124fd70664a4fcb9329f7d268d4bcaefacb00000000f7bc31a9984831440cfae529df94ba1680fa15b4490454454920ea8947af4a3765fc494dffff001d01c6c1af -01000000f13ce1836e92f0d12e4892eb229cbf6d50b9b2080af16b01f00b25de000000003f8f64092fddae84dad92736fb7d350e25bda6118bb1c660b06a4a5730fd352815fd494dffff001d055e65b0 -01000000ee24ae636bd70cadac603bf8cc631369bafbdfa8ac8effbc7dcb0fa5000000006faf8082545aef971aa4f92bd411947929c4949362300cd1302ec8bf74091fbe35fd494dffff001d0139a790 -010000006350a3cd2181f0eb75fa8c4022634ad85b6b9e1f9b7346a2eef5517900000000a09d738f407e2dcc888e8ecbde93458d8599720e0359a380d503ee56c688ef72f9fd494dffff001d02661caa -01000000a29d92b014057dbff2775280b8bae8b3877fa9a345f4972034c0711b00000000447bae5734b6c67dc36ae088869c18740a836d7a9feff0b349efdd7373a21358fdfd494dffff001d01b13c06 -01000000dcbf4a9455bf33482c2e17640cb89711468c0def1ba9f6e26e5a4aed00000000b555247649a364adb88b07afac3aa2f9ddf5c379154cb17d22f69fd74c84a2e24afe494dffff001d03144aac -010000000429b2aa02abcb8275705dc6482230dcb7c8678388fe7d75022c1ed800000000d5efd425dce6deb5750306ce8a0e5d045e0a607ee0b530866833e956dbeea0575ffe494dffff001d026ba2bb -01000000871d8a30b3b39373d71fb9c5c7d8d7a3c005ad688d9c8ca974cd330e000000005ec14d2b9adfccae05f78556b12fe2ca03cddd8bd67896fa5c6b6fb090e90177a3fe494dffff001d0147b26b -0100000019fd8a4e03a52e43322506693b696af00b828361e2a0968898708e43000000003853a270a7d9e6ad80fbf911146428c7ed63b2a1154df748f5a980fe20e9e8e2b3fe494dffff001d04538437 -01000000d250d67bd2679caba305e5e13698c7880098a1a4383c2f464fe9006d00000000d793e7c2c9416eae3d8d81046985db5f3d1df7922e869fda6ec5b22181ee46f725ff494dffff001d02391748 -010000009d83b8dbaae3dee980529b6dbd307df153a22b5b0fc35ea694a1faad000000003cfd458875824fadce673ca8c3125fd12c36b7230035b5f056a12d4e0d6b7e6b7eff494dffff001d0448653d -01000000a7d1ff0415c1d1be8a11c7dc20557e001d2fd96c0f396f52969e330d00000000ca20885f915b1d3c5e614cf76067fcf8d9894204db63664d512806ceab58ea27d2ff494dffff001d0327cc00 -01000000d98a10f08f4a7aa698ba8564a85bf821b747c7a44f656fb2e3b9335f00000000dad4bbd7663a69c07ff9579434972bb203d0d78d07858ddc7ca32513101c964e3d004a4dffff001d04df7568 -0100000031965a378dbb0d024df444b3ebf894f370d28df8abdd54565b598b9e000000007ad93f6eed4656fa7c0a606c08b067be35dfa5392eda5d77f133dabdfd08739794004a4dffff001d04facfab -0100000004cc9e4dad8b5d2166fb175e7bfe13ad56018dc81255d335336b8b38000000002d011ec2248c2899ca72a01673535807e2cd0fbcd4465ebafe2a002f3f6c9ec1a3004a4dffff001d04d4b0a1 -010000002093e7853950d588f1a36601643a97b7e187f6b7b274ae43d82410a6000000008ea10bf2d0d535c64d9db748aec8723566b270e0becacdb07438273654e59feea8004a4dffff001d04d4db49 -01000000eff17d4b5360e16151019597f732fc8f6e3b19ecf0c88e2ab1a2bd3a000000005d9b9c1d04856052c8f01497c9ce05d01c4c80c1c4296b15549ace3e04e2cc24e2004a4dffff001d02358897 -01000000bf5ea56c32a49508f0987cf0b18513d285edbe987b0dad25ceef3f1b00000000ba933ef648e2544227c7db41de45f0cf39aa612478c126e5ce5393668e230f1213014a4dffff001d044c6575 -0100000091ff63e6ab577bdc347fc87265fc316d53303bf28d0294a24791143300000000a97e4a6f79bb595fe0239f31549d5b06e13e7d5062e3707ebab0f38f0df5d1832e014a4dffff001d0083c449 -01000000bc749fb377c9a937702bd4ff35d376b43f5bc56726029a93a38e8232000000002bad8475b38ccd82eb98377132453c72706ae9626de3f913e8da2cca6795481166014a4dffff001d0594c61b -01000000a02349924ea393906e7fe3ffc2b9d152fdf55bcc1bace5251517168100000000448e52c8902abd28f82f3ff5eec8c97ab16b71b61674713cbc4f9a896f733b5ba5014a4dffff001d05c09af9 -0100000011f5cea7297afda99c9a141c4d438ff7708f451b571b4aa57b4b69f00000000087550789e53e3c66c4ce24d145f615c95f593d7557fa3ae2eee2a1f985549f9bfc014a4dffff001d00e035ee -010000004ba4c615f54d1557c5f691cb614cecb9edbad0011ebbd3b94fd458ee00000000c9782c5584bbe7c3a51f048dbf1e428e0b0e092607ea6514c401f13a45afd2b6cd024a4dffff001d049ecd2a -01000000718886f10113146ac974a449c8b5bb205e0307f42d1b81990cf1991e00000000b88f0b4d80b631a24a15d7c640ecc15ee82188bb16d692be42467e21b3971c1421044a4dffff001d03e07f40 -0100000081fbffbf5c27e4e908c14bc8f303a4d91bb71ae05445e839c531ec81000000002aefeed1a7378f70e1f434bde89af706e1777993d25d9a95f5b4f4a0d83bcda8d8044a4dffff001d02cda9e0 -010000006d7f371b437cc054548511f0f9ec50b6e04bb4f3a4915a099c3bad36000000005b72bacbca2f6bb848d4753733f6427849b1aa4805b244e2751c38ff8d3e339c41054a4dffff001d0018ffae -01000000b82c2d751368b79004a8e15e5b9f1bc7f620d5de2d6105d83d8ec2f6000000000cdfbd9bd57b78356abb0d07551b0c5c20d5258091604be05674d4d19455df2fb8054a4dffff001d003c4d86 -010000006efef1bc9d35256bbe500ee9c92230e0f987296e373e20ee7f3da4710000000030a2d3961a799e229a81337790254ebaefa055bb85ec7f03e5c8e9c3250eb35ad7054a4dffff001d0514a76d -01000000e789ed685960b594652b9b83a28ded0995725d6ad82b2f358058cbe80000000035b73fb2084e2e8faa28334b17c12668004b7cc8965831aaba65b38b7c54ba97ff064a4dffff001d055247e5 -010000000606ede205a1002e0995f8d009de821d488e22fb37167bcc9120afbe00000000f6f0d5c7f8204a7142f2e37a7cb406e0a57fd7c9784c12111c55a1cde5418ed11a074a4dffff001d01a5f8d1 -010000006da3e0f7fa132425557519508e4e97cbec301a33e25d4b65ac054a0d00000000d657340c13f9f8accfc3af62529a25d3d9e656caf2993fd3166f73850f397c228e074a4dffff001d0309686d -01000000cb9c32345bb264b3b2a6e96c8843f65c9598e4948737c569c0a00073000000000894a15ed694c745d87d2135f90eb9dcf8b454937b48c82132d52405e0d4c4689f074a4dffff001d02d5845a -0100000095349f59ed0c0ce5ab0de43b9d55fbc7b8afac7eb6dacebeaaf290f100000000df9bf22064b03cf08e658257b5d19662fdbe3d7acd27894cef0d3f9ff5a657bbbc074a4dffff001d00a13d79 -010000000be1a15c8ae486da44f0585514eea60780091e52e35f838cd1572bf50000000077333896bed3021acee751bf0c073d95bbdc99125f4298c052db8998bf7c3270f9084a4dffff001d008f86bf -01000000c0b7b630de7b1bd92c4be9d32e19faeadd68f60316ec97db96eaec0f000000005e3c98a964d941f4abd129531d0ee81cd5e7dc098179c3188ba36ccd1e5f9fff7e094a4dffff001d03d8a118 -01000000ae3c51439dc8f2bdd807e1d88c25a5a0b1a3005bcbb50bbb4e48493f00000000ac719d460d514cc4489597ac78e995276865ac07d7606a313c12b16e769b9294f50a4a4dffff001d04735f73 -01000000ce12350c698e84085e7b62c039249c63cb6a6cc9404776c9cc7fba8800000000ca128b2e74fafb345ad249d61c538f75a2a230bbf2266d470d47986555894deb370b4a4dffff001d001c0a17 -010000003dcca8252a636d4c0b8bc4ed9285b749434aaebc29965fc691a635ea00000000baebe5ae323c2bc5c316f6a8f1947b4666c7707c9ae127a03e6429fea7624ae53b0b4a4dffff001d00b4a44c -01000000f6cd7f4cec06d5c6aea54e64b45f049640680e4cb8249cf18587b314000000004a1b2b51da86ee82eadce5d3b852aa8f9b3e63106d877e129c5cf450b47f5c02480c4a4dffff001d02552721 -01000000c64e139bfae4adcd96860bbef3969b84851dc4d4fd8d06f16cd03698000000005e4b195fd24b314f69f7bb5b0139861b0f07a1286b8f6f42dbb6c82524bfdb93890c4a4dffff001d033b3297 -01000000a3e811a098612235feb5e1acb407cd98132a9d5f4dd99aa8d8b576ea0000000025a13ad0cce0eeae69ddb545bda3b490230e68dbf0687af3ddfa132caebadd7cb30c4a4dffff001d04a39aa9 -01000000ab5ab86fe14c9c765d8cdfd67f9bd5d41505f9f9f67e4da1851f099700000000beb6740250c060fa7b472f4daea18186d47e266dfafc88f088d7efe3ca5a2ac1060d4a4dffff001d0511eae4 -010000006ee9f67721369cabaf6e3e9045b2efb70bc1344256dda634a92eec5200000000d5b0833f82460e5ea635a31c60314eec20bb317f2cdaf354023ed4225e31f264380e4a4dffff001d03a74f10 -01000000b3ef61423747695daed4acef8980b5ef4c8feaaa908b3fdc6fbecdab000000004fd416b35e12b775e2899ba509a06822ed8b6627311364f5195d32ca6a314dbb3d0e4a4dffff001d0255ab96 -010000001c75c30c7bb6391ec7d94f6d52bd2aeb0b8f5224907b0106791ccdd70000000016f86bf97a3dda131f108ab4ab456d5ed3cc5e67eec631d8fa044b95c19f3449410e4a4dffff001d048e1c98 -01000000a8bb0604235d5310973b23a5c797442a1ae8c07b96d8cd33c191b45300000000322948a4806acfeca2b32248d0e183c8eb09d5e5ef48adf33777307635414cc05b0e4a4dffff001d00edcc80 -010000004d37f2af0c42371bb77b52cfe7f539e550e126631dbae6056e54dec80000000014238140ff083fe67f0d5c0627857c4330c4c96187964f42b680ec460ad0ccd6620e4a4dffff001d048185d3 -0100000087e774423a88647a4567d3a15e7099b7f271d8d846066af9776ef4ca000000000d90cd436a707875c28222178146cb93f6b048dc4e7555cf37b96757e3b90a5b740e4a4dffff001d030ccab4 -010000002f3be6a1d59b7786d8601330a47f030fcdf2354275fbafa8f4c129490000000098a23359c17ca2678e2039c8ff9081b18c4913749c9a081ac3f62958f09fa472e10e4a4dffff001d00c7fe6b -0100000050ac3cacdb94018a26258b82299da1307ccf3e2bf62a8f4acc19e02c00000000e09f513a024d3e13473d7a65f79073b36a90cc228613672d2a47812368ff42d1df0f4a4dffff001d007f726d -010000000e044393202d6b239c902d3f634e3dfdfa31ae439d339238ab1688e30000000055b5d3d496e196d624a471b818ba0b1778417ae335a544033536654fdda3eef6e80f4a4dffff001d03ed4240 -010000006396e6ba5ef4924d42f4f3114ec7507b81bce51e9e2eb51ca9c53c420000000049af9208af7b7a06d65ce1cfcab6ad9123a8dd7538fb0aca332c63429ff48d59ee0f4a4dffff001d056528d3 -01000000497b15826573b28c3e83a5d0c5ed30cf48b97dd6bd797849144ea2400000000018b50db063333a3261b9b41e887b4aa5b69becdc9967550507c120e22a76496710104a4dffff001d0408eda5 -01000000f5ddc74872eb899f5113e002f642e7b507f871d99a9900edba304aa0000000008f6546b850a14744afc3fe55f76f3959f40799bf4dcefe01ae4dba5903cf2fb553104a4dffff001d018f658e -01000000918a758ed54c9f495edb24ef3fe0f4432ede25853c324fc0f33a458f000000007a8e49b22114f17b5933fc7a8005421ff8370b8c48fa04c24323e91bd02d701492104a4dffff001d053e6e0f -0100000035893f7cdeb0e9af7d9fbda1584ef6d5219dfbb141b07b31257a1658000000008b9b3abfbe24d0e375deebb5f41e74949203c00772a678ba69c1126156c5489bfa104a4dffff001d012a69fb -01000000b6f8c48e94ca346b12373281acbaa08fa54d1cfdcd9c01e020cdda9f00000000be5b4753c6062e3eaed75f5412e43d6dce8d242c5816b436689f795f90536f28cf114a4dffff001d01b6887f -010000006006db00d70ce04a9940c203dc865b3c5d070f8c2d1295498ccd6c32000000008bc41e410a44b764dacb38c1138a3ff2c038a188a063509c6fed4aacaae72ee67b124a4dffff001d009531e5 -010000005e0dc170558d7b2872ddc85f481531dd823dffa66cc620c065adef7700000000e82e91ade6f25c8c6f4c053aa62d94926324ced07ba2f3aae072b13a2c5dc5f89e124a4dffff001d05ae2281 -0100000056320cab20bc1daf4fe3cf0115f2436523e44c40ebcf8c18e6b5822f00000000ce415eab9cba354ae042c22ac9f06c1a69d7a5dba67136fabef93d82f374dd3e01134a4dffff001d05a0d736 -01000000ccb063ab7d74a4030fd155615f046f95c8068078557568ce6b8092fc00000000ff33b27214141ef3d183b1d2499666c8635a57943ef5f515f4e60515f9ea0064c1134a4dffff001d021fa95a -010000007f6d7a61bd46dd27be404b8c883b812c2899095462591dcd75a96f1e0000000091777c00b7168a888d7a7db4b5f78758129e79ef909f92a84110b9f33f9c4c5505144a4dffff001d03526c4d -010000006be8cfe3e176d34d1a46f68b7d20a01ad3f9e2aa6f7540ef6a32573c00000000a870da2f87071c1366a22e77c829a6b85d745ab2279e0333872518d58b8dc0181a144a4dffff001d042c5db7 -010000009cb87223258aba43742de401d0157ee2b4057da95b23e1665880725700000000d54d368cd4243da3793fe3ba2af1570dd44a905d77ecd1a5cbd07cb8f72ad80f30144a4dffff001d048f280c -0100000052b771a3a85c26bc796ae0841ae894c6ad4527b062c94812d98b9c5800000000eeed0f4d975db8f66788f809ecf8c351d19ff5805276ef31983bc5682548342d52144a4dffff001d01aa3be1 -010000007ca07eb5637ef7696d7bf985b9114de19317a9abdfbe4ee79d8bcb1a00000000d7172956946d5547bd98c6a7040d353c3cb6285fbad096a1780f3b7503539adf3b154a4dffff001d0333fec4 -01000000326f947390bf03abdda16f673d26326d4b159e0b7f732a67286ba8e40000000085701296d47b03f388fd85431c2a9fc817afc9b24870a9a7da850d3a43a8154b71154a4dffff001d0164b7d2 -01000000a45af68df42f6f23ecc47e1cd0f41d47c1e5a26e8343951f9881e51400000000b7c1565d19d406d8c56448571d7e7da2ac559bf9b43887e16e4f416276ccb99b8e164a4dffff001d02ec606d -010000007eaec4cfdb152a8ecf8ec155b7343e2cc04750be00b96c61a477e57c00000000096a9263a5008a48e1c2b527b922a81cfc269fd401ce429976c587a951ff00798b174a4dffff001d015bd123 -01000000db36ec19328691975cb8c6666866be64b5be79ae42bee9fce3b5db5800000000b5e73d7d102476db3ca2379bdd891b311140b49626ef42937356ccdb8fed589103184a4dffff001d032d07eb -01000000d8f8a6686ecdeac529caa3ab9ecfa84a5fb62b06849ee09b8331d89e0000000038b408676c2a78fc63ddc1807804d17e8ad9433387cc3cc0edd68c07e4a714b610184a4dffff001d0437e51c -01000000c54675276e0401706aa93db6494dd7d1058b19424f23c8d7c01076da000000001c4375c8056b0ded0fa3d7fc1b5511eaf53216aed72ea95e1b5d19eccbe855f91a184a4dffff001d0336a226 -01000000bca72b7ccb44f1f0dd803f2c321143c9dda7f5a2a6ed87c76aac918a000000004266985f02f11bdffa559a233f5600c95c04bd70340e75673cadaf3ef6ac72b448194a4dffff001d035c84d8 -01000000769d6d6e4672a620669baa56dd39d066523e461762ad3610fb2055b400000000c50652340352ad79b799b870e3fa2c80804d0fc54063b413e0e2d6dc66ca3f9a55194a4dffff001d022510a4 -01000000e846583e9bd64108b3b89ad3883bec7731ddf1688a4cc8f79530fed800000000d2954cb816c87a9572bf822138dc84b5f6847fb502cce3d6073f9ffe40588571a1194a4dffff001d045d675b -010000001d72012c553d72f1f75863310ac0450e53a9e9026b9bf9556ca024ee000000001b7142acd57304290a2ade0e2c96d4fbd3ec924a02a5a0cd30c04f0e96265423ef194a4dffff001d041600b6 -01000000d2c5dfbfa04c7b67457c58f55a8d190dc5f8ec5ab94af969dfb748ba0000000069492041bb66f32c9bd69b74e7ba9bff6d4122e931eacf9c89b45eca2c35eb25211a4a4dffff001d03bca431 -01000000880be932720bbf22f1b14da0e6d16c2773f83699935d390e8621533f000000000f5d2500bce42137fe905225ed9a7380eceb7445c89011bfcc740cf2e9985a034e1a4a4dffff001d03d30924 -0100000000b0b174d61c08a92313345717ca7776a75cb67b77662c04ea7d3e2b00000000c8ac0a2fb1c01e0e0a5339d296eb072b2b9f9cb1d410a1fdd69a2c797094dda56c1a4a4dffff001d05225e37 -0100000089535760639df16a512f9caed73be0edf8c9b5466fcea14336f4a1bc000000001527b6224d45722c8ee351976c69c8fca59c11d3daef7abf1d189aab0e959f7ba71b4a4dffff001d0551b67c -01000000a61d5d887f8fd4c86f7111c2c5a4d0d593665b527cdf84dac7a0d57d0000000069b7df87a13603be78ccb048370aa1d2da0969f3b1822791d24aa921f8e268ffc51b4a4dffff001d055313f2 -010000007f678f2bbdae181d396123431faacd0b956633c30a55a9595ae6657f0000000085daad94e57797b9340c299e483531dfcd0f3c6996da98ffb2ab31bbe34e346a001c4a4dffff001d03ef37a0 -0100000054112b758ce49f1fd22d613250599ffe92c48202b6a477b9289f3d7900000000006302548e973a0d5764711fe84e1900dccedad0de9f054fbaaed3735b70ed62391c4a4dffff001d057c8c98 -01000000bb142886ff32916975d060c649c9119aca0b47e3f169acd3b7f1b9dd00000000ff166532d3f30299c5a82856e3411957dbe35fe7e17c4f58b92b2ef12c399dd7d41c4a4dffff001d04a2a121 -0100000029a936f51d08ad1f1353890300131fb7c04e20606eb48197dc863eb200000000c7bffe64778d6b4815226c6aab915985d8937fb0d3aaaa983bb513c69305caade61c4a4dffff001d0514cd03 -010000007d16758418920cd6d81283aa30108f20f37dc7114076e23025bb881800000000bda8c051f6e99590cbea0919b7a4189e4d3620ff3f46caa4b797fd52e204ff1fcc1d4a4dffff001d047ea807 -0100000087a6243ae1dc858cf91caf8a1f92dc473bdb14203c573b9d9bc134cb000000004caa084ebef276e6c454dff401271b39e55da21a8cd5a3afdf2d0e0f94b94a2dda1d4a4dffff001d039d9a6d -010000002d0a1a0b18f1f74ee797beef1bd4766a050a3480b5d7457303b5c54e00000000955ec547d5ff2bcbb3c9f108828e431a674576e1de0b8da794bfa3a70b794281ef1d4a4dffff001d0019c619 -0100000060500ea2003736b74596d4a507f5cf001daa55e7c93b53c77d32a32e00000000c545bbc6ae68433be1fbbf0ebf59f22751af853d0a6fd6c944458aa73ec7a014f71d4a4dffff001d03d8b5ea -01000000cc3d1b428029cae46634a9b96857475b2bc59619b8408e615f65b7b9000000003563548d04e24c89e7706a3f4ad681bebb3017133e87f7434d824db4e51f479b891e4a4dffff001d038a2031 -0100000073da9ccb3fdbdb4a9e3723a4bd5270c70ef3e78f448fad7e77a8eda0000000001f0a3749af61eeb59aff1499892c6641d1a464a26c156608d02cb74c264786ccfe1e4a4dffff001d0284512b -01000000ef5a98df2a193c1f8a5c271dc4d45de465b7122dfeefe96fedad105100000000cf330295467623ec1378dc6fa312103ad8a210b3e1351f2f4b6a57ac43fcd472071f4a4dffff001d050ac986 -0100000048256cc5b9ec6e7a12c378c93c1dd2ada859c9a9997adca75166c935000000008e3430573cfde2f3e1eece8aefe661dd841bcb665d35832415bab4f7526785229a1f4a4dffff001d02ae4b52 -01000000eb5d7c4b706d8891ddae3ba5bb57fcf509689fbc196f3ef73837f27b00000000226e90ccf96f41e04f011e69a86e18e96c09df6fbba19416132247f1d2a6e4073b204a4dffff001d0488c17c -01000000e5214de98aa5cdf1766c5129649895816f49ec82e93c4bbda787897f000000000abd68f73823585582e65529a8739e90bd943fc4e214ac00a20ca0369b70d45d7d204a4dffff001d041786ab -01000000fd4fc04cdc29aaa117b16b2420aadb9bb92fd19ef2a7aec3c40f71250000000078e5266df52051011f39eb29939c8782564563c20b3856f7aaafa6dc52921359e8204a4dffff001d0205fe6e -010000007252c67173d343874ecfab4d5f57ab5936f2d87f173047c99c20e73500000000d2b61f338da6ac531884c623db2804c0d7eeb84263b501524cbab6d5edfdf56f00214a4dffff001d0027a318 -010000005a7746eb6d1d19cdb24466e0a87a23b6ba8c2e461ba8928edb84253b00000000f1b03cf0680b9ef33fd311f6bbc6db3f1c164f9341f48a02df1905cec4ce241b2e214a4dffff001d03246ebd -01000000e93f1fd6ddca6d8fdc3ef50fe0f31769200f8fde592a0d5d6f8e1d290000000078966e9f0a2d4452ab2418249fa6fb1a325a04f039d015899141a82aa5a6c05c92224a4dffff001d01d8361e -01000000dd5f3ae3d2c2876ffbfe0956b914fe72750b160b667b5bef5aaee61400000000434d2b0f298874c3f6d8467c07dea6883a650de00d48298cd6fb48e8322e1058b4234a4dffff001d0161f3ff -01000000f814899e7f50c4494806f75523c9d8ea6c0198d13f1f14431fb541ff000000005b1015187325285e42c022e0c8388c0bd00a7efb0b28cd0828a5e9575bc040011d244a4dffff001d0579aa5d -010000000f72c6372c87d91f2df95b0c9e91cafab596f29270cb01cc67186040000000001fe6898ac074a680fe7458ff87a03956db73a880d2ace6539efcc43002bd97ed87244a4dffff001d0434b3b7 -010000007cb39114d2372ca1d5dbcc3a1137cf9314a666349dd79b268be1f15100000000b17cb4572964d7c6d671e7cc67b04b9fb1b68b31e52e6b4f956f3a0b72ccc4ccc5244a4dffff001d057875e3 -01000000f8d8634fa1aab0666f63fbebfd61e0ffc1dcc647e218414c528e17dd0000000073a2c54d536c19f0d09156efbad18ca6f96b1e9f3bc8490342958f24ed8fc32d28254a4dffff001d0130c923 -01000000943aae5118b0abf4ff55e050b234c21d223871e815e9fae6fdaf693c000000006fd85c0213cfe9863573596a4d5f1509ac41a91b572e6c1bdafe46d9249a5fa4e9254a4dffff001d05878bcb -010000006c6040618ce7a449cc26ad0578a7c897b4464ee32260014fc5ce6bf20000000096567fa4ac682f9bec7e646452d3bd69088000b19bf7a90eaccc197b632fa79bf3254a4dffff001d02a22cd0 -01000000c067deb4fa218c0f26a247766a969af8a475e5c88c004c300c1c69b100000000ec5a827a707edd70451f070665bf6a9e6f4dd8f815b0265296790f24024142b181264a4dffff001d00e76cbc -010000005cba08b87cefedceed1e60297564a3eb9e9e2bf942bf63f74fdd7f3300000000e3082dfad468d5c0c8e2f8857a999f898081c8cf59e48857997152445a57218095264a4dffff001d05a30a7d -010000001dcc225203fab8d972215ad2311203570fe49707799e6871908e37d900000000cea1cec6febbeb980af51f052dc20065b95b2d65520205616a95284480a4219abf264a4dffff001d01b05d9b -01000000644fa81c1f8c64f08712b41b616a24d3e8af833a4f370c188068133a0000000069f2096bbede7015fee2fb307f7d7dd084641b7f4af5c3074dc7b2b6df03277c80274a4dffff001d01dcf233 -01000000ba750a8cc870173cd7f17dff4c23c228282d9aebc2bbd5ebd9449c7b00000000b28b51c3a1a322c8e29c2b6808ded7981dc085cd7fb529184eff6ce556e09ccefc274a4dffff001d02c039a8 -01000000e0f40d912882e77044fee84e325fdfffbb3aa0fb1fe6ba864d5be65d000000006141e05ebe4e62fc76d0c9f1e61a4d17e6509209309f6fdbaab476fa227f1f4fc9284a4dffff001d0306d223 -0100000003e8e5f89f6d5ee55c6e8ee0d4c1e88d8e4a3a5f05f0c9ec32d580e5000000004e2b02e05fea22c5067327060d3c00482569021252423d372cad30746408d0fcea284a4dffff001d0410f81a -01000000f389178af7b0ea88a83ae251392f7eb336771c8d7ae666d1219f2455000000005f98a8017e8458e6081be384b89f4ed68a6aaee5ac41cc0ad2331929e657deb27b294a4dffff001d04c90ab8 -01000000d8cec9c7b6dd3093ad29b64c234258bce36693f87a4167d6234342cb00000000d5cfb9095ceb210b374686dfc11fb8d8c7932c30b4a3916c7fa4fa7b760a0831122a4a4dffff001d01708f58 -01000000d850850454d9b392ab01e886bacb717a5615f8f70b6a4ef9bf788df50000000075f11e157a482aa640ea8dc7e038ffcbff0e9aa758ff092222fabc325b9c1a56152a4a4dffff001d021f806d -010000003cf1b7fbfa5978d5ce1cae5a5f454d41f840cebb72ad3d600f551901000000004503bb32aa7568d6abb1df7a05b80be6ffad47e5a55886488736b5c344a41d431f2a4a4dffff001d048df744 -010000002d7f6a8f2dec6f914a7a63052facc546567fbb02742dddb150427ab10000000031ea5d7ad7f128ec4daa2855b7944503da503818a75f049dd6980e636aaf59af242a4a4dffff001d017a6543 -010000008976cdb2c5a16c0929b45f29784ad52cf3db3035f112e562ed42447700000000bee2958fb6624ca2382e4a6a1bd7aedc2c58edcb7266a106c76d4504fd39eb89682a4a4dffff001d04d4a620 -01000000d6d7f91896014f1f4419628791a5bc39263704165d3e14e23895f57b000000001ae0ce43e200fa010ca331ee891ce9ee93d468c602703a23ca2eeb693c1e05e1862a4a4dffff001d025a8bf1 -010000002be250378c6001da52d435aaa1240522ccb14a94880ff0e0d1eee82a0000000046297804a9aabf1d08096b034a84364055573c45d09be862c33ae30beb3b5ab5ae2a4a4dffff001d01a34339 -01000000064ac21081e5a5c6509f634ffae17551bd322e46d3396ac49b8d68b300000000d15854d1e5ba349daf72089f470b24557a2be25105b7831a3f18a62fb8bab677342c4a4dffff001d050c273a -01000000ad1cbb656f4799fd8e9de9acb70a47d589ef5311dadade94c494ff60000000007546bbac9ae1c8980da6e8c154b368eb4df305b6f3f27ff38f195a13c9ee0484922c4a4dffff001d059b5c46 -010000009f0d835251ab6812b04939a5889a36d50f4d7486ef98a7f61e45f062000000008dab4ee487e33f872140c04372bbdb6c573b7e9e4ec31cb5d8dff36da17bd8f20d2d4a4dffff001d016572b5 -01000000d1105edb3d0105e862f3bc95a034c0d0815a79505b4b68fdcce9083e0000000061573706774bc7a579a7968281e10612b4551195e16c8051381cdd3a6f93f479292d4a4dffff001d039dfead -01000000d1e7c872bf92ed9d9007926fbe72d976079ae35efd6f81ba4101a98600000000b4bbecee818dd986e5ab82f36dbd5ccc29ab134614e304c0a397e14082fe7bb73e2d4a4dffff001d00b8c45f -010000009287b073f80a1a91caa1f664b8c9c578837f878e6ff04108db28d9c8000000007dc81aba2560e72756db13b1e427c9fb4bdec85486c65da8aca5bf968a5bf51e412d4a4dffff001d03a98277 -01000000a3f00f008ca15686450bda91266f8d01a99f345c7846e9e5bfcc2628000000005ac244c2a763cbc311a245df0d6f98a29e187165048a9da449d29edddf6b1923d42d4a4dffff001d02df0172 -0100000012ced3b143532ef3999faae421b6bd79c8ad62a4dc8db862cb05bbf70000000060e6e42fad3fdc3d353a22f1699b5ead453eb11343a0e603ffd8c77cdc773be2892e4a4dffff001d04945d60 -01000000f0c39624b690456af00d742f323762471854e1db5c96099adad5e53d00000000a2367f2d2214ef900583269eb812ed05d4a8aba11d40081eef999ef16af1d5ebd72e4a4dffff001d02d98796 -01000000294a2e12b2716816a62d761c624248fcc10ae22cc1a80290432c85cb00000000fc4f1ed498c5f31fe90b10389f12566a3350a5080db1dba1f01f8834e5813ca9e42e4a4dffff001d054ad0b6 -01000000774ed03a366b9909cb163ca0178cc6b42847461c4a672a537fb7aee600000000225666176205fe41ad268ba6f5d15633a5381c18fbb6cd2f83700ef928c58fd7362f4a4dffff001d04928537 -0100000083900a5d5ac952d05976df43ee7e280faf6105038a4afa75c4d8a2a50000000091cd49f33c9f5b51fc61790d25539d2e896e87c8c195cf305b499bdf42e029a0d82f4a4dffff001d03994aeb -0100000010336b8cdbaaa1bd6ba9b1e41e85e17bec5b68bc8ff043e5731ed09200000000fc5eecfa90d46aeeda36bb1a2f2da61e4f9be81253033ae55625d00acb13ef35f92f4a4dffff001d049e0a22 -01000000ec5b52a76675e3b1de2e75ad45d6498684a0e81092c5ee36e7fbf60b00000000474d71b72f905a8084842ce4202c2ab9795f3abcf51aa7c458349d21eb6e310498304a4dffff001d015d80bc -010000007af7e899b49494f77c351fe434981ad8b6352ad62527ed9d6d23a8a700000000bcc43ee02af281701574077d6916c07d6bd15cb96c623f6f304de260f616bd57ec304a4dffff001d03a0956e -01000000f22be93799f6fd1527bfa224601261300d38571dddedd804c0c7b94e00000000ca1cb89732eb51c0ace08a564445a2ee762a2cc819209886cd0a09993951544ffb314a4dffff001d03b10c74 -0100000099146a7924d99cd7a2c1e17ce7206712a8349399b34ec98eb706d3b3000000002c4fb29a89bfe568586dd52c4db39c3daed014bce2d94f66d79dadb82bd8300024324a4dffff001d04edf452 -01000000e5139dd4cf7511d9eddccb69d2c7aa0917cbe49eb660fe9293667aa80000000068e91b23282bef6f06f22e479587d03f6e1a2e4891b5d644541f1e10275e52e142324a4dffff001d03ef54c9 -0100000052a5c0e3a6cc34383a58d939053af3261acf266ba6cfd3165435bb2f00000000a32d9b10b7b75323db98d486828a5ea4f9e7a2609b76e496f6d86e0ab13a31587c324a4dffff001d0031025a -010000002ed6742b063239cad1841ce6bcf676a59c66e65eb4a0ccf68ac4eceb00000000efbe4df65aa1137ba3efae5236178fe6646d6eb96a177d5394bba48066a87448a7324a4dffff001d053cfc69 -010000004d4a3f638bb32808c3667937b3a0847eb780a3b3fe70875027adac3e000000000ecc7b73d8cd5d377d74d836bb6e3473478554a923154286ddaf6985948fd9d3f9324a4dffff001d05bead3d -010000007b86d803ae4a477ebf754711cab10b1b7799dcd50fdd6f25cec45e1c0000000033c06971fe80386570f8daafda6e4ab7e72a18624e211481e7b96633c625a52b3a334a4dffff001d01146b3f -0100000034231ba96cab51515ffaa9831930a46d1a8df9bb83d343690edd9ca000000000848736034ba62c9f4f3410b11d2a5ec921592f40b2ad6b1d442ecb3188049e27f5334a4dffff001d00a7bc36 -010000009427d53219ae3be5d968cd3dbe9f52232b0b32f662bbf74b4c2cab8f00000000755e1e0417036010faf0520d2524c806dda1e3fce2ea99dd4e70a42efe44f64011344a4dffff001d02c03350 -01000000db9740f3109d4450584d3223ec605be1f62457d8af2c22671b93b260000000009e93a056a6515e7916fc049578708d188c2146d3c12638acac92e0b72e076edd72344a4dffff001d037e783f -01000000de444daddd51d48d32e2119e59629110ecb69dda27ba85d7e85d40e00000000069b02fd420c2e86a575941a89e46d174a4e0fbc1379dbd6f6d88f3ee58613e5087344a4dffff001d001d016a -01000000a173420cdd0ccf0695a0a341d4f8cd0dc7cd8fd3aa3d01b68066561400000000cf0fb8b5f6fe33f698450ec147ef896ad953e677b4033e50400ec15454d3067fde344a4dffff001d03475525 -01000000343f2b87a053dfebef86bf7108c93e449c6e289e71a75489fe6125130000000088d412c44abb44236383afd182862dde877813143d21d92a3cc373d4bd4017455c354a4dffff001d02b22dbe -010000004375b71a891e69ba37f9c0cc54373be6796f43ba90b16b12564414a400000000e3abf5981a1bd6457ec0cdcab76cc2a176dc0d7e16f6d3781aebc684f13cc4fd81354a4dffff001d00caa9dc -01000000f7b2f9d9a6f44012728b6e09c48750838780f1e1cac9cbaa09e011420000000014bdd0dbddd8e6c917324a49df6459de897031f514b77999c8476d287e47f23b84354a4dffff001d026719b9 -01000000a688cd51d1d4a0cf1b438ae4347bd2e0b07fef348ddeb6a4168f71e000000000e7da7a46f5efaf4fc835468b21620987dbdf8b5f66daa0ffefcca5b0cae2e533a8354a4dffff001d0017ef75 -0100000010f5b842b85241ab32f795ad605ee899389c64c77126503e8eba7f4d00000000df686a7f31c2c1de6a608553b26d6336434719fa45428eb3df59bbef75ce9e7ecf354a4dffff001d02e94089 -01000000ee47f9bf0d5d6d59bafc6ade45ae6da0702b2ae98b792f7a6b95d13f000000009c13741588ce9e729f1b29b82823a97da91a3c6bb89d03c9b33c6cda9d71f0aedc354a4dffff001d00ab6a3b -01000000a0396d99b1042613554a8fe19f38a485daa2eb5b65f5347f3375a838000000008985dce081d487c7eb8f8b871738869922dd73120c75242333c45895bb91e64638364a4dffff001d04d09fc0 -010000000787ce301e6110773cfffc92ae93a3e017ce136ac2fbe2004bfd06ad0000000069ed55457af8174da637b03acdfcaaaa36cf822ec6e72145526cbfc03a6a83f546364a4dffff001d02fc547b -01000000ae76485a78a7a225541cf8025578b9085d39b45d7c2f68669f05eb7c000000005ebf1334d253dd7a7ee381625bc200973e7af65a8a022de034d6955e37823c628b364a4dffff001d06e25145 -0100000057ccd09f8dfb8ff31d4ec9e743ce56ed5c5c501046d709f49c356f08000000003f818cdbb02b1a468aa23e9795f7518ca5a92276559fc40bca459a79e010bee2f7364a4dffff001d04a53656 -0100000042284cac669ab917936f5b96469048d55214c074eee3c7aec95a07f200000000334a4de0559a4db974ee451fe484a0376a44470a1495797992b9a6a0ec7b24cea5374a4dffff001d03a8bda4 -010000005d820c5c53908a13f372a860b57050b9c60ac3360a7bc865fec2029200000000d29036af962f1d725133c89721cc7dea6d3cffda3a529c82e39397027aad7efbce374a4dffff001d02146600 -010000003c3b2d4120567d650494757e86595b7e9c70223af627fa1857ae9cd000000000a4f56464ac27919b3cf8c9ae4390e679cbb2f878dd7098057431c0d92171fb29d7374a4dffff001d01dfdf26 -010000007e74fa0f82027865fdf1aa434e494c2a60e6a9e1b70d2f7c4fc21ae5000000008a360dec0defc12a33c3d959a7ed168aff8e34547db15b516e1b8cca754c0de543384a4dffff001d0568ea46 -010000004960b70d04579667192055ae5e019eae175dd65050e58be04d10b7f5000000002eb73ccd1a64ddd448405955586fe5c95bc54928eb34679f74bfb4c9da8e1b92aa384a4dffff001d00cfcabe -010000008954c37766bb7293e105c476cf2b320cf9932b9543b1398823757c0400000000f85f4ed98adf68f14127aea968a338f2109597b484a808dfc8638112ad0623428f394a4dffff001d036b2da4 -0100000052d3ed4b6951d3d5db9100bf46b7dbfb177917539341431898a0aa5700000000d226fea91b99c5a31a034d340f647b722e50950c96a876eb96569efaeaf3b227a13a4a4dffff001d0051797f -010000002d54616f93e70461538548ac861c860a8bb9077c3452be5b4c00d4c5000000003f88cda74f26fa4ceb0a97161e771a8b1f6caff1069f7b53ab49386916f3820b213b4a4dffff001d024510e3 -01000000e226b7f57fe7d32fc6166057172a4c2931bd4bc3b619a036df08c95a000000005b7df01117c335ca3e8a802376e171e537f090dbe2e3bd1fc291e45e219a8717323b4a4dffff001d05d6def5 -010000005412ebec87fb8c61287f1d2fa1c52617ded826adec22368b84c42bb5000000007992420cd0f0f24840c8d92a4a865e6c906e473c23f1cbe3c183de70c2b2bf42453b4a4dffff001d02a246ad -01000000ba24ca40c17418d7bab5a3cac3c0bf00b9d3a0c09ec5771d0b14015c00000000a30e3f1429bf2a8ed14ca6ec9f3396b8593b8bb6ac1e4d35bd435f05058094ea983b4a4dffff001d02c75930 -010000006e823e852756b7106a0ba02b1b51045d87582001c006a2e8807cd612000000003c11b146d43fd62ec36b733942a52ba0c352c95a3f078808a38d080898cb8330dd3b4a4dffff001d053f9e6a -010000003f03adc125b43a2c8cf9d47ac43dc81fddbcf12ffccc11ebb226520300000000b17c3beacfe667f4014c9da9057fdb6252978fa76dc4dc2d9ddef0562d293d39333c4a4dffff001d0467b375 -010000002bdffedf5912eb0e14baefa637c22cd523c8eb4147bb111db143ce9c00000000e24fd45c98a5b07ef9b236be48aaa1085b1bdf993a1c0db1dc04766895b8a2fb813c4a4dffff001d01c464fc -0100000011c1b397772463dcb8430f661d548b3c55c61d415918681d6c4d4180000000008c32f04b4b70f43c849a8f424c3a82352cc0bc6bb25b2c2ec4a039964ea563c4893c4a4dffff001d05292e68 -01000000a0e705a21be059d1f8780cdcea04e7008b7497cfe8faa0fb59a666600000000059f060dbd892c1499758c7ce9bf8779d8e4dc298484ceeeca6467c17769fad5ccf3c4a4dffff001d013a65ce -01000000492c5c9b8543822db5ad8694cce758fa2019bd5b6f12db4160bee95b00000000f640c60ea438dc020048599869836f5323ef47477ee17caddf076ed428898f71da3c4a4dffff001d0065ac66 -0100000095e3a7f3bdbcfd7a40901eefd95edb7d6d60562f6a427f7986d0861e0000000059ac3c37adfa89b9a907ef9d485c57262e9283e1eb96069c2de04369ef1b3c76e23c4a4dffff001d046e85da -010000000a3f0effcb7af394aacaaa6e2383ec478034ae4ec4d488e47153d21000000000e25e353605728130ebf943b1f468937fc489589975c13765fd677e5050b487df2f3d4a4dffff001d00fe3805 -01000000a1f0d96d647241f42d4a3e02ea933690a4cc33542ed89de511c914c600000000153aef1fb8837f74a82054a0d9df9c566ea9d50df292ff62288082f311dd4212333d4a4dffff001d03d34187 -01000000f78b3189170c0de482943849707aa16247e5d62772953eb54bcc4d9a000000002183968b34446981f960895ed3713dd60fede3a9eeba1d40389123c6c409d3ba6a3e4a4dffff001d03d38a89 -0100000059835cec3351179502bdf8f4b0a0542d3ad336e22549c2a78f1af97d00000000f7f8e1a8f0b4bc0337d67fa4a2fceac7e83adda354d6fa3ba18dcf7e6fa2f2b2c43e4a4dffff001d01558b25 -01000000c6a2e4d395a1899b4be7d915c8dc660efc1298a34b66263044f5a5bf00000000e64b9c2a409a4a1310fb4b4f59559f79b15dc85e686eefc07b0b0a6b7fb6ee5bf03e4a4dffff001d05113e7f -0100000067e62d9c29833a10aa99f00514ec678c06a234e05f5a1de4412988ce00000000e4a12fde56c03eea1acb5eb1b57d35ab1da6e55d544e8212c47ce277416b1b3e0e3f4a4dffff001d00652740 -01000000d468ac8c936b469fdbc0510d88d031ad3d22c3858abb8f89184f0b84000000000fa35a88c8fd0bf5897b921ac75fac304760f6d60ed2355cca82e689ebc0cd53513f4a4dffff001d0405baa5 -01000000d69dcd4cfb5a9ecda166293b3c0bd72e21a804b3a565c8ec4783f8e900000000b3ec99d78bf68d284104779999ff447ab7bc73a783e9fab814c6741e71849cf0d63f4a4dffff001d0355fe58 -01000000a4ee15d19e3a355d221af4e4d6b69a84510a60857ead0af7e3b086c1000000001c25b8c364fd6f8417d45b9501384908824493931b544baabf2299e25277305540404a4dffff001d052500d7 -01000000deea32ce4f7ba1bee123958ad36ad37df8d53372f518a88761d14ff600000000aaeef85b297622ecf311dc5d29669fd4e3863454c6feea361ece4f547ba52e6a96404a4dffff001d03a82644 -01000000b8751c32196c89a35575c5ea97c6395e6dde705aa771287c867b909200000000cad183a8636b222a8ab775d34658b1de92ed57818e26203ee43ffbd4d8bef95b28414a4dffff001d0587f431 -0100000035a68fc6ca182ccb6663ee8b7e44556b950a8351bf2c64cd75dc2d0400000000d59d2a49b1883c6f7ac68a9d2649dc0dde3f0205e19d8fdaf8065381f9ba61cccf414a4dffff001d0592553d -010000002e5b592b34f37b1ae9fe17aa093d2d9c815aaafc5ce3dfb8b91e33d200000000a2990b3a24b766c99702c1d157925089bcd0d377cb70cacd30be33a3c90bd067e0414a4dffff001d03c217d4 -01000000773bd09b330364f704d0b3fa46d8431c5572a100faf117958fc15a3f00000000e739176d62b588566afa47f5fbbc0ec01aa3f058c036ca0ee8f3cd13e4223e01ed414a4dffff001d056b45a8 -01000000e9aa44db469453b2c657b1e4f3e29aba0532b1ba7ce4a8bd8dd00c4a00000000fa5f2cec2dd5e7122182c8e4b2f10a1cff77ce7972ceb53308b827aed06751fbf1424a4dffff001d00523f0e -01000000337df8fe8603beee390360abeed7e956a280fda2dd5aa238e110de090000000071f85d3e358a18a3a3465a1bc93f17e7725549a9507d1b218dfe6d1dc349641e9d434a4dffff001d0042c372 -0100000048bb0f9a7dc5c4fc15e8a4c5ce0adefc49c10db0a582e0476c1498ea00000000640a330a8e9f920e7684276e987d7f5a682838ef8510fbfdc9de08474ed3e74ac5434a4dffff001d01a51ad1 -0100000098349ad38c19d6e481627c6523d9d4f52c031525b8660ed55c215679000000008c06f072a655daa64b9910b1894ca250077f930333c0281c843a1198a6a0924629444a4dffff001d02e40f45 -010000003ad363a33fab1606f7a32896d093b06b84a7d6e9784047cf8b9bc953000000003093ae1fa781fb09af9fe147aa05ed26e90f6e7312a448e934afcb4554d74c11b2444a4dffff001d0029912b -010000006b8abc2fe01dc3a118f4d18c4f0b36b640fc85987db55437099aad3600000000f2e0926ac96d0c8010e095b34c5089f549f2fc8fa626e20b2f0b68dd46a72c2c06454a4dffff001d00149193 -01000000665559872e38dd76cd839459a94b0f6efeaded839d785b2c43c0be1900000000c305ed4fdbd3a11585c8805863472f53be7fb65b7b4404a688c070e8197bf40edc454a4dffff001d01b3084a -010000008fc81523766707ea9cdc7926f5771527eb6a5e6810f86a836ec81d5900000000408efc695c947acb1c0239a9b011d77e55b702fe9c2f6082571ca3bd9ad46bccfb454a4dffff001d05bb7361 -01000000efcd6d1c267d0b764044e85d112b6a32cabb8698bd13b4e947c178ed00000000fc53d40de77f595e1419b205c2dbda50be0a5595c45e001f8dfeaa8d3f19d90f1e464a4dffff001d01fe7935 -01000000339acd071c0a09f678896b302b2c79833152e048f4536994737db5f5000000003c651e6ebe94d51b8d1d1542f3b43f0c26298e4e5c8fb3d275e4e13062800f6c9b464a4dffff001d05eb40cd -01000000ce3f890a2580af6e15d0305dbf50d1fdce03678b626ef2c6f7be3c7a0000000092b0e20be269413c7f519a5e7fc316074aa24e930b8a3edb8a618077567aa832ee464a4dffff001d03713885 -0100000006f4241b0703e90950c5ec74c3e033c39e7b0c7b9b877d5515a6ef9600000000eceece737cbc2bfaba21cd1cd8515d614c2a39ea26d9b41b7daa77a17dd5ea5121474a4dffff001d0326e2f6 -01000000e65e080e4f1df42a905b85fd5d0f0b2d70f3e987e0fbba97cb41111900000000812ce3ea678b31aafecb99db5b0ca6718f9fb3474e0baed35aa6aa7290f5a40972474a4dffff001d043e313c -01000000ef823ae34b33e5aaba6945f46e6c2bea1df86769d877ac0b8ddb0811000000001962162ca36701e79b5ee44367d46a8ad8421b1f80aad651a02022a7b9e1e0a3a2484a4dffff001d0259a126 -01000000c65b1537a27f39bbe1a2884f77807c958faa56f3819aa5e4d49472bf00000000ba78186dcdbed13712e6c29812a54fa620fca9ccf297b8219f7ca736e36e46b7df484a4dffff001d036752dc -01000000d48b9919f537d161b9ba4404e9ba71bda419efe7173ec3569243364a00000000501790f1566c93f0edd817937da1e287147de7bd62629b65b395935017fdc80758494a4dffff001d023a2b4b -0100000083aa1f8934efdf864a78a3594d5c16f7fc8303fa38c01cff7c0c94ec000000005f8a10b8f3b9a4f159bb071ed05f349849e16774cfd79990af242f0ff6a60ea5314a4a4dffff001d04ad807d -01000000f699462ec6c1179023d1504bd5b9510cad887286984b783c943a33610000000074895c719bedafb41d7e5833189d876220fc5cdca55c6ad4b94a971a8e96a259374a4a4dffff001d002f84a0 -0100000077393e4b34076f0a6b6aa9350c799c7b32756a200eb1a7619e1b036f000000004c6b88dde02bd09335ea8bfb6db1e0094a58bdcb59d5ab78303034ff972b8538484a4a4dffff001d013ccb67 -010000004828e19e639deeb00d55f748421f46dc94eebd75e376104740535adf0000000014da74d7e2da39b2b2d676b957e3edc3619f4999922f3fa66c95b64be8fd92a34b4a4a4dffff001d0260001e -0100000092f7a9432462b827705bf9b31224972d61cc9fa8d478939e015ce3540000000076cf4d344b2c5db45b55ea38207cc477342c74b993c401b753378509761729637c4a4a4dffff001d03396962 -01000000b87a944ec8bbd6a73f5a6054efcea696124dcfacb88876995bcff95d000000002dc8a455f4bd8723a5d58a675c5a5e833ee411490a443f6d47f08a6fbf7594a2024b4a4dffff001d03699294 -01000000bc2c1291105e0c6209906934c0f1fe57c4ad13dd74e43830b293c6ee00000000070ef89563a7d8b1c7232b9e391813476ce93c9160051ed55bd396c6747618ee364b4a4dffff001d03bbea80 -0100000062db800da374d1b83b1b460566da0a35d277bdec5a6ef743132b2499000000004af49eb22a467e87048f4625dc9021249c16561d372366a21e8c20cad2c65aaea44b4a4dffff001d0142e34c -01000000e09e577320f539aef8178a3ec09dc306b301acf52e135839fb3fc55300000000734d92340bc4c287b0ef2b88001bac1f41bf5c6d3c725e0fc39e7c593d6ebd4f9f4d4a4dffff001d00bd8009 -01000000389998eeb4bc9b68abc63e8ed99218d00b857dcc5591966d46af4eb500000000752857853f92f5ca863f3254bf18ec5e3c62e1223c3f7968894048d40413daf3e64d4a4dffff001d00cc8cd4 -010000005faf1cf2ae1e1231a1b5aab191614ffeeec0ca86d86e105233c681230000000026dc493ba668f17fde5156a19662ca1a5bfd93b2376edf51ef9e3d623e4ef4a0f64d4a4dffff001d0183b4ab -0100000005bf42fd63d8189e37f471cd3e8a411bf81b4ff8e65532897b755caf00000000e53a837e9e3c05a4b635531c91c39c3c45565dc75e413228dc93d0c764327f86154e4a4dffff001d036f8a98 -01000000dd081cffd3a2812f5c770b8e79aea5e63d67b972ebb5d9dfe8cea3a9000000000803c135f2c72cbd06b77cc2a2a13a3c063028bf4b188b4760bafa112e71e579f74e4a4dffff001d05fe4d4d -01000000a9496d62f029c4b765548666b71a84adeeb9dd5674148b708b7aa70e00000000ad1924dbb0711c96b12ad1376816374008b98ffc43677b0990bca7973432f814334f4a4dffff001d0190dbb1 -01000000ffcc01d81e891bb248fda71e6338614dbea2d46b8e5f71460e6ae2aa000000005510b8c188460a26868d9bb3fc9bca7fca4d9b20f573e182466398f793d5ea8e44504a4dffff001d004f08f5 -010000004300ed388b39e36268421a7b15d337598edb40c8c290166b4376f2490000000054d4f73e569ddc7e67130ea0a43a352064bf3ded26f80877536b0e7277237a7857504a4dffff001d0268c158 -01000000d7e1a7d5fb8d460e90f62666eb9891f9fab06cc2c220899498cb01ec000000006a6a5be5a31aa8a7ced02f8ece18f44261e96ee9176b772fe654f1764cf6a4fd89504a4dffff001d02c96f9d -0100000049599a3ddafecc620c9ad61cc4520a0c70fae3d34dec595669587d260000000018073767fa7a1ef0c4a570f373492a822b5fad5fe3092dde239bcd8081fd3e8c8d504a4dffff001d000e0681 -01000000eed0b252aae103849e6805f28147abd17f294fe55c5c2d966d8850a500000000e15a0907e27914f317962823d82981df6f2dbd256738860027c740ac3f842bcba6504a4dffff001d05ebd48f -0100000031b485a9bc2b16f2ae5108ec786708f3f14447551e7f0f0a8575c75a00000000f6dc88e1c894cf88e930d30adcab0380af8fe00c3ebce9969c0e43242ca422b372514a4dffff001d0103697c -01000000ed18faa5febd8be98c42fe2a1a5dc9e8ddb6a618d0a05d924c522b4500000000811cb2e938cc88f159a82f1e160d80f4c6b429ef51c63ac9f2724810ff7694880b524a4dffff001d0097c6fa -010000008738d8fc729ed970f5223d77d8e776d5e0569ef2385a33596dcbc77e000000000bff98f2293caadd5f7fa74a7c5b3e2399268c171e5adb490d8e1dde1d4926d7a0524a4dffff001d02132278 -010000007ff2786f280df6f5039bfcdc1d2d18eab08e4120a5f67c769b8b464a0000000077b5007a1d08cd2a6abe2cb56a279ee4167092775aabf4245a55723455f7297059534a4dffff001d03c30540 -0100000002ddd5983c40e70e36643ebbe8567a8c115dd7a21262b8c61d693acd00000000504305d5fc375c8303ca009ce2bb783798b303208c8744fce95d0656375b682ab0544a4dffff001d0483c2bf -01000000bc5ffef87baf263ab01ed870a064c46731fdb99beb941bb6ab73fb05000000001679c9d394f4c959d3fa9e054a4e89af624f9206a777368a00d1cb6b175ac5f7ce544a4dffff001d02c1d1b7 -01000000a0fa21e1683774f057767d4545610a63a4c0ffdb774a6577224116cb0000000025db6d92e12ad8376e7e37c12b541faf358404c4b5617b9b287a43c2db4a067b6f554a4dffff001d04cfae4f -010000003abf3b8f61bdfc588bb0440b0f61cc8894cee1291298996712b3e3c8000000009160b7843ed42d0b5ba734634abb2dbb231e68bc37a1d508b2f27ad88d040e3e5a564a4dffff001d00028074 -01000000f23f3229508a7b80a755b69ab0dabb405f5eb566419eb60e2cc1ce780000000015819a3494e7b49042529989b007e8f89a6f69f6d22acd6f0132c270923a192eb9564a4dffff001d05ecd17d -010000005fc1bed214932ceb26a0a81a4dcc6fe290e5b7fbcdbc490f89c310e900000000c6fe4434b767859a8b403df5f195e223e622058ea98abcb0517bec7c5a734fd4c4564a4dffff001d030425fe -01000000390b6d99e31e1f64e6c16a94e7fed310d80bcccf9c7f9e82fd8bb1120000000012d6f8906065837ccd176ea73171077e73a29257d7e0309377e710ebb5629009fe564a4dffff001d0391c3f4 -01000000005ca35550b9d7bb3026a8a9e5c512e0c4714f11e3066f99be7323100000000045ab4575f33ef6bfc4b1c9fce77ea21cb9b606acf2b9a0331b8f9f931169fbbc64584a4dffff001d03f6a4c3 -010000007f0ab1ef14e058aa9823bc23ecaefb694cabcc7de8ca93966dc1cdd300000000272ef40d0354ece93dda9c8370dbaf29c6a2894fecd84a063c5d3de0ba90a088de584a4dffff001d049fcb9e -01000000f6707f93948703990287c88f79c47c2171dbfa2890d69c742ca6dca5000000001f75bdfb31993e02ff9de178dd3f1d765fd7bfb4dc87280c40f21270d7384df6fc584a4dffff001d00b0d294 -01000000096d0d56aa45bfdc9561a804aebf045d86dbe4538ba8abfc483800a9000000007a22463cae54d2b07238b58272c2f47c7bbc3bfc92a15d836f014d34160dc3c10f594a4dffff001d03465905 -01000000edc840e0c2f736161507190b975b87e70ee7842a0449b1bc785975070000000073998e2bd1d6f08ceccde03077d9d86adda70cd56234563c8d37e275767765de74594a4dffff001d03c9895c -01000000fa8f5340eb43544d2562339f1854add2ca2336be9ef3f1659cd2b3c300000000048d698b6d1dbdaecb6b5fa3cdf3c0b06346e43c2aa592606736404a17c7080af85a4a4dffff001d02cc3a19 -01000000683e618822053eeeb0d0a85cb955b3eff25df82e41beb94adae2e81600000000ef84f5c1c80ce84101f205ed007bef67688a709a1638b20bdec8e2d5404820f6cd5b4a4dffff001d0004d110 -010000001a4ac80ae8fba6ec44d500b823515af90fc24eae8aed36d88f73b39100000000d20b7be0fb4d88ad841c2d111b49b33e7d3b786ab431f3b32e6a75d2cb8299bfcf5c4a4dffff001d02b5e1c6 -010000005d8227de291d61223a71e9c11f27298dfda9b82538dc67ecfbbae9b800000000f75f109d50bb4674cee3023c0780403b4998067852cdb56881e69c4412c445b2485d4a4dffff001d00bd7afd -01000000140bf311410ecb5324301a67d5303bf817dc0401cb674e1c9d2b05e600000000cfd1b67825492351322e5e64da5db259d9eb1fa2b309a9917c921685232c9435775d4a4dffff001d03dbbfd3 -01000000a51f6b0e1785a625b71505e4c9ffe60acbae34d5a8e463376b0dd37100000000124c2dfbc87a28fbf04646cef5ecc103f568b8d28ab19661327995a7389d7325c05d4a4dffff001d003facb6 -0100000017b0e14d03cd3cfd82a7e8d54fdf338b7679ffc731ee9eece8d10b3500000000c96f851c0cf08646a15dfc49640c994343795b9609e87350e83f7c69fed804eecb5d4a4dffff001d0180f4c6 -010000007efda66c68e131be2f78ac7331d1d50f0203205a1532e96bebf3c3a10000000075eebc78e8a107eeb04c122618d963c038a00c956a67fe0c4933351c92f68def235e4a4dffff001d03a98d25 -01000000528b90ace50435d962ef0e1457a28b1c140e887060f6b277b37211de00000000739c079a15781e97e60a15e05212ca04c97d6c7509737d5daacdcc61982672e8355e4a4dffff001d053ea865 -010000005533106eb5b75af3ca4e3fb1196fa4c0d4e22413617c385e4ae0984d00000000a6b546b2b262c57c6691555d6f2720383c481ad64f7525c0c266669014632fa2ab5e4a4dffff001d01af78b0 -01000000c6d164638ea706719ccf9a75c7b1cba7a4ab982815490ddc3b2567fb00000000ba99c12105363f09230c6331157d8cd67336745aa9e0ecc46494634e26f875439e604a4dffff001d012bdbc1 -01000000364f362c384a75bde3177d475a8c85340d4fd4ab0ed0b30f17c3317400000000df6d00f0aa27587fab36da531d0c21a27e8b9ba3e7be77a780dc8277fdadad078e614a4dffff001d04ab300f -010000006fe6f7e2e0d1df2b6d71c090c4fa296a2d7d175c9b7853851d0fb03500000000610e56ccf020380fa1918b77eae3eab93231c4bb8d741efdae7c5256d7f01604d9614a4dffff001d032e0df9 -010000009f469645bedab4134a07b9bf6108960de1a2ddac68d59eef58b493a400000000faff99059c41eaf7d7ebdd38efd9b0e5a3ceb2ecdbf2df4b266f4bab573363371a624a4dffff001d024ad9f7 -01000000d4767418fc518c1dad34cddcdbaf06e38a73f680556295a88bae600100000000be0a584aa45ca81a0ec8e4943b91a7e3cd4b33fa67da59db3a15979326eb5e0973634a4dffff001d05e4339e -010000000bcd63dc71092a95a3cfa24deb7a99c097b5f74ee21389f4cf2cec0600000000c590cf15019323e3eef49355d341374d4eb747c85118d2af7ccf749bd6322d81c6634a4dffff001d0453fbbc -01000000e244d491df952155b701e23db092c318752154d0c94b7f1918c139b800000000a7f1371e40c1c7479a0182184e7858b9fc654b553014683443fba375927f9d4f36654a4dffff001d03e0298c -0100000028836ee71421916bfbb216200b5943426946b65d28ead2f6f6b639f3000000000494ca74bd3ac3a44c3e8d2bad9337945f89e45eb63fee5b9860d46a7d4c9d893b654a4dffff001d00ef98f7 -0100000017116f1db86d264512d1e919a74da904290965abc0492169532572230000000060081ea832d5c3e9f675736cf23993c36e8eecdde049a44fcf955ea24e7e9366c0654a4dffff001d034412fb -01000000e79cb282d213491706610e7fc8b02ea62a98e437829b076db087e081000000006fd1b2d70cc93f628dc0f1ec50b4fa820007225cf827e3f94aa581c30f5ae51528684a4dffff001d02c8f506 -010000009539a568fa254f13b10401a64dbf10d2709111822efb587824955f8a00000000a4cc887854ee5ae17aee01ff839bc7cf869aaea30fef9c8782eecf239da4e83f30684a4dffff001d03f4d7dc -01000000b021d8608d5c1517ed201830c7ab24f957ae2d71794ff149c7d11af300000000e58177c0a9f4858d209aa9008b6fae86b6b436c84c906e5faae402e0b14093cb39684a4dffff001d01e43108 -01000000b9d79c9f24321d231a894313febb7c5c264796a1bf60815a0cbcc96a00000000951b66c72f193f3b8374fcf39baa8183795f647fa69a5b2e21ee6505ca3ffe2ba2684a4dffff001d016977c7 -0100000083cbbadd846fd2fca57ab49a7f4b5ad6b1b64889b046ecc00424fe15000000002e26a89403d2d4d2c0cd13b959f9b86c6b6baee4ad0d99e6d04ce21995039981ad684a4dffff001d05ba9aa4 -01000000e435195dc29f89337100e0c2e80944137d2ca37e8e00256fad8b3bf200000000a644a58880e151d73b166f2ee7264025292968dfc2ac6b19516b9fea051a001b3d694a4dffff001d00a59466 -01000000fc27d9c3e7632342b188f423df64d41d8b8ca4c75b7d8a47fadfb13400000000f092bd85e17e84ee69919ffaa3a1936fa24ced5b3d0d0ca073398a256c5293dd4c694a4dffff001d004914dc -010000001dc0cbac620aa5469e889e5709b5ffd3dde92cce25715e084d2265d000000000bb549c5ad4bbfcde450dd1998da568ba168ce940479f92d795235e95ffaff538c4694a4dffff001d01cf90a7 -01000000403be502a01dc5d45288d1f305acdc9e15cdad638ad918392738320300000000cb513c7878b4d2c2376dd1a8d91aafcbfce7fb3ebe6bf419ad69e7408d8e620cf2694a4dffff001d0000764d -01000000919b3148b047d8639e8b46bcc4845d91654c03c6249ea4c443e9b99d0000000061a3e0d8305112ea97d9a2c29b258bd047cf7169c70b4136ba66feffee680f03b56a4a4dffff001d03c843b3 -01000000f90755f869f150d7c4a7191ffb3f74cc1752d0e1c8fa6ea51ed182cc00000000cbdf8c487a3679669f416aa49e20d8665e75ad2895d1256589b996a7f57fdfc6f76a4a4dffff001d003cdf61 -0100000047b42b4f634f26c6344841cba855c2cd7ad377cb35a8774e5e7f58d000000000cf16ae92ffab695258610ee3db7e1681447afcfe60c28ab3ae30e3ecc06de718036c4a4dffff001d036703df -010000009c57f3083374e7552e56d053b0f07fe93a47f6a30430fd36eb40b5250000000017eec598976bfbc55ab4c5d48e00162f31b6aca31bc42ab7084f1f139049b2c60d6c4a4dffff001d03b92cbe -0100000087de9b5ae134e6f3c94361941a079bc41b84ccd02a3416e43369ebeb00000000a0fed8fa4afb32368c57427cc0d9b44869fe8faee44f71910e9408636b82f3b2166c4a4dffff001d02379365 -010000000d544d94180289b766a4cf81e3ce5299f938c7ca3f6956424558ea700000000016164d5a284a0b308928c567c1db87c566e87d1f4810489c8256edb290b21512776c4a4dffff001d003abad2 -01000000555e499668283fc21cbbf2d5d911334ef50c6a58264fe4a9f1c7406b0000000042bf33d98dc089614e3ce83d39736949489ae64bdd1fc477f451c2b6b523c8b88e6c4a4dffff001d0210c9fa -01000000fba43e3e3dda545e1f21d1743123d5b717b0ca9c3b6bab06ee978fc6000000007b3e06d1951308c10625b2c7eeb400f1d9de694922b34bc48bc31cc57945ed609f6c4a4dffff001d0256b7c5 -0100000046b8f387b47ed742c035e8619551c1ed480d111d4e8d8fb231265fb400000000ebe3b715280fa9cb3a6de1d7ed2b27c7f769fa8db53956a443bf9fb8051c96502c6d4a4dffff001d0587e243 -010000009987e9a48351803b25ab0eb6b84ef62d92e33a73b2133687e126c09d000000001460afd3c98403c75ab5858f765e6bdc9a91a9a7377d64f262b0c4d4764fea93936d4a4dffff001d04816e32 -01000000f38c31b10930176f539d4c5c54f22a4e65bdf568ca89ca65518207d300000000ca13d344cf8d51261573a71698c8fe10b7e5d9f7134ae4e60682ff793b1b0278cd6d4a4dffff001d028a436a -01000000f0cc611660dbbddda4cc05700f1ceaa209e1d9e166117e5a4c2748670000000014f341b19c7417fc5b4231ae70027556174a78af7e554174541c36e2e1af9265e96d4a4dffff001d00d47799 -010000003f732830a72d4d1043e43e627abb770e9586c38b530c03331655c0b400000000a28bc5d7b507b81bd9208b9e304460a400dab435a53afd843782a9f9e7ef0b076e6e4a4dffff001d006eba5c -010000001c219fb9bf6eab86c72b3d3bc789b446d5f214222d91c752c4cfdbdb00000000a62967c97b01f47d3a252fd612e772eba117edc1f6033fafae4fa66eabcefcc7096f4a4dffff001d019c3e0f -0100000006de9b309fdeb6361b60029f1c7d6de6c99ff2819609a8c236d9feb300000000cbac2ac965c6b2ea471a630cc99ffa835915fd914c107b2db2dae5050b2ea9f36b6f4a4dffff001d05df3994 -010000002b59084f6b07d1210181294223741d72117914a497e7a07d0c730d4000000000b3ff096b0e79008a55e1816779ba4811e3ff6f3a064b6cf84bb4b1dcc433890cbf6f4a4dffff001d04090899 -010000007001e49d2d872afdb4cc1836b2d91ea483fc7aca9abed6e2e78a8438000000007444e881fd0c51e363543a35b27effae3cff02aa828a8de3c37bdc2db2b090bcc46f4a4dffff001d016b52c7 -01000000d5c3785332c02c192281491fb6b1af615bee7e2a2fcbbc124ba72e8700000000787f53156727d75d5b5a8d88aa93400ca4d53b9d90ac33da81545750405cedd3dc6f4a4dffff001d034694bb -010000009309d876716d2ead60108db4f93782659182759f0b351cd92ba9644900000000fd05849b870af4a38ba121721850a8cd344ca95c3aef88c1ccf25288776264d0b6704a4dffff001d00d1727e -01000000e9206fbdca986700b3747c62ab8169e60181ffdd3f5ca43923ffe8b900000000e08afbe6f2f42beeb5891d78d6774548971dcc9b3b7d3407821e3df29fa1aa0fc1704a4dffff001d045d66ba -01000000bc31e83685c5e76b127e81f12e8867ab8342c02ca51f137a6abed1b3000000001e6e383300d86f0ab1c84d68a38e3a64f94eda07cb5d7b6b20072cd5a610cdaa42714a4dffff001d00cd948d -01000000048a5ab82d24f3dd8bcf472d9081d4aaf4f16a16113821e0ec9d244000000000c1f04bbd361fc5125d1721c032aa88337bfdd16267b16498a8f80f00e2d3ab23cd724a4dffff001d02989202 -01000000e891684a9cdf9608002bb1861338f42e0a42ab96d9656f9f40edd3280000000055248a96fb577bd5c2c929f6b0c5757284ebdd13d09200fd4c342604ea3e5ccb7e734a4dffff001d031094b0 -01000000904984b520e8c777654412655520279fad1f546529d4b255136e42430000000035c50c2c01355804c412bece60540459c86d4a93f336396a664e88acd642347600744a4dffff001d017ae930 -01000000a31367e28327fdcc4b9c28664e5aceff0c6439f86378f8d88a42017200000000c26f017904f09d6c5cdd1b33194d0505a594a6b37ce0a7635ba56ad35e63183f14744a4dffff001d023e46b9 -01000000e78b13a567fa3b7f4329ea4a3700acba52539ea92128bd929e05853000000000980fb406fb9cd2562abbcbd3d2a9698da8aeb255af37c1237a552dbdddabc17d39744a4dffff001d057ca591 -0100000085f94fc42a95c9958bc3e963daf2c1550d97ca945988180a9fa276d100000000931a84625efbff3f1fa30974dc3b58d89a3a6c8c71b673e6a9b84e659fd657d3dc744a4dffff001d05acf2dd -01000000877bc8f841c9fc5f943d51655b089a4d7f545cf233f7b3289d6b113600000000d9df6431534132d6fa686d7496a4825304f8aca55654260c56d4edeaa4ee7bbae2744a4dffff001d05c15bd3 -010000006730e2f111da5208e30dc182cc59c9318675812c24b596e3e5398a4d0000000092c49fe9e2c4008f430cb72949871a174abca604b3e4731d51dc02337cda177ea2754a4dffff001d059577de -01000000a924ed313100b3de054fcb9e9748a12692e0f66d375cc05e01f163760000000039cbb3487e69c00c58056f6cbb3d5a3c136effa76d0d9f0df9fa8963ac0a197bd0754a4dffff001d050295f7 -010000009d977cb94b7caab58fbe8bfb6339a7bc09dc50a8aed9dec7a624e25000000000a1275135d09b38392ea718c862397f389bd358fc242242072db18a35a211ca93fb754a4dffff001d025f7654 -01000000f03542a950904c6e1ff7e8ddcd6c53a9438000df6d3846300afe005a00000000ba9ebb9774f0bacb321c7960e0e13443d58270ddc5493313d96c7784c47f1ae4ff754a4dffff001d042989ea -0100000092f5763855630332ff4790e27b1a8a37975899d435190bb50f8448d800000000c0e15d72865802279f4f5cd13fc86749ce27aac9fd4ba5a8b57c973a82d04a017d764a4dffff001d03bc04b5 -01000000b2dd87c5ae6f6368f5c00991d7d900c14441b315e0fe3cce598cf0a8000000003e0462da7bb4bbbf44948d8cb4af46d7fb0017f598329f2139f52c76a433ff819a764a4dffff001d01486ffc -010000009369370b1d364678e42fbb797a4ee0121fbc3916e5cffbfc5a8e1a620000000031774efc0e33444c762baf022787fbede880fdf466dfd754e3e457f4afe839b32a774a4dffff001d043d36f6 -01000000514da16d5dd2a4f82d4e52941092e8508c4cb7339e4895eb255cd87d00000000b6b3d4911dd13b8bb3d06b75eefd834250ee263cec3e94d9b4c93f600e1de90f5f774a4dffff001d01e3c40d -01000000f3a31ef7b1009ab512e3f3f03860dec8a09c3e7ec246e75163708bd80000000035f2a99aa12f8fa65fa0ec244ebc42cb7161e80bfcbfb1bf3bd89c3585368fe504784a4dffff001d01275ec4 -010000003526d4c92a0e4a1ef78043d2832b94108ae0d3dd21f7738e2033f3c700000000a5ce8a4c43d3b59b6fdc38416eff39c2d1068817022c79a4426b071b85a30cfdb9784a4dffff001d0052c6fc -01000000875794831d6f2c236759cca424704c18b8d89ef9f39347aa4b4fe46800000000dd4ed8001a3ef95027770fea474b5e63fefb27ec2f6b8648865f15e69308ff8734794a4dffff001d004298dc -01000000fb0922edf49601327afef737beb3d683f98b19d128f1ae64725b5abb00000000bf3d088f283f962487807e618960923be192a236beef35f4392d7ecfeb6832ed38794a4dffff001d049e4ba7 -01000000046dac6511ee9b24b34cc63cd704497d6383d1794cc058b28badd5d300000000e885af2ab2be11c610d75db7eb1bd6eaea463efae811fec483ffa41aa7e83f8b687b4a4dffff001d04f872ed -01000000a658975dbe7c08a66b40f3a2e2f0ef98a255d60a79ba975b89a06204000000001e7d0335d1b38ddfa9aa6303ef27c0c6929af97154ab2062f3934a8a29b78a58137c4a4dffff001d04ecec44 -010000008c36b480e7358039d56678918d633d9e92a8f3bca09cfff8286e3fa60000000013ac254600fca551cfb3665dc3beaf8114aec034861d36308d5e6b213f7c01c5a57c4a4dffff001d0061a279 -01000000169009ccd47ab6783ed3657ecb5c962b3b3d3d0edad231df0c9f193700000000623d61fe4724621efeddafcda266ef8edb29c8f2ae051f4c6cf6eb2edd214e5ca87c4a4dffff001d045f755f -010000000b89ccf6b22dc7ff1668cd3de5d6a812f1e5ef46b512cc9e352f3f3b000000007c644560629caa21e1a3fb2bc113deb42f78541283833c4a3abbe6a6fb6d877dd17c4a4dffff001d0588650d -010000003f9e8ff2fbb3e04c36c9683dd534a2d4fee5607825e10a2b4885e8e90000000034dbb7fb145e4c0ef8b98d4a03758ad3e9fde5016b147095494046dade14e834df7c4a4dffff001d0320c105 -010000004ee7497463e160c70196b1412a2ccbd2cc41062a773c4a3202b7b047000000007cd53c97e3e7d4f9f8e172a6168aee8539dcf2f4aa98caefe37be637000aaff9fc7c4a4dffff001d04b19e89 -01000000999ad8365c277b20b05558240e3c383ebea0d478faa53122dfa506b50000000088b03731e11466e46268a2473feb0bfb996a77f1d39d1ad9a23d27aa158ef8719b7d4a4dffff001d041a251c -01000000864569f3105e048d65a9151047f0ca03a5c3311c39dfd84c35bc279b00000000b0c3d72e0b5e89d3cdd7b5d44396e6a4ef92f4a2e7e198a6ee583768d86c839fd47d4a4dffff001d0348f715 -01000000783b15ae83eabb19aac502a6fbae8c6b4b2d8dff30a1c3cb2af0b318000000005e2072b31fecdf48b38a60a1613a73f8c370cb4a857c74844ae17ae30adc9677ca7e4a4dffff001d05a98d10 -010000009b974d3c625f7fcd4e18d7b8e5d53ec6db57b0987f7ceef46e9175c20000000005c8b8ec09654909eb66cb5d6f22c7ba56afafbd3e6486fe8885c7f0ef53b77bd27e4a4dffff001d03cabe9d -01000000d04963c151d6298a97a6ad4c762ccbacec3dabe179b3c39ab96eafed0000000004aa8cff9a7ef9a2029c8f3d45561888c3c50d9d7e9610de7c7976f159bd0d55ff7e4a4dffff001d02e2bf3e -0100000032b6290c64c98539ce9570e69dec2e354bce3909fb62badb2c6dbbdc0000000027cb02841e5e22c93f1e2b61c1cb40553e97205e0956a3b01777c137d3264cdb107f4a4dffff001d03e0d16d -01000000b96ea7181758239d2d12e3c43cb81c47110526fe397595956ec24e1800000000e89deade7ce10d96cd17b1371d1bd50a16e04c997331c3a49baa0ba0cf84e6c5de7f4a4dffff001d02ea02c6 -01000000c80ecafc4bca833c5f2b956f4acd585becd120bc9712517eca873bd5000000003c4a3ed10ee0ff614113e34850ec14018c7286ba1868f4eb541ba0c68a0db05def7f4a4dffff001d05c8b8b2 -01000000c451a1fcaa893e25e72b921e74bbbe82e4489aaeff82806bae8e2ff3000000004d8c8758514bb308bd043ba7c6ab04555831f523ef439b44b6c2d26755a110b86e804a4dffff001d01868381 -01000000b8d4747b5c3a2d6c8e50e389fc938ef7b8c04eb4104c17a2e2694f6000000000aed381b06d2dfe28d0ce14b4f43f5c167dcfbc80d44e37054a014a828a2c8c7236814a4dffff001d05517119 -01000000d0a1893dfc1470c05078598f83a28af1e44df83621ef6a34319f1f79000000008c68d3c55f59e4264a26c2cd1a6a3ed4d45c98eefd14bbfb9a26cf55ba30611d2b824a4dffff001d038d2dc8 -01000000d892825bf696f9c10eead1e3e97dfd043618e0123b72dd058988f92a000000007b921b39ee758310c934e9fc074942513e85716327fa08526e089895530fe6bbca824a4dffff001d0276d82a -0100000062f08100a53cfee15d6960d2915fecda72ac40a116600d176bd6eb5a000000007d4eefd21df4c8472009c501a9c023613b9b67c27231f130cfa72d97978ae996d2824a4dffff001d04f2f222 -01000000c5b9489065fa7e1ac4facc51a5a0ccc2111911609f43386ebe7ca1d200000000a0db3bbb22a2a8441d84dbe335c24959ea3d3d6e91bf67e66bbcb0d7e0a9c4836a834a4dffff001d04181366 -010000007c967c39b155d44a57d37c46bcb47506c0b00a7987d9debe642c4c1a000000009969fab4c50985190c20867d5eb2622f8994a72c05fb9c91ab057be79a80526d94834a4dffff001d0391a66f -0100000015276dffb7a0360993a5a83751944fc88a2d3f13f8e9363e5f3cdce300000000cdaef86e7120eb9f7e0e9c1b3009b4581d1133e5e2371f0da2a0b7d314465f8dd8834a4dffff001d04184062 -01000000d9e737d6b012027382d48297bfa52d08eac8ff7aac62810a3bc6798900000000be2b0f66f65fd65f4d4e387b96041ee0aeadeb736b467f8b64e12663a7f8b92971844a4dffff001d016cbc40 -010000002059d85f0b361f764b21d2254602420fbd84fff571daed5304862a42000000000c0bdb3ed18e03a8b3b92ee43926dfcab9a2bc048c98afa86c1f24e1f7f1ab7e23894a4dffff001d03dc41a4 -01000000c34c5ce16980a5ee4c66a17ca4d8619600a15f7e0dff5edec12209ae00000000e7be4fb74031df2ddaab02750360d6b806cfb54cfb9519ee517c20fd9c636b2332894a4dffff001d05c8f18a -0100000071f7cdf7526fe514f6a17de62bfd240d2eb1fd5f8e406da3833394490000000025156dd8c9381fef3564ec230644a84f35524ee664c3643ccec644088b95d86f7c8a4a4dffff001d054f7dff -010000005b09986f4fe70f0f864a258266fc73e908e170c29b3cfcac9ca9fbe800000000e0f8760379c70b7d7904b5a50c59bc16afc4529114d9b9ac1de43e698debefdba18b4a4dffff001d04457234 -0100000067391d93a161d82b8f968b7041a48507ace6bb30d4dfcc789e0b6f7b00000000a035032fecaa07e192fa2c97f683fc201a50f90c7ce4abcc33ee37aa528503e60b8c4a4dffff001d02bc415c -01000000ddb642656ce71cdf2052b12984eb8c297eed7803ebf000dc63a262ce00000000b9bb4103d0d93289e9f9448ed7e63a8ac751ceaa41d1cc9627d2bca7d7c28a16598c4a4dffff001d02242de7 -010000005705c3df459247a82aaa9c3d836ee2661cfe00c826faa3f2a8462222000000002204f4022b778f21a952719904fcddbefad0afb48be8305e89ddaac4ec8b133c8f8c4a4dffff001d01ef8ecc -01000000560f99e148e5e82dc838535b9cbb5a6116eae26b586531fc2e2a8315000000007760f7a3f07d88e8c7361e1223ea4a9e4fc5f9d8c421037578ac06d921f11095528f4a4dffff001d0392d460 -01000000cb6dafa616960c0d1b87c67ce99dd7238f3891d280444d7a15099f710000000090adecefcdd85452dce9b830a3ceb9240da10806a62404f8b7048c2d85ea0f7d818f4a4dffff001d0331ed48 -010000008f7e1c2ed57b82e56977639379c6cc7eaccdfde5f181fa381b0495610000000023130ef1dba152270b2153aefbb5d4e29c22be3e79b2041ca20620c1b381e099ce8f4a4dffff001d05e4da4e -0100000005b132a4f74a8799a57a4202d0eeb09612cc08d295401f007c4530dd0000000073340035d03933e01bff3c47f14a5b0a8ceae33be12a8dd521315628ebf42eb3f98f4a4dffff001d003a7958 -010000004e6790a025117e8aa81fd453c7c6c236da838f3dacb169abe51897d500000000091aa6ac0aa796201482553ebe24961fdb79bcb2c1b0902f2ecd2c9e7c705d830e934a4dffff001d001badf1 -01000000ef72b16c3d1e58804b715c8ca9d02f2158524171a8a4742d0a07974900000000ecb21277a56d483af3a7ea1615a8a6d0566bf87ef230146ed4a8cc8fbae417b2fc934a4dffff001d0370ca3b -010000004fca0bc6408f652b0d9f79713e880890605c993fe954bb73808f2cba00000000a70a8a17b106c669acb346ac08ca99344b307121658cb8cab8d00eba9adf7c9138944a4dffff001d0328fe63 -01000000077ee2849664864a66985199aa49b030f66c79f8022116c979e234b30000000087be9e1e4f0bda5f90e3c1db350737e4f390064d8aec43d6e00ea92a27c2957ee4944a4dffff001d03af3fb8 -010000008b0d4a2ecef90647f9d1a923020adf2bc138626877f0f855fde5000a00000000ecaa67add6b1f10ff91e5df491b59ab1594c357b39ba9f1f06022b078844375e99944a4dffff001d0037c556 -010000000bafbf706c6cdcd91f5fd082255862927a4d3a0457f7d7fcc6ff3e7600000000087028b6299590346eafb168c13132979b89b4912750975d9bac131a7d4c68c3e2964a4dffff001d0525ab4d -0100000025d15b892b9a091f18e865d579f536c655f18a4994e960b06227a643000000005a2a640ca55a1660daf5363b670daa00560628bc3c39a6dc88d7d59cf2dcb669d0974a4dffff001d0226a908 -010000006843e8fc9750cbf5174a0a778ae5a6a63186683d1296a8514359770d00000000c5eb73e7834883d87b8c0ceef4ba9b850fe503039eee9b28bad767afdf0d0416d7984a4dffff001d05d4fe47 -01000000e3756d4e486befea24a302f095aa87c984f583a66687fae68d92ed1c00000000549848fd7d128b20aae864145aa351ba58eee3feffd7a8089c7adf4445b8de874b994a4dffff001d0496907a -01000000cb8461389ac8693f9f277f037cec93d37eb8b6a6558cbe10bdacd1c3000000008aa6ad7fa12e8ce311c1c659166e587c880e3a6fcdae871eed1bb350d713f25113994a4dffff001d04744479 -010000005573c2792f3790bb99c05da5d71c9a24bce92ffeec84093243a1aeae000000005945dda5801905c0a507e521331b06a9263279c4761dfcdaef431c0a76698688b4994a4dffff001d0546400c -01000000afbc89759982446b305b9f48cdb547f3c95760014fe738ec3e32dc8e00000000fea6f2fb7688cb32351b15857d3f250e581af5b20d9379070b5542a00c42ca70699a4a4dffff001d00ac7c0f -01000000e17f97a9d791f0724271f652f057075f27d96aeb365838d8ab17191500000000a91c00538ff6917dce0bf745e5a040479862ef7134de60320297eb029f7bc07f469a4a4dffff001d03b1cae3 -0100000050e436836fe519456bd7faabec5d522aa80bca6a53af3f9d57457c4f00000000c66962dac9d02aab13c8501636c123f672ab771c8e088e1b24275b105d222c7e569a4a4dffff001d02c1415f -01000000dd654b9a8a51371c852e448ca417a3fb05413a70672783ecb1346f640000000044fae19fa72a7abcbf78d966a5097415b961a316322184bce818191677a3f129fc9a4a4dffff001d01c6aeea -010000004386a29fd8c55a0c47b8e97c6d04e1267549de89abb6db75a577d6ee00000000fa993f2f31763c2969af7e8c181a32cb663e07bd210ec14e29fff768621d4b58459a4a4dffff001d03c6039f -01000000c5cb299e1b345b77d730c527034828c846f23bd3630ff74355c2d9ed0000000056ad317661356b368d8589f343000fb68353f92172d8c7f68a9c9792cc94ca5c779a4a4dffff001d0485feb1 -0100000028fd73f5c4415839b41e887ecd606661462ad914da28c2140afdedd100000000af9d78520fff7f6212f88c7c98521e2c9a8d2a23740ed2068e1b2a55e0c7aba71d9b4a4dffff001d03a07cff -010000000cb32bab66fb7c93a66f841608c74f61dc36d662cb01f30a8f01efd400000000f8bef1ce0194b9aee865355e8e5b0881092bb9fe8e3842c4f7110f7306caec26629b4a4dffff001d004d55fa -01000000c2a8b9e3677de7a6f7286c8a458cd5f09409c254209d9d8c445e0d24000000006bf3416c661bd39443f16a48fb560e97558e2cdab18da1e598086cd40a2ac6ca379b4a4dffff001d02c8a75b -01000000653dea66e42fd4d1019adec51e1f7493b06f458f960a6b08501d8534000000009ec37ca4395220c81233283dfbe020c1982b43c3cec6b82ff425173ef558a51a5c9b4a4dffff001d05681cfd -01000000443c685dd9cd61dbb1d4c1964e8eef7a1e6c6688b38775c2707b2f2e00000000cfb0c5cc863b3809bb9c642a497ab8eb5a2b0e6cb448fb1a12b08c3d0f3b1e13989c4a4dffff001d04a008e2 -0100000059ded6607bd4ccfeb4348c41b04a13343602879158b8d9aa1f3acc6b00000000af43000d9c2194875f48dbe377b839bfa2157758b941b5020e58b55e2ed04fb5de9b4a4dffff001d05540f10 -01000000d04014b56c58d45f823589d9d36bb755c50ee96359ff44449d71cfc4000000009d6e5c4cadaa256c698491f2c3086ceafc5f73eda5e54d4ebd50ac8ed90eefe0c79c4a4dffff001d015a6219 -0100000098fbe05200b867e000286338ee405f70ce4362f54769db2bc9d919db0000000078b787d3d8da61dce5a9fe4d4a9232e804021e439906e6fd52cf8f041f948b3d919d4a4dffff001d05774a61 -01000000c5f311edc79caeab3404ee358871e5f886712e56005f4c67141dadd7000000005545fe6585b08eceabf29cb4ff68ba07020fb36520301d4d5e7f30dd1489aa6e849d4a4dffff001d0505dfe1 -01000000f24700786a174a784f2d99ad24d4c0165e2f64acdf0893cd4839590a0000000022c09454ffd3a434342bed475ee4e9f7a34b99d26b65f2ab92bcf7418e77f732e69d4a4dffff001d04872d33 -010000009849d7f7915299b00804b04d89a946033b4bac82b431a04781ee1c6a000000006801e653da56cf733fbab3ebb4d3f248ae5066f00b0b879a178ce3522c7e1572cb9e4a4dffff001d01e83192 -010000002cc41fc32ae1712dbf174b8d810498ea52c9908a96100cbca447858e00000000a9eefb8c49a77795e353cef1a18ddf9f75556b599049cc5c326bbedbccc3cc5aac9e4a4dffff001d0559b918 -0100000029bd58b2759e2398dafa0ed714764e7ea87a61e9966b4777837ad0520000000073173503f0ea326597487757ead4a2afaded9c36545e6f94578d3dc6e5d58fbdef9f4a4dffff001d01bb0d51 -010000008d7f3d0a93bb78055f440276924456111c24af5ed639ca3b3a2226d600000000fce8d0f71b20ad1d4797818e77da4739eabd906dafb8baa38bed17cc3f8d723906a04a4dffff001d04416634 -01000000e26e977c4cabd28830a8e1f87983e91ecbac81030dbbd7cea6efd4c40000000029045a4c17ed6ba6bfc40396d8b9d2640a705fd487c3c0271eafa3c503d0f54b9ba04a4dffff001d02477ab9 -01000000f3249f94c4a61be9fe426f496ddc9670874206c5034c68fb03a77edb000000008f1c9da6092af60d73b296ebbc796caf1b8a095f7ed33078bae45cbd2925029961a14a4dffff001d0253c63b -010000006f6cd48debac250a7b42738755888a7571eb9935bae9e94d7cc28b1100000000d42144297dd9954a62226db7fa2de24cba50b4c963ae6226ae5fa652946dd0a7e5a24a4dffff001d003cb819 -010000009ff0cf741383d94f79a6efeff2a317aaf6375ac3d252db55362280e00000000029e2f50ac5d203e020e7b59855380dda3e918c80627117c6249f987b28ac807bd6a24a4dffff001d030ba92c -01000000f61d5499f92cf040f17a16d02b348dcb3dd041b224625bc99acd35a400000000400de7fdd4b27e6d8d358cbe3b329417d75352a9aaff9af70c1f685cf842560675a34a4dffff001d0271c0e5 -010000000d1e2a2e2670286100f862dbae397fef5d8dede11bbcb013c453e8ec0000000043db438150141c0240a7f3f03cca32f4fd0ebbd6bae6daf898a6c7aac99b8a85c9a34a4dffff001d010d4882 -01000000abcc3483c5e1adeec60646454065ae3a116dc60aea65be6d0e66bc7c000000006c0e3cda9dd0367de3a4e1d356c0ad23cd88f26cdff41b412b0ca1de1d9c738cbda34a4dffff001d00b44c37 -01000000e0d79f654270f553820b56d0332b5ec18a4cb5d969c5d67c8adf9b2a00000000f2cf8413e5df690ebfdc8441586639e39ee7d8571d88e07853117ed693bc0b8d35a44a4dffff001d017fc225 -01000000ee4c6ec5ebb31e14991634916e68379e6f08617bd3e2b0816c0605fc00000000203f6062b808d073f0471cc4bad3fe9cc51cb9c732ab53e46a4127fbf0b960fbbfa34a4dffff001d03592dc6 -010000008000bccda2bdbf0a6293178dd1cdce1a368824e9c99587798b7fc1c600000000d29fc4754ff52a23715d3147c6a0ae31ddf06fa70465f4d09d41b4aa08da707bc8a34a4dffff001d05e36843 -01000000386cd6cb2551941a87716c2c618e1e56e9fe7acb49b0a71f414047eb000000007bd7a97b969168050de5f20cd3d0ea212b138f4b43e3c27755f46aa08f98f1ce06a44a4dffff001d019dfd3f -0100000053402e2e9f85db9774e0193414436cfbbc70b658c4e54913c67bcad300000000fbcf82e5b9b5c1aff879c25c172d4db531905915b205187bc3ae1425603e7c764da54a4dffff001d0154db1a -01000000ded3e38a879dcbfde2c9ff5690db8377d0c596e20b8be94dafe611df000000009d8b84155b519e0c1cd97837329fc3505f76944245c1bd686617779dc700c15850a54a4dffff001d00ea1441 -0100000011a98d2176e7952434447a06a9ce9f726651737d3a3e006373183b2400000000a50e90ca36c2cab93fd8acec6eae0755d7d2e710688a26fc16557bb5c038d12c0ca54a4dffff001d044b4279 -010000008cffb590fc8e390cc07b0fc7d7e1f83033a7f09c20ef114f6efd73fc0000000098f65f5151c0fdce2398474d0987d7a531aab1c2659675c07658b07cd954f80b29a64a4dffff001d03e15e65 -010000000a7213bcde17cdc86191ebe8580e3a9e893e3b9a189e2787394c5cac00000000230d4c63ebf11994b50ef9c5f1b75b2b8ce6950f63fad01665fec3ed5ff2bcd243a64a4dffff001d02706123 -010000002c29a0a93ef692c20f7a5d0a917a69be60ec5bd73788f9ae92a2e7f90000000048634496267a248713364570b8c4cc6ad5b1a3f32fb74cc1f11fd22c3b293e88b5a64a4dffff001d010845af -01000000fd50cc2daafbf969480d2675a4cdc41f397d1d815a2aeaf863236bbc0000000086d723685d916a3b3aec61efe9b88a845d96fb903e78760e0759aa2089de4e2e66a74a4dffff001d0389da36 -01000000e897be2520f0c6faad2d0c4be209e0d4cb2edfacb7579a6aa939a10a00000000ae3f02363ed042360b679fece5726b2499e74f27f1bc596c3beaf701463be4465aa84a4dffff001d04ea7f5c -01000000a4f61773f2105205cff43c8ccb188a0ebe56f0811834cc0772a5a1e8000000003b776a5a9f039715342ed278feea0e87f1454ffdd086ec1e3663cc738965e9d536a94a4dffff001d04479ccf -01000000cd182da4f3e6641784b8035ac96d74b182939696dda02368f01889b7000000002fa23a7882a373528b5403d34eeb13a26fbf25d668e7019e7a0403ccb5ded71387a84a4dffff001d033151e9 -01000000913cb00e5db68a01cd2c2c469773d0946e3e1589cd72c56349d0405c00000000e04420559afddb03dcf51c67a8317370080e517e24ea38dbbb5bd529680c1d2c3aa94a4dffff001d01ae2ae9 -01000000f87f4f7f7f99202d77747619865391ed07d87afb9c7c9a48b7f319ab00000000b4e21e67bcdbd54bee76d62b5cfdb6b5cdfc5fd1c6ffe9fd6b1e2f39677aeacd2ea94a4dffff001d03275902 -01000000c7a1220a895e2a83917ab688040dea8a000bbd5f4858e8bda00f3bd100000000fcddd0541ddd056f19fcfac0e637cc8fab7503352757707daf37da8e859434f397a94a4dffff001d02d171f6 -01000000c5711e518c4a53e9a6d684759ecd07d69b5d859e1edffcf4bcd3896800000000e4ce2882f8c5b8e467a080c647ca97b8c11070b7ad10a1eaeef13e1b49d0028cdaaa4a4dffff001d03ac5ea8 -010000000a1bf9a1db633b5c817be9ecef65ea99ed980a58d070cfab68b70d5200000000c9fca844eac0515369a587359fce6a2cec83ebe565dbf46b92928ca831a1abd54ab24a4dffff001d0370f65f -0100000081f9fcc96f7824b23225d5526b65d3d5826bfa8b65c083028e7b287700000000163cdfb6b5d8589c539ef411a96eb96ee49dcf03ef4538d8f752762893db209515b34a4dffff001d0215c77e -01000000a563fe8e23fd9acdbd8ce0db616cb72c1b05fc8610c4e89fcd32b21f0000000074fccc385cc517580daf8966fcbae398b81ce1f077bdc5732c529d6c3502e16183b34a4dffff001d033652b3 -01000000de5ca94254b771527679b5dc4862a7eee044409cc33ab2960cbe3920000000005f20491b7a3093fe2b342e816a5b8d409916c2f11a6cb6743dc528e8c7ac51b7ccb44a4dffff001d00d437a6 -01000000f8d57b05a64cb39a5adff645ba434bb707aa118322851cbce137df2800000000d760a34f6e7b07b3718a8355b71b014f07fadb917707e4bb635cc1277cb8ca7f5ab54a4dffff001d00d8ddeb -01000000a54d55adebdea113e46d6911a15712f7545709577a5ef6684a37974800000000849ecac186963e52f8b855e51f70e9cfc90cd0f7054c23f1bcbc1675206a00bb4db54a4dffff001d01cec36c -01000000f2f0b39c9e0f8ae81ceaf09ad25ee9166e8f3d33addaca1ca1366c5100000000060e3cb266839d6c8155ebef78939c33b659156bb2cbca1cc95b50e58ad5100b2eb74a4dffff001d02e282eb -010000004a016d8b02a6e3c33705715c29754230218f04485693994b29d78a2c000000007286500c919f491aa5a0721558e4b8a64230ec2d1d955c45ac871da0e74c898d3eb74a4dffff001d036714f3 -010000002d24b64aca8efd3a0a948e813c5303891d1971e6295be97c1923e05c00000000eca7286e07ea252409b51cb2124e3fcd6adb8e6fdcf87046de18666e36037511e6b74a4dffff001d037e372e -01000000dc8280b9a38ed7829f3ae49bf8f01642c0b16b90642b2e911c2cb69000000000a10c2661ab1b02ab9f3c5bf928db087c27c06ee7537b04ee66ea4785fb625c6205b84a4dffff001d053fb75f -01000000280fd86185912d306966b6b7bd90a765e659bad17564825f0c997f2d000000006637b339af8cdf579a250267ce7ce41f19de798c7ee6ff7823312076e0950962c7b84a4dffff001d00c1fc82 -01000000993b4428fc00d1eef46e5fb166b32f32ea75e3e49105a04322845d2800000000fbdd76c6562c86af0e63ea9a6c46a91b8d92c4e7df480977ec0d53b7f3c25b9812b94a4dffff001d0099e992 -01000000c3b9d6eb714b91e367d7a44145f498cdde7f579b68c66bc1b9af7886000000005b0df3f16d5bb399b09989beaf8e0665c695ef49b7aa8473ba8690f0b029ce0094b94a4dffff001d036efa36 -01000000a702519acf76d7519ce42d6c0bfff12644be3694621a942a55e4b36900000000f9357358ee5931b907a8c3df01115891a740ce6f4df224eda4586eaf450d8b9f3bb94a4dffff001d02d9d39c -01000000931d5230c5a2b7d43d322cebf9026ca68fe1a70afe0d8c8abed78d320000000005634a2446d5fb785d1f1582e6f35418bc6fbfb6abb9507213b010e58dac1c3ce0b94a4dffff001d02e9d793 -010000009c7bf22857a46add066ce2267450ddd5a6f280943e961b1db4d3be0a000000005eef5906ff42a8baf4a8a2d8119f88112d802484361ea778d22e44300f6ab20c55bb4a4dffff001d0179f4e9 -01000000e2a926d9239573962e534a47311e7875482832ecc6306bfaf1137c0500000000fe6ae11390e7bca224e9937759c658c9aadc8971e8ba384caf2a58de311826e7abbb4a4dffff001d01d2102e -01000000dd3fb5ca9283091e24a2dec99871d9c033f39b1009f5ac592ae2cf190000000086a971609dbe58f45f99ae1a769c07ed6b0575ffe811844b8f6e04edac722bdae9bc4a4dffff001d037251ae -01000000a7f31bcf8d5a86bda0ddaadc3c8b77ec71af748584b3a5eda6b88c4600000000adc6c0ba4cebd8e2b0154e9f876f1e6ea54e293e6505a5200a4a75d394521a7882bd4a4dffff001d02defce7 -010000003846b6ba73428b23c1aea96cb3a4cf8b72ea4f40268ed68fd16ad9bc0000000050a4b5b4d3fb6c72d198506c83d6e2792262134ac07813baf355921ffee7c6579abd4a4dffff001d04687d8c -01000000df7e6b1a5947867dda62ed7a79f75d939d4190f3a575b447c31308f9000000002523ea33f4e43dc2dbdb14116d5d087aa3544a7f886a69693caa154ae0abcfdf05be4a4dffff001d030a6d3c -01000000799f7e9b6d0ef1bcc5d4e6b82936272e3492df8a920b934dc9e1973000000000d0038b40a4b3c20cb7a6b431d6c2edcd235c59dfaca4698dc0f4a057d89eded6ebbd4a4dffff001d01e9924b -010000005dc85295d33956fc24736fe54dfaa12ca98cae2ba02ef7eb9655a12a00000000b7bae6ad3a263adfc01e5e76acfa7dbdc0e60962230af6fc59003d59b437b28d90be4a4dffff001d032ce3c6 -01000000a3b52bc4a8ade1fb7764462099a412272fa13b3d9de508c356a3d7910000000001eef5a3b0e24e946235bdbdaf78601185042a5974a6f9aa7d8deab62b6bc49c18bf4a4dffff001d05a9f6dc -010000000e816fbf3db7c990098f50722e36029dda668e9aa386c23a201e9d8e0000000027d9b4ef4291c5332a05c4a2918b5526b96a117c0bb2bc97cd18f5a6eea15caca7bf4a4dffff001d023f105f -01000000514062fccf6e88a8ad9d0ff0fa2ca4d2716c2b5fcc577f52e4557fab00000000ca12c4c5fa9b8106d21f12f4bb24e1954ee95686b849c643e0504328653198fe1cc04a4dffff001d022e817e -01000000b8631eb7fbe8abdc32f81b54c6f86c96cdb5d7c270cbc8e8026890e80000000032510d84003ef4d4b634cb4bc914de16f8e9b72b6f1ea20dd9eb847f11351641f7bf4a4dffff001d011d83b5 -01000000bf3ce738c0692a474dadc784640fe4e2f06beef2fffed0bfee65cff100000000a463353790f4669516f33c405164df2ee08f7738bc91ded3ca2a025e18143ac967c04a4dffff001d01fcc651 -01000000fd4bb907a2089b41433dde0fcfa70db3ac3a6f075be657f0e15144d1000000004bc439544765cbaef9a184ce7fb26bd62cf1ab32267eed5fb3bc7050a8f0c427b4c04a4dffff001d05d07be8 -01000000d0d3565bbad3a5fd165a7fbd978fb2ff2974dac1fb4ef21ee0c6282200000000e4e9ef647dfd719c086990944594c3892d0deffc18fc90e092d61a3e586e4cf8c6c14a4dffff001d0188a8b7 -01000000d2d5324fd546db69e8c42e6f6c5f2f686cf29a9fae985224d450ca7b00000000b3c4d587370073598ce1a226be2f70e0ccbe446e80f88f0446dc5b179782186b78c34a4dffff001d027bf975 -0100000074b16276f3e902ba74a5a938a86ad7249db7c620b06023385b515109000000001b94a65422bddf5384bb8da9d866fc7a7e5c5abfbd5867efdc8eada3b78b8e3babc34a4dffff001d02d402ae -0100000057f6b87254267089a1d84eeb06f20c3b181177372b88cb9152f356dd00000000c70258c4f96177b1cdd9d6fd5ad0e9a65abb44e7fc3dbe507f45e2984ab830d9c9c34a4dffff001d03cfee0e -0100000078eea9a9282653e1e213c716004ee3c5b7d323c37bdec7a64565831200000000ac37dfa5948ecb63e944a61eb0e83cbf7dff61cd61cf66d21f447d9a97bcbec123c44a4dffff001d05c7a466 -010000006c0d72985fd57581d55754a3dc631a89e6e4e1edbad1696ec271d6c200000000c1d26e829e285126d03a1943bc46d72c7e68f7fe1855393079dcc6406328ebc53ac44a4dffff001d01ec1ff0 -0100000060f628c70ffabdde8c265ff6aa1b49e0f42d250a0645ac0fa2963ffc0000000074f7d49e03dd5ccae2109db1e4ff11507238642d86fc771aaa999ae48b06f3d26fc44a4dffff001d044b6b47 -01000000f2c8d522c94e93a8ff5d947c057e4125a4deb167e5eabed5dfb56736000000005127f86da79df2980cedb16ab9a4b167e6daeadcda0d645f83deb48a3dcc065eb8c44a4dffff001d0561c0ee -01000000e6c388d72c717914e507f11c58a139137fd483dbd746e9c5f2a1eb0f00000000afa8dd6f0e319d4ddedfa1425f6c03e461dfa005d42d3f355a04cae42626c9b121c64a4dffff001d059f05b2 -010000001b354bd6d10f5a24879851bb2aff42548cb66cebda04e7103bc2521900000000622c689b318941bef087640fddab2c5ef6dd6024f133ac28c1ccfaf30e380bfa4dc64a4dffff001d00484506 -010000003e226e00e126f0a4a35b1c6c09509e0d999122428262a5303e563c6000000000d7432b21fd48689d7e79f9b6f7f624aefe8b72503fca13b814d355618b9023cf23c74a4dffff001d0247f874 -01000000fbb3060018eb1f40d734cc64744134d96536c4a331e00d4c05e2cf9b0000000061b34d561ddfd18ea3381d48a8bbe4627727c6ead00a84030e7f76eeb788148a71c74a4dffff001d012e783d -01000000fff008ec46c2d35cf469eded16dfadc77ca6e9a9680cea0b0611661b000000001d1e1087d20d41da1f0b4a5423aeb281ecd48cfc434feb45a4c6c31b6b61398124c84a4dffff001d05928767 -0100000093ebaafdaac804feef3ec352e40cc78be60e7ef1edb167891ccd99cc000000006bf225e961b1f1b8e042c45966c2118f20871551e0996eaf51bb628cd9d49b7a45c84a4dffff001d00381daf -01000000e85fb976eb4817418c0ed2987dba1674c0fd757f70b470f83d01a2d300000000fd6717e5d49bf303d41d861fc50503aa8575eb52243f426de308869a8cd57c57f5c74a4dffff001d033a590f -010000009cf5f976b9ae634b4c867bf78cb602bee8150ea1838d0ef3d06ce94700000000fe6ce75c462d7d09aa8d917fa90a49bd6a4c41f02457ff40ca47ded089021042b0c84a4dffff001d03a5f6aa -010000002eff16b6669f88de6f40810c57349804014f734c692a44ee822b7f1200000000c095ce4ab7e0e02110b75a33012da97d75e26b83de5ae0bd392fc3b8191b77e8e8c84a4dffff001d032c2bf6 -0100000001aa2c494f2d4b7ecf367734c734b931d3592b1572dcff557186ece700000000a10e60b120c06cd1be1d2153abb7901e2d9f1a3f43de9e6642ad269be1cae22e44c94a4dffff001d01f2005b -010000003d04e058642d22428704ad4337f372bb8574cae072c2a4b469b2e1dd00000000bff07e723c3859fe85bb849d860b21a325b1baf1494a3c1e73435dd7992bf8e53dc94a4dffff001d00262757 -01000000272ecd270665dc39e924838516da62f8588270f1e37812aabdb1d48c000000001725d4769aaca3cf86c5b0dd199bf93f2d16dbb13fbd4029633bdd1085283fdd13c94a4dffff001d02f79a8a -01000000705f1bbf68b4976a9ade4ff01ae933030cfe4cd43e8092c9604442a2000000000cb7f30461a3563992f7b02095263fdceb13984123a28ea68d0989601655e84ab8c94a4dffff001d0017e0d9 -0100000082d6e6bf4ed6c5b989705920effd072fe6b7119ea5b8c8fa6d0bf5c70000000071959f90386cdc263655d36033817a6f69cbc2d99fc56cc81f893b9787907a4fcfc94a4dffff001d000f9093 -01000000374e3a88a3a3eef84b4212e90e863754ac2a6999747c22667c0b29e0000000003a0e3693a8455ac94beb574efd98297948c5b5f69eaf0b813e6d5e57426e39e279ca4a4dffff001d042b079c -0100000003f06b3017023d1cbddd4cf169c4e74879754683f0d7670f1d1197f70000000098b12eacd55084fe2807a33dc2c89e6fc25f382aba3c6b4c7ee2f74a6999a6bbfbca4a4dffff001d03ba1eb8 -010000009c0730eadadb66fa486e40dbddd14b635ec7939f788fdfd999e043f2000000006b0a86109aea3d5e4b7dc320da600dff19d81dce7b77dab9596204c20c6125b06eca4a4dffff001d01c88a1c -01000000410f77945e68dba04d76fc931b26ccb571159c9bad438df5f8fc4d190000000004d902fedee34fce75de583a54e1fe7ef26a7946b48b93b9b0834dbf19a0b47f3dcb4a4dffff001d016618bc -0100000025ec91d09a451f18667262004e0cebb2ad66262407ed0a8f4ddbff580000000092f8e1be93272aae6b36766d721df3d80444582edec0143174c5fafad4cef50c79cd4a4dffff001d031ee0cf -01000000d8d0cea1249f726362ee78259d97d98efa17ab0efeb1b9d0a0cf0d880000000035c3dc39e544b855457fb0711697a24123fc3ba6c439123714b193b9d1d9ec7514cd4a4dffff001d0526c906 -010000003e824b7a8cb7bea1dddcaee7bbc4720e8c5d2f53c9c28dbaea4662a90000000061ef7a1ca4f6f61cc594d040490d3cb2f11054639a0a964c67cebc6dbc079e36cacc4a4dffff001d03af40bf -01000000da9201093da940fb6badc420406540a979cd5c06fc2f47db3215130b0000000069577de9d33e6351fb0ac1be26158f94c217d2522c35e9f813e47bf9811fad72dacd4a4dffff001d02f70faa -010000003dca51f6b97f7c05a44f329c1c9f4d7cf03eeb3b16d94bd56e34b50600000000092122ea597797ea0de7841945f09c221578800d0c44de4961cad7ecfb93c47323ce4a4dffff001d03bd9635 -01000000a560b2ead8a3f50df84385c1d5a51654c22a321268e077dfcb9ef90c0000000091db9cfec3e6c44a790d6295a2effcb8dc94f9f1c0fc4f6d867e90e140c1e9f325cf4a4dffff001d03a86875 -0100000056e6a9a6b93f9ad3ad847ee845ee9c366dc9376489516c31d892ed5e00000000bf2f3b6867855fe1058092fec7c5ea89c15cf8a70d0c565c26362d10129221af47cf4a4dffff001d027a9b69 -01000000d123e40889dc9dd8039943b5b1a0de53026e9ce92cfc69d5f8482fbc0000000022b49f0319707490d002d5b2c04adfc7a6433c2931ed04545e9c33f37a12b5bb924bbe4fffff001d00b7fffa -0100000065aa216d118366b22580747fb4d876d80ae3be145e318563984e0b040000000000c2b33efaf934623c6bea64570558d6551524e2f45d022b0fe935387279e6a37b51be4fffff001d0511e593 -01000000eced0b25fadf8818fabbf65b9c16f39874336d7faca51b74698ad55500000000ee49643ded3202eb46b451c55a652c6cf38d82da93de97a2f2bc0e8a28c1be7ba951be4fffff001d01f82bc0 -01000000bc9c266783225bfa273dbba2342f54809dcc2b263e1e6bf3269bda300000000001aa244355f8827bdc7eaaa0defe1a928816cf7d919890781c1fe3ee58d985684d53be4fffff001d01a443c5 -010000001b7467dcebcf2baa4814161dd6c7ab966ba082d670a69eaacc1785910000000050098a241f8df957a6bbea8ecc39473091636a4e55d673ae723edb6a3f50b9835853be4fffff001d013788f6 -01000000f5023ad6b3432b6b2d5afe707cfbfa0a30e94000799c8430a97da151000000007a53e7dbfb43a28ee9d5956be8da4190e5be6f16da4a5636f6139742754ec0cedc54be4fffff001d04474930 -010000002077ea8e53ba9a132d83b91e40fb1f4c724217b8197c4533a5bee9e90000000096a376627bd7b42278fb33609713b83665f195d100316b9e1651638cd4d7d47cfd84bf4fffff001d027c40c5 -010000001936a4ef861f194c15f171e843866f33ec3b3cf09394bc323753beb8000000002e3288941ec156d0fdc90d314d85a71a418d272704e12f2a99576fe3201e2d1b3887bf4fffff001d027aefaf -010000006e5c2e805629d476b92e0a8d74c3ee0dea0c24e9f35ab4afc6ac77b400000000d26cbed9a7c1e51fe657c6b3cdf202926e0b6e371ebf41ccdcbc0909470d56256e88bf4fffff001d05a2db35 -01000000e5f26b5abf56353520e1f9baa35e9cdeb57f257f59ff6a4ee42c3795000000007becb215d446a70b351fdb14659d105b3c258802fa4314b536c4e5249adaab2a9c88bf4fffff001d04e36b51 -010000003cf3550994f31a27c040b1340c7ae9ccd36d554a1bfa797cf46504c00000000005f56011e8d4bf55bca3dd8c9799e0d83304e43ae8b66ee58c688bb9d7f7fefeb088bf4fffff001d0314c7c0 -01000000ad48a4d4922e3834375f8c50e8cb1842688829c8952204f66b89a7e9000000004579dc3ff13abb920007843862e9091b0e142564cd0a75f5fc3272982b816d4ee988bf4fffff001d00becf18 -0100000098eff668afac04d3d8531d9bc31aafcd48f7ba68b080b40641dfddc200000000a91184d97bec523016c15dfc3473e7407278b70638f4fd6c9dc1ba210454f7fb1189bf4fffff001d042a1349 -01000000ed2b2b04575642de5fc665cb8e30f3e39dea66299592405204bf6b5d00000000f3af0d684b2c16f307b6ddf9a02b58b9079e858dd2d093aa29288856b83b82183789bf4fffff001d002cfc38 -01000000a398a8e978de6f1e7b9b84523d45e5f2021feb29f6d39890a2f48afd00000000f4a78ab4703ca95ed478e78e526f1a8198c3cbfb8a9ee6455338d517aa18173f3e89bf4fffff001d008b40b4 -0100000036bef7eedabe3b05e1e049efcf66823190285d64d11ccfd2eccb5e3200000000243f2ed308bd48cd3dd25d4cc649dea0d0518d6e12612e03c8a0888aa284bf2d6189bf4fffff001d0498f47c -010000008d84b4fadc45563b60c0f50797ffaf71046f287482ab9fe629f64e4e000000003ae5c2515afb4117d032de958e0ba535e484575b80ff6d6e2e0a23e6dc95e0ea7889bf4fffff001d0518a2da -0100000020ddc91a15f8c9ec5161bf1709ad7f37c33ecce9809b353dfd3df2a400000000f2b6d372af2c7164d36dc1c369090f4f9179b0870676ab6ec2641b0922b1fd179289bf4fffff001d04bbff73 -010000009701e67638ec4e8b47c547ac3125ac6c1892a98d77a580ab88f069d5000000007c740055656afd61883f9c1c102fec710315e6e4d58904accd184cba85c9f958cd8bbf4fffff001d03f8f01b -01000000fa9f56e3e4fe1352905b3a1f12567caa3f9f4251f0bda94fb07f1684000000009ff7fbae47f6afb47a1723662d196155b5f4bc1c62e882a93f54ba2d9a10913b508cbf4fffff001d02d1c97b -0100000002ae1c66166259ef43d290c6a60cf8eb5783e6c91293a3566946673a00000000846d597237ea76576bc49381badb59bd509cfda3095c2c1ce5c75788b96aa144718cbf4fffff001d0139c1f5 -010000001ed0a06499985c4cfb05371eec681819d8e193b66011f57b66792565000000008980b714aeb09568fd34128f4c7ff84d3e09223dcb2b290c5948816cc636d69fa58cbf4fffff001d0122c5f4 -010000008c045f9e0e200a8eea9c0957b12e045e927dc768a8a5fc2d8fd8d9ad000000009925a3f617c025b95f6329247379b7ef7bd081e52838676671c7360eec07255a098dbf4fffff001d0099c40f -01000000a6adbd81b12cff9948911af583db14484c4c0d30e91b1af2e7fd4d4f00000000a70e4b2057854c71170f8468b799f03d0344905213872216f4210f7bfcf76980198dbf4fffff001d002b7c3a -0100000059e1e5ae6727e02c2acf95bc5f24d8274e42495c790125ba52a581170000000043412a5a9f1749688460eee46b62851641fd9b17f9ed5131b3f50e4f160eadc45cb3bf4fffff001d03a966ba -01000000c704e90a0c4cb992d6973d636a7094ef2790a60231db345a926b6cb6000000006f98c89001a2e89ea35aaf00b85d965af5598b61bc48d9d9847609331995383effb4bf4fffff001d02ee5af9 -010000005468467a64f255415f3ad770f0d5393275f2813fd0e1e915a2b8c28b000000000566f29ed6b8cdf85a4b197dcbb0135dfb7b671f83ca67970bffea903309ab7445b5bf4fffff001d032ac068 -0100000021ad75b801d48a30fa5b4e6b1e43106a294a5e2763307a992fbd5282000000002c20851e58dc1a2ceb7c7771822ed41c7d0994731d01829628c3e938f4155a276eb5bf4fffff001d01a1420f -0100000002954bf32d68d54adac42cb5190efc06f18ead35208dc14a8face6f1000000009002c5c2dfd0259960507e69399c688f0d74bbcd52c810cd2d2507a829133f4941bdbf4fffff001d01724be9 -01000000add5df18f427437ace8b40064b3806583217a3f724672cf72cf8c18300000000bc652800c84513b2de38e0e97be92a582a628e1e49a9fe8d49aea5623251eda54abdbf4fffff001d045ec8ea -010000003b0c953fed585c1ac952df84e4c3953ba551da457c700035f6f3fc0c00000000831c01723b0fa955a6fbd51d9ddc5c77964814868f96f52ea3eaf3b66098e6df9dbdbf4fffff001d00cb77db -01000000f6667e8c4557c28f88b86a6892d03509a5afc9a89088a5bb8638eafa00000000ff61d87fbc86dac7f80962702153a2a6d9a84dac13c265106b883ed7ef68fc91cebdbf4fffff001d00e07f63 -010000002cb99b76cd981a422d02d61684f76bacea92669298e552e412ce41df000000005f2a9977b14cf34078500f956be0cc154291ce5a0e34c00a3dbbae97bed5e930f5bdbf4fffff001d008fd760 +fork:000000203dd5063677584b973ff13e95db6d7deacf55b89293bededfb4eecfcd180000001ca60703d74686818e214ffa1177cccb3534b202dc6cfab1c7ef467d91f18f3beac5b263ffff0f1f6f05000001 +fork:0000002056c3cf8437d4e22237f2959909c88c7c4315d5039168b03ea14dfc0921e40b00b8027f999b111a7f189ff9fc8173b95faba4cbb9bc00c0091a46c3baf4cfb9dbc4d6b263ffff0f1f370e000001 +000000203dd5063677584b973ff13e95db6d7deacf55b89293bededfb4eecfcd1800000091c34faf58277c508aede93dde3064fb0e940ceed36e3e460da35e98cafdad040f75d562ffff0f1f00003d5901 +000000209565edd79ef272c8573f88ddd434ed7c02952c56d4cca572782ab0cc241603006ce709450e02e5f3730820b29d8b20180b0a7876e7d2d30ba9f31ab70673c9b21075d562ffff221d166663a601 +000000202806a4b7fbc5b36d409836e9b33685e53314d381daf5b0efbec8edc1180000005b7c3595accced45032522a7e8b52d7f204050600f7b1f7a6cda601c17db853c5e77d562ffff221d0141b19f01 +00000020ef30f3e170cc90fec0828d7e3c27e41dff7bb6b716b14046eb5725c321000000bc0af863c690cd719d7e1c35f46cb05d5cb4fd35d8323178ed8ad34945bf8de35f77d562ffff221d0cf7f9df01 +0000002071a53a3a0d4fa9cb38661c4d6d0670ecd86aefc932b23d94f1ceded21e0000002b33ed8c441dbd9873ee341c7d34cea02c7ff873974239ef1ab60cd2186020d96077d562ffff221d015dd68201 +00000020240042d9989681c2e55c7f6c3872310dbe80bcd0ea4f93ad0efc6b10000000001d93f3eee16db646e8e7a6c98c86fc52122d56320a2615034485bdcd900cd29c6177d562ffff221d0d1e6e3001 +000000203526230824bfdd7fea737ed8d9c23882594ea92252c347951ea5c94d0a000000f601e3e39f29ec811723f9e204a95cadf3476779030eca8d117bda188a03f8f96277d562ffff221d000dd1dd01 +0000002048e848c09a149178ed12c65d74ec46339a963a45a42b0fb94d84ce1c0b000000899068c185d02da2c1af9df1c251c85fb48633477301aaf9823b5117411fb39c6277d562ffff221d072bbced01 +000000201982f26ab08c6b201e6bf732f67eeb8f8760e2308aa9f1229e82c40b1d000000e7a71ea33a6e40535bea5bd22e17871256068ca234ad4f0e41d68491b4888d176377d562ffff221d065c5aa801 +0000002079614bcc644bd7235fb05da311cd6268a9cfa4a44b324e2b6be2ba250b000000b679c4c98c51bca35ce694b8a2a48307c9ce69157b634107e14d48a7413d929f6377d562ffff221d02d3723d01 +0000002024346f140de54f3218af6a5c93ea15cd94876d01ea2f44557d841ef7150000003dcbd5fe2a7709c841119794e4db71ed33523d4347a4031e6c163eb1692b6c496779d562ffff221d01586bf301 +0000002014945a42ba2cd12f77d2964ed029381e65367ab55bc58e1f0e5061de11000000e8642654c519b7fc2f9c1c8f9ff0aa962002485a42fa4323db8514752fe131d16879d562ffff221d0a06e3a401 +000000203ddaf189247626d13506225327089da33bed7478e8f224e39a135a341b000000933a6a92b7bfe55e706b2e50b9de004b37d3a24a2690d885ec0b953e310637cc6979d562ffff221d043b78ee01 +0000002062b9533b1b6b0020adc12268cad50077e405cfd869d97919fce5f1491d0000000ffcd46f560de1d7f5051279163e52143b106610d95e7d2174d2d2dbdd6315ca7f8cd562ffff0f1f3c09000001 +0000002059efda9a31435e412bf8880511dc5f524c8c0568d66154406765b599f5870c00f0b7f51a14f3ccfdbe8b9c0515477a8c80b5fecc376c492b3fe3b643557eb5bea591d562ffff0f1f050a000001 +00000020497da78a288152976fb8db30f6068bf51c3459b94639cd8ec840b7abf1370d009224f29690e08f0ee3813475d67463858831da04b57a14e08d1d7a6c9c0bb9d07196d562ffff0f1f3a02000001 +00000020a085caa5ef42492b5980ac5a63dd7c3aa0b4b4c02ce40b3c9fd3e60650d30a003ea6fe49191ae974da1770018de7c77c41ba0c53fcc91255d2a8e03800c83b40e39ad562ffff221d0b23f11201 +00000020e5d8e46a24f799d3a754749585fe8b861fa44fc2906701bcbfbd054b00000000e9747e0fb7b51fdafdd90ffa7f02e3c97a121228b7dcd22f97a1c9c3dd8bca9be49ad562ffff221d04ca1e1401 +00000020633cda9157ed358079fe1f8e5e094b95c36e8f8d485f7fcb19313282000000009271587f87803a2b214ae813f012afa075667521c59373d6508ca7243e4a468ee59ad562ffff221d0207960c01 +000000203bcd1efa12b78b67d8169f998ae354fc4efba2c18ff633c2ef5bbc6a2100000009d243cc36230c1622b2ab1ad6171ff40f24c0de2bb7ea44d5f4df7b9b146b2ae59ad562ffff221d0387669101 +0000002041735e76a611d0aead749beb34f5b07af8073eed7410055d6df724d00a0000006f6252ecb861a367b95a363da5e27ab300daa218847480c8902484c8de349fa7e69ad562ffff221d060d250301 +0000002062d392e84f480cc968c31a41d0a2343520b4d80afabfe56ca7603b4a1a000000aa76b50e91376bd67c0db2ff452d014e354b0d803c7021390a49a385a95f7922e79ad562ffff221d0319530501 +0000002099c136fc88fb3b9dd35f6ea56e3104ad70d1bbd4f69fa59a7ecf0eaf1900000097c46c823abf139fcf5cd270cdbb78b022ecd4b5f2a8c807bd82bd1735884120e79ad562ffff221d139ec65001 +000000207b1570f6324d6bff90ed55a8593c4756da30ab8cec27501d951a2f240400000044f3bce1e3787fd68c5df7c36bbc16d777ac3cbdf903a908745071d9c93e5810e99ad562ffff221d06e9ad0401 +0000002035986bebcb808466b17ddf8bf683e50d24d7d26a5671abc13c23b4640f0000002689944561259b22bb13ce324bb6d08940f1bda856f24d57a0ca0eae82c3dfc7e99ad562ffff221d031f10ed01 +000000208fb1b250f1922c8b8d368796bd89514a6255992c034027dae6f98b411b000000370910c7fc5585ec12f0b5f0ec044de213373c82d217659f6a266e1635c99ed3ea9ad562ffff221d001e192901 +0000002085ba333e02a33791fd021d026f4da9df9fe437a53e70ddb0856d1628010000004cf620afcc9628a1d92bbdd516268ffa8e55f379ca546aad0d1b7555c0ba66e5ea9ad562ffff221d064ecec101 +000000208d3343a36ccf7b1ec897858fdb0fec10e6200d8af7bcbaab27c0ef911f000000ff3682755f4c0f5fb829db250d847dff7e33e4ce6c4107a589249bde88382fa9eb9ad562ffff221d07618e4c01 +00000020a9494c58e31e521ad56467b3e7beada8a17f70056ca3e926f659619f160000004d721a7ae0d2739d21068b9049172af46664eaee1f898cf4a0f2e50687d4717bec9ad562ffff221d03635c6a01 +000000209573a2efcd7451f6bced29df888329471b263a43d0bd98170ad02d961c00000033fc08f465259c9993618872a45234954e6d840a4456d6dc459dd4841c9bbd88ec9ad562ffff221d02996b3801 +00000020dfc8388d6f57bf0e276fba23cde3006835dfdbd7fdf22d96f62a916b0800000002da640a96e1472f345eae31e3e7bfb1f1bb289e61e4abe9293647ab1ade3a95ed9ad562ffff221d00ef45c501 +0000002066dca431aea8188586be1469fe92c028dcaacece4997627d06b2568b15000000e16e136fce359b2a0f30f39350efe9ffb8848976970196cb82c439489a85e339ee9ad562ffff221d022bbb3901 +0000002098a667775be21f289790c7d7a7b659428f380ba8bb293384f60d5bae03000000dfe1502515b678c9dacf72d1622c14ba4539c9e0bf7861e86dc303f48feebb8aee9ad562ffff221d06d6918401 +00000020181219f8f7d3242213a26d73afd775666dc567b754900051c5fe7bd507000000f1770cae88be1f1af33e09cc1632c6b34962fd7a8a426a8a41fa0aa756d5aa09ef9ad562ffff221d01105d5801 +0000002095f129919a44a22d8c8adc3addcc9d6fba8c6a01872d7516a3dcfe621a0000007e2c5d68f6d6dcda7e8fbc6a5e29351df35eaf3eca3665e494447552834d9a41ef9ad562ffff221d0762bb7e01 +00000020e2648b60d5d35a0fbec9803a054eda28744992c8a4d767a98b4d319e160000006f1739f457b3ca3b65f878d1a2e6b7ca74590f9b2d7268b6c5f40556d3d26485f09ad562ffff221d0b1ad1f501 +000000201b0e36d1f31beb363227252838557bca99405d37eed86265e563855f020000009274e664f87026346c500c2b7ab9a07e8cb0b7827033b4322158e8d4ef7896abf19ad562ffff221d03525cdd01 +00000020d0394b635d5d8416b17dbe923637ad8ce28f85ee7fa54d6c68dea5870b00000089b48b8d959e76c3ec9dc96415eb35955caaa10e4f556a1c814b60cbec9fc399f29ad562ffff221d0cd4299e01 +000000204034732e9c3abe87cdd142bc6d20c714e0ba7f8f9835b33203e3b68c0e000000e3d08cc9660f383de1780f18b9ff607de4e8afa7708ec6d5afcb2d3db564e14cf39ad562ffff221d07086f0b01 +000000208ca30b57b44500f7594af2c88b96f815e45e127e2d595eac7400afc516000000ba5f42836fd770ae2c6188d4fdee86ff885e1e63376ad0c68476fd85fdf45064f39ad562ffff221d0479be8d01 +00000020af9867eb0851e28084898a1eeaafeb659a888f8c42b4ae0243638561140000009635d0a0e5aea5c1d8c4d4e6b978949a114102388ba261857f011f94dc663792f49ad562ffff221d0a5f995101 +00000020d75c79789bf2938d2f6219d36f3ed6af2ce708ba0c11ba94bf1011381200000029320f716db0512c35d66c25b695e7d7b3635b9c91c3629e6b9bb2d599b59954f59ad562ffff221d05dfa3fe01 +000000208a97dbe86f97f2ab2d4d9b41de6a92ff46fe02fb060b7100ccbafd4b0f000000dd587b1ffb44fe99f2ae4124887a676d031a870deb47510d290104ceb523b914f59ad562ffff221d04ccb8f801 +000000202cac0ca5bb970811f70afa9e9e9a2dbfb753af8a7109d94581c2204618000000bd45da0da24d277e0e03b74229a622dde9d082cfc203c38d3f1b728a8d99764af69ad562ffff221d05ae129301 +0000002080c3e712e242b53878c0ce4be2a27ccd5efa679a7c685d6c0bdbf1490e000000319a7a08ea9469348bd8384d6822fc68750a614211ad32202bc74741ee3af180f79ad562ffff221d03a73d5301 +0000002043334a62d50e04d15284442b62a3ba2c75c7016a7aa349b5f1e729ab12000000555bee58e5fa036976d83bb0d1892f78fc507a92efcc250637cfbda605122116f79ad562ffff221d07fea66901 +0000002008a7375518dac70be15559268aa783c2b063a3b51b039264874faf93190000009d76ee4ed782f8d32fca725280a33897615cc64e4a098d252e497f142104ebbef89ad562ffff221d093987dc01 +000000201fc70e5a42b6dcaa93b7ef439a740f0b6331e313975509629ce22d63060000004e5abd8246411811734ac9f7fdd9f6f2c8643ed1dfbdbaf79e964b6688bce064f99ad562ffff221d001c095001 +00000020f3c7bb3a030c9081e5198cb8b40f9859666b45096aaa9562f42739021d0000007efea99f823ce117cad823b43c4813ac0f6c594cacc1d6fb3beddc3c62d29816f99ad562ffff221d013f177701 +0000002057452380379a00b1d2b345e76d2307d25477e3d0f96994f13be39abb13000000db61449a8a5af017fccc5f3931e1d0bd94deec1312327104ff63a7e5c1d3b613fa9ad562ffff221d28817fe001 +00000020a5de87534d5a9c6a6e89684c8402600f01152404ab812e96b8a66f5f1500000067e9d44b7b4cfaa4c0b2240c27f939d6560983b31d06b2ac8b02f4fee0f37888fd9ad562ffff221d169d0f2b01 +0000002030060a9b27d45082c6a6abea97c33eb5bb87a136ba2ab3b0109745961900000027b8565958202af5111289b491380daab4012ec418659bd04df436d26503da7dfe9ad562ffff221d0efe3c8a01 +00000020bd501e7bfa9d0c3b83d314cce4e7d347e2b5ddee335560eee1f6644314000000d8f58fa9f0ffebcb37b3deacc4495424b0cd150f18a8ff48c1238832777895baff9ad562ffff221d0749c9cf01 +000000204d5d69f31914a1b971b091d4f1fd4816d9e23401715d8634b5560d5c00000000dc998616e6f796e4f473b18d5c5b2e7c5917523e23e422aaf33826ca05c36eca009bd562ffff221d0256824101 +000000207551dbe1597bd395ed7058eaa1f0f255e1d3cfbdc93891ac182b66d304000000bcb9309d20f1525c4e82fb36153975bf4b23def2820962652a0d65cd6b5f9681009bd562ffff221d0240796f01 +000000204c43a182a9e701a2ec5e562bab21f4cd3c7b30b765b4505be07c1b4511000000b83ee9a11ee4f88b2e160dffe11976b47274c7b4ff4b5f7784e671427545e6ee019bd562ffff221d0c34fc7301 +00000020eeb9979724abeebb2ad657abe27a468c917a801aa460440cc744796b0d000000c892adc3bc83e0e740aeb7cae3572e10bd751d47b6912f200e83590b36953c1d029bd562ffff221d0366eb8e01 +00000020a299dee28f8b94661b51430769abfdad5c651220220c143e11e1ca9a0e00000036e6b50e0c719c9977f639ec1a8f74fb69fb2d6431d90bba35bb9fe79467f051039bd562ffff221d0411930d01 +000000200c82b5f04bf5a719a24fe0cffce0b7de7da57b0659fb1b256b94c2650c000000a9a10f78d70753188675766d5cee7a417e489ef401da5556083a885de10ac419039bd562ffff221d003aceed01 +00000020968b63f73c23c39c27bae6b950e066c4d98fabf0534b96ab34bf4d5d2200000079b257d756cd5b6bfc265d24c81ed9d3c729578d682a91bc03815f6e94cac9ed049bd562ffff221d0709b83301 +000000209232e4a1be5f3d35f5c125fb645e08a5d8b83df39eb4865e11d0355f21000000f9ef0dcb51a9cc076f282b013385fd96147dfa8d76b283700739931930937451049bd562ffff221d0341e9de01 +00000020abf278245f00c977266df390e468c43bdcf8d2c5812223b566194a560c0000003b4a91b9d9937564b085f80de2d3073845962668716d983539bf837a52a9d589059bd562ffff221d076f54ba01 +00000020f014f18b19daa82d32c562d1209403b6262bf1815a60f59f22918c261400000010a0f944f67189dd09316d7e2b73b9306b6018b32251397fa5e8e123c0ede5e8069bd562ffff221d014e631a01 +00000020cd5bcec843d52f8cb634057ebd8314b422c3c9159b8ee28416ebe3260000000029948a25e440a74a3129c8c8820252f5d11f9a37d76093a67c72fb56ecb57ece069bd562ffff221d0d7467e201 +0000002024f36f3d06cc30a1d51f345a56788dd6b56581418dac93f05cd34457220000009d4ba248eb2a434c598ca1d0847915f5b9489ae61e67bd0fd2f4a7f278135fb4079bd562ffff221d001d0b8c01 +000000208714b9c53dff312dc59d70e22220dc0ea6bfedc812c419acad919b47070000001bd793c5886995436f3a6a8cb75c2ba37e23ae9a242ad566ec98b6b7ab0b69db089bd562ffff221d095fd4b101 +00000020e2dbb07cf62003dc8c8278bfe0eaf85467268552195a7053e09686d221000000db20fd6b4548f20d28bcb6d7e5aa06c69826ceb6f9318088dc459c146d403bcb099bd562ffff221d010e124101 +00000020ff6ea8c5322ffa8e6de73536e3a20c0a3695d1768af1535610382bc20c0000001678d9a1a1696fa5859a1b8de32173cdf60104ee492dff4d24a54c0b4c647f6a099bd562ffff221d2119081e01 +000000207b3f810221a8766f615bf20f2818d793c5fe2a1c82e20ed6872f9caf0b000000e355d3d9cba7c040990c5b7355d32328d25a7798bae25a30cbe582706ae53f200c9bd562ffff221d2176e73f01 +0000002058f8a305a0ec3da6e3aa5a9ca8afddafcbed202e0af23d35203806d4050000008562a40aa794221d691a9ed035399f5c1ce4ac52e4af826d57a7060445d30c260e9bd562ffff221d0717a8db01 +000000202974ea9564ebfa141d53346b1cdb51ed5e989a8a23484ef1607a509f08000000bd375d3d3806d5dda226697182ab1a3e7aa45132eac87a394666f7d234acf8230e9bd562ffff221d0466cd9c01 +00000020842af5ead6a165954d9a4d39437183755f4f6172231a7ebb56e996c6020000005a2bdc878727da397dd1ffe64dc3e86dfe6897829bc9c06959c9980b5d5489f50f9bd562ffff221d0f23f1b701 +00000020073e994e0d1b5551918b103c104e3309bf80a477642d6e50e918eed413000000faf28575c477a37b0ad8b4c8014c10423c51eed5e9ab2cc491a5505e99cc28c9109bd562ffff221d089e728401 +00000020211c522b9e06b1fb98bdbda57b1c17c4964d3b1469744f18cbe87fd910000000cdb3be3d9c8129c5ffa75bb088c2ca40dc49a6b447587c8a8fca133a5dd7b855119bd562ffff221d08ff1c4101 +000000200c2af958f8cd28085ab57a2a7b7f1a0d0dcb85521a7888061970375e0f0000005bc478c0da1dc5b283977f4807d244b37da9f612053c2728dca1b838fc648341129bd562ffff221d0601bdac01 +000000202dc8b8f07c2827cb367073e1980663e5967280cdbf11fddb872d00141c000000445153d99add6ac8a7f08351bbb030c261702f0df11146119cd7729b372066d5139bd562ffff221d016a176601 +00000020fbe33fe8fbd6230e345cdd78abf54354bf697d109a804f8516d4c4fb1700000012f082d1a2f187a74987300855c969f896f0ce881f54652d8bf39bd156ad0ade139bd562ffff221d083b928d01 +0000002082445b57fd65baef85a6b140d1ef22bcd2a82466764912a7dcf9872418000000f341b2ea97ebb3ce2f706b72b9a6c8e5af9c0abbb56d812409ce1bd861015d49149bd562ffff221d039187f201 +00000020bbd5472a77ce2afcab42d140aafda0780fec6d2555d39aea757cc461220000005e2929cf251eb98fe4f65902b54e51f3602ae0dc53f378fd24d6109b8468cf81159bd562ffff221d0254852c01 +00000020875f95eca47739a0759071f9f5bfe944bde44a1d2cd852835ee3c223090000009c8bff5db6b25a273250b05751c28c1596f5a481c5e361f398a9baa4172f7e3f169bd562ffff221d02b5acdf01 +0000002047c8f9383766fa9e09789ef800975c9a5021555566b53556990455c11400000013de0ecdcef846ebdbf2f8961bb2d39a0838fc0ce9f4280a364579c4e7557ec1169bd562ffff221d0843ccb901 +00000020d2c583db399636b8681ab3d58986e690112fec7c0bc7819493e174521c000000b839aaaaa25045e3d020125d43d83439a017c37abba9ba5150b1c55cac40a1ca179bd562ffff221d03fe865d01 +00000020ed43182db9a56ad534038f0670b0d8964cdcbb2cf51088369f4aeaf71a000000462d14881a5d5f590a56ae5a638f07936f3256c2e50ec11d2cba67ee52cd677f189bd562ffff221d042aa8ff01 +0000002048d457624aa794f1667f7b0613f72978cdc48cb1265ada266bdf69dc10000000cff3332cf592553c8f4bc22e085968586f5cca54bda98a36296c7b8ecd32f1f4189bd562ffff221d015c6b9a01 +00000020e0a2ffa20c30eebf41983eb4f44e5ed20945c509b42e27f02df5b7ac0b000000cba2216e0bd8ff777bdc7ad039e521cea42cb3f9b25f521a52499bf35c43a88d199bd562ffff221d03abcc1a01 +00000020919052dfa1b736abda17c17690fa6e13b31d303fae580fc6ee50ec3d0d000000e6f3e4427ff0893e55a59192e674db5439c884c2cd03da0385925c7c1fa291ea1a9bd562ffff221d0894024e01 +000000209fc31dbeb84cec2786f5bfff5978fbc8c7df1c7c05c0b38d48b6ca660200000073ed3b919c7cd0125bab589e56c722e691eb688ab34921677650eb22f9eaefcd1b9bd562ffff221d08bb7d5901 +000000208a0bf7ad0b43f4efb593c86f97ffdc38985d0bc4eef9d3faa1be4d65000000001accca4c1f13bf39546ebb5a92fcb66fbb5cb4fd2522c2fde56f2d70731f8c681c9bd562ffff221d0132e80d01 +00000020a3376b5897896dffad9fb938229a579fa38bdaa06d7fe58a3014f76f15000000b0c7e056da091766dcca539df886668a7e84ce5266100d87b30c9ae9ee0f0c5f1c9bd562ffff221d1651244001 +000000202537814e3dd3efae6de6e4be89570edbccf597045c30e5d7aa191f060d00000095d2a16e8f2947a4623780d876084e705ce94e9baff0590a5549bc1bdd3bde131e9bd562ffff221d026fc0b801 +000000203702d81805ea81397d476472bfb7e3900ed45c5f01cdf43cfb04ae5d1e000000524d05792a488998af1b798baa4a7349eb64a3c7f74b249d3541fe155f3892fa1e9bd562ffff221d02a5c4ff01 +00000020ecfa955027022e34ef8d48a5f2f90f150270b62059ba03295cf41da30e000000def336beb7789ada150e397e83437b81f3f7be965fafae6153408695c5ef0bc21f9bd562ffff221d05609cab01 +000000204f56ea2d12d31e11f6209172473d965dd89679d9c9f14f843435bd79210000007d28a244a9b39d6ee01cff9807d34650ffeef2da02c0f7f89c435ce05b8826bd1f9bd562ffff221d03ef84e101 +00000020ae8ea03693972900ffdf61a69092880be7bbf7c048727cc80d8485761e00000074abcab7ca4cce91e136e427385622c6bfe770d96c5de05dab0483973f49eaae209bd562ffff221d0667987101 +000000206b16465f9ee21583f90a6f4b1f844e5020b73cc4f08caec4697a09af0700000074ba7f7f4d4a8ee500fd3ddb08139468ac27f3e59023d406be2ed6d6ffeaa83c209bd562ffff221d035e9b4a01 +00000020ca3669178a478ebe67a4a0ca8794ec87b06ed58ea465c84843d43a65050000001056a1c701e60087bd1fc1e98f837ced9cf6fe9d66e959a8e8d47a9d1669bf37219bd562ffff221d0be309fe01 +00000020b7cc884156c5aa112a4dfbd1ca9ed5120607e7035e0f3ad6d8a04ffa190000004e63265af7433e936b8880ef60e8e338dee5af13b339c052ff2583d39abadc24229bd562ffff221d00c7512c01 +00000020ead1a198c0120eb286ec047284bc8fd22c93c1bd283d8a5ff425f10c08000000306144ddbf2bc7b0717ea10b1f85c440fbb38f6cd5adbcb7b3d0c62ecfb82920229bd562ffff221d06a0ed1e01 +000000204e65797aeb59d3f6cffd8547d9ca809c10152faf4e97afb50efde6001700000086f088be4c6eb0dfc1e771912d53c17d8a377fb71cadd601c6c76ed35310ed5f239bd562ffff221d0020cbd201 +0000002094b222602fc7e9736729c856ba3384db0b389de220e0c2413ad6ae0f0d000000df83e5dbb11942065c1dba2dd5c3a8c8964da45fac3dc25552915fdeb0c5eca1249bd562ffff221d1aa19f7e01 +00000020d09e4a28694d48cc327cfa1bc353d662d63394a41c37a9008aab39ad0e000000062def6572cf323b953a1bbd419ba9f996280fd6439b62641b82a2aa1bcbed5c259bd562ffff221d0bda5deb01 +000000206e1792139fc6ad7f6e0ff66c3fd650a33dfde422014f413ffb551d8a15000000990f74892c209061ff10baafee7b213106debc46d1e25d16a1f50c93fa12ad4d269bd562ffff221d038f34fe01 +00000020f0a457e34a534c76dae964c632f22b6f5fd5ec7137e86b82be4840640f0000009b6cd97091f45282388a6557ea52b31b02e78e685541d650353c4b3e041d141e279bd562ffff221d02187a6901 +00000020b6c6cdb552ffcf480d9ba91926f558024a50c054170c1631006a80880b000000b0be77d503ceb6012520266212d2e13eef47c7e466da38519b734488cb52e33d279bd562ffff221d0ab0cf4701 +00000020671fa1f6418701141ed42c52c2c3c3d56b76d3cbe4f702bed7983c9708000000e3a56c5a872ea835d36241a337dc53e71b333e123abec35ea55a38c169c22e26289bd562ffff221d07380f1201 +000000204a52bc4a34d8e38b897bbed7642532581a76bd17726d710753c35a3c110000005a1ab12b7fbd34506aebc76b788b615fadd43dc00b89e5da56e9d73264e5f4fb299bd562ffff221d0a3d1f0c01 +0000002016ec54bffb95b6ac8c282b14b36c1b6aa12d4d1a5e2f7919fab0044310000000bec5ac846abb16fcf4ce85fdc599b154c548755fed44008c4e476ae09691bb282a9bd562ffff221d0163e13f01 +000000208a2d0d5c5edb494adbd76402d5aadb6d4c5e71e40a0a18bb7f0120d21e00000071bcfc229f8ae305d01400e65d261ba33162671d06ea89dbb3918f8d90bb25182b9bd562ffff221d0a3ad60701 +00000020952561aa3364fc6f52b62119ab76c18817a30a1134b4092d356437d20f000000447a7c9bcf23c8a7c01a6c6fd39199103fefcdefadd4422743fa79dbd00f6e222b9bd562ffff221d0660195301 +00000020de5c85d94a096ea648ab3603777bb194f93447e1a762d884012f40a40a000000a1960aaabbb155ab4d1d99488b0e913deea65ebb3112e751e03506047073186a2c9bd562ffff221d00d3e80901 +00000020b3cd1d1296a5984e8557f8335008a6e8191d777436025508a0a5c76209000000f0e9d720c535159065d6d49fbeea5db8b2d88dec37d1772f6a325697a9ea68fd2d9bd562ffff221d02d0855101 +00000020692fdf84455d2d39573540b8829361244bc2d5abdb1306a3c057ff7812000000d7414dcf1b101cb6899d62a59b8868e87795c2a5749f46b56dcf8cd9499771842d9bd562ffff221d06f7985901 +00000020a3f32653c92721df31e3052b904d3295e0eedcf8b91f6d05e9ff8ca005000000fa3f0c134570e7d54b8d73150d38b29dce561f0c79b4da942a8309adb04dde492e9bd562ffff221d035a14d201 +000000207b19a669fb3fec78ff01c8687e0d34952148224b0906bd38a5a2d7f8040000006a923ea7bbcc017b7eebc13da366f1b450a112eac182c4222711566513b5c43f2e9bd562ffff221d03a04c4501 +000000205b994d782d8edc0ddf72ea3e017670cfb86171d7995da03085255c0e07000000fe68e4b347fd23744dd70951faebf0f4583c93ebfa04f2787097a83ba3876f962f9bd562ffff221d0007bf3501 +000000207a7f534cf8eb4494afc9259d3b22f1b4ca807567bdb8ea615e6478bf1500000098fb40b3d12a0ba819afa613019fa25f02004fa2a8173dd4862c3db434c2dca2309bd562ffff221d0738a19501 +000000202e4147fe26c54685ab00d85c2ffad44e4c76aae4af3aa244bdc0ddbc13000000ffa1df44f180648f553b14416410ae13e512b6ccc715a0fe8b7df0c3834df2e0309bd562ffff221d0198658601 +000000208f4f2b501135cc233d07a29dd517eac07ca4989a4d06c2f2bdf142791c000000e17a21618c4b5ce2a1de804cdb0e0ca3b8362e7839b4f213fa428e540d8f63c3319bd562ffff221d0cc8dcb001 +000000204d872b944b70ebcc77b5fa2e394e5f72127becc973697a5183cf93a40200000033ee1669446f846494dabb0039d81c7e0938139684cd43a20fd0666b250f13e7329bd562ffff221d0052ff2301 +00000020e2fb397993f6eb5419443b07d6f1948fbf5d262dee62a8116f0145ee16000000a3a5dd9bddc3944650dedbf3e54e12d9a76b67808d0f15eaa545c29794d9b549329bd562ffff221d02a01cc001 +0000002064d699d350c4d0aa18d45ea9753ca3e775f97846d5704adf1ad19b050c000000ad76b9c4aca4c42c73e01a9c6b5c9565a6d78744cc5495482eef8e467bc3032c339bd562ffff221d09363ae401 +000000200d6085c99223b70f5d46881acc4dab18e6db97f7533f26fb63cbc21021000000504fa638b397648b2e9f35326eeb6853b8bcdf828e1c08e114d0ca0d6a1cf756349bd562ffff221d080de9e001 +00000020df714df2b1f9c4db3b1cad8f583907dc52f72a169f03ee1310982e3005000000f33dd85bee54d5257efac7dbcc00377bec45da0a3519a7ea582f5eabe0bb91e6359bd562ffff221d0fa5e09801 +00000020aa10b05aebcc58936afab9451ab13dcce94e407f6b0f217b8ae11e1506000000300cf4d72b783c4418b32e6ea89fb4a7067759cb1763ce8449316ab9eb8a70c2369bd562ffff221d0942309d01 +0000002024cc5657a194c445ecac2b2c0366eba3aaaecd786a99f47e20f6c95c120000002e2015a948ab859364b1cb11e0e0c642a478d002a84bf00abd575b8b5ff3abb5379bd562ffff221d0439952c01 +0000002047379a66d115c41ff0d4d97543fbe5d6ae95ed4dcb5cc350ea1a0b551c000000c44f3fcb6df3c0b2802ef1e3ce332a12f02543deca954b46a0a27c7e0f501b23379bd562ffff221d0aadf8f801 +00000020bf0e1802f47d5ef4168ca381c8440b80dce29e68621886a41958c7b1130000004dee347dc88cf9672dd227992bec8e2dbfa44dea7ffbb01b58ddf66595059776389bd562ffff221d08abe9a401 +000000208fa9c3b568ef5d8962df465b2b9b08545bd23a0585ed8bfc91b6f9d605000000806e25360451c19c6f2a7325f9c96a00f84aea949b52d15d184e0a54c0a83c81399bd562ffff221d0474d1c801 +0000002098252fe4476156c23f53e7e79f7e9d7d3d55aedf15c3b2cd8dc39b251e000000fdc84d4cabebd0858f111c2cb5a2cca2fc64f6c97065bfc7eaf3f1dfeabee6c03a9bd562ffff221d019b3b3501 +00000020df13f6ee2a62c3019ac31928d04ef84a7b8e739a587c2be85dce3cd10e000000f7f459f9d9f469feedc390246b33f59fe74c44967312ae86e69623bcdbf300e93b9bd562ffff221d00d0741601 +0000002091eaa65933744e62738abecc018b84b66e25c06e5b005aa56674ee410a0000006112d2c63b448d6655a32d9817d4170493aaaf1e6b5d93f7ab7d5ab7335f748a3b9bd562ffff221d0cdc201701 +0000002074b55895a14674efeaf470f218ff839c5b55018483b3be66f225c6a40b0000004a4e8e3c98c8318ba7c2be8a4e75cb4b9044365314f1d0f144b28023135ba2493c9bd562ffff221d01750cae01 +000000202fdbde306c72e374608f39df57db68862c7903458adf3e0e813fa9560600000099a5dcb0800dd5fa1b198fd7e35cdf60ee4553cd06cef4c23a57cdcb37e5efca3d9bd562ffff221d0f99592701 +000000209f55ade9b9ec7145e5e72085a8dfdf41504cabf6baad75f77804cda804000000be3fca83ebdf077239928a5e3116e340a0d5e4a4360d4d2bf46411d24637b7f13e9bd562ffff221d0b681f0801 +00000020a4bd8cafbf568fb32de901abd76626ab16d373ecc6728512f3bab2071300000040f7a1b215ec07eb25eb8f36ba608189e6371240bcd7a1909e7344db24799c7c3f9bd562ffff221d077bb8b601 +000000201c369b58893dc4136c0b364a0f01f3768dc23eb9a586bdbed027f73a1c0000003f9ce8a8c15d7ff3c18932f1c9c58475daba2bd6867a68aa71c0a3cb2af089c33f9bd562ffff221d10e0549701 +00000020c0de2d4d17a7f0463959c999e7e9ee1a7ecc1887996eda4bd287cea909000000e5ab59a7d4c4c9b2f70d63e61fd8e85dd7fac4ad8271f35b1b8823da11efbfc1419bd562ffff221d0b4fca8701 +00000020bfbe6a94e7d108af51af9539eadbfd57f4d5cb6c2f9864294060eb1917000000c5b76c756a2e420b15a7dd31a195ba0fd195d68aec973a63c1bba4fae0da4085429bd562ffff221d0c28261901 +000000206142e69485a4fc8a66a1105da8af4063067bf8435190d132e183ccb91900000067920a20374670d35d2ba9bf8521340cf4787901e13aa436d2314d903d232064439bd562ffff221d02b21d1e01 +000000200e3aea12ebc5acbf7590b18b6654ab4f3acbfc0faa46444b8a092058000000000e07b5517fbc61bab6e64f09703a5eac313ccf337e0c5f0dabf483a9e0243fd6439bd562ffff221d15f727da01 +0000002057d13a49d1bc50cd5918d3f7bf894c7f46bf49b6eb83205775da932e0500000087ac1f444d28a03e8805508c54f93ee8a9a79da90d2317d1164ce6db8b3acf93459bd562ffff221d025d7e7701 +000000202ff205370294870436f8c6265d33f5274d21640da5d2127d0d335fb30b000000fcf7d2fecb8b34498f407c172634b44211ef13d8e56be93e4939cdebe0ad9d76459bd562ffff221d0566801701 +000000208bcde0e52e225eea0182ca46b7d32d40b10059fb85296236d3e199f70d00000081fabd71f4de0c3283144948e60a390c597e7dec8dbc5f8126487f2426486974469bd562ffff221d0085ecfa01 +000000203fb22278446e050a89325fe988474a429e70763dc756279ce66c44be0300000016a6180ce8b589d1d3bf8a965bb5bb7cb136c6655fc55c8027ac68e3e86aa44e469bd562ffff221d03fdfe5c01 +00000020ffe5b0d6d7d52d36932c995dab928cfe1ab4203cc27418b67a14b7e20b000000645ab565f7274cb26dc113371aabcbac8e185b31a89ccca0d546a2273f655d60479bd562ffff221d04da3b4701 +00000020c560d3654d5131c82f9780ff4ae336c0b791d92bda3cd3ede1e87d700c0000006892f374ecc7fc93c3cbb9a7f490caff6b98ad9adfc357c25838b7fa19c836fc489bd562ffff221d0e02045f01 +0000002079680e7d2eaa754ae27697eba4f2ba240311b710c848f6b45d946cb50e0000002cffa281a6548e87f78ae97b1237d320db5219131867f2543ea101d176d3ba8f499bd562ffff221d04853aaa01 +00000020b8b5417014e8b39eefd7c4b67a7bf2b32a503d20d6006135c15738ed0000000035fa966f144e2e01fe859a116e20a4a718ca27a68575d34f8388ae0b3aec1b5d499bd562ffff221d07542f5201 +00000020ffcc929b1dc79ba6f55173945470bcad629205211567578fa316fe4c190000003069a228829e248f9c2ea4bee85e36b980e2b13dec769b1be151159b5349d0554a9bd562ffff221d03eec15701 +00000020171b03eed52fd1a2cd55e46c87fbcb9d97931c10b271eb5beb36cf48100000000894584ae49cd7eb48c83ae2b5e345ce095d26d92ad971bc3010a04f08cc23264a9bd562ffff221d128c606c01 +00000020033c251c8c45e920d35d2b13bc64d64874fd5c0318f8793d2c6a64231d000000083d38fcade6fa8e63f7a35a0a96bd125b4c98694f5e7f967693b83701066b974c9bd562ffff221d00efaf7201 +00000020086358574aae7aacabb8719798dc0bae859919af264b682f27ce607d1d000000b7e007dc53813ad03e1efdbcaa33946ebf7664dca65913bff77a07b12bd217114c9bd562ffff221d011600cc01 +000000202d3987047a3ae543bcabf2b8a9634301b08d9546054fafe1a4d6dbcd030000003318f45b9be7f346cecd36d0ff8fa4e9aa239c4d80723b760ca0f29a7463c4fa4d9bd562ffff221d01f5c0ad01 +0000002033d1991173329f158c8b11c9e8138ed08b6e52c0419d3dbb8b90bb8422000000861cc4ded6b3bb425b41ce75c99f7143c9ea9c81ac09de421b0b3db05d93891c4e9bd562ffff221d06006fb301 +00000020910461b0e077219a951575df8bb761c08fb71666f298c9f0479f33ce06000000b394e94a8bad8a8c5948af613a9e28622cb8364b45a69b08303cd835855a667e4e9bd562ffff221d0990d50501 +000000204a993532054948e1d00897c3c6fb3a64f49315510f9c4f2166e27f7a070000007879b5c3fb6b2a63bed011ac9b264cee8d446d31b6c9481ed1763b45e4e8f1994f9bd562ffff221d078a9d9301 +00000020d8786c33f91373de7cd391876ffea8ded15604c0493337ee1cb2b3cc09000000f2a6aefeb8df5b62605d84709ddd7a3e77bbec6045dc22799a9d0526d25081f1509bd562ffff221d032bc2ab01 +0000002080d1d7401cf8c0a790fd5879bea92592c250aef24ce4d3ee306bf36904000000dcf324651898284668df8113bf73fc4da501e7705622fe37972a4d4732501b27509bd562ffff221d10a0da3401 +00000020fdb7f642894e54c7e60cb82032a135c84a8400d7f1b90a12e20f8c5007000000a6eae90165840cfd933ca5a34485c62c841fcdda85ac3d1c1123b16f974be259529bd562ffff221d0d94242f01 +00000020b0d01b8b2c4ef616124ffc7ceb0045317e65e7b4fe32f77377d9fec61e0000003ea4178abe3fec341ccd279f61c3388bd396f6d8bf2f3bf39fbe5ba0e51e3181539bd562ffff221d0930066e01 +000000208d74e82828ba6a245600233fff34f3cb5739d2a58e201dca5cef96ae1000000000d994f6ee18baf7c5b3866b931da0e8135f7002d4d24d8022e9d54f6de5298a549bd562ffff221d03949b4801 +0000002023a7bfedeeec2415121def4b33e1c99af4a6ea8e4556d47e3afa3a4d20000000b4415094ab7b5f64304f619f8131ec952fddab94426606bdec2306aeda3b788a549bd562ffff221d00d56fef01 +00000020559626a83c7b35dee321b2566871945d9a184d7392ac3b2b3bd703430b00000037ca0ba37f83dd42801778ae4ea056c029bc7a2dce2aed705d07438722ed9629559bd562ffff221d09fb081701 +0000002062cc2afb53f850ee0a89dc12b34b8836ba88e258c80ea42301cf25b015000000c9fc7fb19b6d5790393766ca80f2355853c1886bf8953039ac481da9f93ee05f569bd562ffff221d00f4250e01 +000000207152c921dad199c5d46ac20b27f4a088872e202ce312432e01ec05561a000000049e29e6ba681d7620a2985e6a8e61de0b2e1cd77a1874236e22bf056ea2c6d1579bd562ffff221d087731d901 +00000020ee6f9919f27450d4ba45cbe268f35f2e289f504cc78433b7b90fd6cd0c00000058cdb8b44f3c68ce8d90a37df9d09482afb6b3810fb7778dcc177f28735d1e36589bd562ffff221d0226497101 +00000020c3bb550666b7371bc67eeea6c77d40caec42e2023c9e53a870e3e2aa13000000059714be1d0799e3451a9208ddd82eedfc0b6c1bfdb1b5c110d47f9d6a222cf3589bd562ffff221d1528011001 +00000020e813d67f6a73c57eca38577445cad1ef8ace03008c06b90f72484c4902000000cdd9e6f0758e84b204d78028f0bbcd064c1138a7aacb439c01daaf9b6937b4205a9bd562ffff221d02ca290c01 +000000206995c279bad8f7836e42c8d96a174406fda0d9575537c26d9b3b5af403000000573538df4dc868f41d180599ace8a43a2e67d453db3949d0e4574299343b1e405b9bd562ffff221d0f3b129301 +000000201846e8672af4ea1a4302bfb076399cd035b5176c904feb757b5e5b1d05000000943b7647430061b2a0d0151d75960e908eadda9526e51c65459fdbf5109d2e395c9bd562ffff221d102c3c9d01 +00000020bc0686ee48924b322ac0a244799a82290af685554cfdf941ffd5a255120000001b6242991aa4927b772dd6018fa2bba04fa5a30fdd6dbd550767f445acd3f7585d9bd562ffff221d081193fc01 +00000020a9c9b6af40e418ed30aadb5c2d9e794f78e2d43beb13add268340f2a1d000000439ed9578d340c36b22441b7fff79bcf483c541f0b115f3dd14e78d47c1711ee5e9bd562ffff221d01c982ee01 +00000020e5421b09e41edc203c754f1027ef0c44856c0fec37fc072dc2b4e961010000002f8ac0c6a02413f607952cf8325a85e795f87719770a881ce7d23d4b0818ceb95f9bd562ffff221d157926dc01 +00000020581c07cc4b3a2a234a172a5b6545fd550232fc45f35fdf702e8170f41e00000007d8f042dc3a545a10b77db8707e6aa0eec25a5e443a1ec867e00bd6d66f316a609bd562ffff221d06bfa05701 +00000020394e8da5eb8747ba076c83792013d023fdc8a73c1b11a9267abb482e220000003b0a160afe013f66f0eaf451096f03018a70f0d0e4ca48b087b303ab76e814c4619bd562ffff221d16d36a4301 +0000002005cbba61fffce576f7aa63ee7748326190d452f045700816ed4184fc0800000093b5d7ce02b0a3c29917340a125c2abaf91196f2858462120853755924dae823629bd562ffff221d072be52d01 +0000002009a5515c8e85c57f3ee7115bf4c7680eb86b1e6842d7f2dd6e717ba40e000000b27a732e801862a925b6fdd624a3c3ef28a02280391be54c9d2df21595557776639bd562ffff221d0ec08eb301 +000000206e932440818b0d6a7552b80939e491a9636d3e193148a5f20e7aa9091a00000084da14b45a90f1d894b06e5b07a6b9d9b1af0f58cf8951643a8ecfefd70e574e649bd562ffff221d0738029901 +00000020e20ced22469702470091445ec840884e0fe9f4765c41677382c103270700000069caba3bb16efa2ac531078a6cd77c2a27a021557d97914b166a3e702a22c488649bd562ffff221d0251c68001 +000000200d6fb6a5b79ca82afad390630f0322f039f4407566a81816319007b41b000000eaa49f1f80f6096fcf9cd264880c998d89b7ceed7d0e536f1afbaa22c527b4e5659bd562ffff221d0774d07a01 +000000202cf47f4bf978eb682b1e3500ceeb6c9a02743275adaa943bd9f5cb3b1e0000006874ddf8e27d486ea01f6f2471e662c4cc72bbf6c82a52a0b07caa6be71708af659bd562ffff221d0478f5c201 +00000020189bda8d7b7ddc0dc8e5bad1c2207779a4f0a1695f194dee9daf5f0c2000000008bdfc1619bdeab4b2252b90a2eae423cb5f7be6a10a2031998551fc8a1addfa669bd562ffff221d0bd1402c01 +00000020cfb5d7af702419bd1343edfd6ba084a115352a14d6c2fe73e0d571931f000000cbbdafe18278026cabce8b2bbf948c88583e12e82ec8640ac3e9381b38ebd1bd679bd562ffff221d0213bddb01 +00000020d02b4aca45afffe0ff5246626e3640ff7f1eeccf66240f9559543158180000003053dc429e306d15831d051416f96957e44c0b04333eaac46d8e4812dd0dc3df689bd562ffff221d1416f20f01 +00000020030835bc3d2705fc3ed5f8b8942209d0331cfbcfa829891f0a695f8b1a00000066c2deec161e6b957e79502f172eb4dc8e33934b5afdd3ae26c61611058c15b9699bd562ffff221d0786703801 +00000020208cac95f53427d7d5dfbb3b3ac60ced380833a6cab14e07463d2b8b09000000c167c5e9564e59c69419b0b3e40a3134015d38f4252aef834d951a01760e956e6a9bd562ffff221d01af0f6001 +00000020bad9303513dd6a4000615167e7655cef852470a60baeab5283fbce1a1400000067ee3ec4f18dbd740c94c9d2dc8db0e1cee1ed507a1fec35550ff27261d412a56a9bd562ffff221d0266de1301 +00000020022b415e3e7c8936c3453da1ae40afe0abf1513cd1ffec3ad720273f050000006a95c152957e250b341e21a7d9dbbfedfc2c3250d12d2eed7dbb1bbab0def9306b9bd562ffff221d0005292901 +000000209e364d03d4f63388576d52ddb3c46cc646e5488561e830c846e2bb5203000000760cb0041d71ac08679eb3f70e0d4b99d84ccb33025d45ff5af72d278b99bb7a6c9bd562ffff221d000f85c701 +000000208d7d585e01f4ca51ffa2cb1d1fe67fb9960c56f4874642f3de57227908000000727f479cc034fa4d0fa0d42baf786a3de96f9353f1bdfbe888fbbec5d2aa9881ae9bd562ffff221d0a870a3b02 +00000020de0a31718eb01e0951db4a58336c690cf42571b95aef28bb54eb70e407000000754535a93eafb283ae12b5e6cb30c0ebca02bbf517c590b663aa63f38681cd03af9bd562ffff221d002ef0d101 +00000020c4219fe06e6432c66eb8b450700a592d53214a37241424344d1dc420050000002fa485819a08c97ac17d4e8620021d4c21fb632092d81cd024c919ed58f3295ab09bd562ffff221d086478c101 +0000002042500a65206c7f9424ad807c743bc81a59029538743a070bfb19055716000000665af8d0a215ea0dfa3e9be39fcdd8c1e5e2d3e2a85914ea48d27a71ae758101b19bd562ffff221d07eaa67f01 +000000209e7ec7b86fafe6d41eb264a1fdd2994fab2af751050354f592035f8e01000000ef47c2c03bc0a431579e1ab670408d18f1863d73b5d863815f38a50bdff0a0e8b19bd562ffff221d00c0761b01 +000000201e9539dfbd1733afc16a3780c25df9ddae2128d70017289f0338976905000000051a0db7a6431e9290da435dd15db0cff05531db9e0bfc39709c754471d6f99db29bd562ffff221d0200ddab01 +00000020a02da7c6bdbd45752fba8e4e66aa0462138b5f96fb78db99a71d68a91100000046acee824dc47281ba1b086d087a99b803b2cb208f806232a9c18f0058f8a7aa70a1d562ffff0f1f070e000002 +000000205c710ae68fecf1a92fe7426f60dcb10af044ea339ac1b0d50b910aedc3b70d0022c87f8341f08708a0fa78e411cee44c03341e5455372803a51e68d954f1307525a8d562ffff0f1f3404000001 +000000209e2bee3bcedd6394b68572b5cb010114c95783dbbd9d04a5bbc08b1c0cc20b00a8e52b82946b36abc1f807e2fc326fd7c03e1f983ea1ec58b2ebc1369db8a2dfe1aed562ffff0f1fb102000001 +0000002068e4b6632f46d548e7a1bb3835c67ac03646e83725fc55769e4f984dbf4d0600cff21a7119c3c46c23196637a501319f0f7ece5cbca9202e4194c81b297e825e9bb5d562ffff0f1ffd15000001 +000000208fd45aaf29be96fd8ae401758de8e1bda3c9b9cd87a4d5b0e11111801e310800119fe87a5b96247774958d33a37ad5d4f41e00664cab9dcfbf37532d77fd297052bcd562ffff0f1f700d000001 +00000020fe7f46f1906bcd4edd742c3830e36db83d4360680cc12e39d091c2d58ad90000e8552eccdb61630baaa6f86156e2d6a48ec7bf294e5390d9dc48ff71cdb4444806c3d562ffff0f1fc303000001 +000000209b65e3cae53fa9050aa40beb7679649cc6984712fab86b1c82496ccee9650900237aa360b92cb331d925d35b9953ef69d6a5e83e4d0f2425c6914527398d7629b9c9d562ffff0f1f6817000001 +00000020d130e0db8302b1645d01b496e22ed3c862c70aa8df143477eb0bf54b65a90b0009e0c29407a29d3c41fc318fd11d55b9b2d890010cb2df6e2b4a845811f3f8446bd0d562ffff0f1fe20a000001 +0000002038fd815e1532057fc085844f4f6d97f7bb1bedec143bbcb1248e095884790b00bf2934d2a6839df8d22f9f68ff713324aeccfeb48ccab08406c836a315a987c721d7d562ffff0f1f3201000001 +00000020eea034dee4f8828494c012a5a8a4d08ddd1a266412faa84bc85bec2a07240200a708edae2a0e8f003a2fbf1b309044ee362ba91cd35da7430819eb587c0cf4aed7ddd562ffff0f1fd60a000001 +0000002046ba6f0f80debe2ce2a0dd1533b2d72137f82be736e8a6cfa723f668d5520100dbd6c92837391923841bdea373afe74caeed7c3f70f3681c3f75838f74300eef8ee4d562ffff0f1fe711000001 +000000203ea571497d7b0dfea2d0e4d9d31c6d4662131f2b0e465acb87aaca3eb26c0800683669689e296790e35751b94632560fe447c57f5a3059cbd3f89574e6d3abe53eebd562ffff0f1f0a0a000001 +000000205ed12fd74ad6d017f146a29e6ca4857f95c37361f481bcb9e7737bd666ce0600c54f5c44de8b4e46437d837a59192bcdb35e378a2070ee7a333fee15fe0af983ebf1d562ffff0f1f5d04000001 +00000020dd5e09ac83619e6d3e4936cf2402a68df4e4fdbec9a42299aec41fa049ba0400e7d8e4349fbc50e4eb3f04c77c39a1c00b7b384b278bc0b3ef347262efe25feea0f8d562ffff0f1f2912000001 +00000020b8e326f75a7346d442925a60e4dbf3de72849d1b4ce34be6899a29b260570400d9e0b6b74549a2df8b44e40f30dcc33070e79a20b307e95be40bcd4b4f6fa87557ffd562ffff0f1f0009000001 +000000206f72db717c7140dea8a260e31bde9ebd63633d7d578f573504bf8ee38ccd0800b45612b831d9e464efd972beaed295e48bcf310c37c74d35c3bcc1fb3c47f78e0e04d662ffff0f1f1d09000001 +000000200034f6ddb88e0fbc416e5981d6a3822f9e003b6606890ad3b9c1ee604d8d08004165245d043b68ca2c31f95a8576479c2de9f775938b03a30206b4d4e6dcea0f7c07d662ffff221de84b080001 +00000020d9f4fa60f3624dd1bcf5bd42d5308d671c8de531ac8390192288967d01000000a606a6d96caef5d01292b15f25ffe0dc553b471f02d1ccafd0cb60087bd514c83e0cd662ffff0f1f390a000001 +0000002057eb2bf4dfdf669c5f00dd21f75905453d24361f72e4cab0a2a61748cd330d00822587817a987c61f404d0af1117221aef514d809a035eede02a953eb0fec4969c0dd662ffff221d81410c0001 +0000002047722c8cff981fc7df18dc1d4e1ff00657a2f6d9b0859fbf44da7bd505000000c37f5203a2b13d3287ba4bd0b233cafd442d7538523195d2ffe0af307b2ae80de50dd662ffff221d3235080001 +000000208b010a836cd0d46d870a5d444d9f9b65641d30acc6cbf5d147b5d7a50e0000009b6ee20eed03fd47c933c7978a6f3c78abbf4a37d81c0ece63c8eaf605187e94480fd662ffff221d02410b0001 +000000208c76f24ef7b91cb0c46ec572c63a3b0459c4da05fac023224a57a46b12000000d013a47f81ca13a46d71c648292535f76daa5c687e50efc2953c82acf2efb2c10214d662ffff0f1fb608000001 +0000002055f63d803fedb18498f084bde0e6f57cad6dfb78096c0e20bd495192e57a0b00d59bb37908b01d1c11fdfdab32a6c7684f17c2317e16fc20f580b790c118bd3bb318d662ffff0f1f2704000001 +00000020162e215d0b891e8062af55ee51008bdf438956e0ded6d5c4e8a31fdd31b906003560760affb6b82f52ac4e4e9b2cdbbb6c53fc63dc09d76d90ed9f2911f69ef6691dd662ffff0f1ffe03000001 +00000020eebc54278ebe7f7dd7eb73570091e16f1a9a8fca448dcf6a888407fd03e00f005b54925b79dfdc2bd53035d0a42711a0482bfd47d7ac1b44bd5f3b445d7e05e69a1ed662ffff221d07b1060001 +000000205eb2bd57c57b09a12500cc89d1f7446105fe84a4cf861b76d3f0b9ce0900000057e5d508bcda0b3dc9da6f3d745666898185637b1beb55ac7466017cb6e893235023d662ffff0f1f2d33000001 +00000020f7c58795feea39b431d111438d6ce6a6ed8907d27181728d6f39c20066350d00da7308fb96f3274dd867ab302b940ede7d846e8f22b1d406f2ceef16d36473904426d662ffff221d0cc6977301 +00000020618bbc383102fbdd1f9a3af9aebfd80ab71ccbfce51e8655b41b09e905000000e6a553bef8d1ccbc874c186f7e4d85770b6f82fa17d615e3d1896d9b4d0657c84526d662ffff221d00a6d5ef01 +00000020b5288510febe11daca7542d48099a27828a5b6867722e89a843b2ebc1a000000622d4bbce558e9cc2c038a17373ae27916a335a411e408173f6024a30fdfe45b4626d662ffff221d0031333f01 +0000002096bf5ce02d4ead8a0bf4196a5c547509b6934feca85cd74c6ff47393060000006f3fe06314b147c1fd556b67b83ccbdf8b93b26f7b11b09246fd605e6a633bff4726d662ffff221d038f0e7a01 +00000020c6079621ec3dc20e90764b6479c63b1ae3db238b5d65b6253160d3491000000077c7b2dd4fdadb2feeeed7f951b20039a293130d3784280ddad703cbd47d3b394726d662ffff221d020d345a01 +00000020682a0f32e7b521fd681b6b0cdf1581a602e23a409d7868f396ec081f08000000d9241cdb671ae1b4ce94939da99ece4889cf869b993b86f4387c3b86d95d96574826d662ffff221d070f9e8b01 +00000020e0805f34f9c8ccfaed93dd578684c1b72965efbb6db2f72dcd23d49a060000000cb3fe4ee870eadae7067e69b4e1f7660dd33e0b8b6b06e79d887108ee969b5e4826d662ffff221d016022db01 +000000206a6110171ca81c868caf7b318f42c45f0cbe11a005698baad70c819e14000000338bbc549d1d84b9496c2cd498b0d6e07478501cfedb9bda6757496d9b0695244926d662ffff221d080d6a3b01 +0000002011698a70ea177d78c43c36c804e78169386066332274f43404d06aaa1e000000e859c2928514b4998761e8d89c1307f5e830d01f1149a2f22912b697c5db12ce4a26d662ffff221d018ef6fb01 +000000208c215d9ba3bf6d93b5f0c7ac4b359ba62df93862fd9bdc35db4e0622220000007aaf13469f612cec4366bdc97f03877ff0c0355e2438ffc718dc0046a659c3ab4b26d662ffff221d05f90f2101 +0000002005185bd41696aedd011ef93f5c5215780404f1f73f04db0b61d22a2815000000f24393153f1089619dd21fe33688c3f17fc9b80d1430fe62a1c67b53f26085684b26d662ffff221d0293517701 +000000203b848cf4094def86ae42d5d531cf4588639ce0cb0a624373156f42cf1b000000fc5dfbc32920d966aa24c10b83fe45c8d54ab712c4854bed75dc6f20bac78efa4c26d662ffff221d0e378ac501 +000000204d35605fda7fe64f1cc23ff5ae44a01c0983f6f8ce85295060e5350809000000366f21e62df9fb72582ec031c7f383948b459a662b6ef9a935976b435c0441a64d26d662ffff221d0268c3aa01 +000000208ffcd1416657e85ab9e7b39043578a7bc9b811c5a0e2bb35b5210e831a0000005ac75f8bc9d0c6d2758735eec042484f5abd9b111a70fbc28bb4eba16ec73df74e26d662ffff221d03ee6a1d01 +000000209237a674fda5563108508c463296ccb936f514746dfdd97b62f8db18150000003dfd490f64bdff9a6d58e66de13f0e6d95bc71a961e7543144ac0a321f9d8f104e26d662ffff221d00cbfccd01 +000000208a706ae68e417701ca104fc5aee73639af4f9c366c92eae4288cfbe113000000f40336a5c7aa030542ef755340ba577e1a12c647155cf8ac9693d077561796464f26d662ffff221d008a990101 +00000020de8fdb65848fc8019293964621312ee2d8445d695e7fa14906a999fc1d0000007151ae018e38ea2e5366f9c8f90ba031f90bf73ea91346e2f6efe025bdf6da0d4f26d662ffff221d02f2184201 +00000020b6794dd5ca9b3bc974a71ca1fd54772d4f3ebdafc3ce9d86381eeee5090000000903265f2a69d26be91d10773e0d3f2fe10ecc81a5542dd366c0cca66e1241b85026d662ffff221d08448f5501 +000000205e08732571d0797c86d3c934ccbfe4484073465fa07e0010ad336388160000003d134045705e4d6599c983ea8ec87279442c708827148c5bb8979e8c8dc245c05126d662ffff221d00ae0dde01 +0000002020ed320c672773c8d03357c635a092c2c8f4f0a20f04a8e0a68ba6710a000000ceaab8be31b7db7efccb47acc92ff33310e521eda0501cf329eb3a0c7ed387b15226d662ffff221d03345f9801 +00000020853753192fb1fd687dd7bbbc28ac53da9482960a058ee230e9fabe6b0f00000037549fb6c9bd2b194b90dfb5fa8b4b138c54bf4778d16d99aa72c8729010b7545226d662ffff221d07fa570c01 +000000206716c9222b7bda7b46a53041159f57449f2542c0acdd3cd1d37763d001000000f699246cf28c5be586b38640be63ab8d233bbe11422991c6b9aa6ff38e5724f95326d662ffff221d0f5633fc01 +00000020c6699d405afaadf9f26328a828dbe10c2bb70f4b3e687ad3ec3e32911d000000bd68028590e2e03b08d9725854d20188367bdbc4de57d61779e26c422cebb8035426d662ffff221d0b5a515a01 +00000020c3be061c4b274392307ac14c2d38b02bcb884a0b6875ca14654ed23a040000001418b5d251b5aad1234ca35c37534e3948633e293893591360cea4930405b57a5526d662ffff221d004ef49b01 +00000020d9ac4cf82d091bfc56878993694ef05701f5eca5508ff4606179c0451f000000373327aaacc6b336e9ad4459d692fb3af0fa6269b301ed4c835b03cd41c257a25526d662ffff221d12f2246101 +00000020b7e5491575519a68568e060216321e2fef2b8f99a2799d08bd065e4e0d0000003fcd4691ab1aec2a838373ab2645705812f252a3b99bf3e754ab09470d82b59e5726d662ffff221d00a330c601 +00000020c29d922ca778af93d209bde3f179b7fcc4dad8640c0916ddad0aa866080000009ecc3772c4717a35daa655dc9d491d348105b9d702d6a0b16277bcd9c4e62a065726d662ffff221d01c4b59901 +000000205084146e79c413076ebe38f1db806e42abc20a681a13a2052abd9725040000001cf7c583e7bfa42813a3e7da4aee7dac5e0ff2172d1f331472021393f57f68f05826d662ffff221d05b30f0501 +0000002099a59db06a63675e272ea8b634cf389a93ad86bd57c5d53ea3632afe18000000dc595ce46466e2d9bd8f7ab938e9b2e764ed458d535de94ce92212d87a0cb6625926d662ffff221d041bc59f01 +00000020dffb72b35d80b890c973e94b162700e8b2f4d0050cdcaad146edfce311000000b5e52b7920021e407d15358e3dbe59f0fefc3d62ebcb55a5d46ef0f53f4338165926d662ffff221d079957af01 +000000207de8a19698e797f580e4526e8f97f53b3137f1df2942dceb95564b591b000000786b5863720c29c19b12967ba604eaf3ba8eb0a3dea9e16893fbd816848172055a26d662ffff221d0850588001 +00000020cce150f5e3d2e559f68b6ed53d0c1ce1c2e6d59668e4e278a969e08f1d000000b370dca5ec182c625b668977b47d993e9ea2f8f6eb90171d4ca3217c0dd280ef5b26d662ffff221d041a9be301 +00000020b95ea1e57d3c00a9c6d8fc73e2c1812f56440d750388c531b6bcbfe70700000050613d909e7ba2f8d06251996bb595ab4c5f56b4f6fcf8d6364c53033fb4541f5c26d662ffff221d0519e23901 +000000209d943131b12dbdd0417e4ae5ec624ba1374d8bd16aa4b141f6e8bb27050000000ffc64ac2dbbf19be2e383eec4a1424b6de62c620bf58e041c76965da3c86bd55c26d662ffff221d0356094201 +0000002056e02226aa43715975f932db7aec5cc033265e7a333d274ddc49da371e000000f39103fe528600ee9acc592940b5d8535258a7eb08fe9c6fbd73afe7873723df5d26d662ffff221d035d5ce001 +00000020adbd5f8d54adf8129860d5a09414c144cb1d812b9ec1afe356aa6fb90e0000008e7ac28de0723d8cbdc5cc063b152c503ef67e628fbd4337b6a5050334ab3f365e26d662ffff221d0a5da3d701 +000000205eae289a4c6231267f8a37866e596706270c8374c788629ba45d8560070000005f0de8cf34a3a5ad692e19c6639e415b08b47f6d627a25a01e9836511f31bd615f26d662ffff221d029a04c801 +00000020771d63c0312ff48728d8ba568620a8a8f73f79d9f192eab6754d559215000000f011e377a60df56cad5ecb3c1c80e2d743d0ed0b72a7cc7d726cd7ccfab4b34a5f26d662ffff221d01371ee501 +00000020630b8f1234e9cdc5fba3765f66a1006b6cf0db4ca72c989800f5e394110000005e128844ccfb35487dd05d5326710f01bd55364641b9684d831b2c96a056d5f06026d662ffff221d03d23b0a01 +000000203675f727c8f57143f55e404c06af2415314ce67e159b46ac07e7f49a09000000308820f9d7e5b40ba6abcf85d0cb20419ab77a40768e1243e4c7683aad27c1f96126d662ffff221d00208ff901 +00000020c94c5c267b93f2a75dc487a20bc02b5a74deb4224b75d720b324584722000000974068c5eeba212ee8b9f8207e9d5d0d68179dae24964c5ffa767c24cdae20a8142bd662ffff0f1fa43c000001 +000000204e7d117e5c03e70acd3402a543c42f6f393068436c0ad4f81802df7b50a30c0012a166106e84a505f6e6ae8fe032057d6922010663cad4eae3b98c28c77f0882cd2fd662ffff0f1f820e000001 +00000020195f9c5d37aa58a7e3764b6c4b16ae268cd77c0d24aa04275d4db4e178c50c005de6b329bd03b1e6077c194b58bfee0157f1e152175829ed3876342d13213a817130d662ffff221d9659010001 +00000020a40924a24c2d49e8dbafba6133845d7c67e20463492f10de8f513a7e180000003fd05433a66cc7ce78cdb15d0317b1a19bd747250ddbe606ec59395ed56140002435d662ffff0f1f5c0d000001 +00000020796c03c6d9b9aa4f2ea502f5ce9caa21e34a71e23098cba91de201dc7e3b060063befc369c9c273257405545c1a0817aeecc4e7a54be4b4b2e7eddfd71b90794d839d662ffff0f1ffc02000001 +00000020d050cdd9d16f3069c981582c090327a2eb63adee882454914eff13bb450c0f0041bc3ca3828b4db670c11c8d3b164dc907f72dcf869ec319b7a95f17767b0e6da03bd662ffff221d1afd0a0001 +00000020c3127cf8230411e6ce59d7ba1228a1803f79776f1fa6608909e8ce1a1600000001fa14d571d5e40a8f3119aa45a8a495d12c75eb697e2cecffbec1863dabe8585c40d662ffff0f1fc11e000001 +00000020123c46247b9901aa55b400dda2b804bad98d57447d745991e7f277b56cc600004a3a06cbe8a778c0196a3f28c0894ce25a484167a7d1224c84f0585a240cfce70f45d662ffff0f1fc50a000001 +000000201a51d44d9622e48ae6f2990371d0c36cc9e0e5b425378642d4d45c164bc404009fc857ad78008e85b72b158ec8e68e16a1c1464fd7d6b2d31e129c27fda3ae0cab45d662ffff221dfcad030001 +0000002077563e87cc1dbe36c5cdfbec2bb878ef921dfc3cec9caa571707f5071e000000d13fc16dce26b54e71a167dd628d818dd7f4b16f8b64ae9f0dead474589a18de604ad662ffff0f1f6314000001 +00000020496b1292f2d70d31c84969659759f03b5525f2485eb04367da3b691f9ed507000953f42358ac6684a65a58ad9fade159ec17980443251153b66f35c7cb77359d824bd662ffff221d5925000001 +00000020b1dbdfe089fd230422a601f561c1a2f080c77c3a5a6b914846d2c4b6170000002e93c10985ba4e7b9f239817deec29d3e197d86901c6346e73db0ce1202802c74350d662ffff0f1f1723000001 +00000020710bebc622f40246b87474d014676190c96667fbd8d056854b26d7ca7fc6000006f92abe2034c9135485ae6a20980b95e38e425ff99005acede1b390fc7be8ba4151d662ffff221d19ed090001 +0000002080313f6f524cfe7eea7d36ba156fa889f92490e0b06ca9fc6eb446931e000000931ab46abaa67957d06476cd1452a9b68dceb6ac92337eaa1e97b06d62f06f11d951d662ffff221d5a78040001 +00000020b45efba34d21f97b4e677ce469d92bd6cc741da887a6c712fd5ac010200000003a00bfed4a6f626910f649d49de50a38e34205359746edf618772881f7bb76523a52d662ffff221dcbf5090001 +00000020572b719fcc00bdd2301bc5cf2e8214b1f2f763a4e6d8e4b9525f15d01a00000003cb5a98e736f611621f1635cafa1ced7d505020c5563daa4e5ce06e8da05c2ef356d662ffff0f1f6d08000001 +000000203822d6460eadcfd020a639051b7bfcb340f3f95f002bc354b56cf0e3400f0700ee1cc6ac477d072f08ae577206f83c92d2bddecf2a68fd08f6c64680abbed1ecaa5bd662ffff0f1f051d000001 +000000204d510f53916ec5decda1a97d3f94f4af7b1249a961047fca54621852596d070022883c7722bc703ace415752f8fbe660107b0c2d5c8af57ca72bc52878fe66b3c95dd662ffff221d8fde090001 +00000020543057c20010f9ea5efb59f0af1cd5377ca6411d0b54b491051c00df090000000266123cc2febc5da5e36429665c08901fd9fa2224862d7910e81e8943f233515c5ed662ffff221de2b8020001 +00000020ec12fcf3aacec494ade3bfc0db419bde186da3001110f041d5d0d1420b0000007ed5232325a4455f0b35a62387d72ffec9ac4824c5d767308f0f525532c2bd1e2663d662ffff0f1f6407000001 +00000020df43826a26c110fc07ba430fe16762b8a6fcec2c1c464550ffde577e48ed07001aebd3b6f24bff72d8d8fea278f8a8ba866f35ec7dec73746263d39b2bf1a0e4e864d662ffff221d46a60e0001 +0000002013fc62a75243353c22db0750310418977cdae985f3b317d66409d7701300000058c0c777216a744f11969b5e458ece947cf2db565f2c1787f0cb8d1ef5a70f699d69d662ffff0f1f9e05000001 +00000020d3e9a2bb4dfa9ab00ca7de0c3a8c8ec9f1c81eb767c14e90a8840af40ce00800d8c487ae57e162d0d89cc075f543aad99c34b14e7b892095eee1db4da055535b666ed662ffff0f1f5611000001 +00000020e0458a5b8213d1b7394cdb154aada8dd60ab4d866ed3e3755d9ab47cb39f0700bda381e9ad5a82c050b65561e718de0faeaa1c3307230f474f59a16548e73d900f72d662ffff221d933e080001 +000000208d2fb8cb417003d475275ece6612b94c08e608489791142ccc7097ad15000000d6734420136fe2267b5025934290ef5d41639d88b7b3eaebf5efdeb64d1debdcc376d662ffff0f1f3601000001 +00000020beadd3a82f405672cde41c25fce861e23eb11b640542eff4fdd07b83990a08003b87a44e12b66e288bfa28c9292533e15b5fd82f510e4c83573aa10912db43302478d662ffff221d4aee0a0001 +0000002039b872cb97b6b0c8cc0393646f732e64c57e4b61918d7b2934ee684b220000006471a37b63ef4d58cfa6a5ffb1e9a265f3bf743296569c32f0bad824b7c902a10c7dd662ffff221db94e0e0001 +00000020deadcc4ab0f7c66218614c8cc761fcc56ddefd39eae74ae928a383c20700000033aca0d370c2acfcb46f379fbb72d857d83b38c56688bb317ef9c423f01c613fbd81d662ffff0f1fd129000001 +00000020a6fc94875535fa0bbc5c8fa80809b23bee6c16f374084cb7843431e864420400f4622e6718158130656f1e90a1ffea840bc6093b203cf1138a629633f88300657486d662ffff0f1f200c000001 +00000020a9beda266e6ea0d38810710f7eb85b3c111a75b736746ad5d61f3a4915730a0086b6f28eb45ea2806ed54bb443824e7599bb78a61f4aa70f79caa03cd4a241218e89d662ffff221d078b090001 +0000002061d227ba110e4fcb06bcbeba1fb4c86e0eb62a8fda90fd69f911dcc922000000d2844b5d30278996ec5e1520df0d92f8676b38cb315d5100858103dde9c75853238dd662ffff221daea3090001 +0000002033b2407d05c8a93e1d2efdbae56096f90bd65ac476c59bac43b156a1010000001b7d75a5074f92ebdbc1a478b561e096d12341c065f0da0d27bbaa2c855179d4d491d662ffff0f1fdc11000001 +000000206471634d6a92e7887490ed02d52ccdd1087db166a26c1133bad2fbec060e0b00985f49d17422fdf9c123f06a854713f38229373da00e8f38f75f238b0cb53cc94492d662ffff221de770050001 +000000206156bbae66210fca8c6dbcf02e0677a2600acd6954f3d5c86efb3ad318000000370b72a4bcdca84e746753c5946aed85ba107827d15d9ce21684683d6e6d4d9ef696d662ffff0f1f6101000001 +00000020a75af40b1711974b17c9722b520706579678237a94cb861336b8f453a2610000217d858b32f27ca8261b79ca231b820dc150b271f27c5a3eaeb918112f86bde4329ad662ffff221d09dd090001 +00000020d831e969130a4dab28926fe170955b188adacf9b1906f6ddd04a028600000000efeca6d9a0d84ac4ef05f41f522920282b9ec2a6ada92c5bef3bb4aa811e8d20e69ed662ffff0f1f7106000001 +00000020eb2d7df4fd08d015134333915a20cdcdc472cc0abccba4e35ce9e9fc5376020020494dd8da46e147f48795e2df268091d0a900e57fe63e3cc8f5893542af928b75a2d662ffff221d1ef9040001 +000000201dd2e5b83bc139dddfc68b08a97a7502d1fc2c80ca6ac09f16f4359e1a0000001f7d4298c3082fb50b711500f2587f8a91a8551106334091b82bdda5e59a83c789a3d662ffff221daad6070001 +000000205459c337d9c1fccd7cb3d024baed07992b7ca5250a04b0bd94fbfee30c000000b7c662ec8ae10da22ce2fb6e2d86f35daa58426c13ff6d239dba912184dcd0b558a4d662ffff221d3703030001 +00000020333537be16454a653f420b24021c4534987d2e820a808c84a98df46101000000fd032293f23fd3ddbd293e659e76327816400b6c4325a1d1f29694bd79a8bbf31aa9d662ffff0f1f8926000001 +00000020ea170ff3d64fb6c742835328159b35fe92529889cc19d358bf140a498be10d00fd7cc7b9b08a32de16a02ecf411617176d162536951f70a7af7c20dc89f2e096e4a9d662ffff221df5ac030001 +0000002065911d32b94601d098ac4e11fe37ce115b8550daa4db9d7417d132e905000000806651351bb2d0507c745c671907ba137e48803432f042c9765b73e652ce65a124aad662ffff221d5c4e010001 +0000002069f876afb05d15f28549ad6d6645488c85885ec462fd2946d7fceecd21000000872f16a1a0f20efb17d9bb18d9a264522ae4df1d5b1bd10ca0dc7879e88462d8f3aed662ffff0f1f8504000001 +000000201b7256eb21178ccb442780f2101ff0d82ec50c37e198398fa079e57d76de0c00bddd8175de2ac41df6271811f86790355476f9466e2003f059f7948e43abc1d624afd662ffff221d96e30b0001 +000000204933181b65ce12c5ab5d6a8beb69c5148a4cef5c0fc1b9dee12825d6060000006e478fb524e29972d485fec550f93ae1eba894eb537fe35b2eb2468522d266c4ecb3d662ffff0f1fd412000001 +00000020468283c19ecdc948360a8a259e322105861a8d71eea0a069317c03a753920d0070825e28733b481d3d9c35a62b6c8504b98bae49b0832f38f93d35d6277a7e1caab8d662ffff0f1f6e16000001 +00000020e4d29449c1e84d4ae256dd3226bd750a44bde56f3cebb35837b0d83f880d0800a63d2bafd174d1ebcdcb5cc6ee3b1ebf2ea0867180ce2d47d12899960fa12bec5ebdd662ffff0f1fa41b000001 +000000206d3a709e10740c8f67d77978dd23ff6708140de51082e8eb14c62dffdd730f0021ca85e9ece17557e2666aa98627fe43b579b3a93e181995a67c12d7ed695e1228c2d662ffff0f1fdb04000001 +0000002035aa305a272ac881630c9790d3b0eef7eebe610a78694401351a3905630c00007464ac07f1c3b9afb58bbf2ee443c1f14a5ea386f16bce8e9d03bac54f23b3f7dcc6d662ffff0f1f9200000001 +00000020913a02d2ee8e805ed05bdfcca6f2d39b433c3e611349738903f7751459690900f4ed0f11e51a25b520592666965c34ac47593b9062f61fe4e66cd4c6fc2fc6edc2cad662ffff221da0f8060001 +00000020b99ac9e1b8a42e7236bca58374d20262bd0458cafde0274c07f021301900000097f4e584f5ff31ae139dbfdd6176aabcd383f01d1a05768beb413ae8368ab9678acfd662ffff0f1fc02b000001 +00000020ad2e6a11cef987dd5c7787cdff6b6d6dc75b5ae71879bbffe2d1906b0ac3080014fbb085d519fa58628fa50cec97ea24ab23305aba36c41bf3dc5e7e8252a92940d4d662ffff0f1fd325000001 +00000020d6a543aae3dd9bc0edbe87e433846205ef8d548732306148a8e00d53c3f90a00c1459e4c6b5078623a921eb371c3a9a9072f4f11149d86bdceee6a8552a0f051f9d8d662ffff0f1fd206000001 +00000020414a7ad1ae9ad7147c57acdc50e7f0da2d553fbda6d694b7083438964c720e00db3daa38d359ff0ba61ddf43432ff43fe8eb5ca96a6e84588867176c60d83a4656dbd662ffff221d7aa20e0001 +000000200b9f1b1bc0ddb976d00178b4df1848aa7b580424078104eeb95a22fc150000007679189f6e437df48adc37f73e9c5839f3a6f11a9c8ed68a11b5810cd39f9d3b0de0d662ffff0f1fd111000001 +00000020fe7e60102d2b44bb42d34f7b53661c5117e7eca4fa80cf299f498e1896b60900111d69313d4f79ce14973006b0c55aa84b9425efbb82bcfff527dc3298b0b554c8e4d662ffff0f1f4501000001 +00000020a81d842a388899f7ac042a86078e529e36428fe2a04d619b19fb77d76b140d004d780838e12de4597013905f9efa91ca1539ab193bc6e583ef564cf02d61da9c93e9d662ffff0f1f3f08000001 +00000020503c11d832aa9b7483668cbcc1a7391e864ed1c62ae150e8875e3ee11fec0e00c181ab45082c42d9a835a0c490bd4750d3d10e036aaf471a497b29325e0467d23aedd662ffff221d186b0d0001 +00000020c55f96a08e27fd4f6ce75fd93b31b4f9a7abba67e65fc63203d0c27f0d000000b6ad2b97a134f403fa5d5059af441aa00c98e889514225fdd1cb5cfea8cc1012fbf1d662ffff0f1f0102000001 +00000020742fa6d41272c5ee8917e33b5431790b15d7fcf9e45a1e03b102a3d19cd20c0065b7c14e4ea88492897427bdd94e8eb20329cc0ff3f16f18e778cc287597739a2ef5d662ffff221db113080001 +00000020db41089e8b5c766023445c25c6810231a4b7439963635be1c3a2c7c10b00000082fc9a8d1f10b34471e019d19dff399c0969747bceb8b56c1d0033e983da9cfbf5f9d662ffff0f1f0103000001 +0000002087017d099c2a0d89a50470058c06e6d070db7c83dfb7207512c2920ff903030012b63fbb2ca00be0cde85f94a0d9450f3b0d8f7e388c9895eb3cf4396f8305aaa6fed662ffff0f1f5003000001 +00000020c0e21fed026cc6d2e08c43889e1a0fae9ef2ea498a8ff4c4e6e76177421b0600b57fa525f1b9a5bc338fb8d8c9ba30b6182221897f2b4c90fee48c31c105d1216303d762ffff0f1feb07000001 +000000200da992476539c680e291e2bbf6915acec218a929c6c3647710464b7bdfff06009e15e9f7b436893cd2bdd9343c485c28af6c5e4012e08a366b38ad6bacdf01251b08d762ffff0f1f852f000001 +000000206b1cbb7044da2a80f31a74e9eeb6da36e86ac13b0f92067674d1a1c1a3c80e0015e7ea7874d174353debe9d4414189ed2381db8b9bcab4721f01864c51de7884d50cd762ffff0f1f4f00000001 +00000020cd737300c5649b765965aa98113448577ab694aaf13bc38e1b90483dcd0a060051d81fa5ebe6d8d890fc86218cf6d0463d62597d58053217569f6f0d91d3ef1e8f11d762ffff0f1fc81e000001 +0000002047085f912480a300385596508e470cf86ac2bf82fbb5b06a22a654b7ffe70400a07c5ea9fb1902e796b38fe74607f5f339bf088c0da81705728fecfcf8e76e394216d762ffff0f1f9e02000001 +00000020df50f8c236705a30935a5c3a95cdbf4f24278e63f43b07b37bf1cb3700290c002919f17e156cbbc07176c3b12dc6fc01c31f673427dff0e957e89c3b98361cf7f216d762ffff221d559f050001 +000000208b6eff17733e905b4d17173e6f9cd227ddd7dc46aaa3492860cf7e8806000000d62f909f97d7e8ad718572784c86c4ced2d629b16da814b261975146db6c17a9951ad762ffff221ddd0f000001 +00000020d9a8fa558d7b7d162bac7c26317091a1bf8f6a1bd55712dbdad068ce12000000bbaf0ac00207ce67a25c5268f7253f5d47fd4b55fee9323cd7a6dda51bf284d67c1cd762ffff221d8b74050001 +00000020853e68d93fa962ca3f31036e9a6f5288d2b2028ce962ca4828b05ecc050000009468cb777c6f3d345491bbc8432c4d8540df0f97e006f512adba741db12a99cf371ed762ffff221d62fb070001 +000000205f44d48b7a620522fee03703c102871b9922497a4ffff06d94c876a400000000120e61bd9e305ad27c4206eeaef4d858ed92e444bf79e9196deff3ed38bbd595ed22d762ffff0f1f2f22000001 +000000203c4879fb61194179ba2c854a175d486f7c6ae374f3273858b29fc4c65a4b0600ab75a83e96bd811012a88f77274138fdfc9c1289c8b42148bf9880e517ff84a3b427d762ffff0f1f211a000001 +000000205e2f43f3237c4d7f13cd8d75a90385b3a1f0f182694cbbe7bf7399ca90b80a00ab2be378f1deaa3fd17046fdf0e7460331f95864ac2acbcb1670b73211ca031fd827d762ffff221d86b1040001 +00000020e182e45db21f2e09821f2f6aa66208217e483e796bc30c6c56e762d81a000000574cd2d4829d7c152760b8d0418624c21594a71d290ceed9e9f03502455605c6992cd762ffff0f1ff101000001 +00000020de7cc49fc9b7f410e699aea86bec0cb948cb3fa65f48927547da0e2e9a090b00b8eddb678217d985bd83821898af1162525bf798714eb27ffa902076747ef8c2922ed762ffff221d0c0e040001 +00000020dbf06358141a039181ff53f2844274cea8ae878eb7f64902c38fc02508000000719ed6eb5a126578100ceb9ff867ffb0c957cc5d1f83011e95fdaa26415440b88431d762ffff221d0c660e0001 +000000206613868dbb3b3dde9029494ab474b03714eb53f3e127d6db7ef83c1312000000a5a55c7a1067737fc803ba09673a11050511a829ffad68b82c6053128dea76aa7f32d762ffff221de09a080001 +0000002026613a5a67fcbcd8f24d95ff8833fca484851f0b046239188d7e0c40050000001e6d67825846d0fb9069c62ee9dd95603a18146619c3cbfcc29b6fd9130935e1f135d762ffff221d0e0e030001 +00000020ef2d5f2fa407354b8381e67a98989f0068a47892f05f2f4d684f18f709000000adc1f77a79d93dc3cb4e27375b4122638d572b6ec34eaec4f8d4b13727b8c1f2a23ad762ffff0f1fe40d000001 +00000020f401549cf0a3650d2334d845b9aabab44ab9c0a30c8b7cb766b1e7de1aa80500afae56185756ea8a26ebc15d3744494bffaee1dff23cd21466537701f9ff948d623fd762ffff0f1f971d000001 +00000020c97b785bcfe8cfc181a37f05b986a58e9d4e505cca9cd92c999d4d067b2401008603d488c1f06de01a4616317db3b4721c4bb0396eaffa81bcc991b54295afbab741d762ffff221d6fe40c0001 +0000002037c2102a168d4a99d22f6f1257f43f9ca6c5128e634b92cd3ab79ee41f000000319d1f97b55f691a5d12a3afdbdfe2e30449eba02391026d5fcd453b010f7bef6c46d762ffff0f1fca01000001 +00000020624eda18f1bdf2edac44f3976c2a4049ef6c074e6d4a09d4b1cd747bab1d0b001c43ac18e99d122b9a2f4d00524fb4440f3032bb0685ca53c162d96c3e522e8b1e4bd762ffff0f1f6109000001 +000000209f0f93260f09ac49028ef9e3139a7cc08aa9766635232cfc2bdece9676970a007265d7a409d3ad77c0812e99c012ea3bc3ca224fc4f6f513568f0a00c9c30e3de44fd762ffff0f1f0600000001 +00000020bb9e9793143e5e26475636b9c2b0481dd060f3a03cac5a2067494be494810b0040835a1854af647094248fb4e52ff4d99416a610d3c71010df414e4817b6d0b65550d762ffff221d9480090001 +000000203bb0a88ddffa55d9a61c25a5b2b49fd6b52bee72fe79e91a52ca35c308000000aede8e648d158a7e47bca81a254e581eac4ef148df3d1890d6eb99cfc99a14360755d762ffff0f1fae1d000001 +0000002050345fa1985b15fe37adb0538ca0d2d48cd297b6382ecf9d1f88feddbf45000067a63e1f1281fa6f5d5a9e66b1044f096f016498a8d56aac23b206ea26dd938ddd56d762ffff221dd0610b0001 +0000002054df63e7eb1090e22babcc609abcead3c29971e8839a9985f5ba887b05000000c0bf4e73f3c31ab508076660e8d44d0165b2a60d76c677fc1435114be55a2533a35bd762ffff0f1fd849000001 +0000002086c3e1cabec585c7eeb3e295634cd69078370694b72839ec2d743cfdfcc30e006bb6234ca3738069fcf9bcda6b3f8a13cba4f556b523811a8c4a8359653bc8d92b5fd762ffff221daa2d0b0001 +0000002011ca8b9b95799a549fefc398222a2f8b89137e4393078b3dee414d500a00000077757524326c1c5e8d3893fa8007689e5e9b16b56e1bdf965eaa63dd01c2f3bc6b63d762ffff221dec9c030001 +000000200ba1cc2b8cbe6c4a957e9900e39f513a97b7633c8227d3ec25e96320210000005c6bd151488bd23a6151e72f477afa92d91562d15bf9975bc95a4b90032239c82d68d762ffff0f1f100a000001 +000000207d4cb1ea6b1c69cb04a19682c74fc7df3bbf60f90888adc7b1f7dd971ab50a002496f79c92d8cd675e47fa4e670029fc1869518bdb5b0092253d1782be16aa9ff76ad762ffff221de0c6000001 +00000020d0f0f66da003de2a5f9920c063a80c6e46debe82d59380cf1f0124781600000065bc1d0bcaf2b01dd9c3d04255b38fdeb9f07b6481b11d6303e10ec6cc39624ec66fd762ffff0f1f1e0d000001 +00000020858ff6972dbeed43d3c5562a88698950acac180b542fb84f21b5f3f6b6440700f80a001ed350726c670fd961bb078f72439e8cb471697c383b6e937a722efce79374d762ffff0f1fbf06000001 +000000202d31e35101d74b4930478fdf5cb16a658d3ec420271c3cb015e7264c1aff0700c103b59b54127be7237d1b54c72b2c858fb25bd519a690bf614d4c1575cd6d608676d762ffff221df6020c0001 +0000002098966d28a5f0bf96c393707e383d4ab0448eeac19d9ba46e49d96cb820000000bb3326262b13134f6230020a89651b1045bfd59b263c0bbb60101ee8c4dfde26507bd762ffff0f1fe924000001 +0000002072f12c7d461b8237878537d52e49c6da7cb3dc837d75f41e26ab19348c640d0029934f28b5d2f9975f7715399fe10778274ca0d4ec475be7c3089e3dabf350c11780d762ffff0f1fa201000001 +00000020ebadc0e2da4316cf795092cbda282f14bb0cf7a5d6ece0d0c38dc1bcc04d03004647db8fa5a483460baa4a3344f74d77c2da54125028c3ac1dce0e78abaf5abc3782d762ffff221d5767020001 +00000020eb8e8d8c244d0f72c06666d4875aea7d5aa68fb1c6e687246e48d48413000000e79e47b6eba23452579cdf55e503b04b76a3bf4dd32f88f6f5e93f837dc68110f086d762ffff0f1f1905000001 +000000208f650a0b6c8898b3cd792fa17dc42b86ffbb96737276cb33e8a3bede2d7d02002422b8a64d85507142ed38ba67f1fbd227b4bd9bbf057a90b5c5cab177c3f2e8a18bd762ffff0f1fc205000001 +00000020dea3e53bdf98a6aab55586dfb0f700bdea89758ff9719d80084ed503056b0d0055b25e147e0c0cb389a3d024dedaa93a740bed140a180ca0bbe36319b2941a296390d762ffff0f1f6311000001 +00000020763393cf2184725a7d2be2dca161011308e4a3116785736428ce75c88c750f00364d9a1f3c8e914360feb422d976acf3fb1641d561924fefdafdd5e57024d1a7b290d762ffff221d53f10e0001 +000000202e0fe89c0ec9b094ba3aae6c8f0da64eb2ee890b0585dd789856d97c1c000000deb89e606770fd613ef00e6aa08767b36644fc792f10fa6d0741df76f9229df2b193d762ffff221d3f76060001 +000000201340bfbc89191c7884d34b6df84f38fdb4877550ecb80b68426a440114000000ae56ad62b8c2045d451cf72674e22bcb363b5af7d4245e41da841b89d113d0bd7198d762ffff0f1ffe2c000001 +000000202e97fa5a982ddbc320304cebd7031458c34248d59b33be1ec74b3a206a8e09009b3cc6757b2374b2b846ddf6130e016fc12fa9077f26537a950416be67e9fa93269dd762ffff0f1f0405000001 +000000203c703d94aa8173c6f1b7fbfc83dded8649c959dd0a7885d6ec73c9e34ff70f00fc4f811e1befe1622955cda67e0f43f080b4066705fa60e21d03d007246c7268d69ed762ffff221d077a0a0001 +00000020c04ae36d39caa415712f3e2987409d3e02f8f99212cfecf071521331220000007c54ace1b616f93aa2c9f3b5ccbd4f70a84c90f1eacb4f03393b6b0c36c4974997a3d762ffff0f1fc50a000001 +0000002093e1e6c0ff4a0df72d1b44ce60835d9a8a7af247c281d45a91db8db82e160000db182823fe6c4530bb24e52d2f6ebd273e294550fb1a787e015574672dce57895ea8d762ffff0f1fa41f000001 +00000020a84032024a7c023e7fa5977a00a5f46f2638fae21ce3a999a611deae99590c005cc0f80f8f67fd2cfd73017edc5ba34efbe965baa1e0823b33bcbb9d87f626d11cadd762ffff0f1f882a000001 +00000020760fac173b4237431780c6cd2a1cb23554f17b046ef783e03d97e69b58690600a168b73097fd09380dec7d96efbea86775b5ac8c4e4edf0ab3c6557ecae56bd0b3afd762ffff221d2261050001 +000000205cbf4e38beeb0ed8e4e2c917ad037664dbe8d3d61d934bb9418d63060f000000791049d69c4d7b1d621c053a76ab1906cb68f9a006b8d340bea7e0172707daead8b3d762ffff221d94380a0001 +000000204b02d39e61082f9c173befabd6f844c5a0609dc7a51437b1c7ade2961d0000007988f19469a85ffa2c644656698d63e1b46e9134cae6d3fab231821047afb583dbb5d762ffff221d49e3010001 +00000020668f069ed1bde4c905a801fefb24e048076070c84d97b53cfd21c84e1d000000f2c745311c47d9450f58864ca3600753d7084ee71ecaa3a503170705ae84606657b6d762ffff221d9647000001 +0000002054bbf1f01a1ca03c8a285339ac9d91b75be1a6a766cd695e2a35a27819000000c5cd3e63989ad5c3057d8f3746eaa594a186fbdd47d7a104ce76446e9a5847550fbbd762ffff0f1f0908000001 +00000020a218ec0fd58273a953f5e1ba4719faed6243cfbe9dd0f70167a31c321ae00a00702b453e84781ca83b39e605bab9e17443d02c2d4910675326f333e26103d3a6cebfd762ffff0f1fbb03000001 +0000002036fac43895f9292dcde71b3b091f8278c6fcc539f34de4aed009cdc8aeed07001a7944967071ea47657a86ac28e58fce6c3dc557b7dc1eb49addf718cb2768a344c2d762ffff221defb90b0001 +00000020afe56896b1a72ee81e0cd41a90b22c4370730378b7bf14c0e03f0d8f05000000c7276db0daaf2c51727dec8ab55a3d84d1d36a5a6775653dd85605a55cd6c438f8c6d762ffff0f1f310a000001 +00000020fb16c5b2aa586098aacfe565f0d6a7604fb9e8db10c10e1f4907c362b90e02009e1a2d91e551fa6cc35325a7a94cadb8cf268e377e6b12e4bd8e7447fbc055e4b3cbd762ffff0f1fd411000001 +00000020c1543b92a09f6c84d8db5832db70d3a4305a5f3b365ab9bed5f491eb5d3a0200e8c4d9ea692766a30d88de0ed8d285cd5a05370822c9e6d48d71fe8f5bd855af97cfd762ffff221d0540714701 +00000020550969fbda9a1cf24771dedc7cf67b2050d19ebfcf513c18675b029b18000000e99b9503840909568b76878fb8913911344385907aa20cb27b61d6367e5b9bcc98cfd762ffff221d0861aeac01 +00000020931cfbdbcc4cc42ae9ab5dd1c5cc910203a07ba927fe710d08a9bebb0e00000025e2f5f35c6cb13ed8f1252af0be22dd6d001f4363556795c34198cefeda847599cfd762ffff221d10c5f15501 +00000020d9ffdfef211eb247d2b6155a7a4052e1522be685a8e001c3e17d061b0900000003c593401f157982a7d05a47a3bf9072eb04a0429b438d4b0f82260d8db7adc89acfd762ffff221d03edb57901 +000000204c4b3d2ec71e4985c5ed60094a0b5b63808cd7ef73e2233a8457412814000000e0a6f6b7d63ac3e9aae0f20531cde49ae9ed165bdc2a3648e706ea1391d2eb229bcfd762ffff221d0077e74e01 +00000020997ff8b2e066a02bab866ad10794a3fe4998808b0106aa509ef1719a1a000000b4c32077164dd6f97afa1790c914828793b3d43f8fb1ed9fdf76b3400c498c789bcfd762ffff221d072e920a01 +00000020657ff30432b6866ae500deda3c7c0a7cc9b8a1221d734634115f99e716000000f3bedf2c25e120d735b9dcbd8f12c43ca6839e694b92b5ba712d7e8acc7d549f9ccfd762ffff221d004f506201 +000000200f7de88f91cb92a406d57e89cc5144dcf8d9b8d92e097357bc823f4611000000c207fbb0d754a92dd05fed167f9b1178d1bde28afdf6271d06ab2dc4d438d9179ccfd762ffff221d10d956db01 +000000208ff44b92a6df908869e3ca4daa70d5294d9d65dd0f890aa6cb63ea8a13000000061ffb17e9c3f69f8aa1d1c51ca114e25fec3ca254db0c0fb0876beffb06eed59ecfd762ffff221d10df790401 +000000200a2c44c2dcd68e6760de852dc6135ddbcc8c76f5d01c6fc5096a399902000000876f0ae165cdb76fe3905aa5d39c12c222a1948993bd3aa2e625fb01679b78b39fcfd762ffff221d016de1d001 +00000020f9f7bbed22cae177aacdb3589202a0a0ab00008de1eafb02810b565c1b000000878e55db8206f6218535cf34606345c67ff1ff6a48bf52214e9eb2b2fafbf061a0cfd762ffff221d007c3fb801 +00000020e95df33c38c7ea59f95fd5a72b9c5098c37ce3a413a50902269188821e000000f936b22a2609a773480a7b8d89c7e77abe71e253ba89ec85cc6f50dfb4b5b060a0cfd762ffff221d114502d901 +000000200547ebcd6e8ce50fd6a8fc885def6e375ab019028ce40f9f5428875202000000dd0836770eb25414019e2ca4a1879929b00edb58caec23f5c59774186bf2e4f8a2cfd762ffff221d112fb3b401 +00000020a86b140bfe0ba406b5724fc381a00c6ae67b88b8e2142306f15311f4150000008316f575a997aa153c4ad807e18936288333d5a24a6d45fb2460dd6e7a532ad0a3cfd762ffff221d013aaa2201 +00000020e59a9f9e97dddcd18c5f25aba8a9d7b0f0e1ebf3e2303ddff65eb1df0c000000cf4c8bf0c6b7dd5e275753cb73803be01d438b2c711b6eedb721f8d2a76d519aa4cfd762ffff221d022a613001 +00000020295bbd452e20bf8875f4898fac534dea61e2df60dbbf82bdf3459b7101000000c153f52d1c65110e323a6ef80c0ab9f03d197f25cfb04768549a2830d85467b0a4cfd762ffff221d002e7e1d01 +000000205ab9725c66f3c8f2cff8bea532cfeef369f920be55a4b828b14957990f000000f1263aca8d0a20172f4400d110edad5c6980adb63c92304ee6b555da5897624ea5cfd762ffff221d018324a701 +00000020f39ed64e22a0f13445248c83dd8c7f5266192e864a05905f030bf56e1a000000b4abfdeb82e98a730aea0448ebc51019d7894b322262495246debb60b3e0a4c0a5cfd762ffff221d1059409f01 +000000208de76780926779a37871b737acb6794ffe5646ba0360a0e981f879d40e00000096441ed7870ea31fd8fc257226ca8392abf4233eb40ec8aab99f49d10e6dbee8a7cfd762ffff221d046cf39201 +00000020d2ae3975265a87d7c09877cd4d5cbb359a21aa4fa4b5cb541b45fd0d0e0000001b168457789446f19de67533e27b7ac4360d613fd47f969f2bfddb877d0a6d9ca7cfd762ffff221d15e5e1c001 +000000202e38bec4dbc9b1cf76d68d93f01dbe7c28452043d2d66dcdf4f950af06000000ea71d6c235531429ac5af1a1d17143846fbecb22db9454785b4b8121fbff172aa8cfd762ffff221d0183527e01 +00000020e31bc85b430f4cccdbca97effd90d9d404c208930a41e33e66c9e8e00900000006f82e246ca5c7b8bdba59af54f374112dea79ffc00c198796db7d34603bbcf4a9cfd762ffff221d00fecb9001 +0000002026e067a314eb4e88b6a1ea91c81151b38e0229d16a2384fce2fd172b00000000366d80405970dca14731004314863e888020dacd8d7dc04ece2eb63bd9a3fe8eaacfd762ffff221d00cdd67301 +0000002004b5c396c953dda115d04558fdccb8b9df633f71aecbe4f4ce6d22cd1f000000b909af1eb46bcc527bd9486dab74f4c98aff6bb190b86f70e4d7498573889953aacfd762ffff221d037e30b401 +00000020fcadef3abfe5084fcb7625761cc237e73395a51ec24f97d7d5d588461100000059cc3cff4f79bc1ad3dc98e6ec7b2fe9942e8c1e603239a2703f6a2737689be8abcfd762ffff221d0276f42201 +000000202a4526b7c2424e06d5fe4b96c87cd8646a36c61cc93a766d6d3b31db070000005a648e31e13ab4c9a931880a568ad462e6c7bf0f01a97b351adc88114a81afd7abcfd762ffff221d055e533a01 +00000020a01b262ccb70a5b4ea9c868c7c181249159d67290be67a25c8be5b5c0a00000018be8a338cac2baef9903f660aec6d0b3df4b8d7f173377febba6557ecb57bafaccfd762ffff221d0000b7f201 +00000020aa782e47c4ca9884e5262e1d52a0a6409995d1a4da525b6cd34a8a5a1e000000f705c73945721bf5d2b07b71b85af9f8ba4ff6cd24eaced62184a5b4152c5bb4accfd762ffff221d07bb20fc01 +000000209f948e984976eb1ffe8bfce52e995a346217b8075aa4ff93f49427af01000000462d19e099638cd4ef84b37ac58786ddb1ab128d24ff7a9a892398d5383a806dadcfd762ffff221d034156fc01 +0000002048f49da88a21c95fd03e91bd69cd2cbe07275ba55064c09129f79d9816000000e0e23f632214b71059890108036caebb4f21f0b08c3ff8a8addbdcb08c9202ecadcfd762ffff221d062129f301 +0000002033ca798ed1a349f24d76c1c887715028af302899fd441693d6a449910300000052f6f56e3fa43443884a1607afa6d16c5fab148320ce86a9b099154719c2db91aecfd762ffff221d03f50ca501 +000000205eb0b8293951fd92beca9edd6252f41af2e7e82961d39128334d86df1300000012ecfaaadb0435208c673347c035409942cb8b7c6e02d335f87698856ffa902dafcfd762ffff221d073a0c0f01 +000000206207a4fa2c5b2059a04243563d56ee53ea8481a94e63647dd8d2adef03000000db99c6509d45d01ab1860214e5df7df66bf4ebb04a36cac42f47b009424da9f8afcfd762ffff221d04474f0b01 +000000204dfb903884d5fd9ef86bd7fb02e070374cba8c751915ab81f4282fb4180000006c1361bcd0b9d7131b3fb51c18b1be522d8130f1aeb3f6eb4ba65767e70b0afbb0cfd762ffff221d0659323501 +0000002075bace105ff22adde9cc91dc0a2350bb7a58cf580b4f47fa3408fab5050000006f92c49bf6789aa50c456bd7256649a59e7b56cd14099aa0c484b76476d7bbc1b0cfd762ffff221d02562b6f01 +00000020be6dddfcccbe0d74405e9f2af870f9cbdcd1b90b650eac54fddd3cd51a00000000687bc15a23446d65510f50c60d13ca014738eee953829614812e4e58a382a6b1cfd762ffff221d05e8477301 +000000202e501f8395ab9a0368fc95458fa684fc3962b166dbf046846143d9100000000092cacc8f250170b2d90158e5ef77ecafa4006baeee06406d4d3f61adc526a7d7b1cfd762ffff221d0fa866e401 +00000020f86adb29d85cbe62f8fcd2de4910d8fc9274b48ccd2d4b4d4836c70f13000000b375a5cd84e2cb7e87938910457b767f88fffa52830e73e2e6ebeacec9de4f52b2cfd762ffff221d0248cca501 +000000207423d1a635543e0fd625458378b2397e7acb54ff69fc0c938f5747842100000010f792d37e36d7993ad15b799f66eb1cf755bf3c241a735a584b47a2a76739dbb3cfd762ffff221d10262c4001 +000000209446dab7a7bbfcfaafc0744e018a1f8b36e3fa873f2b96ec6a0cf384020000000af59716cb96a246aeeb5b5aeeb785603b8e92e843d01e75cbe416f32e12ee91b4cfd762ffff221d0cbbd91501 +0000002040ac34d49c0592f2130ce8711c7387b8ef3da0f686ef75bf7c59aabb05000000ba328b573e517d4a35527b35e99ebb59a310c3abdd7483e8cc602de4d854133db5cfd762ffff221d0386890f01 +000000204d9aba69a198c3c36c078ffcf7e43be11b52609a8a12a85aee9ae0b52200000040ef117cef17e0e0edd7ba5802f5abb3663033dc98be98c790a0197b936e3ce4b6cfd762ffff221d060effad01 +000000208b47a63f14484faeda27a33154243630629b0b26060020b5a72d6fef0d000000fb009e2dedf53be07e24b831173c9d5e2ad294e35419a2a0c58d7d704555ae92b6cfd762ffff221d04bd792a01 +000000207638875152a9b8967f46990a6685f429a74f556141f6ceaa15b2b9491000000018e3b43b892da9cd3aab72291289560cf383e14277433486708317b3045dee79b7cfd762ffff221d086def5701 +00000020afd3e32e321f27f1bf3e49b32884c8f8e62d14ccd331d2f5453f21ca1f000000b9bd8c8daf64ecf0bd4fd5d8a9cc20aafe39c7de91025fb7345c044f3772c5bab8cfd762ffff221d031ac6ee01 +0000002039e4c8d98010cf35190ba5902475ebb8d5d0b9ba83042a59dc32348d0c000000c1b532567a92869b56c28bdb51d994ab57621c334e991afa8ebaaaac01c65217b8cfd762ffff221d0512bc8301 +00000020b6935b38567f12c4b2adb903ca83a123a6a1645a5af39db78f67b4b916000000a430da888238c21feda1a9364b319ab62f4c02e7c5f519843ba6d67878f6e92eb9cfd762ffff221d0be489f401 +000000208fbee247549efc98839fa889b0ee173c5f08c5a19e3b2e538e0552a61400000055bb230398ec692ad04613c71e0c2cfe9578336d5a05575e429739b3b3351f0bbacfd762ffff221d0391cd2f01 +000000201b193036c97e7f8a4a07b39a72951d3c7f874e2d316e6c618b0f1dc905000000839dd5b300236ca8756d4e83c7620377e703d5d6506db9964e87adfbb0359682bacfd762ffff221d095e212d01 +00000020670d36d932c5aceb8dd818941b94da708bcf1948916502989db7e5b01f000000b2442c955aa2f2ba7ce3084bf654442bf62cfd5cddff0a284db9aefdd6a75aeebbcfd762ffff221d0059d32401 +00000020fa3faef4326e380812525e59e230de98b6853fb1ac9a5d56582f8dcf0900000031e4f8c72cddd66daf1dde05f0f21d8c43d0b69499c368a29c49bf58d9e37e16bccfd762ffff221d086d90c701 +000000203a2d1fcafe8e00f92f75c1b1844c487c20425fff3179c896da6d61fa0f0000009ed5d9afc4e1632ad2aa749cc560a27ef48f51f99d2f7648f05199e32aad6581bdcfd762ffff221d0261827001 +000000208d2c8deec248b8f7430877779ec5db2affb34600cb6ad163b3f144ca1d0000009f1dbc0d4febf6ba4b790746ab8d8638a859c6f1dcdddfe4633e86a745f843d1bdcfd762ffff221d00bb4d6b01 +0000002088241cd9b429a1a35a27250436ac6b936153c8ccb71b10e2cd32e0d6140000001354f0e566640b634b1f69f2e858f70a0334d4f00dbdf28b89db967c9580a13bbecfd762ffff221d08b9722a01 +000000202f6a14a994c2be318517fbb2b9dd038dfee330cb88a52426f1e119d008000000bce6368ae4edfd5713f45b98a50f9108a5f92f0fc47fb7d86405254935adf673bfcfd762ffff221d019881bd01 +00000020be14e940e996204d2527609ecd49f74f2339719dfec2f193f2970d581a000000d5cda7e5ed33c1e006ad5250de95d859d8dcf37586c68ca3b46cb48f40a719ebbfcfd762ffff221d05ff4edd01 +000000209f694d2a06dcf4c9a3ab00dfe2a10e4f18fedb24b2c11954cb4b45ba0d000000057f64b8175999fa47c21a5ff1753ee787216c1c259b871b80794596b716df5ac0cfd762ffff221d01ffb1ff01 +00000020e182402d02e67aa0ebb87caf6f80a04ac6a4ccb78434bc2913587aa711000000b98a76868e80b7b2fbd66e6b3518d3fe4ca6a927444a4fd23a01db44e1a9b13cc1cfd762ffff221d0144422201 +00000020a50149dcee90c86eb6f97cdf3140a1e55c94bac5e06e13bd15955e660b00000029f9616609708ee062f43655148201ae7d506cb48d400a73b52cad3860f338c4c1cfd762ffff221d01fbf4bf01 +00000020d22f54f5c829c734af59704ccb29d145d58e34697ddc0b9d35c50eaa1b000000d20130b56e07b2394c5deaf10dd3a5808b27dc0769eec4f99ad01dd4814e7690c2cfd762ffff221d04dec7c101 +00000020fa3507328740d94858ae61029160bfab95bc7d4e5a76416709acaa9c1b0000004b17d3a45c6c1301008d8b9728895899cfb828a58df6f6886e6e80797322b8f3c2cfd762ffff221d04cd55c001 +00000020b89101957e1a54d75057cee039dc334e28a6cf911c95cc815b282dbe04000000d59b9693aef7f5166262c7c3270e381892bfeb32946fa2b7ae0e7c8c0eb21ffec3cfd762ffff221d00ae8e8e01 +0000002095b61c718fa0ee30b0753001d10c96d2c9a846967066cfd228a08e7c0f00000081a52300f276a47f038eb087d0a75316ede5ac040aef30084315e134d56351bbc3cfd762ffff221d1a1dc51c01 +00000020130a795553d15b7eb7ac4ab7c5dd62330a899dffe7c633d3a052119f020000008166bcdccef75307e4c6b5e9d18cf50eaa95ea8b89cdb1958151792caa393366c5cfd762ffff221d043d17ce01 +000000201dd9afd8938a4825e05414a0551c48bf2ffd5d712063154aab9c293d0f0000001001ebb4ffa63fae72fef7e570cfba999cacbed904152177d2799b9fc923826bc6cfd762ffff221d001226ed01 +00000020851231dcb85b5836c01bed67ef2da29a4f4f3f88759742dfa4eae80420000000d6b2d4220f51f88f9c510cf2846067754fe5fdfbea406a54d87f22732573e5a7c6cfd762ffff221d04d9b3ac01 +00000020aac7255c7ed2ae09890999d00f2fa5895eb0cca9ca0f875a4768cc1119000000cfce4fa22ed9225d65d4bea043a1c13ba4111425dba2189c0f05c1fe0df347f3c7cfd762ffff221d0c2141eb01 +000000203b82066b34f03e36f4b483c49dee60f2ad4060d1da4579e5e46e9d4f03000000501d6aa42479566e27ac92c46a465e577ac643a5224510ec7534437ccebf24a9c8cfd762ffff221d04c77a4f01 +000000209d8c139422bd8502450ff15bc7abae473adc3fc3af073dfdc8a571d4110000005bb9c421b0432890a0cbc015b3fed3e9637b6026f6a719fbc2bc8ca48c17786ec8cfd762ffff221d007f8e1a01 +00000020ecf3233e7e8757050c92cdc400918fac74619241328c00ec73e895351400000035a977fb24daa3ba56d746aef84d922e9652a5c8014472fae1fd2e36d713743ec9cfd762ffff221d0a5d50f401 +00000020268e2ea738706f7b09e66d93b83eda69dc4e28ec00cdd5aa15b18cd61e000000679b33ad4fc9d67dee33d4a9e4e4ab5f247b40fef0da57267e618df5595a41facacfd762ffff221d04cf837801 +0000002045ff785efc2107cede30af8bf0e2165ab3c4e49bcbefd49a9f08356608000000174acb7d4e6bf6e36f2d5124e150e1f11d327ed788fc125fcb78a26f0b838667cacfd762ffff221d004c184b01 +00000020bddd8248b5ab2feab24526a811c365551c69396f1782e4a5da0449821600000073393e61347a720919956678602cbdcf042a7041e72fc7b78e2fecc12e246d3ccbcfd762ffff221d00c5751401 +000000200fc53f58e90ad55eba380018a28e3e97a7013abaa326efef4a3b11c80e00000099b9df43b2336f7f3b48febafb4d7ac635f05f5d6badb4748772c2f243bd3d17cccfd762ffff221d099cb57001 +00000020d38580af9c3e39d1d6e07874340e87d169c4cc97d281cc421732109e180000009b82879658a31236b4812bf5177754d3596bce060272635f56eabadbc3a4dfaccdcfd762ffff221d05a1e3e801 +000000201420e34540065a7a8b75a280e5b5077847bb74f1397e1760757b42f01600000029d37e2dc766088f2860565b08994c8aea212864c90b922a445a7ba3a3b2f50acdcfd762ffff221d01ab161301 +00000020d3fed0f35ce79f90119e5f21fb748ce95a3961250094e5f2892bec2d0c0000004de4065ffcbf94b5d20a8f409c4bc38107eb426ef2ea3e0b91ee9a5dbafe7adececfd762ffff221d0056cc1f01 +00000020d32fbd2fb115c973b1d6656fc3f97b63dd918d25fb364045025a1ce00800000033d9de68fb5a354697673c562e143c6316ffcdf0a7622df7234b0b36dbe79ca6cecfd762ffff221d028491de01 +00000020559ac16a51f368eddf993625e8ed463e43f324c1df1d99651a6caa2c2200000028a8969fb42f8189392771450088741a8a95400b29a90603b1783a79638b514ccfcfd762ffff221d02ce9d7001 +00000020e57936b6cc16eded408e530e06f89ba7d8cdaaf87cac6b481f3cf3dc020000000e74e13e95aa97dfc7d29641da3d8af1162b9f7316d0c58cf4a25793d5e599d2cfcfd762ffff221d01aa602801 +00000020e22288fdcffe4d3dcb7faf49e3c89600bc04c440d3f4ff82168fb368020000002f72f6f52a3a705030417c97c8235bd068fae5b4f0ef17992481b6bd3eecc83bd0cfd762ffff221d0f38d37201 +00000020b9d25eeb57217e20adae69c4a6f74a7922f7db3d6154a9597244b2391d00000094a962795d63955da012c71ac377b05a2c7cd32cc2fa7c52ac3a094c139b1ab3d1cfd762ffff221d054b67cc01 +0000002048513a35d076ad9a5642d54235490d35ce57e4f1f407d19dfccd0cfa07000000c085c88f45c30764e8f059deed347146042e5b15209222138b8a33d03dceed79d1cfd762ffff221d07b81a9101 +000000204f638f8ee6a0f32fd3e0e7b4e9898702fb0ccb7d69602a8fb302ee870b00000040dd724e9677d88d9d77be0f345ff5fbd8fbba512ca0f3411dc404e5c7f55096d2cfd762ffff221d00ec5a7701 +000000208bb03f09f510d254c341c84afb9d9f885feacb5091e2a51fb00267b31c00000057d2b627ce95268b1193c3086f8641ced10e9cc19152afe0581e7555880fc247d3cfd762ffff221d0b913a4d01 +000000201b42a7b8bc7cb8428af3226b40e79885ef635b85ed72d2fb72f3c5da1c0000009a836fb4550f7fc61d4cc231bc8b7594633bd25d7d2dd1ad7c7158ca42c5011cd4cfd762ffff221d05a78b2b01 +0000002059352d21f8520bb7a8b50b0c1fce43d75a0e741d586e18b37483b743000000007f317c6d539b6c436b3e3f5460d61f24b31aedea5fb96b6cd91b1e706ca93d3ad4cfd762ffff221d0c2cbe0a01 +00000020f40f7933bb173553c1e7a5af649811fa1d4f093025b9fbd8f4ac51820e000000c200092480e21013e3bc64792add2062d845b249bb86a84e278d80b7ccfc5402d5cfd762ffff221d041bc8a701 +00000020f0a9964c433eba9e58cf4a55dee9408e40aa50b6971554f0ab491fb31e000000218aa2e0fb4575d024fed4931cd604621ebd663fa0684f78bc2adc611385a763d6cfd762ffff221d0b0c13b501 +00000020aae87713a5ee2ee84ad5cab44a9684241d1f5d86cd1c51ea05bcfa8208000000b47a7cadff5bcd14fd3cd9564b00bf2ba39a2adf540a5509f8d909bb3f54dd73d7cfd762ffff221d07099c7e01 +000000202d92b9ede687e45c1ac312f2edb4127178a0037073d564b3416feae10f0000008848a32af21f5c264433d07abea1a417dc233201eb002dc5304486fc3b191ec7d7cfd762ffff221d01b8abb801 +000000207ea10c88d57641d1c8ed115221f30d0078edfa75803af1cc0ebd08dd11000000c5d21094db1998b807c9bdbb81398dcb79eb0b61b3ecd4658327ecbef91bcef4d8cfd762ffff221d01f34c4e01 +000000204b42469efd731fd9ca81b754f40ca2548a3377950af5cae1876e94eb19000000acde202497bcc81295df204431b271de90f7e8595890f4a70d4d6f54c784e1b1d8cfd762ffff221d070737b101 +00000020d36cc1823445e921eb6d74fa7c0115ac92867a1697c40ea5b50b8cd50f000000189c16fb3be01fad3e1397834e0b7ebab6b27c81e5f68cfa769147d0061d8642d9cfd762ffff221d0912ac3801 +00000020ae3a50fb369917400c789f521b7b04972b99de74d2480a39bc369310000000001d5096af70c1e9d2cda26f113b39d52f1bb6fbf6660b30ba8b4898da9f54dbdadacfd762ffff221d035141ed01 +0000002058b0b6ca49a6838c45c88744539c2a4b4d900e19439516a03e5c55781a000000e52fbda310328bc4f903466db3047be84fbe6e9348a2a5a381c209534e7caa67dacfd762ffff221d0078037801 +000000202e650c1d3c30dec280076d3115e2cae036464e11fa7bdbfdf912b8e2100000005112a9f327414ea757f0f5e601939032fa2e85c7bed0655d2e79ff06604c7398dbcfd762ffff221d0a776b5201 +0000002071811672c57785797663ad9709971b12fcb545ad7d21239611637e2c1100000063265c95054ee4aa90f88c978a19e8c7f11d11b5c251d8954c473cf0fc1c85a5dccfd762ffff221d012d65c401 +00000020053645dde3d36f326c45b6cb9613fcf99ba57aa249052f74d8830d3f22000000fbf9a94d34a13016210d3549b02a616a05782c2504727a860b22eec452c6084bdccfd762ffff221d064f6b1d01 +000000205b343555f6af549f0a73f96d2094c7aa8477ea88ffffbffc7b6aa39816000000d0394a83b4bb34dcde8dcc3126aafffc11a62c410d0ea58dd053d8a406643498ddcfd762ffff221d0a47e72801 +000000207a1c9cd28c72ab816b1f1838cef693871bf771178ded2ec7639b946e09000000405166b158820f9bbff1dee2e4a017ff190d1f15cfc3751a4a9edd0757bf3694decfd762ffff221d02b68b4c01 +00000020ad19be391c02c18ce4553d8e6753808f1e5ada4af8d7317f96339aaf1900000093b0dd0fc4c7828ed4bc2b6b991d4356282d020f497377e068a9e0a5527a7751decfd762ffff221d06c2ed2a01 +00000020319f5b3bb4fdae6cb8c97951855b41d2e24dc7577eb645d0f40d176f130000006153ae8ec7a071b9047b623245fecdcc3a45b7558e975ef84760079455faa9b2dfcfd762ffff221d10d9785201 +000000209b442b2290567ed3233a71a0185531cf86cf54cbb933fbc94271f6a6170000000de14b05751643e590ea43320299cfaa3e930628ac0a2bb6f7156498af8d22cce0cfd762ffff221d058ad88801 +000000200fd163e6c4f2ffd5a50eca90e33031d594455e73731fdedb6f511a18070000006eab7acb24d0410716607608e94114dcd9dc24eee8cdc88be78532fbe8627a49e1cfd762ffff221d027945fc01 +00000020b9bca844a34194ab496f762ea9d713cac3db87a12e0df4580f9ff30304000000a0745fe142c42aca392ce26a9c9d5d61d95e8ffc0a3e9f0ed86fb73575dabcf7e1cfd762ffff221d09f2c8ba01 +000000206d742615bdef4464da7eaebb828def10b23e9d8dc01adaa5998e35fa1d000000ad6c99e65ea16e5f225fdc7951db80843317efc17b8d40ecdc71a3a8a7537eb0e2cfd762ffff221d0e4c6b4b01 +0000002022c73688c5ef110cc33c7145bf6085fabe443ead5d3e2ba1176b7f5002000000e5191278bb7a31bbdd086a78fb16055c5cd9f6595a53658de65a5e78a0f495e2e3cfd762ffff221d0176527c01 +00000020d09579b6b0436b589f1a86c89a048cd2cbb06b23e057bd45e208172b160000009a4e104c541300b3221e9dcb1109dd33ced0e81dbcf33de68c568249d36b64d5e4cfd762ffff221d051ace5e01 +000000206eb180dc0fca60a716e77c7270ad24e990942d466d008082c4541b7d0f0000007ef73874fd2b9c1e4e10421d413e3c5bc253a6bbbb5926d0990471e68af72bc5e4cfd762ffff221d0aa635fa01 +000000200493769510cba71fbb9a961f4a2faa5e2eb0dc93129c096bc31f8ce40900000038578da9c548970398a8ef04b7d8b2766c6052dac9f5b0e65a6c130624dc5a4fe5cfd762ffff221d007920fd01 +00000020b4ddfbafe2a957efbb3208b8acfef82f06cf1e691838991c6696e4e50800000070a7429eef70a10ca62cb59edbfbc040da2a002301cefdb8aae3df52a2d58036e6cfd762ffff221d1777784101 +00000020fe82038dc341ca253fad146b816aaf2edc952d3de1c530400987c80206000000b993a9a8fd09d2644aff804e0b76810e1b23af98bdf699917e400f76affac247e7cfd762ffff221d00ea713201 +00000020b0baf3c5f8bfc336b73ae3798322bdb29c6f05c421f4714e110f2a3e06000000e8e48ada5d7c0a777aa6f64772487257b3ee348c9b82469d9d6085ff4fb00a95e8cfd762ffff221d013857e101 +000000202b28ade6ce2b29526eb7d302ba517f9c5591c10317329b508533c05209000000641672dc635f2bb69cbf2fcf732f7c8c3021105a607ec8861727273fa04dcbfbe8cfd762ffff221d0249b3d601 +0000002017d95acb6739b38bdb7d26b4c6876815323a11a5ce27d2d155e197011b0000005b5191c8b0e0987ed3843618d6934426e895263bb75933cf6e9e92a130892000e9cfd762ffff221d014ac46b01 +000000206f8cd5ec312f15d95af6753b59decb61dd80a8d4564a98c333cf2d282000000041a8dcd941992ce33ba5fc4dd73f971d5b1d0753793c8483cbac669377ece7c3e9cfd762ffff221d0cf2d61701 +000000202c7b49ad2c22d7c3d529c2d35fc94ba013018e4c7792baed06873dc800000000b34a46294570f434b9e73625596c556b2fa1463d3338ec961a11af85963ba9ffeacfd762ffff221d01e749a401 +00000020bd105a7a0ffa889584ef257e424045612f646ae5f2b0fb81612716351900000023ad5e7fb6a906add06796f3e4630d5d800a4b1ed1374f210e076426ff05f783ebcfd762ffff221d0003177f01 +000000209c8cff71d8789e4b1eb4ec95f53a65789d50a9e26452a2b0cdc8da3b160000000c9d5baab27e18afb76dd2a39ce2bbf70d0b17e784bd196c92b33c7f100bb5d1ebcfd762ffff221d0db55d3c01 +000000207824eee782a526c5a561d94b08bae64b8c93bf6b5208a32f18540de40a00000024d0d1e404e8bc152d4702489efd8f4c7321267b4767a4fc32af64c440291782eccfd762ffff221d0a0585b901 +00000020c02a89a06e37cf15cb75a08e8d730e5471b6900a0c970caf91885e4b120000006ab4b829d3ecc9a0c380657f4c2db428796ec3a31c6a5964847276fff109e59aedcfd762ffff221d0263af5701 +000000201be7b5ed8d11b150bc868e67ae0043cb3bfc52a3cce8f704d0c0a4a3200000001da0ba9c2397f94c1ac5da6ab7cbe674ccbdae6df4863b0902d3f0dd7d9eaf1ceecfd762ffff221d012af0fc01 +0000002005efbb49c6685be4ec2332033c7ff1b1894f99d44a2bf1c9f71b52861d000000d6bd44e117a1d64adccfd45d4cd4ad6c11be76128c4e82661b9be7048544c8b6efcfd762ffff221d07195fd501 +0000002048a1573813180020d92173b77fceef32fd7d2ed1d9eef381998b082f0b0000005e59c200ec551296680557b951b1b9780806e3afdc38ff78f95c4eebbcadd266efcfd762ffff221d0163d1e001 +00000020c9c10f13e304fe225f7fb132d422becdb1a3c78535d4c8ae870df58903000000c03b6190c6fc9590d207315d725bda0cfec473278d8cdf635cf46df949dee753f0cfd762ffff221d038809cf01 +000000206dd62691af0462a3af925e1adf8c591616c8ba952404d7c1f4ba33eb13000000001a0d70fdca7ee7f0c72f713a3af564e1b1e8f2e3a7fd87d304921c845fbb84f0cfd762ffff221d047082b201 +00000020142c6db97be2310e93ccf4f7da93acf6af73b1c6bcf3553b54617d6007000000a206a0c463793cdf56bf92a67c368cd538d106356ec5d43a8fb0248f96864b63f1cfd762ffff221d130c3bdf01 +000000204a3f9c9a43d71edac24ae009fd00a434b6e39fd63d863e0878ea6aa80200000085e60f5fc58906980a258196c452388d7f4bc0c529780f0ebc108584ba6aa218f2cfd762ffff221d1f4cdb3801 +0000002086fd0183a738d9872b2df0d9ecb7dd9c9b589268f67306b4309a614a170000007cd4552e107f300005a121ac2fbf561dd24695b6823fd8d1073c038df868863af4cfd762ffff221d19f94eef01 +00000020bfbb0d6bf4a43d4ff941f3f645bcc5442eb03a094e22f9d940c8aeab0a00000035c336e046d2d2280c223bf61be2302454e72efee633211e2d5218f5136aa3e0f6cfd762ffff221d0be3850101 +00000020d61016a9e6f1e6552ad166401ecb421cac20998f5378683b6ca3eb191a000000fe6a0f2e6b1b370fb8202fe52d0c2e0051c48bb522c2abbf9624dc30d2b2d94ff7cfd762ffff221d1701fcd001 +00000020c35213012da4e42fa2ee70f0ba8633178ca0a213ad68848449347bec0b0000001c89c13c6993c5da252b7eee032a4e8586feacc47a0873c9915900668a5b7ea2f8cfd762ffff221d1661a9e501 +00000020b41ecb771688ee44d336ccf7f1248e295b4e28640849b07036c1c3910d000000d7dbb68a4552088da890f67d66744d9d3064158ff3658adf32447864b2f1249af9cfd762ffff221d0614e6ea01 +00000020fa9ed0ce0e2beb8d23e854371a74d048a5b21e8610576b1a7fc93d441a0000008f717c7418be712c2e0080b67d18636788de1e2a49e83cabaf9193de6a096df7facfd762ffff221d1131789601 +00000020e59380c52a9f7503daff64f081c9ac129d8419eb0966b3dcad107c34100000003900d5383f3f45fd900d421ce6ea6568a25bbb1a36fce1097ddfe7130fa83305fbcfd762ffff221d17fd3fd201 +000000208268b66e11397d386a39579087c6804ed9fb9fb862b8eed55c44f7811400000003f06e0a93f58f94d23f50c447850479a5b91e56d94b386c7e41d52ac18af4d6fdcfd762ffff221d0399efa701 +00000020581347c0783dfc376a6ee790a27716b85028e8b8b9e0d97c99741ecf1b000000ab279f941d626ae6aff2c57533b2219cb87a3e13cec4af06696f86d14ff18e04fdcfd762ffff221d0bed0fc701 +0000002052b0048d9e36d38f51e599d2615ef3fc4d16f325f62f6a148766ca9904000000816c677f3cb94e1586aa6971fb0f33fe9afdb910a4c024f1b60f883bb781fbd9fecfd762ffff221d0213a8cf01 +000000208fc575d71db2af49bdc5d2e846946ee044c38cae5449c3f08511f5bd03000000be91d6bcd1b1a922805dfad85a5f5a2a6a474b4f3fc9b62da51634f4db90b78fffcfd762ffff221d0dbb90cf01 +0000002091dc8a323671a67de147d9c0944781875ddd5773876bdcad050ca7a70d00000079e28644006ec1db7444279f725e13c06f10a55665d75a8f1cb8540151a25ec000d0d762ffff221d0216714201 +000000200054bb3647e1846e60e00ea5b295d13b7fef4ad01161bac14690d45220000000506b4f74bc4278cbff3b79f567882674b314b87ce018b03dc410690e5f6fbcaf00d0d762ffff221d0bb404f301 +00000020e2510e3a5db4e7ab6fd851691588c289c49f390d304df60d08123d981c0000005ab8bc7703426863e0a5c4e31e55e2bb081fb4332dc39bb4a2a18b899d741bda01d0d762ffff221d09a2880501 +00000020e5b0ec428dae6630be05fde334d54f871595eb0aa7afe65dbc37caa711000000b0ee4b51259c06f6b9a6c44cf250f56c220cf41bf9169bf0cadf83d039e9251b02d0d762ffff221d00bb1b4601 +000000205417bb51e791e65f527e275518bece0e123f269b427d7bebd4f48e850f00000073f023e299599f52b0dd138129f9989e06a78791df81b9f767616608fe0f28de03d0d762ffff221d0a5aa0e801 +00000020fa6dc9a4d39e765d14ca006056a330f03636d54d2971d07dd0f0674405000000eb6de9127e4644a42262347ec05f789a5eef417c8dd1fd2c2f4070d5480da08b04d0d762ffff221d041244c701 +00000020546ebc24ae264fb52a878d19743f0852ec293f1676e339fa2b68c7eb1b000000572339a0425ae1de4acb6d84db1b7320e96b9e8c6459f02016866683c9cb149204d0d762ffff221d010e49ff01 +000000200255d121974829b9a8d22c5d0bb1a46b7e7ec088b3d48811f943e4c61a0000008de12589e10482117e40b9a2021c3a75579825f14fa75d4ba7bf6f422fad6c7f05d0d762ffff221d01bc8e7801 +00000020b63dbd3b74789e9333b401049f0433cd1f3d9bbc68cd7deee76dc3061f000000d30401e5df894d8e0a95a83c30d8584bbb1d1188782a6fdb08cc27c803dc8a4105d0d762ffff221d02ec58a401 +00000020017667274ff9b6538d15981b2421c6abc86017ea72293831c452c7b505000000f6d5e0672350ff84b2521f35775535000d8279d240acac21ee59d3c263431a0906d0d762ffff221d02b386b301 +0000002036d4c0341d71181f3f0a5e0f35dfd9f0cb84b0581839fed3fcff870111000000cff0eb510a8c374286dc87a060e2ef7d3489f8814d2175851edfd984961dbc9e07d0d762ffff221d028901f001 +00000020c0f41e32456bc6504098ced4ba3d892155bc37f92edbc939dc5d5dc40e00000054c0cfbe3cc91254958c31718aceae2f22f617b429ac34218476a2d5108c913607d0d762ffff221d01da7da501 +00000020e9156adb601ab8df62e716894b773977e03f8ae98a565b9004f17c5d00000000a33ec73fe4679186ebf25fcce50a81d2eb9400e90f435a4c9813231749b25f5a08d0d762ffff221d001347ee01 +00000020931c9f8e51c888475c44d5ea596a7db2a6e233eda4a9f2e78cd531cc030000005b3627190d4b278fcacf27d0061dee8956b5247c7a9f3aff52402d41509cad5e08d0d762ffff221d037ff8ef01 +000000204a9c6aa1431baec4e645dcb2186eeaafd445b9ceaaeb3bc9eb4769b919000000e830cd90a94990544ba6a9a6c419485b9768271fdba42ba3f05ab68f0f6dcb8909d0d762ffff221d05d6b91101 +0000002049dc30e54e6d0298e7987db6192c59ee9bad3bf2d7c4ea965a22846b01000000d5c1b3fdfecc828f0816fc2b9c82cfe1f5e63d7a5d5b109c920ad45ddfded8470ad0d762ffff221d09d3d69501 +0000002078e8f3fa2fb27d6855579988fffb8e731d0dacf77f45c1fcbea6ad56020000009c3a779651eac7a57937385dc93f19958e337c16ada2b57dafd587951ae1b2580bd0d762ffff221d0b5af0fb01 +000000209d9be212fa07bd6d71f1a4b570781ef4d8ffb29441ee530a705aac000400000033650d696eb5ae0256d339dd574eab0b8a508b23ebea6238876b1df600edc0470cd0d762ffff221d092ed38d01 +000000205d98bc0b8877a5817f5d985f16a657255056722a7be2ccee8a8f90d8180000005081203ce5520ad5fb2772b8055c42d2a044675da056554c99e7c70f5dfacd660dd0d762ffff221d0cd63f2e01 +00000020ab2dfdc145a9ae9cfa5396f8740daef9c3b8ff8de0ca0b265994fd6000000000dd823c1202364c321e2e47f5ef7f1ee50f9a6dc6da8b351a3e5746e1ee72833c0ed0d762ffff221d06350c0901 +00000020e20511c0400b912bebbff654f805d63bef5710a112d545278f8d537308000000709fef3481162a51e2d4328ed3d94984b13a5f48146864c1264bf617d1aee5970ed0d762ffff221d084aa40501 +000000202c6a9c0b8ebdfe3721f77dbb180dc3815e2bff5c8fd2a92f00a7c6e5190000008e8cb1251aef336c2254af84328aaf63b017222e7a57ab1c4341cfc14341fd700fd0d762ffff221d0c576fb801 +000000202b53808c120a6b384bdda6a4b73bfba7af64a36b8155b787dcb802f11500000028437b642d046fb89fd828d1fa2113471fcb652d2db68db5e7b4617e99f05c2f10d0d762ffff221d05a5cbd801 +000000201a1f1840a6198f1c72a0ffcee233638d276b5f0a27cbbbf32b09455213000000b4576a838a2b9029233963db100e200f960a9051a9cb99b02344fa6a2b28035711d0d762ffff221d06b77b8e01 +0000002058dfbb268c58875c89ef1eb8df9102307e3ca6a796600036fcedcab40f0000006e379e0db185b0a4ead546f810b2bb5f1c921c8f2ddb58c86eb8771c1eb51f6e11d0d762ffff221d00fd610e01 +0000002075491c27ac6bd24157284aaae42e6b338f05fee423121d7c1ce499021d0000004f976aaed17ed2f7d76f066ff639f21379511a88c9754368a62d332069957b4312d0d762ffff221d1157acab01 diff --git a/test/functional/p2p_dos_header_tree.py b/test/functional/p2p_dos_header_tree.py index 614ca64dc0..911621830a 100755 --- a/test/functional/p2p_dos_header_tree.py +++ b/test/functional/p2p_dos_header_tree.py @@ -49,6 +49,7 @@ def run_test(self): self.log.info("Feed all non-fork headers, including and up to the first checkpoint") peer_checkpoint = self.nodes[0].add_p2p_connection(P2PInterface()) peer_checkpoint.send_and_ping(msg_headers(self.headers)) + assert { 'height': 546, 'hash': '000000033f0ecd6bc1c46eb98a2856cf2fe48bc3e90ef11ac24ea5272c1adbf8', From 09b07479a4d0e64de7899cb67ef090798aa1157e Mon Sep 17 00:00:00 2001 From: Korrrba Date: Tue, 10 Jan 2023 23:51:01 +0100 Subject: [PATCH 39/45] test: functional: rpc_psbt: Sync with Bitcoin core and adapt expected values to Bitgesell. --- test/functional/rpc_psbt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/rpc_psbt.py b/test/functional/rpc_psbt.py index d95e81c40b..5f231be818 100755 --- a/test/functional/rpc_psbt.py +++ b/test/functional/rpc_psbt.py @@ -297,7 +297,7 @@ def run_test(self): assert_equal(walletprocesspsbt_out['complete'], True) self.nodes[1].sendrawtransaction(self.nodes[1].finalizepsbt(walletprocesspsbt_out['psbt'])['hex']) - self.log.info("Test walletcreatefundedpsbt fee rate of 10000 sat/vB and 0.1 BGL/kvB produces a total fee at or slightly below -maxtxfee (~0.05290000)") + self.log.info("Test walletcreatefundedpsbt fee rate of 10000 sat/vB and 0.1 BGL/kvB produces a total fee at or slightly below -maxtxfee (~0.04500000)") res1 = self.nodes[1].walletcreatefundedpsbt(inputs, outputs, 0, {"fee_rate": 10000, "add_inputs": True}) assert_approx(res1["fee"], 0.045, 0.005) res2 = self.nodes[1].walletcreatefundedpsbt(inputs, outputs, 0, {"feeRate": "0.1", "add_inputs": True}) From a0be78e6802e6f1a7948d3c0ad6c802aa84ab533 Mon Sep 17 00:00:00 2001 From: Korrrba Date: Wed, 4 Jan 2023 15:28:36 +0100 Subject: [PATCH 40/45] test: feature_signet: Update Signet test for BGL network. This test case uses custom signet network generated for: ADDR rbgl1q2lk0e5yjen2vq9pknxcr6xc32wp4hhpa8fgk2x and PRIV key cQ7AMSUGQcAPy3HwVRaZqAqnC4eVaAF8naEWekPHoodmV7uFw4kA and PUB key 03d47f70342433a1e56def6965f63ac147f5292a2054dfba4b98535a87d32f13db Mined 10 blocks with payout to tb1qnl2gquva8mzuc05y3pvad43vvju43wf0utk4eh with the following BGL signet network configuration: signet=1 [signet] signetchallenge=512103d47f70342433a1e56def6965f63ac147f5292a2054dfba4b98535a87d32f13db51ae and BGL signet mined block hashes: 00000013f89b91fcb42990104959470e328670fa9f340d877a2f3962d80c1069 000000008eff18e829bf5fb7dd5cc2dbedce988d75f41b3284f50ea1752eba12 000000163f459d97b733950f52680182e5dc7d0dc0f8045a3da53dfbcf90dcb3 000000126d81eb5bbf89a6bd9aa1dfb2eb95606c27f8484cce3303b4dd0cbc0f 00000021c4c02b1e39f0dfb38a31e7a22f44ca1700e758bd34e99056b1cde7eb 000000163e5c118a7c15ad94cb598f8989421450d020a611f0fac127b552dc7e 0000000e150500c71e3a819f35e99ab8a5d16cc4e57e334cdf567c355c7ed3a8 0000000fc159cbf36ee52c9cde8f66b1acfec8bd8d1f5ee0817f4b90c16b005d 0000001dbc9305b21556c8c13cd19929c003d8eafa702f9b9073b847b832a159 0000000c297942cd68ae2154ff5c18784c192bc74b373229f2b434ef3d016b42 --- test/functional/feature_signet.py | 47 ++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/test/functional/feature_signet.py b/test/functional/feature_signet.py index b2c4d67b58..ce6a4b9a39 100755 --- a/test/functional/feature_signet.py +++ b/test/functional/feature_signet.py @@ -9,17 +9,39 @@ from test_framework.test_framework import BGLTestFramework from test_framework.util import assert_equal +# This test case uses custom signet network generated for ADDR rbgl1q2lk0e5yjen2vq9pknxcr6xc32wp4hhpa8fgk2x +# and PRIV key cQ7AMSUGQcAPy3HwVRaZqAqnC4eVaAF8naEWekPHoodmV7uFw4kA +# and PUB key 03d47f70342433a1e56def6965f63ac147f5292a2054dfba4b98535a87d32f13db +# Mined 10 blocks with payout to tb1qnl2gquva8mzuc05y3pvad43vvju43wf0utk4eh with BGL signet network configuration: +# +# signet=1 +# [signet] +# signetchallenge=512103d47f70342433a1e56def6965f63ac147f5292a2054dfba4b98535a87d32f13db51ae +# +# and BGL signet mined block hashes: +# +# 00000013f89b91fcb42990104959470e328670fa9f340d877a2f3962d80c1069 +# 000000008eff18e829bf5fb7dd5cc2dbedce988d75f41b3284f50ea1752eba12 +# 000000163f459d97b733950f52680182e5dc7d0dc0f8045a3da53dfbcf90dcb3 +# 000000126d81eb5bbf89a6bd9aa1dfb2eb95606c27f8484cce3303b4dd0cbc0f +# 00000021c4c02b1e39f0dfb38a31e7a22f44ca1700e758bd34e99056b1cde7eb +# 000000163e5c118a7c15ad94cb598f8989421450d020a611f0fac127b552dc7e +# 0000000e150500c71e3a819f35e99ab8a5d16cc4e57e334cdf567c355c7ed3a8 +# 0000000fc159cbf36ee52c9cde8f66b1acfec8bd8d1f5ee0817f4b90c16b005d +# 0000001dbc9305b21556c8c13cd19929c003d8eafa702f9b9073b847b832a159 +# 0000000c297942cd68ae2154ff5c18784c192bc74b373229f2b434ef3d016b42 + signet_blocks = [ - '00000020f61eee3b63a380a477a063af32b2bbc97c9ff9f01f2c4225e973988108000000f575c83235984e7dc4afc1f30944c170462e84437ab6f2d52e16878a79e4678bd1914d5fae77031eccf4070001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025151feffffff0200f2052a010000001600149243f727dd5343293eb83174324019ec16c2630f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402205e423a8754336ca99dbe16509b877ef1bf98d008836c725005b3c787c41ebe46022047246e4467ad7cc7f1ad98662afcaf14c115e0095a227c7b05c5182591c23e7e01000120000000000000000000000000000000000000000000000000000000000000000000000000', - '00000020533b53ded9bff4adc94101d32400a144c54edc5ed492a3b26c63b2d686000000b38fef50592017cfafbcab88eb3d9cf50b2c801711cad8299495d26df5e54812e7914d5fae77031ecfdd0b0001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025251feffffff0200f2052a01000000160014fd09839740f0e0b4fc6d5e2527e4022aa9b89dfa0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa24900473044022031d64a1692cdad1fc0ced69838169fe19ae01be524d831b95fcf5ea4e6541c3c02204f9dea0801df8b4d0cd0857c62ab35c6c25cc47c930630dc7fe723531daa3e9b01000120000000000000000000000000000000000000000000000000000000000000000000000000', - '000000202960f3752f0bfa8858a3e333294aedc7808025e868c9dc03e71d88bb320000007765fcd3d5b4966beb338bba2675dc2cf2ad28d4ad1d83bdb6f286e7e27ac1f807924d5fae77031e81d60b0001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025351feffffff0200f2052a010000001600141e5fb426042692ae0e87c070e78c39307a5661c20000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402205de93694763a42954865bcf1540cb82958bc62d0ec4eee02070fb7937cd037f4022067f333753bce47b10bc25eb6e1f311482e994c862a7e0b2d41ab1c8679fd1b1101000120000000000000000000000000000000000000000000000000000000000000000000000000', - '00000020b06443a13ae1d3d50faef5ecad38c6818194dc46abca3e972e2aacdae800000069a5829097e80fee00ac49a56ea9f82d741a6af84d32b3bc455cf31871e2a8ac27924d5fae77031e9c91050001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025451feffffff0200f2052a0100000016001430db2f8225dcf7751361ab38735de08190318cb70000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402200936f5f9872f6df5dd242026ad52241a68423f7f682e79169a8d85a374eab9b802202cd2979c48b321b3453e65e8f92460db3fca93cbea8539b450c959f4fbe630c601000120000000000000000000000000000000000000000000000000000000000000000000000000', - '000000207ed403758a4f228a1939418a155e2ebd4ae6b26e5ffd0ae433123f7694010000542e80b609c5bc58af5bdf492e26d4f60cd43a3966c2e063c50444c29b3757a636924d5fae77031ee8601d0001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025551feffffff0200f2052a01000000160014edc207e014df34fa3885dff97d1129d356e1186a0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa24900473044022021a3656609f85a66a2c5672ed9322c2158d57251040d2716ed202a1fe14f0c12022057d68bc6611f7a9424a7e00bbf3e27e6ae6b096f60bac624a094bc97a59aa1ff01000120000000000000000000000000000000000000000000000000000000000000000000000000', - '000000205bea0a88d1422c3df08d766ad72df95084d0700e6f873b75dd4e986c7703000002b57516d33ed60c2bdd9f93d6d5614083324c837e68e5ba6e04287a7285633585924d5fae77031ed171960001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025651feffffff0200f2052a010000001600143ae612599cf96f2442ce572633e0251116eaa52f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa24900473044022059a7c54de76bfdbb1dd44c78ea2dbd2bb4e97f4abad38965f41e76433e56423c022054bf17f04fe17415c0141f60eebd2b839200f574d8ad8d55a0917b92b0eb913401000120000000000000000000000000000000000000000000000000000000000000000000000000', - '00000020daf3b60d374b19476461f97540498dcfa2eb7016238ec6b1d022f82fb60100007a7ae65b53cb988c2ec92d2384996713821d5645ffe61c9acea60da75cd5edfa1a944d5fae77031e9dbb050001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025751feffffff0200f2052a01000000160014ef2dceae02e35f8137de76768ae3345d99ca68860000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402202b3f946d6447f9bf17d00f3696cede7ee70b785495e5498274ee682a493befd5022045fc0bcf9332243168b5d35507175f9f374a8eba2336873885d12aada67ea5f601000120000000000000000000000000000000000000000000000000000000000000000000000000', - '00000020457cc5f3c2e1a5655bc20e20e48d33e1b7ea68786c614032b5c518f0b6000000541f36942d82c6e7248275ff15c8933487fbe1819c67a9ecc0f4b70bb7e6cf672a944d5fae77031e8f39860001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025851feffffff0200f2052a0100000016001472a27906947c06d034b38ba2fa13c6391a4832790000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402202d62805ce60cbd60591f97f949b5ea5bd7e2307bcde343e6ea8394da92758e72022053a25370b0aa20da100189b7899a8f8675a0fdc60e38ece6b8a4f98edd94569e01000120000000000000000000000000000000000000000000000000000000000000000000000000', - '00000020a2eb61eb4f3831baa3a3363e1b42db4462663f756f07423e81ed30322102000077224de7dea0f8d0ec22b1d2e2e255f0a987b96fe7200e1a2e6373f48a2f5b7894954d5fae77031e36867e0001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025951feffffff0200f2052a01000000160014aa0ad9f26801258382e0734dceec03a4a75f60240000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402206fa0d59990eed369bd7375767c9a6c9369fae209152b8674e520da270605528c0220749eed3b12dbe3f583f505d21803e4aef59c8e24c5831951eafa4f15a8f92c4e01000120000000000000000000000000000000000000000000000000000000000000000000000000', - '00000020a868e8514be5e46dabd6a122132f423f36a43b716a40c394e2a8d063e1010000f4c6c717e99d800c699c25a2006a75a0c5c09f432a936f385e6fce139cdbd1a5e9964d5fae77031e7d026e0001010000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025a51feffffff0200f2052a01000000160014aaa671c82b138e3b8f510cd801e5f2bd0aa305940000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa24900473044022042309f4c3c7a1a2ac8c24f890f962df1c0086cec10be0868087cfc427520cb2702201dafee8911c269b7e786e242045bb57cef3f5b0f177010c6159abae42f646cc501000120000000000000000000000000000000000000000000000000000000000000000000000000', + '000000203dd5063677584b973ff13e95db6d7deacf55b89293bededfb4eecfcd1800000030015276a8c59e9ff65c8bfe8685e66e8d4572daabb63e32b14528cb6fb808847c83b563ffff221d740eb30301020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025151feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa249004730440220403385e7e2bb11edc4694d57c880218aaa0012dc23c5a334be26e4ff4c132449022048607eeadc5a61449c6af9593bf9675291bdb8477a2187416dae405ce526a5ba01000120000000000000000000000000000000000000000000000000000000000000000000000000', + '0000002069100cd862392f7a870d349ffa7086320e475949109029b4fc919bf813000000b3171b076db303a3e90d8ae4754e08b85e251f89206ee8831e5bd2191cde399fc283b563ffff221d95730e0201020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025251feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402202464836b5f594d52b132f4f7c4db3553bd2e16a7fb836aa83255f82ec500c7b702201f51e854b0bb9c73fa9516fc42d220aaf595d12fd747be39fd16c5f101fa333301000120000000000000000000000000000000000000000000000000000000000000000000000000', + '0000002012ba2e75a10ef584321bf4758d98ceeddbc25cddb75fbf29e818ff8e000000004720710f89b44b0239e100351cbfb3a5eff9dfac0a03502e12d0036451450ea0e183b563ffff221dea5ec80c01020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025351feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa24900473044022019f207dd04b42bccfd1b8c403d1242776506d12f50c9236c8e53290f46ed46420220245cf45e5d54c81d7d21049ea007607c6e09b3e3e4f21dd4601a11bafb93f38b01000120000000000000000000000000000000000000000000000000000000000000000000000000', + '00000020b3dc90cffb3da53d5a04f8c00d7ddce5820168520f9533b7979d453f16000000a5210bcea1122650bbbc1825d89441ccefd4bd1809fa7fb18fe782f9c4307bde4084b563ffff221db222f40101020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025451feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402206ea2f6b41222027938a44a7b996dc65ac24a59d32de9680014efd8b7cf80e18c022031b9d9f99b81e52c1e4a1ff9f0d202e356fee6672a30c16dac5509101ac28ec901000120000000000000000000000000000000000000000000000000000000000000000000000000', + '000000200fbc0cddb40333ce4c48f8276c6095ebb2dfa19abda689bf5beb816d12000000dd4a0d92d17cde54cb011097fbdcea40ae4657236e0aed91dbf175f3e7c72b635884b563ffff221d7fa9430801020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025551feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa249004730440220199bc1a076d82a541f62bbc111710f7fe5ce10c0565bb4ada36a2c4e0337e04302203cccf1d8b71c4e4cdad57fc3be86c449f0ce08031c417b546cf2dce04573d98701000120000000000000000000000000000000000000000000000000000000000000000000000000', + '00000020ebe7cdb15690e934bd58e70017ca442fa2e7318ab3dff0391e2bc0c421000000bf24ceee9608686855f86a251293a3ba3616ee0a0322b8451855d49441c8fe4aa384b563ffff221d988df60701020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025651feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa249004730440220695a7e797d159eea3daf8555391907c3f7183ef1f0196abd098c4ffc9d16cc0102202759be86c9dc93a78b81dcd4bd2a6df2e8bcc77b1508d95c3b2509bb965c864b01000120000000000000000000000000000000000000000000000000000000000000000000000000', + '000000207edc52b527c1faf011a620d050144289898f59cb94ad157c8a115c3e160000002d1e9ae1fbca16e78ed0f8d5241aac7a7665355e4d663db554d3a7570b37c959e284b563ffff221d5430590701020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025751feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa249004730440220488dcf844a667081802b39fed26e0b519f76748972f6965ff45bdf689b6085a30220008faea476d7d41e25fa52e3592aad81fb05265eff084b11e90a86cb2d8e5c9f01000120000000000000000000000000000000000000000000000000000000000000000000000000', + '00000020a8d37e5c357c56df4c337ee5c46cd1a5b89ae9359f813a1ec70005150e000000af87a67ebd1e0dafea7c38ceed1d138615b9003caf789fcd7cb2f8ca5fbe312b2a85b563ffff221d1a0b7d0501020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025851feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa249004730440220324d312586357ecea2d4691a626357fb126b9ddbd9d9a4b8947c3c46a6089b1802201c51a189e284170b79ca60d8aa175f03e35ff9693541af023396a9dadd65455401000120000000000000000000000000000000000000000000000000000000000000000000000000', + '000000205d006bc1904b7f81e05e1f8dbdc8feacb1668fde9c2ce56ef3cb59c10f00000053e0f01f829148209112325c0c9f5261bd0349253c4d102a3207ce0a117890545785b563ffff221d7136f60201020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025951feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa249004730440220272174dcc431da7861e1ac812ac8d5cb41f62d4f438aeb924651db99a780d3ea02206a4a10c6035adba4b4343861301bedf9f846f50b0d353695ee2f2857954b928b01000120000000000000000000000000000000000000000000000000000000000000000000000000', + '0000002059a132b847b873909b2f70faead803c02999d13cc1c85615b20593bc1d00000082e59ecb50fc3f72ba6fceba81ad9b9aa7bbf3ad3305aa0eb9bd35186873cc717985b563ffff221d2d6b611a01020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff025a51feffffff0200c817a8040000001600149fd480719d3ec5cc3e848859d6d62c64b958b92f0000000000000000776a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf94c4fecc7daa2490047304402207622fdf1ef37b7d06c72378dc56ff40dc4da5fed45d59528c4bc905eef2da10e02205c2249157c5dfe607b59a24840e3c2011c83162941dbbab959ad8cf07a2422f201000120000000000000000000000000000000000000000000000000000000000000000000000000' ] @@ -29,8 +51,7 @@ def set_test_params(self): self.num_nodes = 6 self.setup_clean_chain = True shared_args1 = ["-signetchallenge=51"] # OP_TRUE - shared_args2 = [] # default challenge - # we use the exact same challenge except we do it as a 2-of-2, which means it should fail + shared_args2 = ["-signetchallenge=512103d47f70342433a1e56def6965f63ac147f5292a2054dfba4b98535a87d32f13db51ae"] # challenge for custom BGL signet network shared_args3 = ["-signetchallenge=522103ad5e0edad18cb1f0fc0d28a3d4f1f3e445640337489abb10404f2d1e086be430210359ef5021964fe22d6f8e05b2463c9540ce96883fe3b278760f048f5189f2e6c452ae"] self.extra_args = [ @@ -59,8 +80,6 @@ def run_test(self): assert_equal(mining_info['networkhashps'], Decimal('0')) assert_equal(mining_info['pooledtx'], 0) - self.generate(self.nodes[0], 1, sync_fun=self.no_op) - self.log.info("pregenerated signet blocks check") height = 0 From 3e20a36d7685cdabddfe24eba7e2891e42b8b00f Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Mon, 18 May 2020 18:22:26 +0300 Subject: [PATCH 41/45] Replace thread_local g_lockstack with a mutex-protected map This change prevents UB in case of early g_lockstack destroying. Co-authored-by: Wladimir J. van der Laan --- src/sync.cpp | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/sync.cpp b/src/sync.cpp index 54cd618bde..d39c662aaf 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -161,6 +161,7 @@ static void push_lock(MutexType* c, const CLockLocation& locklocation) const LockPair p1 = std::make_pair(i.first, c); if (lockdata.lockorders.count(p1)) continue; + lockdata.lockorders.emplace(p1, lock_stack); const LockPair p2 = std::make_pair(c, i.first); if (lockdata.lockorders.count(p2)) { @@ -198,15 +199,17 @@ template void EnterCritical(const char*, const char*, int, std::recursive_mutex* void CheckLastCritical(void* cs, std::string& lockname, const char* guardname, const char* file, int line) { - LockData& lockdata = GetLockData(); - std::lock_guard lock(lockdata.dd_mutex); - - const LockStack& lock_stack = lockdata.m_lock_stacks[std::this_thread::get_id()]; - if (!lock_stack.empty()) { - const auto& lastlock = lock_stack.back(); - if (lastlock.first == cs) { - lockname = lastlock.second.Name(); - return; + { + LockData& lockdata = GetLockData(); + std::lock_guard lock(lockdata.dd_mutex); + + const LockStack& lock_stack = lockdata.m_lock_stacks[std::this_thread::get_id()]; + if (!lock_stack.empty()) { + const auto& lastlock = lock_stack.back(); + if (lastlock.first == cs) { + lockname = lastlock.second.Name(); + return; + } } } From 09c546b9ce201f0ba7657f354edbddfe97214914 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Fri, 19 Jun 2020 20:51:16 +0200 Subject: [PATCH 42/45] sync: make EnterCritical() & push_lock() type safe The functions `EnterCritical()` and `push_lock()` take a pointer to a mutex, but that pointer used to be of type `void*` because we use a few different types for mutexes. This `void*` argument was not type safe because somebody could have send a pointer to anything that is not a mutex. Furthermore it wouldn't allow to check whether the passed mutex is recursive or not. Thus, change the functions to templated ones so that we can implement stricter checks for non-recursive mutexes. This also simplifies the callers of `EnterCritical()`. --- src/sync.cpp | 27 +++++++++++++++------------ src/sync.h | 10 ++++++---- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/src/sync.cpp b/src/sync.cpp index d39c662aaf..89fd266e27 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -13,7 +13,10 @@ #include #include +#include + #include +#include #include #include #include @@ -188,7 +191,8 @@ static void pop_lock() } } -void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry) +template +void EnterCritical(const char* pszName, const char* pszFile, int nLine, MutexType* cs, bool fTry) { push_lock(cs, CLockLocation(pszName, pszFile, nLine, fTry, util::ThreadGetInternalName())); } @@ -196,20 +200,19 @@ template void EnterCritical(const char*, const char*, int, Mutex*, bool); template void EnterCritical(const char*, const char*, int, RecursiveMutex*, bool); template void EnterCritical(const char*, const char*, int, std::mutex*, bool); template void EnterCritical(const char*, const char*, int, std::recursive_mutex*, bool); +template void EnterCritical(const char*, const char*, int, boost::mutex*, bool); void CheckLastCritical(void* cs, std::string& lockname, const char* guardname, const char* file, int line) { - { - LockData& lockdata = GetLockData(); - std::lock_guard lock(lockdata.dd_mutex); - - const LockStack& lock_stack = lockdata.m_lock_stacks[std::this_thread::get_id()]; - if (!lock_stack.empty()) { - const auto& lastlock = lock_stack.back(); - if (lastlock.first == cs) { - lockname = lastlock.second.Name(); - return; - } + LockData& lockdata = GetLockData(); + std::lock_guard lock(lockdata.dd_mutex); + + const LockStack& lock_stack = lockdata.m_lock_stacks[std::this_thread::get_id()]; + if (!lock_stack.empty()) { + const auto& lastlock = lock_stack.back(); + if (lastlock.first == cs) { + lockname = lastlock.second.Name(); + return; } } diff --git a/src/sync.h b/src/sync.h index f7b6dbbd9e..cd4011763c 100644 --- a/src/sync.h +++ b/src/sync.h @@ -53,7 +53,8 @@ LEAVE_CRITICAL_SECTION(mutex); // no RAII /////////////////////////////// #ifdef DEBUG_LOCKORDER -void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false); +template +void EnterCritical(const char* pszName, const char* pszFile, int nLine, MutexType* cs, bool fTry = false); void LeaveCritical(); void CheckLastCritical(void* cs, std::string& lockname, const char* guardname, const char* file, int line); std::string LocksHeld(); @@ -71,7 +72,8 @@ bool LockStackEmpty(); */ extern bool g_debug_lockorder_abort; #else -inline void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false) {} +template +inline void EnterCritical(const char* pszName, const char* pszFile, int nLine, MutexType* cs, bool fTry = false) {} inline void LeaveCritical() {} inline void CheckLastCritical(void* cs, std::string& lockname, const char* guardname, const char* file, int line) {} template @@ -222,7 +224,7 @@ class SCOPED_LOCKABLE UniqueLock : public MutexType::unique_lock ~reverse_lock() { templock.swap(lock); - EnterCritical(lockname.c_str(), file.c_str(), line, (void*)lock.mutex()); + EnterCritical(lockname.c_str(), file.c_str(), line, lock.mutex()); lock.lock(); } @@ -262,7 +264,7 @@ inline MutexType* MaybeCheckNotHeld(MutexType* m) LOCKS_EXCLUDED(m) LOCK_RETURNE #define ENTER_CRITICAL_SECTION(cs) \ { \ - EnterCritical(#cs, __FILE__, __LINE__, (void*)(&cs)); \ + EnterCritical(#cs, __FILE__, __LINE__, &cs); \ (cs).lock(); \ } From ad010e132a6cd72e8438a962f7ef6ae6653a391d Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Mon, 18 May 2020 17:45:46 +0300 Subject: [PATCH 43/45] refactor: Refactor duplicated code into LockHeld() --- src/sync.cpp | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/sync.cpp b/src/sync.cpp index 89fd266e27..5fd301efca 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -261,9 +261,7 @@ static bool LockHeld(void* mutex) template void AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, MutexType* cs) { - for (const LockStackItem& i : g_lockstack) - if (i.first == cs) - return; + if (LockHeld(cs)) return; tfm::format(std::cerr, "Assertion failed: lock %s not held in %s:%i; locks held:\n%s", pszName, pszFile, nLine, LocksHeld()); abort(); } @@ -273,12 +271,9 @@ template void AssertLockHeldInternal(const char*, const char*, int, RecursiveMut template void AssertLockNotHeldInternal(const char* pszName, const char* pszFile, int nLine, MutexType* cs) { - for (const LockStackItem& i : g_lockstack) { - if (i.first == cs) { - tfm::format(std::cerr, "Assertion failed: lock %s held in %s:%i; locks held:\n%s", pszName, pszFile, nLine, LocksHeld()); - abort(); - } - } + if (!LockHeld(cs)) return; + tfm::format(std::cerr, "Assertion failed: lock %s held in %s:%i; locks held:\n%s", pszName, pszFile, nLine, LocksHeld()); + abort(); } template void AssertLockNotHeldInternal(const char*, const char*, int, Mutex*); template void AssertLockNotHeldInternal(const char*, const char*, int, RecursiveMutex*); From 61534812401d6896f35bd5e5465e54e3e8014657 Mon Sep 17 00:00:00 2001 From: Sebastian Falbesoner Date: Wed, 27 Oct 2021 11:18:57 +0200 Subject: [PATCH 44/45] test: MiniWallet: add P2TR support and use it per default --- test/functional/test_framework/address.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/test/functional/test_framework/address.py b/test/functional/test_framework/address.py index 248916052e..9db9a89838 100644 --- a/test/functional/test_framework/address.py +++ b/test/functional/test_framework/address.py @@ -10,7 +10,6 @@ import enum import unittest - from .script import ( CScript, OP_0, @@ -60,6 +59,21 @@ def create_deterministic_address_bcrt1_p2tr_op_true(): return (address, internal_key) +def create_deterministic_address_bcrt1_p2tr_op_true(): + """ + Generates a deterministic bech32m address (segwit v1 output) that + can be spent with a witness stack of OP_TRUE and the control block + with internal public key (script-path spending). + + Returns a tuple with the generated address and the internal key. + """ + internal_key = (1).to_bytes(32, 'big') + scriptPubKey = taproot_construct(internal_key, [(None, CScript([OP_TRUE]))]).scriptPubKey + address = encode_segwit_address("rbgl", 1, scriptPubKey[2:]) + assert_equal(address, 'rbgl1p9yfmy5h72durp7zrhlw9lf7jpwjgvwdg0jr0lqmmjtgg83266lqsylg5sy') + return (address, internal_key) + + def byte_to_base58(b, version): result = '' b = bytes([version]) + b # prepend version From 217e921a4b1eefffee686c73d3052063a325959b Mon Sep 17 00:00:00 2001 From: ijanus Date: Sun, 24 Mar 2024 06:14:10 +0100 Subject: [PATCH 45/45] Fix functional/mempool_accept.py file --- test/functional/mempool_accept.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/mempool_accept.py b/test/functional/mempool_accept.py index 43f2a48123..940f7b663d 100755 --- a/test/functional/mempool_accept.py +++ b/test/functional/mempool_accept.py @@ -286,7 +286,7 @@ def run_test(self): _, pubkey = generate_keypair() tx.vout[0].scriptPubKey = keys_to_multisig_script([pubkey] * 3, k=2) # Some bare multisig script (2-of-3) self.check_mempool_result( - result_expected=[{'txid': tx.rehash(), 'allowed': False, 'reject-reason': 'max-fee-exceeded'}], + result_expected=[{'txid': tx.rehash(), 'allowed': False, 'reject-reason': 'bare-multisig'}], rawtxs=[tx.serialize().hex()], ) # bare-multisig to max-fee-exceeded. However, should try to find how to get the fee down tx = tx_from_hex(raw_tx_reference)